핵심 개념 : EDA, Markdwon 사용 패키지 : ggplot2 <특징> +로 함수를 연결 ggplot geom point labs lims

#오늘 실습 ggplot : ggplot 화면 생성 aes : 미적요소 추가 + : 요소 추가 ggsave : ggplot 저장 geom_bar,density,point, smooth

사용할 dataset 1. iris - 꽃잎, 꽃받침에 대한 데이터셋 2. airquality - 오존, 온도, 측정 데이터셋 3. emission_transpose - 약 230개 국가가 1750-2017까지 모아둔 데이터 4. emission_multi -

  1. 라이브러리 로드
library(ggplot2) # 시각화
library(dplyr) # 데이터 전처리 
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(DataExplorer) # 데이터 조작

데이터셋 살펴보기

# 사용하는 데이터 : iris, airquality, emission_multi,transpose
iris
##     Sepal.Length Sepal.Width Petal.Length Petal.Width    Species
## 1            5.1         3.5          1.4         0.2     setosa
## 2            4.9         3.0          1.4         0.2     setosa
## 3            4.7         3.2          1.3         0.2     setosa
## 4            4.6         3.1          1.5         0.2     setosa
## 5            5.0         3.6          1.4         0.2     setosa
## 6            5.4         3.9          1.7         0.4     setosa
## 7            4.6         3.4          1.4         0.3     setosa
## 8            5.0         3.4          1.5         0.2     setosa
## 9            4.4         2.9          1.4         0.2     setosa
## 10           4.9         3.1          1.5         0.1     setosa
## 11           5.4         3.7          1.5         0.2     setosa
## 12           4.8         3.4          1.6         0.2     setosa
## 13           4.8         3.0          1.4         0.1     setosa
## 14           4.3         3.0          1.1         0.1     setosa
## 15           5.8         4.0          1.2         0.2     setosa
## 16           5.7         4.4          1.5         0.4     setosa
## 17           5.4         3.9          1.3         0.4     setosa
## 18           5.1         3.5          1.4         0.3     setosa
## 19           5.7         3.8          1.7         0.3     setosa
## 20           5.1         3.8          1.5         0.3     setosa
## 21           5.4         3.4          1.7         0.2     setosa
## 22           5.1         3.7          1.5         0.4     setosa
## 23           4.6         3.6          1.0         0.2     setosa
## 24           5.1         3.3          1.7         0.5     setosa
## 25           4.8         3.4          1.9         0.2     setosa
## 26           5.0         3.0          1.6         0.2     setosa
## 27           5.0         3.4          1.6         0.4     setosa
## 28           5.2         3.5          1.5         0.2     setosa
## 29           5.2         3.4          1.4         0.2     setosa
## 30           4.7         3.2          1.6         0.2     setosa
## 31           4.8         3.1          1.6         0.2     setosa
## 32           5.4         3.4          1.5         0.4     setosa
## 33           5.2         4.1          1.5         0.1     setosa
## 34           5.5         4.2          1.4         0.2     setosa
## 35           4.9         3.1          1.5         0.2     setosa
## 36           5.0         3.2          1.2         0.2     setosa
## 37           5.5         3.5          1.3         0.2     setosa
## 38           4.9         3.6          1.4         0.1     setosa
## 39           4.4         3.0          1.3         0.2     setosa
## 40           5.1         3.4          1.5         0.2     setosa
## 41           5.0         3.5          1.3         0.3     setosa
## 42           4.5         2.3          1.3         0.3     setosa
## 43           4.4         3.2          1.3         0.2     setosa
## 44           5.0         3.5          1.6         0.6     setosa
## 45           5.1         3.8          1.9         0.4     setosa
## 46           4.8         3.0          1.4         0.3     setosa
## 47           5.1         3.8          1.6         0.2     setosa
## 48           4.6         3.2          1.4         0.2     setosa
## 49           5.3         3.7          1.5         0.2     setosa
## 50           5.0         3.3          1.4         0.2     setosa
## 51           7.0         3.2          4.7         1.4 versicolor
## 52           6.4         3.2          4.5         1.5 versicolor
## 53           6.9         3.1          4.9         1.5 versicolor
## 54           5.5         2.3          4.0         1.3 versicolor
## 55           6.5         2.8          4.6         1.5 versicolor
## 56           5.7         2.8          4.5         1.3 versicolor
## 57           6.3         3.3          4.7         1.6 versicolor
## 58           4.9         2.4          3.3         1.0 versicolor
## 59           6.6         2.9          4.6         1.3 versicolor
## 60           5.2         2.7          3.9         1.4 versicolor
## 61           5.0         2.0          3.5         1.0 versicolor
## 62           5.9         3.0          4.2         1.5 versicolor
## 63           6.0         2.2          4.0         1.0 versicolor
## 64           6.1         2.9          4.7         1.4 versicolor
## 65           5.6         2.9          3.6         1.3 versicolor
## 66           6.7         3.1          4.4         1.4 versicolor
## 67           5.6         3.0          4.5         1.5 versicolor
## 68           5.8         2.7          4.1         1.0 versicolor
## 69           6.2         2.2          4.5         1.5 versicolor
## 70           5.6         2.5          3.9         1.1 versicolor
## 71           5.9         3.2          4.8         1.8 versicolor
## 72           6.1         2.8          4.0         1.3 versicolor
## 73           6.3         2.5          4.9         1.5 versicolor
## 74           6.1         2.8          4.7         1.2 versicolor
## 75           6.4         2.9          4.3         1.3 versicolor
## 76           6.6         3.0          4.4         1.4 versicolor
## 77           6.8         2.8          4.8         1.4 versicolor
## 78           6.7         3.0          5.0         1.7 versicolor
## 79           6.0         2.9          4.5         1.5 versicolor
## 80           5.7         2.6          3.5         1.0 versicolor
## 81           5.5         2.4          3.8         1.1 versicolor
## 82           5.5         2.4          3.7         1.0 versicolor
## 83           5.8         2.7          3.9         1.2 versicolor
## 84           6.0         2.7          5.1         1.6 versicolor
## 85           5.4         3.0          4.5         1.5 versicolor
## 86           6.0         3.4          4.5         1.6 versicolor
## 87           6.7         3.1          4.7         1.5 versicolor
## 88           6.3         2.3          4.4         1.3 versicolor
## 89           5.6         3.0          4.1         1.3 versicolor
## 90           5.5         2.5          4.0         1.3 versicolor
## 91           5.5         2.6          4.4         1.2 versicolor
## 92           6.1         3.0          4.6         1.4 versicolor
## 93           5.8         2.6          4.0         1.2 versicolor
## 94           5.0         2.3          3.3         1.0 versicolor
## 95           5.6         2.7          4.2         1.3 versicolor
## 96           5.7         3.0          4.2         1.2 versicolor
## 97           5.7         2.9          4.2         1.3 versicolor
## 98           6.2         2.9          4.3         1.3 versicolor
## 99           5.1         2.5          3.0         1.1 versicolor
## 100          5.7         2.8          4.1         1.3 versicolor
## 101          6.3         3.3          6.0         2.5  virginica
## 102          5.8         2.7          5.1         1.9  virginica
## 103          7.1         3.0          5.9         2.1  virginica
## 104          6.3         2.9          5.6         1.8  virginica
## 105          6.5         3.0          5.8         2.2  virginica
## 106          7.6         3.0          6.6         2.1  virginica
## 107          4.9         2.5          4.5         1.7  virginica
## 108          7.3         2.9          6.3         1.8  virginica
## 109          6.7         2.5          5.8         1.8  virginica
## 110          7.2         3.6          6.1         2.5  virginica
## 111          6.5         3.2          5.1         2.0  virginica
## 112          6.4         2.7          5.3         1.9  virginica
## 113          6.8         3.0          5.5         2.1  virginica
## 114          5.7         2.5          5.0         2.0  virginica
## 115          5.8         2.8          5.1         2.4  virginica
## 116          6.4         3.2          5.3         2.3  virginica
## 117          6.5         3.0          5.5         1.8  virginica
## 118          7.7         3.8          6.7         2.2  virginica
## 119          7.7         2.6          6.9         2.3  virginica
## 120          6.0         2.2          5.0         1.5  virginica
## 121          6.9         3.2          5.7         2.3  virginica
## 122          5.6         2.8          4.9         2.0  virginica
## 123          7.7         2.8          6.7         2.0  virginica
## 124          6.3         2.7          4.9         1.8  virginica
## 125          6.7         3.3          5.7         2.1  virginica
## 126          7.2         3.2          6.0         1.8  virginica
## 127          6.2         2.8          4.8         1.8  virginica
## 128          6.1         3.0          4.9         1.8  virginica
## 129          6.4         2.8          5.6         2.1  virginica
## 130          7.2         3.0          5.8         1.6  virginica
## 131          7.4         2.8          6.1         1.9  virginica
## 132          7.9         3.8          6.4         2.0  virginica
## 133          6.4         2.8          5.6         2.2  virginica
## 134          6.3         2.8          5.1         1.5  virginica
## 135          6.1         2.6          5.6         1.4  virginica
## 136          7.7         3.0          6.1         2.3  virginica
## 137          6.3         3.4          5.6         2.4  virginica
## 138          6.4         3.1          5.5         1.8  virginica
## 139          6.0         3.0          4.8         1.8  virginica
## 140          6.9         3.1          5.4         2.1  virginica
## 141          6.7         3.1          5.6         2.4  virginica
## 142          6.9         3.1          5.1         2.3  virginica
## 143          5.8         2.7          5.1         1.9  virginica
## 144          6.8         3.2          5.9         2.3  virginica
## 145          6.7         3.3          5.7         2.5  virginica
## 146          6.7         3.0          5.2         2.3  virginica
## 147          6.3         2.5          5.0         1.9  virginica
## 148          6.5         3.0          5.2         2.0  virginica
## 149          6.2         3.4          5.4         2.3  virginica
## 150          5.9         3.0          5.1         1.8  virginica
introduce(iris)
##   rows columns discrete_columns continuous_columns all_missing_columns
## 1  150       5                1                  4                   0
##   total_missing_values complete_rows total_observations memory_usage
## 1                    0           150                750         7976
airquality
##     Ozone Solar.R Wind Temp Month Day
## 1      41     190  7.4   67     5   1
## 2      36     118  8.0   72     5   2
## 3      12     149 12.6   74     5   3
## 4      18     313 11.5   62     5   4
## 5      NA      NA 14.3   56     5   5
## 6      28      NA 14.9   66     5   6
## 7      23     299  8.6   65     5   7
## 8      19      99 13.8   59     5   8
## 9       8      19 20.1   61     5   9
## 10     NA     194  8.6   69     5  10
## 11      7      NA  6.9   74     5  11
## 12     16     256  9.7   69     5  12
## 13     11     290  9.2   66     5  13
## 14     14     274 10.9   68     5  14
## 15     18      65 13.2   58     5  15
## 16     14     334 11.5   64     5  16
## 17     34     307 12.0   66     5  17
## 18      6      78 18.4   57     5  18
## 19     30     322 11.5   68     5  19
## 20     11      44  9.7   62     5  20
## 21      1       8  9.7   59     5  21
## 22     11     320 16.6   73     5  22
## 23      4      25  9.7   61     5  23
## 24     32      92 12.0   61     5  24
## 25     NA      66 16.6   57     5  25
## 26     NA     266 14.9   58     5  26
## 27     NA      NA  8.0   57     5  27
## 28     23      13 12.0   67     5  28
## 29     45     252 14.9   81     5  29
## 30    115     223  5.7   79     5  30
## 31     37     279  7.4   76     5  31
## 32     NA     286  8.6   78     6   1
## 33     NA     287  9.7   74     6   2
## 34     NA     242 16.1   67     6   3
## 35     NA     186  9.2   84     6   4
## 36     NA     220  8.6   85     6   5
## 37     NA     264 14.3   79     6   6
## 38     29     127  9.7   82     6   7
## 39     NA     273  6.9   87     6   8
## 40     71     291 13.8   90     6   9
## 41     39     323 11.5   87     6  10
## 42     NA     259 10.9   93     6  11
## 43     NA     250  9.2   92     6  12
## 44     23     148  8.0   82     6  13
## 45     NA     332 13.8   80     6  14
## 46     NA     322 11.5   79     6  15
## 47     21     191 14.9   77     6  16
## 48     37     284 20.7   72     6  17
## 49     20      37  9.2   65     6  18
## 50     12     120 11.5   73     6  19
## 51     13     137 10.3   76     6  20
## 52     NA     150  6.3   77     6  21
## 53     NA      59  1.7   76     6  22
## 54     NA      91  4.6   76     6  23
## 55     NA     250  6.3   76     6  24
## 56     NA     135  8.0   75     6  25
## 57     NA     127  8.0   78     6  26
## 58     NA      47 10.3   73     6  27
## 59     NA      98 11.5   80     6  28
## 60     NA      31 14.9   77     6  29
## 61     NA     138  8.0   83     6  30
## 62    135     269  4.1   84     7   1
## 63     49     248  9.2   85     7   2
## 64     32     236  9.2   81     7   3
## 65     NA     101 10.9   84     7   4
## 66     64     175  4.6   83     7   5
## 67     40     314 10.9   83     7   6
## 68     77     276  5.1   88     7   7
## 69     97     267  6.3   92     7   8
## 70     97     272  5.7   92     7   9
## 71     85     175  7.4   89     7  10
## 72     NA     139  8.6   82     7  11
## 73     10     264 14.3   73     7  12
## 74     27     175 14.9   81     7  13
## 75     NA     291 14.9   91     7  14
## 76      7      48 14.3   80     7  15
## 77     48     260  6.9   81     7  16
## 78     35     274 10.3   82     7  17
## 79     61     285  6.3   84     7  18
## 80     79     187  5.1   87     7  19
## 81     63     220 11.5   85     7  20
## 82     16       7  6.9   74     7  21
## 83     NA     258  9.7   81     7  22
## 84     NA     295 11.5   82     7  23
## 85     80     294  8.6   86     7  24
## 86    108     223  8.0   85     7  25
## 87     20      81  8.6   82     7  26
## 88     52      82 12.0   86     7  27
## 89     82     213  7.4   88     7  28
## 90     50     275  7.4   86     7  29
## 91     64     253  7.4   83     7  30
## 92     59     254  9.2   81     7  31
## 93     39      83  6.9   81     8   1
## 94      9      24 13.8   81     8   2
## 95     16      77  7.4   82     8   3
## 96     78      NA  6.9   86     8   4
## 97     35      NA  7.4   85     8   5
## 98     66      NA  4.6   87     8   6
## 99    122     255  4.0   89     8   7
## 100    89     229 10.3   90     8   8
## 101   110     207  8.0   90     8   9
## 102    NA     222  8.6   92     8  10
## 103    NA     137 11.5   86     8  11
## 104    44     192 11.5   86     8  12
## 105    28     273 11.5   82     8  13
## 106    65     157  9.7   80     8  14
## 107    NA      64 11.5   79     8  15
## 108    22      71 10.3   77     8  16
## 109    59      51  6.3   79     8  17
## 110    23     115  7.4   76     8  18
## 111    31     244 10.9   78     8  19
## 112    44     190 10.3   78     8  20
## 113    21     259 15.5   77     8  21
## 114     9      36 14.3   72     8  22
## 115    NA     255 12.6   75     8  23
## 116    45     212  9.7   79     8  24
## 117   168     238  3.4   81     8  25
## 118    73     215  8.0   86     8  26
## 119    NA     153  5.7   88     8  27
## 120    76     203  9.7   97     8  28
## 121   118     225  2.3   94     8  29
## 122    84     237  6.3   96     8  30
## 123    85     188  6.3   94     8  31
## 124    96     167  6.9   91     9   1
## 125    78     197  5.1   92     9   2
## 126    73     183  2.8   93     9   3
## 127    91     189  4.6   93     9   4
## 128    47      95  7.4   87     9   5
## 129    32      92 15.5   84     9   6
## 130    20     252 10.9   80     9   7
## 131    23     220 10.3   78     9   8
## 132    21     230 10.9   75     9   9
## 133    24     259  9.7   73     9  10
## 134    44     236 14.9   81     9  11
## 135    21     259 15.5   76     9  12
## 136    28     238  6.3   77     9  13
## 137     9      24 10.9   71     9  14
## 138    13     112 11.5   71     9  15
## 139    46     237  6.9   78     9  16
## 140    18     224 13.8   67     9  17
## 141    13      27 10.3   76     9  18
## 142    24     238 10.3   68     9  19
## 143    16     201  8.0   82     9  20
## 144    13     238 12.6   64     9  21
## 145    23      14  9.2   71     9  22
## 146    36     139 10.3   81     9  23
## 147     7      49 10.3   69     9  24
## 148    14      20 16.6   63     9  25
## 149    30     193  6.9   70     9  26
## 150    NA     145 13.2   77     9  27
## 151    14     191 14.3   75     9  28
## 152    18     131  8.0   76     9  29
## 153    20     223 11.5   68     9  30
introduce(iris)
##   rows columns discrete_columns continuous_columns all_missing_columns
## 1  150       5                1                  4                   0
##   total_missing_values complete_rows total_observations memory_usage
## 1                    0           150                750         7976
help("airquality")
## starting httpd help server ... done
read.csv("emission_transpose.csv")
##     year Afghanistan      Africa   Albania    Algeria Americas..other.
## 1   1751           0           0         0          0                0
## 2   1752           0           0         0          0                0
## 3   1753           0           0         0          0 "rval"
## 4   1754           0           0         0          0                0
## 5   1755           0           0         0          0                0
## 6   1756           0           0         0          0                0
## 7   1757           0           0         0          0                0
## 8   1758           0           0         0          0                0
## 9   1759           0           0         0          0                0
## 10  1760           0           0         0          0                0
## 11  1761           0           0         0          0                0
## 12  1762           0           0         0          0                0
## 13  1763           0           0         0          0                0
## 14  1764           0           0         0          0                0
## 15  1765           0           0         0          0                0
## 16  1766           0           0         0          0                0
## 17  1767           0           0         0          0                0
## 18  1768           0           0         0          0                0
## 19  1769           0           0         0          0                0
## 20  1770           0           0         0          0                0
## 21  1771           0           0         0          0                0
## 22  1772           0           0         0          0                0
## 23  1773           0           0         0          0                0
## 24  1774           0           0         0          0                0
## 25  1775           0           0         0          0                0
## 26  1776           0           0         0          0                0
## 27  1777           0           0         0          0                0
## 28  1778           0           0         0          0                0
## 29  1779           0           0         0          0                0
## 30  1780           0           0         0          0                0
## 31  1781           0           0         0          0                0
## 32  1782           0           0         0          0                0
## 33  1783           0           0         0          0                0
## 34  1784           0           0         0          0                0
## 35  1785           0           0         0          0             3664
## 36  1786           0           0         0          0             7328
## 37  1787           0           0         0          0            10992
## 38  1788           0           0         0          0            14656
## 39  1789           0           0         0          0            18320
## 40  1790           0           0         0          0            21984
## 41  1791           0           0         0          0            25648
## 42  1792           0           0         0          0            29312
## 43  1793           0           0         0          0            32976
## 44  1794           0           0         0          0            36640
## 45  1795           0           0         0          0            40304
## 46  1796           0           0         0          0            43968
## 47  1797           0           0         0          0            47632
## 48  1798           0           0         0          0            51296
## 49  1799           0           0         0          0            54960
## 50  1800           0           0         0          0            58624
## 51  1801           0           0         0          0            62288
## 52  1802           0           0         0          0            65952
## 53  1803           0           0         0          0            69616
## 54  1804           0           0         0          0            73280
## 55  1805           0           0         0          0            76944
## 56  1806           0           0         0          0            80608
## 57  1807           0           0         0          0            84272
## 58  1808           0           0         0          0            87936
## 59  1809           0           0         0          0            91600
## 60  1810           0           0         0          0            95264
## 61  1811           0           0         0          0            98928
## 62  1812           0           0         0          0           102592
## 63  1813           0           0         0          0           106256
## 64  1814           0           0         0          0           109920
## 65  1815           0           0         0          0           113584
## 66  1816           0           0         0          0           117248
## 67  1817           0           0         0          0           120912
## 68  1818           0           0         0          0           124576
## 69  1819           0           0         0          0           128240
## 70  1820           0           0         0          0           131904
## 71  1821           0           0         0          0           135568
## 72  1822           0           0         0          0           139232
## 73  1823           0           0         0          0           142896
## 74  1824           0           0         0          0           146560
## 75  1825           0           0         0          0           150224
## 76  1826           0           0         0          0           153888
## 77  1827           0           0         0          0           157552
## 78  1828           0           0         0          0           161216
## 79  1829           0           0         0          0           164880
## 80  1830           0           0         0          0           168544
## 81  1831           0           0         0          0           172208
## 82  1832           0           0         0          0           175872
## 83  1833           0           0         0          0           179536
## 84  1834           0           0         0          0           183200
## 85  1835           0           0         0          0           186864
## 86  1836           0           0         0          0           190528
## 87  1837           0           0         0          0           194192
## 88  1838           0           0         0          0           197856
## 89  1839           0           0         0          0           201520
## 90  1840           0           0         0          0           205184
## 91  1841           0           0         0          0           208848
## 92  1842           0           0         0          0           212512
## 93  1843           0           0         0          0           216176
## 94  1844           0           0         0          0           219840
## 95  1845           0           0         0          0           223504
## 96  1846           0           0         0          0           252816
## 97  1847           0           0         0          0           285792
## 98  1848           0           0         0          0           322432
## 99  1849           0           0         0          0           370064
## 100 1850           0           0         0          0           428688
## 101 1851           0           0         0          0           498304
## 102 1852           0           0         0          0           582576
## 103 1853           0           0         0          0           688832
## 104 1854           0           0         0          0           813408
## 105 1855           0           0         0          0           959968
## 106 1856           0           0         0          0          1139504
## 107 1857           0           0         0          0          1359344
## 108 1858           0           0         0          0          1623152
## 109 1859           0           0         0          0          1938256
## 110 1860           0           0         0          0          2319312
## 111 1861           0           0         0          0          2777312
## 112 1862           0           0         0          0          3337904
## 113 1863           0           0         0          0          4041392
## 114 1864           0           0         0          0          4884112
## 115 1865           0           0         0          0          5902704
## 116 1866           0           0         0          0          7144800
## 117 1867           0           0         0          0          8738640
## 118 1868           0           0         0          0          9680288
## 119 1869           0           0         0          0         10365456
## 120 1870           0           0         0          0         11589232
## 121 1871           0           0         0          0         13369936
## 122 1872           0           0         0          0         15216592
## 123 1873           0           0         0          0         16828752
## 124 1874           0           0         0          0         18448240
## 125 1875           0           0         0          0         20324208
## 126 1876           0           0         0          0         22181856
## 127 1877           0           0         0          0         24204384
## 128 1878           0           0         0          0         26138976
## 129 1879           0           0         0          0         28322720
## 130 1880           0           0         0          0         33554912
## 131 1881           0           0         0          0         39142512
## 132 1882           0           0         0          0         45756032
## 133 1883           0           0         0          0         53186624
## 134 1884           0       21984         0          0         61789696
## 135 1885           0       58624         0          0         70037360
## 136 1886           0      106256         0          0         78841952
## 137 1887           0      153888         0          0         90083104
## 138 1888           0      234496         0          0        104292096
## 139 1889           0      366400         0          0        117339600
## 140 1890           0      663184         0          0        131138224
## 141 1891           0      959968         0          0        146585648
## 142 1892           0     1439952         0          0        162505728
## 143 1893           0     3238976         0          0        179488368
## 144 1894           0     5671872         0          0        196240176
## 145 1895           0     9009776         0          0        213098240
## 146 1896           0    13267344         0          0        231209392
## 147 1897           0    18045200         0          0        249452448
## 148 1898           0    24094464         0          0        269073168
## 149 1899           0    29612448         0          0        292709632
## 150 1900           0    31942752         0          0        317500256
## 151 1901           0    35852240         0          0        349061952
## 152 1902           0    41678000         0          0        383514544
## 153 1903           0    49573920         0          0        420711472
## 154 1904           0    58488432         0          0        464195824
## 155 1905           0    68747632         0          0        510501456
## 156 1906           0    80465104         0          0        562138208
## 157 1907           0    93395360         0          0        624074464
## 158 1908           0   106798272         0          0        690140048
## 159 1909           0   122183408         0          0        752651552
## 160 1910           0   139594736         0          0        825737360
## 161 1911           0   156460128         0          0        913695344
## 162 1912           0   174413728         0          0       1009787408
## 163 1913           0   194019792         0          0       1122158624
## 164 1914           0   213570896         0          0       1218170080
## 165 1915           0   233176960         0          0       1309018960
## 166 1916           0   256428704         0       3664       1416692928
## 167 1917           0   281772592         0      10992       1539458912
## 168 1918           0   306500928         0      29312       1671381232
## 169 1919           0   331947408         0      47632       1802109088
## 170 1920           0   359998992         0      69616       1978439088
## 171 1921           0   387984624         0      95264       2164643568
## 172 1922           0   411958176         0     120912       2337544064
## 173 1923           0   441006368         0     135568       2523536032
## 174 1924           0   471637408         0     164880       2694773072
## 175 1925           0   503818320         0     197856       2855428480
## 176 1926           0   538256256         0     238160       3025401440
## 177 1927           0   572093296         0     296784       3192402896
## 178 1928           0   606864656         0     370064       3373818528
## 179 1929           0   642672928         0     450672       3569278272
## 180 1930           0   676374400         0     534944       3759960160
## 181 1931           0   705843952         0     633872       3918717616
## 182 1932           0   732473904         0     747456       4074016256
## 183 1933           0   760976160      7328     868368       4236331456
## 184 1934           0   793516144     14656    1007600       4420766224
## 185 1935           0   829430672     32976    1139504       4617493712
## 186 1936           0   868455936    161216    1190800       4824714896
## 187 1937           0   910302480    458000    1260416       5065494656
## 188 1938           0   954325440    806080    1293392       5299587616
## 189 1939           0  1001184336   1238432    1454608       5539345120
## 190 1940           0  1050835200   1930928    1692768       5786925264
## 191 1941           0  1104868208   2557472    2004208       6057456704
## 192 1942           0  1163697392   3301264    2502512       6305538816
## 193 1943           0  1223823632   3762928    2971504       6584739280
## 194 1944           0  1290471792   3916816    3469808       6889162720
## 195 1945           0  1358002976   4037728    4085360       7199415584
## 196 1946           0  1426171696   4521376    4847472       7594306848
## 197 1947           0  1494124240   5448368    5591264       7952649712
## 198 1948           0  1565869024   6151856    6393680       8337267120
## 199 1949       14656  1643223392   7166784    7302352       8596125056
## 200 1950       98928  1738164960   7463568   11087264       8912518784
## 201 1951      190528  1839368304   7866608   15220256       9266490496
## 202 1952      282128  1949793936   8240336   19111424       9625558832
## 203 1953      388384  2061872032   8654368   23112512       9985568816
## 204 1954      494640  2179512080   9156336   27267488      10365954304
## 205 1955      648528  2309041808   9819520   31876800      10774373056
## 206 1956      831728  2444302032  10658576   36874496      11223279008
## 207 1957     1124848  2586054864  12164480   42414464      11684404400
## 208 1958     1454608  2734824256  13366272   47632000      12139568464
## 209 1959     1839179  2882665399  14809888   53289017      12619700279
## 210 1960     2253063  3039232467  16832416   59440258      13110767380
## 211 1961     2743861  3201226721  19111424   65496175      13610105366
## 212 1962     3432455  3367561508  21573632   71157183      14141338876
## 213 1963     4139191  3543896251  23654784   76576337      14676534040
## 214 1964     4977742  3737535480  25669984   82219382      15264001559
## 215 1965     5984658  3951169761  27842736   88807916      15876411904
## 216 1966     7075817  4172251736  30392880   97228778      16513466966
## 217 1967     8357682  4409296748  33071264  105660364      17202440666
## 218 1968     9581072  4666578852  36141696  114710602      17938791516
## 219 1969    10522304  4944494661  39384336  125973568      18716543170
## 220 1970    12192701  5247118415  43125280  141032528      19577194050
## 221 1971    14086633  5578986587  47474448  159682059      20474239932
## 222 1972    15617799  5930864378  53113344  188004699      21425741192
## 223 1973    17255042  6308876953  58400496  226282100      22430167407
## 224 1974    19170720  6697285297  62742336  258158760      23476655535
## 225 1975    21295245  7084592465  67333328  290159967      24538461404
## 226 1976    23279471  7504779055  72279728  329291037      25644500721
## 227 1977    25666216  7937798099  77995568  371135950      26780676071
## 228 1978    27821636  8400306507  84484512  433591216      27977569203
## 229 1979    30056540  8899345945  92065328  479136768      29255379311
## 230 1980    31813562  9435008665  97231568  545553235      30575202005
## 231 1981    33792934  9983549771 104566896  591895222      31872421745
## 232 1982    35888474 10555231206 111869248  631068251      33178160301
## 233 1983    38408565 11149714412 119494032  683572166      34436668651
## 234 1984    41230980 11798923169 127313008  754518696      35726453419
## 235 1985    44732874 12464569744 135186944  827127764      37039541856
## 236 1986    47866946 13154157563 143236752  903208153      38354714082
## 237 1987    50981106 13843743194 150674672  987091655      39741104420
## 238 1988    53838190 14568340496 157995344 1070799688      41175124958
## 239 1989    56603078 15266086644 166972144 1150607954      42676170902
## 240 1990    59205485 15923936796 172482800 1227344595      44139315940
## 241 1991    61631971 16610791075 176766016 1306149946      45610299952
## 242 1992    63013493 17280348214 179279520 1386031717      47114212624
## 243 1993    64347330 17989891459 181613488 1467974158      48656871827
## 244 1994    65629819 18710122956 183537088 1554120833      50253627689
## 245 1995    66860958 19485633617 185621904 1649102794      51873213217
## 246 1996    68026093 20279206383 187637104 1745888914      53561428365
## 247 1997    69110567 21091886368 189179648 1832893260      55328368455
## 248 1998    70140029 21927216344 190931040 1939514090      57177221097
## 249 1999    70949598 22755551690 193913536 2031182001      59067565309
## 250 2000    71717793 23640083267 196932672 2118624684      60974588046
## 251 2001    72529867 24519201998 200153328 2202405358      62905083846
## 252 2002    73593942 25403353837 203901600 2291812079      64857939638
## 253 2003    74781013 26365325805 208192144 2382860272      66861915212
## 254 2004    75722468 27398417645 212354448 2470713375      68873832710
## 255 2005    77042718 28442492860 216604688 2577186565      70950783125
## 256 2006    78685964 29526291008 220499520 2677387726      73065649503
## 257 2007    80954308 30652623962 224423664 2785787700      75233665397
## 258 2008    85152637 31830766884 228794816 2894819537      77460245651
## 259 2009    91912951 33019042498 233169632 3015005401      79617865087
## 260 2010   100365175 34212826270 237764288 3132819477      81871783973
## 261 2011   112591192 35411199285 243000144 3252626365      84166563311
## 262 2012   123333249 36645041459 247906240 3380736316      86541969037
## 263 2013   133333663 37895685023 252966224 3513170946      88948744132
## 264 2014   143122849 39186174236 258678400 3656347996      91391915488
## 265 2015   153230277 40475177493 264626124 3806940494      93827469251
## 266 2016   165488185 41785833882 270898982 3957318519      96242527324
## 267 2017   178502925 43117573841 277278189 4107869896      98641159642
##      Andorra    Angola Anguilla Antarctic.Fisheries Antigua.and.Barbuda
## 1          0         0        0                   0                   0
## 2          0         0        0                   0                   0
## 3          0         0        0                   0                   0
## 4          0         0        0                   0                   0
## 5          0         0        0                   0                   0
## 6          0         0        0                   0                   0
## 7          0         0        0                   0                   0
## 8          0         0        0                   0                   0
## 9          0         0        0                   0                   0
## 10         0         0        0                   0                   0
## 11         0         0        0                   0                   0
## 12         0         0        0                   0                   0
## 13         0         0        0                   0                   0
## 14         0         0        0                   0                   0
## 15         0         0        0                   0                   0
## 16         0         0        0                   0                   0
## 17         0         0        0                   0                   0
## 18         0         0        0                   0                   0
## 19         0         0        0                   0                   0
## 20         0         0        0                   0                   0
## 21         0         0        0                   0                   0
## 22         0         0        0                   0                   0
## 23         0         0        0                   0                   0
## 24         0         0        0                   0                   0
## 25         0         0        0                   0                   0
## 26         0         0        0                   0                   0
## 27         0         0        0                   0                   0
## 28         0         0        0                   0                   0
## 29         0         0        0                   0                   0
## 30         0         0        0                   0                   0
## 31         0         0        0                   0                   0
## 32         0         0        0                   0                   0
## 33         0         0        0                   0                   0
## 34         0         0        0                   0                   0
## 35         0         0        0                   0                   0
## 36         0         0        0                   0                   0
## 37         0         0        0                   0                   0
## 38         0         0        0                   0                   0
## 39         0         0        0                   0                   0
## 40         0         0        0                   0                   0
## 41         0         0        0                   0                   0
## 42         0         0        0                   0                   0
## 43         0         0        0                   0                   0
## 44         0         0        0                   0                   0
## 45         0         0        0                   0                   0
## 46         0         0        0                   0                   0
## 47         0         0        0                   0                   0
## 48         0         0        0                   0                   0
## 49         0         0        0                   0                   0
## 50         0         0        0                   0                   0
## 51         0         0        0                   0                   0
## 52         0         0        0                   0                   0
## 53         0         0        0                   0                   0
## 54         0         0        0                   0                   0
## 55         0         0        0                   0                   0
## 56         0         0        0                   0                   0
## 57         0         0        0                   0                   0
## 58         0         0        0                   0                   0
## 59         0         0        0                   0                   0
## 60         0         0        0                   0                   0
## 61         0         0        0                   0                   0
## 62         0         0        0                   0                   0
## 63         0         0        0                   0                   0
## 64         0         0        0                   0                   0
## 65         0         0        0                   0                   0
## 66         0         0        0                   0                   0
## 67         0         0        0                   0                   0
## 68         0         0        0                   0                   0
## 69         0         0        0                   0                   0
## 70         0         0        0                   0                   0
## 71         0         0        0                   0                   0
## 72         0         0        0                   0                   0
## 73         0         0        0                   0                   0
## 74         0         0        0                   0                   0
## 75         0         0        0                   0                   0
## 76         0         0        0                   0                   0
## 77         0         0        0                   0                   0
## 78         0         0        0                   0                   0
## 79         0         0        0                   0                   0
## 80         0         0        0                   0                   0
## 81         0         0        0                   0                   0
## 82         0         0        0                   0                   0
## 83         0         0        0                   0                   0
## 84         0         0        0                   0                   0
## 85         0         0        0                   0                   0
## 86         0         0        0                   0                   0
## 87         0         0        0                   0                   0
## 88         0         0        0                   0                   0
## 89         0         0        0                   0                   0
## 90         0         0        0                   0                   0
## 91         0         0        0                   0                   0
## 92         0         0        0                   0                   0
## 93         0         0        0                   0                   0
## 94         0         0        0                   0                   0
## 95         0         0        0                   0                   0
## 96         0         0        0                   0                   0
## 97         0         0        0                   0                   0
## 98         0         0        0                   0                   0
## 99         0         0        0                   0                   0
## 100        0         0        0                   0                   0
## 101        0         0        0                   0                   0
## 102        0         0        0                   0                   0
## 103        0         0        0                   0                   0
## 104        0         0        0                   0                   0
## 105        0         0        0                   0                   0
## 106        0         0        0                   0                   0
## 107        0         0        0                   0                   0
## 108        0         0        0                   0                   0
## 109        0         0        0                   0                   0
## 110        0         0        0                   0                   0
## 111        0         0        0                   0                   0
## 112        0         0        0                   0                   0
## 113        0         0        0                   0                   0
## 114        0         0        0                   0                   0
## 115        0         0        0                   0                   0
## 116        0         0        0                   0                   0
## 117        0         0        0                   0                   0
## 118        0         0        0                   0                   0
## 119        0         0        0                   0                   0
## 120        0         0        0                   0                   0
## 121        0         0        0                   0                   0
## 122        0         0        0                   0                   0
## 123        0         0        0                   0                   0
## 124        0         0        0                   0                   0
## 125        0         0        0                   0                   0
## 126        0         0        0                   0                   0
## 127        0         0        0                   0                   0
## 128        0         0        0                   0                   0
## 129        0         0        0                   0                   0
## 130        0         0        0                   0                   0
## 131        0         0        0                   0                   0
## 132        0         0        0                   0                   0
## 133        0         0        0                   0                   0
## 134        0         0        0                   0                   0
## 135        0         0        0                   0                   0
## 136        0         0        0                   0                   0
## 137        0         0        0                   0                   0
## 138        0         0        0                   0                   0
## 139        0         0        0                   0                   0
## 140        0         0        0                   0                   0
## 141        0         0        0                   0                   0
## 142        0         0        0                   0                   0
## 143        0         0        0                   0                   0
## 144        0         0        0                   0                   0
## 145        0         0        0                   0                   0
## 146        0         0        0                   0                   0
## 147        0         0        0                   0                   0
## 148        0         0        0                   0                   0
## 149        0         0        0                   0                   0
## 150        0         0        0                   0                   0
## 151        0         0        0                   0                   0
## 152        0         0        0                   0                   0
## 153        0         0        0                   0                   0
## 154        0         0        0                   0                   0
## 155        0         0        0                   0                   0
## 156        0         0        0                   0                   0
## 157        0         0        0                   0                   0
## 158        0         0        0                   0                   0
## 159        0         0        0                   0                   0
## 160        0         0        0                   0                   0
## 161        0         0        0                   0                   0
## 162        0         0        0                   0                   0
## 163        0         0        0                   0                   0
## 164        0         0        0                   0                   0
## 165        0         0        0                   0                   0
## 166        0         0        0                   0                   0
## 167        0         0        0                   0                   0
## 168        0         0        0                   0                   0
## 169        0         0        0                   0                   0
## 170        0         0        0                   0                   0
## 171        0         0        0                   0                   0
## 172        0         0        0                   0                   0
## 173        0         0        0                   0                   0
## 174        0         0        0                   0                   0
## 175        0         0        0                   0                   0
## 176        0         0        0                   0                   0
## 177        0         0        0                   0                   0
## 178        0         0        0                   0                   0
## 179        0         0        0                   0                   0
## 180        0         0        0                   0                   0
## 181        0         0        0                   0                   0
## 182        0         0        0                   0                   0
## 183        0         0        0                   0                   0
## 184        0         0        0                   0                   0
## 185        0         0        0                   0                   0
## 186        0         0        0                   0                   0
## 187        0         0        0                   0                   0
## 188        0         0        0                   0                   0
## 189        0         0        0                   0                   0
## 190        0         0        0                   0                   0
## 191        0         0        0                   0                   0
## 192        0         0        0                   0                   0
## 193        0         0        0                   0                   0
## 194        0         0        0                   0                   0
## 195        0         0        0                   0                   0
## 196        0         0        0                   0                   0
## 197        0         0        0                   0                   0
## 198        0         0        0                   0                   0
## 199        0         0        0                   0                   0
## 200        0    186864        0                   0                   0
## 201        0    436016        0                   0                   0
## 202        0    747456        0                   0                   0
## 203        0   1022256        0                   0                   0
## 204        0   1370336        0                   0                   0
## 205        0   1784368        0                   0                   0
## 206        0   2286336        0                   0                   0
## 207        0   2905552        0                   0               21984
## 208        0   3499120        0                   0               51296
## 209        0   4117712        0                   0               80608
## 210        0   4666658        0                   0              117248
## 211        0   5120370        0                   0              164880
## 212        0   6299495        0                   0              267472
## 213        0   7449218        0                   0              351744
## 214        0   8672132        0                   0              443344
## 215        0   9858288        0                   0              593568
## 216        0  11410754        0                   0              941648
## 217        0  12402569        0                   0             1505904
## 218        0  14072105        0                   0             2495184
## 219        0  16855199        0                   0             3751936
## 220        0  20433115        0                   0             4213600
## 221        0  23838495        0                   0             4638624
## 222        0  28339025        0                   0             5012352
## 223        0  33212689        0                   0             5342112
## 224        0  38079084        0                   0             5770800
## 225        0  42487896        0                   0             6477952
## 226        0  45767938        0                   0             6880992
## 227        0  49295449        0                   0             7346320
## 228        0  54695257        0                   0             7837296
## 229        0  60184448        0                   0             8244000
## 230        0  65518805        0                   0             8386896
## 231        0  70785579        0                   0             8493152
## 232        0  75420749        0                   0             8786272
## 233        0  80521284        0                   0             8870544
## 234        0  85507145        0                   0             9017104
## 235        0  90183259        0                   0             9266256
## 236        0  94817099        0                   0             9515408
## 237        0 100603128        0                3664             9790208
## 238        0 105652433        0               10992            10076000
## 239        0 110575243        0               18320            10361792
## 240   406704 115663928    51296               29312            10643920
## 241   813408 120726805   102592               43968            10911392
## 242  1220112 125891849   157552               58624            11175200
## 243  1630480 131640232   223504               73280            11446336
## 244  2037184 135505828   289456               87936            11713808
## 245  2462208 146454131   355408               91600            11988608
## 246  2916544 156878956   425024               95264            12281728
## 247  3381872 164226805   494640               98928            12589504
## 248  3872848 171496411   571584              102592            12908272
## 249  4385808 180626189   652192              106256            13238032
## 250  4909760 190141250   740128              109920            13582448
## 251  5433712 199812768   835392              113584            13930528
## 252  5964992 212410314   930656              117248            14300592
## 253  6499936 221398681  1033248              120912            14703632
## 254  7060528 240100613  1154160              128240            15124992
## 255  7635776 259107043  1282400              135568            15553680
## 256  8181712 281209450  1425296              142896            15997024
## 257  8720320 306185554  1575520              153888            16466016
## 258  9258928 331671559  1725744              153888            16946000
## 259  9775552 359237062  1872304              153888            17455296
## 260 10292176 388101534  2022528              153888            17979248
## 261 10783152 418243679  2165424              153888            18492208
## 262 11270464 451429495  2308320              153888            19016160
## 263 11746784 483802609  2443888              153888            19540112
## 264 12208448 518260251  2586784              153888            20071392
## 265 12685687 553021380  2735961              153888            20626024
## 266 13197193 588372383  2888033              153888            21191421
## 267 13717377 623762311  3040078              153888            21756717
##      Argentina   Armenia    Aruba Asia.and.Pacific..other.   Australia
## 1            0         0        0                        0           0
## 2            0         0        0                        0           0
## 3            0         0        0                        0           0
## 4            0         0        0                        0           0
## 5            0         0        0                        0           0
## 6            0         0        0                        0           0
## 7            0         0        0                        0           0
## 8            0         0        0                        0           0
## 9            0         0        0                        0           0
## 10           0         0        0                        0           0
## 11           0         0        0                        0           0
## 12           0         0        0                        0           0
## 13           0         0        0                        0           0
## 14           0         0        0                        0           0
## 15           0         0        0                        0           0
## 16           0         0        0                        0           0
## 17           0         0        0                        0           0
## 18           0         0        0                        0           0
## 19           0         0        0                        0           0
## 20           0         0        0                        0           0
## 21           0         0        0                        0           0
## 22           0         0        0                        0           0
## 23           0         0        0                        0           0
## 24           0         0        0                        0           0
## 25           0         0        0                        0           0
## 26           0         0        0                        0           0
## 27           0         0        0                        0           0
## 28           0         0        0                        0           0
## 29           0         0        0                        0           0
## 30           0         0        0                        0           0
## 31           0         0        0                        0           0
## 32           0         0        0                        0           0
## 33           0         0        0                        0           0
## 34           0         0        0                        0           0
## 35           0         0        0                        0           0
## 36           0         0        0                        0           0
## 37           0         0        0                        0           0
## 38           0         0        0                        0           0
## 39           0         0        0                        0           0
## 40           0         0        0                        0           0
## 41           0         0        0                        0           0
## 42           0         0        0                        0           0
## 43           0         0        0                        0           0
## 44           0         0        0                        0           0
## 45           0         0        0                        0           0
## 46           0         0        0                        0           0
## 47           0         0        0                        0           0
## 48           0         0        0                        0           0
## 49           0         0        0                        0           0
## 50           0         0        0                        0           0
## 51           0         0        0                        0           0
## 52           0         0        0                        0           0
## 53           0         0        0                        0           0
## 54           0         0        0                        0           0
## 55           0         0        0                        0           0
## 56           0         0        0                        0           0
## 57           0         0        0                        0           0
## 58           0         0        0                        0           0
## 59           0         0        0                        0           0
## 60           0         0        0                        0           0
## 61           0         0        0                        0           0
## 62           0         0        0                        0           0
## 63           0         0        0                        0           0
## 64           0         0        0                        0           0
## 65           0         0        0                        0           0
## 66           0         0        0                        0           0
## 67           0         0        0                        0           0
## 68           0         0        0                        0           0
## 69           0         0        0                        0           0
## 70           0         0        0                        0           0
## 71           0         0        0                        0           0
## 72           0         0        0                        0           0
## 73           0         0        0                        0           0
## 74           0         0        0                        0           0
## 75           0         0        0                        0           0
## 76           0         0        0                        0           0
## 77           0         0        0                        0           0
## 78           0         0        0                        0           0
## 79           0         0        0                        0           0
## 80           0         0        0                        0           0
## 81           0         0        0                        0           0
## 82           0         0        0                        0           0
## 83           0         0        0                        0           0
## 84           0         0        0                        0           0
## 85           0         0        0                        0           0
## 86           0         0        0                        0           0
## 87           0         0        0                        0           0
## 88           0         0        0                        0           0
## 89           0         0        0                        0           0
## 90           0         0        0                        0           0
## 91           0         0        0                        0           0
## 92           0         0        0                        0           0
## 93           0         0        0                        0           0
## 94           0         0        0                        0           0
## 95           0         0        0                        0           0
## 96           0         0        0                        0           0
## 97           0         0        0                        0           0
## 98           0         0        0                        0           0
## 99           0         0        0                        0           0
## 100          0         0        0                        0           0
## 101          0         0        0                        0           0
## 102          0         0        0                        0           0
## 103          0         0        0                        0           0
## 104          0         0        0                        0           0
## 105          0         0        0                        0           0
## 106          0         0        0                        0           0
## 107          0         0        0                        0           0
## 108          0         0        0                   436016           0
## 109          0         0        0                  1139504           0
## 110          0         0        0                  2128784      278464
## 111          0         0        0                  3187680      787760
## 112          0         0        0                  4151312     1143168
## 113          0         0        0                  5224864     1542544
## 114          0         0        0                  6129872     1810016
## 115          0         0        0                  7177776     2231376
## 116          0         0        0                  8581088     2927536
## 117          0         0        0                 11428016     3821552
## 118          0         0        0                 14025792     4554352
## 119          0         0        0                 16759136     5195552
## 120          0         0        0                 19400880     5796448
## 121          0         0        0                 22522608     6488944
## 122          0         0        0                 25944784     7196096
## 123          0         0        0                 29839616     8064464
## 124          0         0        0                 34012912     8954816
## 125          0         0        0                 39307392     9782880
## 126          0         0        0                 44993920    10713536
## 127          0         0        0                 51068832    11779760
## 128          0         0        0                 56678416    12747056
## 129          0         0        0                 63955120    14201664
## 130          0         0        0                 72331024    16407392
## 131          0         0        0                 81164928    18173440
## 132          0         0        0                 90544768    20184976
## 133          0         0        0                100591456    22610544
## 134          0         0        0                112752272    25182672
## 135          0         0        0                126745088    28088224
## 136          0         0        0                141639248    30975456
## 137    1084544         0        0                158533952    34009248
## 138    1974896         0        0                177187376    37537680
## 139    3729952         0        0                198229728    40963520
## 140    5100288         0        0                221990768    44510272
## 141    6038272         0        0                248144400    48518688
## 142    7423264         0        0                262313088    52670000
## 143    8976800         0        0                277474720    56634448
## 144   10970016         0        0                295300080    60994608
## 145   13234368         0        0                314792560    65585600
## 146   15539024         0        0                335336608    70088656
## 147   17620176         0        0                357503808    75064368
## 148   19968800         0        0                384577104    80677616
## 149   22889008         0        0                411965504    86463072
## 150   24959168         0        0                445879488    96630672
## 151   27450688         0        0                486297072   108069680
## 152   30264640         0        0                527923776   119464720
## 153   33126224         0        0                571917424   130683888
## 154   36922128         0        0                620370160   142229152
## 155   40904896         0        0                671120224   154276384
## 156   47159344         0        0                727794976   168635600
## 157   53413792         0        0                789024080   184112336
## 158   61031248         0        0                854492432   200867808
## 159   66966928         0        0                919436832   215421216
## 160   75874112         0        0                989694032   232858192
## 161   85818208         0        0               1066583072   252097856
## 162   95296976         0        0               1149547024   272883728
## 163  105442592         0        0               1238977936   295274432
## 164  114115280         0        0               1335777152   319753616
## 165  121054896         0        0               1424955248   341547088
## 166  126041600         0        0               1518944176   360819728
## 167  128272976         0        0               1623133680   381579952
## 168  130793808         0        0               1734325088   404520256
## 169  134520096         0        0               1853119296   426258768
## 170  140411808         0        0               1971832896   451991040
## 171  145951776         0        0               2081555040   475143856
## 172  153250464         0        0               2198312064   499487472
## 173  161695984         0        0               2322803792   524336720
## 174  172655008         0        0               2454715120   551406352
## 175  183892496         0        0               2592976160   579641136
## 176  195151968         0        0               2732237472   607494864
## 177  208525568         0        0               2882175680   636389168
## 178  221265296         0        0               3039126784   662678368
## 179  234397072         0        0               3200350112   686333152
## 180  247166112         0        0               3350215040   708364784
## 181  260012096         0        0               3485478928   727912224
## 182  273114560         0        0               3619988032   748254752
## 183  286348928         0        0               3770955824   769835712
## 184  300590896         0        0               3936099632   792534192
## 185  314591040         0        0               4111396384   817764496
## 186  329690384         0        0               4303595168   844815808
## 187  346405552         0        0               4511831280   873673472
## 188  362757984         0        0               4729399600   901710400
## 189  380140000         0        0               4956838736   933854672
## 190  396008784         0        0               5211277888   962895536
## 191  409953968         0        0               5470729392   997443392
## 192  423437488         0        0               5701085072  1033947824
## 193  437518240         0        0               5942135968  1068939024
## 194  451474416         0        0               6158502496  1103149792
## 195  465144800         0        0               6281979296  1135847328
## 196  478851824         0        0               6383549040  1171270880
## 197  493372256         0        0               6513496464  1209288544
## 198  510768928         0        0               6668516640  1247712912
## 199  526139408         0        0               6856062144  1285364176
## 200  556066960         0        0               7061433008  1340108000
## 201  591036176         0        0               7297387280  1399142368
## 202  627137568         0        0               7552203824  1459349216
## 203  662278992         0        0               7824534288  1518790288
## 204  699036240         0        0               8111601360  1586636576
## 205  738603776         0        0               8415698704  1657318800
## 206  782908864         0        0               8747404288  1730356976
## 207  830526208         0        0               9109176656  1804882736
## 208  874728704         0        0               9478778992  1882500912
## 209  923677503   2395128   719371              10083276580  1966209069
## 210  972442003   4888704  1337932              10751536643  2054327969
## 211 1023568714   7460146  1983484              11492925566  2144831866
## 212 1077208839  10158886  2692427              12272302996  2239655321
## 213 1127241499  13053100  3371514              13120269028  2340589585
## 214 1182911539  16131081  4031790              14041935103  2449465351
## 215 1241716389  19396132  4624177              15038942019  2570318020
## 216 1304789055  22844097  5178121              16104284009  2690537322
## 217 1370265039  26449402  5860480              17290511091  2819681534
## 218 1439274256  30155963  6494991              18593519699  2954178434
## 219 1516523126  34016113  7325396              20032535693  3096302236
## 220 1599171127  38076203  8254157              21667211686  3243782004
## 221 1688015437  42390624  9062478              23405991514  3396411541
## 222 1778076521  46936120  9846261              25232044483  3553747086
## 223 1872044500  51680231 10715723              27185890346  3724574480
## 224 1967513886  56612185 11503800              29162156801  3896763867
## 225 2062345439  61804025 12074512              31145470185  4072477793
## 226 2162011134  67198801 13293639              33227863888  4246552489
## 227 2262662019  72780399 13930399              35416893279  4434157356
## 228 2365138842  78555913 14472687              37642520283  4635977535
## 229 2475649755  84381002 15041559              39965166895  4840847110
## 230 2584169754  90437836 15626993              42333173859  5061378110
## 231 2685989443  96387225 16184618              44678314510  5291510753
## 232 2789196010 102451965 16808087              47028156371  5525399400
## 233 2894174872 108610306 17128511              49408191625  5750184413
## 234 3000457863 114830045 17928653              51889315419  5986545606
## 235 3100824058 121538355 18865185              54443183133  6227533578
## 236 3204757998 128272452 19044721              57037789977  6467255797
## 237 3319369062 135293399 19491729              59717976405  6723106021
## 238 3440498183 142511521 20103617              62611173211  6983984817
## 239 3557300202 149586475 20752145              65602667518  7261470424
## 240 3669190220 156229024 22389953              68637505844  7539894800
## 241 3786035223 162669665 24071729              71745193845  7819767164
## 242 3907051937 168389596 25533665              74900566346  8104679288
## 243 4024616609 170897861 27127505              78104864949  8393914145
## 244 4146626649 173581357 28739665              81381826684  8687928755
## 245 4274225109 176941449 30406785              84738039393  8993338555
## 246 4408868759 179438793 32095889              88203759764  9305699765
## 247 4546426812 182685236 33839953              91761608164  9626494461
## 248 4685781263 186096308 35635313              95142752227  9961178567
## 249 4832291571 189130008 37441665              98637580592 10305241904
## 250 4974008376 192621418 39819601             102000000000 10655436485
## 251 5107318986 196154118 42226849             106000000000 11013105228
## 252 5231701199 199230726 44663409             110000000000 11375314322
## 253 5366321859 202686288 47224545             114000000000 11745040157
## 254 5523355499 206377482 49840641             118000000000 12128245102
## 255 5684780278 210757312 52559329             122000000000 12514760314
## 256 5859397784 215162562 55274353             126000000000 12907442187
## 257 6033630695 220270324 58095633             131000000000 13307857916
## 258 6221671879 225852438 60752033             135000000000 13712906454
## 259 6400539263 230214768 63379121             139000000000 14121579085
## 260 6587225715 234474944 65885297             144000000000 14528331858
## 261 6777473616 239443820 68384145             149000000000 14932578429
## 262 6968518297 245192072 69732497             154000000000 15339724486
## 263 7156946446 250741500 70593537             158000000000 15737888284
## 264 7359617936 256322937 71465569             163000000000 16131352524
## 265 7565985904 262114667 72375930             168000000000 16534347977
## 266 7773049963 268075480 73303961             173000000000 16947717900
## 267 7977373398 273731872 74231827             178000000000 17360810555
##        Austria Azerbaijan   Bahamas   Bahrain Bangladesh Barbados
## 1            0          0         0         0          0        0
## 2            0          0         0         0          0        0
## 3            0          0         0         0          0        0
## 4            0          0         0         0          0        0
## 5            0          0         0         0          0        0
## 6            0          0         0         0          0        0
## 7            0          0         0         0          0        0
## 8            0          0         0         0          0        0
## 9            0          0         0         0          0        0
## 10           0          0         0         0          0        0
## 11           0          0         0         0          0        0
## 12           0          0         0         0          0        0
## 13           0          0         0         0          0        0
## 14           0          0         0         0          0        0
## 15           0          0         0         0          0        0
## 16           0          0         0         0          0        0
## 17           0          0         0         0          0        0
## 18           0          0         0         0          0        0
## 19           0          0         0         0          0        0
## 20           0          0         0         0          0        0
## 21           0          0         0         0          0        0
## 22           0          0         0         0          0        0
## 23           0          0         0         0          0        0
## 24           0          0         0         0          0        0
## 25           0          0         0         0          0        0
## 26           0          0         0         0          0        0
## 27           0          0         0         0          0        0
## 28           0          0         0         0          0        0
## 29           0          0         0         0          0        0
## 30           0          0         0         0          0        0
## 31           0          0         0         0          0        0
## 32           0          0         0         0          0        0
## 33           0          0         0         0          0        0
## 34           0          0         0         0          0        0
## 35           0          0         0         0          0        0
## 36           0          0         0         0          0        0
## 37           0          0         0         0          0        0
## 38           0          0         0         0          0        0
## 39           0          0         0         0          0        0
## 40           0          0         0         0          0        0
## 41           0          0         0         0          0        0
## 42           0          0         0         0          0        0
## 43           0          0         0         0          0        0
## 44           0          0         0         0          0        0
## 45           0          0         0         0          0        0
## 46           0          0         0         0          0        0
## 47           0          0         0         0          0        0
## 48           0          0         0         0          0        0
## 49           0          0         0         0          0        0
## 50           0          0         0         0          0        0
## 51           0          0         0         0          0        0
## 52           0          0         0         0          0        0
## 53           0          0         0         0          0        0
## 54           0          0         0         0          0        0
## 55           0          0         0         0          0        0
## 56           0          0         0         0          0        0
## 57      168544          0         0         0          0        0
## 58      168544          0         0         0          0        0
## 59      168544          0         0         0          0        0
## 60      168544          0         0         0          0        0
## 61      168544          0         0         0          0        0
## 62      168544          0         0         0          0        0
## 63      168544          0         0         0          0        0
## 64      168544          0         0         0          0        0
## 65      168544          0         0         0          0        0
## 66      168544          0         0         0          0        0
## 67      168544          0         0         0          0        0
## 68      168544          0         0         0          0        0
## 69      421360          0         0         0          0        0
## 70      754784          0         0         0          0        0
## 71     1113856          0         0         0          0        0
## 72     1480256          0         0         0          0        0
## 73     1828336          0         0         0          0        0
## 74     2227712          0         0         0          0        0
## 75     2630752          0         0         0          0        0
## 76     3088752          0         0         0          0        0
## 77     3565072          0         0         0          0        0
## 78     4023072          0         0         0          0        0
## 79     4499392          0         0         0          0        0
## 80     4994032          0         0         0          0        0
## 81     5474016          0         0         0          0        0
## 82     5986976          0         0         0          0        0
## 83     6415664          0         0         0          0        0
## 84     7001904          0         0         0          0        0
## 85     7635776          0         0         0          0        0
## 86     8309952          0         0         0          0        0
## 87     9017104          0         0         0          0        0
## 88     9867152          0         0         0          0        0
## 89    10926048          0         0         0          0        0
## 90    12094864          0         0         0          0        0
## 91    13413904          0         0         0          0        0
## 92    14872176          0         0         0          0        0
## 93    16139920          0         0         0          0        0
## 94    17733760          0         0         0          0        0
## 95    19532784          0         0         0          0        0
## 96    21646912          0         0         0          0        0
## 97    23728064          0         0         0          0        0
## 98    26062032          0         0         0          0        0
## 99    28322720          0         0         0          0        0
## 100   30649360          0         0         0          0        0
## 101   32983328          0         0         0          0        0
## 102   35793616          0         0         0          0        0
## 103   39017936          0         0         0          0        0
## 104   42194624          0         0         0          0        0
## 105   45895264          0         0         0          0        0
## 106   50127184          0         0         0          0        0
## 107   55000304          0         0         0          0        0
## 108   62244032          0         0         0          0        0
## 109   68110096          0         0         0          0        0
## 110   74258288          0         0         0          0        0
## 111   80637312          0         0         0          0        0
## 112   86990688          0         0         0          0        0
## 113   92867744          0         0         0          0        0
## 114   97942384          0         0         0          0        0
## 115  103295488          0         0         0          0        0
## 116  106889872          0         0         0          0        0
## 117  111803296          0         0         0          0        0
## 118  117874544          0         0         0          0        0
## 119  124359824          0         0         0          0        0
## 120  131724464          0         0         0          0        0
## 121  141866416          0         0         0          0        0
## 122  151872800          0         0         0          0        0
## 123  162600992          0         0         0          0        0
## 124  171753664          0         0         0          0        0
## 125  179612944          0         0         0          0        0
## 126  187703056          0         0         0          0        0
## 127  194987088          0         0         0          0        0
## 128  202227152          0         0         0          0        0
## 129  211090368          0         0         0          0        0
## 130  234737824          0         0         0          0        0
## 131  245051984          0         0         0          0        0
## 132  255651936          0         0         0          0        0
## 133  267413376          0         0         0          0        0
## 134  278874368          0         0         0          0        0
## 135  290921600          0         0         0          0        0
## 136  302290992          0         0         0          0        0
## 137  314547072          0         0         0          0        0
## 138  326499040          0         0         0          0        0
## 139  339374336          0         0         0          0        0
## 140  352410848          0         0         0          0        0
## 141  367356304          0         0         0          0        0
## 142  381821776          0         0         0          0        0
## 143  399522560          0         0         0          0        0
## 144  417652032          0         0         0          0        0
## 145  438023872          0         0         0          0        0
## 146  459322704          0         0         0          0        0
## 147  482343616          0         0         0          0        0
## 148  506797152          0         0         0          0        0
## 149  531613424          0         0         0          0        0
## 150  559287616          0         0         0          0        0
## 151  587650640          0         0         0          0        0
## 152  613305968          0         0         0          0        0
## 153  638855040          0         0         0          0        0
## 154  665781776          0         0         0          0        0
## 155  693888320          0         0         0          0        0
## 156  727424912          0         0         0          0        0
## 157  769542592          0         0         0          0        0
## 158  828485360          0         0         0          0        0
## 159  870654336          0         0         0          0        0
## 160  928171808          0         0         0          0        0
## 161  976210512          0         0         0          0        0
## 162 1026150832          0         0         0          0        0
## 163 1085778768          0         0         0          0        0
## 164 1134612560          0         0         0          0        0
## 165 1169512160          0         0         0          0        0
## 166 1177543648          0         0         0          0        0
## 167 1180995136          0         0         0          0        0
## 168 1184333040          0         0         0          0        0
## 169 1187348512          0         0         0          0        0
## 170 1201876272          0         0         0          0        0
## 171 1221214864          0         0         0          0        0
## 172 1239802336          0         0         0          0        0
## 173 1257580064          0         0         0          0        0
## 174 1277673440          0         0         0          0        0
## 175 1296663952          0         0         0          0        0
## 176 1315284400          0         0         0          0        0
## 177 1335407088          0         0         0          0        0
## 178 1356599664          0         0         0          0     3664
## 179 1380774736          0         0         0          0     7328
## 180 1399640672          0         0         0          0    14656
## 181 1417744496          0         0         0          0    18320
## 182 1432917120          0         0         0          0    21984
## 183 1447148096          0         0     10992          0    25648
## 184 1460902752          0         0    131904          0    29312
## 185 1474825952          0         0    663184          0    29312
## 186 1488419392          0         0   2612432          0    29312
## 187 1503679952          0         0   5866064          0    29312
## 188 1509469072          0         0   9343200          0    29312
## 189 1515807792          0         0  12527216          0    32976
## 190 1523154112          0         0  15495056          0    32976
## 191 1531130640          0         0  18345648          0    32976
## 192 1539678752          0         0  20961744          0    32976
## 193 1549293088          0         0  23720736          0    32976
## 194 1558683920          0         0  26538352          0    32976
## 195 1563245600          0         0  29601456          0    32976
## 196 1576007312          0         0  32961344          0    32976
## 197 1593638480          0         0  36911136          0    36640
## 198 1618128656          0         0  41487472          0    40304
## 199 1644707312          0         0  46096784          0    43968
## 200 1665606768          0     54960  47478112          0   117248
## 201 1688876832          0    120912  48654256          0   227168
## 202 1710952432          0    197856  49940320          0   315104
## 203 1732672624          0    278464  50936928          0   425024
## 204 1757184784          0    362736  51981168          0   538608
## 205 1786262288          0    490976  53384480          0   666848
## 206 1814475088          0    630208  54439712          0   795088
## 207 1843662512          0    806080  55194496          0   930656
## 208 1871758064          0    985616  56484224          0  1080880
## 209 1899667967   23124155   1245760  57795936    1840006  1231104
## 210 1930452447   47199761   1656128  58371184    4051911  1403312
## 211 1962276492   72027938   2202064  60140896    6342320  1597504
## 212 1996141474   98086038   2927536  61731072    8859076  1857648
## 213 2033090534  126031637   3634688  62925536   11752318  2048176
## 214 2071986970  155751780   4719232  64523040   14726930  2227712
## 215 2110127522  187279024   6034608  65750480   17848235  2432896
## 216 2149336120  220573309   7126480  66399008   21024548  2700368
## 217 2189251691  255387312   8827476  67402944   24395689  3037456
## 218 2231548833  291179353  10455193  68505808   28261352  3477136
## 219 2276187241  328454473  12195958  69777216   32010679  3957120
## 220 2326818943  367660666  14764728  72367664   35813876  4385808
## 221 2378888113  409274337  21488475  75405120   39419942  4869456
## 222 2434959454  453066357  27969773  79083776   42926301  5371424
## 223 2494975235  498717368  35832518  84601760   47476870  5851408
## 224 2552269746  546116800  43212268  90002496   52133457  6342384
## 225 2606483813  595950808  51458387  95751312   56998566  6910304
## 226 2664688093  647702299  57915783 102320864   62562664  7441584
## 227 2720682318  701213153  67624472 109784432   68365280  8031488
## 228 2777909453  756559844  74221516 117544784   74370662  8661696
## 229 2839231463  812362853  81137168 125671536   81004694  9262592
## 230 2891257117  870361083  89109293 133552800   88625647  9936768
## 231 2947090798  927261249  91907733 142071600   96537477 10621936
## 232 3000656901  985237138  94166218 151902112  105115138 11266800
## 233 3052326003 1044042091  96180592 160124128  113328929 11951968
## 234 3106540961 1103374612  98034576 169324432  122429686 12693301
## 235 3160908207 1167363980  99544144 179510352  132640880 13529578
## 236 3214637729 1231524521 100954784 190513344  144074624 14435653
## 237 3272012685 1298386435 102376416 201934032  155904960 15366148
## 238 3324951068 1367083671 103915296 214076594  169415283 16300735
## 239 3378648555 1434338103 105860880 225793340  182831593 17276682
## 240 3440940783 1497391055 107810128 238198721  198321556 18336992
## 241 3506840461 1558191309 109590832 250054050  214224115 19529097
## 242 3567271920 1614367111 111382528 260927894  231932904 20495421
## 243 3628059659 1662775453 113082624 275537676  249300820 21605257
## 244 3689250006 1704722012 114768064 290293317  268228795 22347141
## 245 3753455956 1738033128 116449840 305080404  291000182 23170100
## 246 3821129844 1769274738 118116960 320670029  314949824 24012430
## 247 3888582855 1799078598 119479968 337957760  339897856 24901328
## 248 3955637219 1830743640 121158080 356323302  363808971 26022542
## 249 4021258224 1859313868 122832528 374311415  388826400 27213758
## 250 4087519967 1888820188 124499648 392929330  416331291 28381793
## 251 4157910825 1917612868 126067840 406834667  448275158 29583085
## 252 4230057363 1947254717 127643360 422511845  481460528 30786890
## 253 4307821612 1977881439 129160256 438949048  516601168 32028260
## 254 4385874158 2009959594 130882336 456388154  553763031 33294270
## 255 4465240838 2044246014 132622736 475520663  592678928 34616604
## 256 4541929302 2083354554 134286192 494277583  635634625 35955896
## 257 4615961420 2113812824 135975296 521047635  679401066 37290266
## 258 4689767691 2149263424 137470208 550730082  727708679 38879272
## 259 4757250750 2181120054 139111680 578827612  780001288 40468581
## 260 4829633894 2211752942 140764144 607902442  838283137 41921213
## 261 4899749565 2245149560 142629120 636341272  899880606 43425375
## 262 4967410964 2280646506 144596688 662789496  965483132 44875267
## 263 5035412195 2316226467 147395984 693873386 1033189646 46304794
## 264 5099665521 2353640890 149810560 724962339 1104335325 47558304
## 265 5166369509 2393882319 152327089 757809267 1187836112 48859181
## 266 5233771592 2433570604 154892395 792074360 1273089719 50183850
## 267 5303713347 2471780322 157456745 826530054 1361147180 51506565
##        Belarus     Belgium   Belize    Benin  Bermuda   Bhutan   Bolivia
## 1            0           0        0        0        0        0         0
## 2            0           0        0        0        0        0         0
## 3            0           0        0        0        0        0         0
## 4            0           0        0        0        0        0         0
## 5            0           0        0        0        0        0         0
## 6            0           0        0        0        0        0         0
## 7            0           0        0        0        0        0         0
## 8            0           0        0        0        0        0         0
## 9            0           0        0        0        0        0         0
## 10           0           0        0        0        0        0         0
## 11           0           0        0        0        0        0         0
## 12           0           0        0        0        0        0         0
## 13           0           0        0        0        0        0         0
## 14           0           0        0        0        0        0         0
## 15           0           0        0        0        0        0         0
## 16           0           0        0        0        0        0         0
## 17           0           0        0        0        0        0         0
## 18           0           0        0        0        0        0         0
## 19           0           0        0        0        0        0         0
## 20           0           0        0        0        0        0         0
## 21           0           0        0        0        0        0         0
## 22           0           0        0        0        0        0         0
## 23           0           0        0        0        0        0         0
## 24           0           0        0        0        0        0         0
## 25           0           0        0        0        0        0         0
## 26           0           0        0        0        0        0         0
## 27           0           0        0        0        0        0         0
## 28           0           0        0        0        0        0         0
## 29           0           0        0        0        0        0         0
## 30           0           0        0        0        0        0         0
## 31           0           0        0        0        0        0         0
## 32           0           0        0        0        0        0         0
## 33           0           0        0        0        0        0         0
## 34           0           0        0        0        0        0         0
## 35           0           0        0        0        0        0         0
## 36           0           0        0        0        0        0         0
## 37           0           0        0        0        0        0         0
## 38           0           0        0        0        0        0         0
## 39           0           0        0        0        0        0         0
## 40           0           0        0        0        0        0         0
## 41           0           0        0        0        0        0         0
## 42           0           0        0        0        0        0         0
## 43           0           0        0        0        0        0         0
## 44           0           0        0        0        0        0         0
## 45           0           0        0        0        0        0         0
## 46           0           0        0        0        0        0         0
## 47           0           0        0        0        0        0         0
## 48           0           0        0        0        0        0         0
## 49           0           0        0        0        0        0         0
## 50           0           0        0        0        0        0         0
## 51           0           0        0        0        0        0         0
## 52           0     6397344        0        0        0        0         0
## 53           0     6397344        0        0        0        0         0
## 54           0     6397344        0        0        0        0         0
## 55           0     6397344        0        0        0        0         0
## 56           0     6397344        0        0        0        0         0
## 57           0     6397344        0        0        0        0         0
## 58           0     6397344        0        0        0        0         0
## 59           0     6397344        0        0        0        0         0
## 60           0     6397344        0        0        0        0         0
## 61           0     6397344        0        0        0        0         0
## 62           0     6397344        0        0        0        0         0
## 63           0     6397344        0        0        0        0         0
## 64           0     6397344        0        0        0        0         0
## 65           0     6397344        0        0        0        0         0
## 66           0     6397344        0        0        0        0         0
## 67           0     6397344        0        0        0        0         0
## 68           0     6397344        0        0        0        0         0
## 69           0     6397344        0        0        0        0         0
## 70           0     6397344        0        0        0        0         0
## 71           0     6397344        0        0        0        0         0
## 72           0     6397344        0        0        0        0         0
## 73           0     6397344        0        0        0        0         0
## 74           0     6397344        0        0        0        0         0
## 75           0     6397344        0        0        0        0         0
## 76           0     6397344        0        0        0        0         0
## 77           0     6397344        0        0        0        0         0
## 78           0     6397344        0        0        0        0         0
## 79           0     6397344        0        0        0        0         0
## 80           0    12593168        0        0        0        0         0
## 81           0    17055920        0        0        0        0         0
## 82           0    21771488        0        0        0        0         0
## 83           0    26336832        0        0        0        0         0
## 84           0    30744624        0        0        0        0         0
## 85           0    35504160        0        0        0        0         0
## 86           0    41102752        0        0        0        0         0
## 87           0    47100720        0        0        0        0         0
## 88           0    53223264        0        0        0        0         0
## 89           0    59932048        0        0        0        0         0
## 90           0    67659424        0        0        0        0         0
## 91           0    75049712        0        0        0        0         0
## 92           0    82729456        0        0        0        0         0
## 93           0    89841280        0        0        0        0         0
## 94           0    97641936        0        0        0        0         0
## 95           0   105860288        0        0        0        0         0
## 96           0   114826096        0        0        0        0         0
## 97           0   124143648        0        0        0        0         0
## 98           0   132427952        0        0        0        0         0
## 99           0   141162928        0        0        0        0         0
## 100          0   150495136        0        0        0        0         0
## 101          0   160662736        0        0        0        0         0
## 102          0   172072432        0        0        0        0         0
## 103          0   183859520        0        0        0        0         0
## 104          0   196918016        0        0        0        0         0
## 105          0   210295280        0        0        0        0         0
## 106          0   223507664        0        0        0        0         0
## 107          0   237262320        0        0        0        0         0
## 108          0   251713136        0        0        0        0         0
## 109          0   266610960        0        0        0        0         0
## 110          0   281823888        0        0        0        0         0
## 111          0   298282576        0        0        0        0         0
## 112          0   314627680        0        0        0        0         0
## 113          0   331855808        0        0        0        0         0
## 114          0   349937648        0        0        0        0         0
## 115          0   368997776        0        0        0        0         0
## 116          0   389527168        0        0        0        0         0
## 117          0   411760320        0        0        0        0         0
## 118          0   431861024        0        0        0        0         0
## 119          0   453511600        0        0        0        0         0
## 120          0   478258256        0        0        0        0         0
## 121          0   501975328        0        0        0        0         0
## 122          0   527564704        0        0        0        0         0
## 123          0   555671248        0        0        0        0         0
## 124          0   581586720        0        0        0        0         0
## 125          0   608517120        0        0        0        0         0
## 126          0   634835632        0        0        0        0         0
## 127          0   659886400        0        0        0        0         0
## 128          0   687124576        0        0        0        0         0
## 129          0   714857392        0        0        0        0         0
## 130          0   745283248        0        0        0        0         0
## 131          0   775914288        0        0        0        0         0
## 132          0   808351680        0        0        0        0         0
## 133          0   842734656        0        0        0        0         0
## 134          0   876604672        0        0        0        0         0
## 135          0   909686928        0        0        0        0         0
## 136          0   941790896        0        0        0        0         0
## 137          0   975759840        0        0        0        0         0
## 138          0  1011813600        0        0        0        0         0
## 139          0  1048647792        0        0        0        0         0
## 140          0  1088471808        0        0        0        0         0
## 141          0  1126251312        0        0        0        0         0
## 142          0  1163979520        0        0        0        0         0
## 143          0  1200055264        0        0        0        0         0
## 144          0  1239886608        0        0        0        0         0
## 145          0  1280018400        0        0        0        0         0
## 146          0  1322297296        0        0        0        0         0
## 147          0  1366041792        0        0        0        0         0
## 148          0  1411127312        0        0        0        0         0
## 149          0  1458253680        0        0        0        0         0
## 150          0  1507919200        0        0        0        0         0
## 151          0  1554627872        0        0        0        0         0
## 152          0  1603483648        0        0        0        0         0
## 153          0  1656113344        0        0        0        0         0
## 154          0  1706464032        0        0        0        0         0
## 155          0  1756730448        0        0        0        0         0
## 156          0  1814225936        0        0        0        0         0
## 157          0  1872549488        0        0        0        0         0
## 158          0  1930396720        0        0        0        0         0
## 159          0  1988159680        0        0        0        0         0
## 160          0  2049447408        0        0        0        0         0
## 161          0  2111134512        0        0        0        0         0
## 162          0  2175910368        0        0        0        0         0
## 163          0  2243925200        0        0        0        0         0
## 164          0  2284500336        0        0        0        0         0
## 165          0  2318919952        0        0        0        0         0
## 166          0  2364712624        0        0        0        0         0
## 167          0  2400960576        0        0        0        0         0
## 168          0  2434684032        0        0        0        0         0
## 169          0  2479553376        0        0        0        0         0
## 170          0  2534707568        0        0        0        0         0
## 171          0  2585241456        0        0        0        0         0
## 172          0  2641150432        0        0        0        0         0
## 173          0  2713034448        0        0        0        0         0
## 174          0  2789289616        0        0        0        0         0
## 175          0  2867329152        0        0        0        0         0
## 176          0  2945013280        0        0        0        0         0
## 177          0  3035488432        0        0        0        0         0
## 178          0  3123746864        0        0        0        0      3664
## 179          0  3220714624        0        0        0        0     14656
## 180          0  3314399440        0        0        0        0     25648
## 181          0  3398532208        0        0        0        0     32976
## 182          0  3466253920        0        0        0        0     47632
## 183          0  3538918368        0        0        0        0     91600
## 184          0  3613883808        0        0        0        0    164880
## 185          0  3685533328        0        0        0        0    234496
## 186          0  3760546400        0        0        0        0    278464
## 187          0  3850856672        0        0        0        0    333424
## 188          0  3929988080        0        0        0        0    399376
## 189          0  4003707760        0        0        0        0    483648
## 190          0  4065812560        0        0        0        0    611888
## 191          0  4130998784        0        0        0        0    718144
## 192          0  4192077664        0        0        0        0    853712
## 193          0  4249932224        0        0        0        0   1000272
## 194          0  4283073104        0        0        0        0   1139504
## 195          0  4321830896        0        0        0        0   1308048
## 196          0  4378249168        0        0        0        0   1469264
## 197          0  4460289792        0        0        0        0   1637808
## 198          0  4545360544        0        0        0        0   1842992
## 199          0  4626144416        0        0        0        0   2132448
## 200          0  4702359280    18320        0    43968        0   2627088
## 201          0  4791826832    43968        0   102592        0   3088752
## 202          0  4875307408    69616        0   208848        0   3601712
## 203          0  4957699776    98928        0   300448        0   4140320
## 204          0  5043452032   128240        0   384720        0   4928080
## 205          0  5135488048   157552        0   494640        0   5858736
## 206          0  5232287264   186864        0   630208        0   6965264
## 207          0  5328793360   216176        0   769440        0   7969200
## 208          0  5416494864   256480   124576   916000        0   8885200
## 209   35940692  5504804964   296784   227168  1051568        0   9834057
## 210   73359844  5595713047   340752   388384  1209120        0  10837845
## 211  111948394  5688411341   377392   516624  1384992        0  11878242
## 212  152448239  5786429644   447008   652192  1542544        0  12977234
## 213  195881636  5892106034   509296   773104  1692768        0  14189781
## 214  242072996  5995660026   593568   916000  1894288        0  15669769
## 215  291072694  6100990820   677840  1066224  2073824        0  17179099
## 216  342818442  6206087564   758448  1179808  2275344        0  18867936
## 217  396925983  6313448570   879360  1322704  2487856        0  20758322
## 218  452553483  6431886146   981952  1476592  2711360        0  22934441
## 219  510485978  6555377903  1117520  1678112  2909216        0  25480594
## 220  571419588  6680868360  1238432  1960240  3136384     3664  27964311
## 221  636082550  6802238945  1381328  2253360  3367216     7328  31023246
## 222  704117542  6932876783  1538880  2641744  3620032    10992  34591387
## 223  775026346  7071516174  1685440  3022800  4045056    14656  38045856
## 224  848635203  7206466618  1839328  3429504  4488400    18320  41558800
## 225  926007945  7328290039  2015200  3872848  4946400    21984  45613778
## 226 1006336028  7457968153  2191072  4132992  5415392    25648  50188605
## 227 1089372375  7584168095  2388928  4429776  5869728    32976  54663462
## 228 1175238727  7719619065  2605104  4792512  6294752    43968  59683606
## 229 1261796671  7859406373  2813952  5158912  6756416    65952  64413687
## 230 1351740934  7994243029  3004480  5666371  7192432    87936  69072656
## 231 1439955157  8117817495  3187680  6084017  7580816   113584  73853694
## 232 1529828320  8234920282  3359888  6561357  7976528   146560  78191554
## 233 1620961234  8336122975  3532096  7001008  8427200   175872  82469692
## 234 1712889379  8441090430  3704304  7486607  8870544   227168  86499040
## 235 1812033747  8545095873  3894832  8212347  9321216   289456  90608798
## 236 1911411201  8647463671  4100016  8877780  9742576   344416  94372479
## 237 2014958885  8750053507  4327184  9394970 10314160   447008  98384280
## 238 2121330430  8849797636  4576336  9933021 10959024   556928 102671058
## 239 2225433360  8956591203  4876784 10542675 11739456   619216 107639504
## 240 2329568044  9077075603  5188224 11223359 12241424   747456 113366275
## 241 2426608103  9200620312  5547296 12015488 12780032   923575 119340292
## 242 2516598549  9323278123  5902704 12880431 13241696  1128952 125962278
## 243 2594214128  9444835407  6280096 13967115 13780304  1301980 133754104
## 244 2658587085  9569773596  6653824 15189369 14311584  1503588 142346540
## 245 2716534574  9695856560  7031216 16462928 14842864  1739729 152145509
## 246 2775736848  9825440185  7338992 17694029 15370480  2025040 161920048
## 247 2838282684  9949487009  7727376 18892180 15894432  2401878 172803111
## 248 2897690502 10079772122  8097440 20086545 16414720  2769041 183726961
## 249 2954681709 10204517824  8445520 21628865 16927680  3139802 194103006
## 250 3010139744 10331312613  8841232 23202863 17444304  3521489 205107699
## 251 3065700074 10457441619  9288240 24992635 17971920  3890502 213668303
## 252 3121377231 10583886245  9720592 27045815 18528848  4292212 223996404
## 253 3178489518 10711839430 10152944 29373394 19089440  4653338 235007571
## 254 3239256709 10840880312 10544992 31854460 19672016  4943817 246025897
## 255 3301306104 10966518514 10966352 34221541 20254592  5321940 258096381
## 256 3366167714 11090549403 11409696 37932883 20906784  5694946 273017224
## 257 3430431637 11211160804 11886016 42252514 21635920  6066973 285194073
## 258 3496821696 11331819814 12322032 46507328 22284448  6467797 298234712
## 259 3558759528 11439462181 12908272 51015261 22760768  6835598 311981298
## 260 3622621918 11553044213 13446880 55954206 23368992  7299755 326922681
## 261 3685394664 11657202855 14047776 61075490 23812336  7967219 342773919
## 262 3749069421 11758597830 14524096 66381011 24288656  8721026 361259630
## 263 3813493118 11860568272 15037056 72033650 24746656  9574170 379831255
## 264 3877273104 11956959313 15531696 78191884 25321904 10493774 399861054
## 265 3936238856 12057188803 16053957 84542220 25922436 11481731 419862979
## 266 3996748059 12157432512 16601391 91290139 26534625 12596312 440425242
## 267 4058119852 12257548524 17162217 98792204 27146704 13762670 461310418
##     Bonaire.Sint.Eustatius.and.Saba Bosnia.and.Herzegovina  Botswana
## 1                                 0                      0         0
## 2                                 0                      0         0
## 3                                 0                      0         0
## 4                                 0                      0         0
## 5                                 0                      0         0
## 6                                 0                      0         0
## 7                                 0                      0         0
## 8                                 0                      0         0
## 9                                 0                      0         0
## 10                                0                      0         0
## 11                                0                      0         0
## 12                                0                      0         0
## 13                                0                      0         0
## 14                                0                      0         0
## 15                                0                      0         0
## 16                                0                      0         0
## 17                                0                      0         0
## 18                                0                      0         0
## 19                                0                      0         0
## 20                                0                      0         0
## 21                                0                      0         0
## 22                                0                      0         0
## 23                                0                      0         0
## 24                                0                      0         0
## 25                                0                      0         0
## 26                                0                      0         0
## 27                                0                      0         0
## 28                                0                      0         0
## 29                                0                      0         0
## 30                                0                      0         0
## 31                                0                      0         0
## 32                                0                      0         0
## 33                                0                      0         0
## 34                                0                      0         0
## 35                                0                      0         0
## 36                                0                      0         0
## 37                                0                      0         0
## 38                                0                      0         0
## 39                                0                      0         0
## 40                                0                      0         0
## 41                                0                      0         0
## 42                                0                      0         0
## 43                                0                      0         0
## 44                                0                      0         0
## 45                                0                      0         0
## 46                                0                      0         0
## 47                                0                      0         0
## 48                                0                      0         0
## 49                                0                      0         0
## 50                                0                      0         0
## 51                                0                      0         0
## 52                                0                      0         0
## 53                                0                      0         0
## 54                                0                      0         0
## 55                                0                      0         0
## 56                                0                      0         0
## 57                                0                      0         0
## 58                                0                      0         0
## 59                                0                      0         0
## 60                                0                      0         0
## 61                                0                      0         0
## 62                                0                      0         0
## 63                                0                      0         0
## 64                                0                      0         0
## 65                                0                      0         0
## 66                                0                      0         0
## 67                                0                      0         0
## 68                                0                      0         0
## 69                                0                      0         0
## 70                                0                      0         0
## 71                                0                      0         0
## 72                                0                      0         0
## 73                                0                      0         0
## 74                                0                      0         0
## 75                                0                      0         0
## 76                                0                      0         0
## 77                                0                      0         0
## 78                                0                      0         0
## 79                                0                      0         0
## 80                                0                      0         0
## 81                                0                      0         0
## 82                                0                      0         0
## 83                                0                      0         0
## 84                                0                      0         0
## 85                                0                      0         0
## 86                                0                      0         0
## 87                                0                      0         0
## 88                                0                      0         0
## 89                                0                      0         0
## 90                                0                      0         0
## 91                                0                      0         0
## 92                                0                      0         0
## 93                                0                      0         0
## 94                                0                      0         0
## 95                                0                      0         0
## 96                                0                      0         0
## 97                                0                      0         0
## 98                                0                      0         0
## 99                                0                      0         0
## 100                               0                      0         0
## 101                               0                      0         0
## 102                               0                      0         0
## 103                               0                      0         0
## 104                               0                      0         0
## 105                               0                      0         0
## 106                               0                      0         0
## 107                               0                      0         0
## 108                               0                      0         0
## 109                               0                      0         0
## 110                               0                      0         0
## 111                               0                      0         0
## 112                               0                      0         0
## 113                               0                      0         0
## 114                               0                      0         0
## 115                               0                      0         0
## 116                               0                      0         0
## 117                               0                      0         0
## 118                               0                      0         0
## 119                               0                      0         0
## 120                               0                      0         0
## 121                               0                      0         0
## 122                               0                      0         0
## 123                               0                      0         0
## 124                               0                      0         0
## 125                               0                      0         0
## 126                               0                      0         0
## 127                               0                      0         0
## 128                               0                      0         0
## 129                               0                      0         0
## 130                               0                      0         0
## 131                               0                      0         0
## 132                               0                      0         0
## 133                               0                      0         0
## 134                               0                      0         0
## 135                               0                      0         0
## 136                               0                      0         0
## 137                               0                      0         0
## 138                               0                      0         0
## 139                               0                      0         0
## 140                               0                      0         0
## 141                               0                      0         0
## 142                               0                      0         0
## 143                               0                      0         0
## 144                               0                      0         0
## 145                               0                      0         0
## 146                               0                      0         0
## 147                               0                      0         0
## 148                               0                      0         0
## 149                               0                      0         0
## 150                               0                      0         0
## 151                               0                      0         0
## 152                               0                      0         0
## 153                               0                      0         0
## 154                               0                      0         0
## 155                               0                      0         0
## 156                               0                      0         0
## 157                               0                      0         0
## 158                               0                      0         0
## 159                               0                      0         0
## 160                               0                      0         0
## 161                               0                      0         0
## 162                               0                      0         0
## 163                               0                      0         0
## 164                               0                      0         0
## 165                               0                      0         0
## 166                               0                      0         0
## 167                               0                      0         0
## 168                               0                      0         0
## 169                               0                      0         0
## 170                               0                      0         0
## 171                               0                      0         0
## 172                               0                      0         0
## 173                               0                      0         0
## 174                               0                      0         0
## 175                               0                      0         0
## 176                               0                      0         0
## 177                               0                      0         0
## 178                               0                      0         0
## 179                               0                      0         0
## 180                               0                      0         0
## 181                               0                      0         0
## 182                               0                      0         0
## 183                               0                      0         0
## 184                               0                      0         0
## 185                               0                      0         0
## 186                               0                      0         0
## 187                               0                      0         0
## 188                               0                      0         0
## 189                               0                      0         0
## 190                               0                      0         0
## 191                               0                      0         0
## 192                               0                      0         0
## 193                               0                      0         0
## 194                               0                      0         0
## 195                               0                      0         0
## 196                               0                      0         0
## 197                               0                      0         0
## 198                               0                      0         0
## 199                               0                      0         0
## 200                               0                      0         0
## 201                               0                      0         0
## 202                               0                      0         0
## 203                               0                      0         0
## 204                               0                      0         0
## 205                               0                      0         0
## 206                               0                      0         0
## 207                               0                      0         0
## 208                               0                      0         0
## 209                          541339                4817123         0
## 210                         1006817               10078982         0
## 211                         1492607               15594365         0
## 212                         2026098               21254123         0
## 213                         2537124               27550391         0
## 214                         3033993               34683795         0
## 215                         3479775               42023312         0
## 216                         3896627               49296128         0
## 217                         4410115               56642235         0
## 218                         4887595               64499182         0
## 219                         5512490               72645447         0
## 220                         6211399               83291009         0
## 221                         6819675               94763758         0
## 222                         7409485              105515941     21984
## 223                         8063770              118359842     73280
## 224                         8656812              131259118    161216
## 225                         9086283              144717892    348080
## 226                        10003698              158608109    941648
## 227                        10482871              172114680   1722080
## 228                        10890953              187207493   2553808
## 229                        11319038              203623296   3495456
## 230                        11759588              219763923   4481072
## 231                        12179211              237329243   5488672
## 232                        12648382              253464521   6587872
## 233                        12889507              270839526   7617456
## 234                        13491628              289162970   8661696
## 235                        14196385              307854053   9819520
## 236                        14331489              327373972  10885744
## 237                        14451599              346770318  12124176
## 238                        14569917              366844382  13424896
## 239                        14795145              386874005  14853856
## 240                        15036344              406888111  17554224
## 241                        15228814              421039571  20188640
## 242                        15387386              436067132  22965952
## 243                        15632170              448646569  26160960
## 244                        15866850              451850955  29191088
## 245                        16099086              455253742  32235872
## 246                        16316328              459492203  34991200
## 247                        16543674              467857478  37790496
## 248                        16556223              478408772  41132064
## 249                        16650258              488742720  44290432
## 250                        16899768              502444014  48068016
## 251                        17153842              515707791  51915216
## 252                        17398790              529880393  55890656
## 253                        17643900              544230589  59715872
## 254                        17901070              559693043  63610704
## 255                        18155959              575739027  67703392
## 256                        18421603              593125746  71836384
## 257                        18720658              610600078  76064640
## 258                        19008304              630558726  80567696
## 259                        19302632              651095820  84326960
## 260                        19505369              672241461  88980546
## 261                        19764006              696002750  93118913
## 262                        19764006              718138947  97304533
## 263                        19764006              739939996 102489293
## 264                        19764006              762057602 109476098
## 265                        20100610              786821769 116579065
## 266                        20443748              812823467 123677461
## 267                        20786824              839470358 131552447
##          Brazil British.Virgin.Islands    Brunei   Bulgaria Burkina.Faso
## 1             0                      0         0          0            0
## 2             0                      0         0          0            0
## 3             0                      0         0          0            0
## 4             0                      0         0          0            0
## 5             0                      0         0          0            0
## 6             0                      0         0          0            0
## 7             0                      0         0          0            0
## 8             0                      0         0          0            0
## 9             0                      0         0          0            0
## 10            0                      0         0          0            0
## 11            0                      0         0          0            0
## 12            0                      0         0          0            0
## 13            0                      0         0          0            0
## 14            0                      0         0          0            0
## 15            0                      0         0          0            0
## 16            0                      0         0          0            0
## 17            0                      0         0          0            0
## 18            0                      0         0          0            0
## 19            0                      0         0          0            0
## 20            0                      0         0          0            0
## 21            0                      0         0          0            0
## 22            0                      0         0          0            0
## 23            0                      0         0          0            0
## 24            0                      0         0          0            0
## 25            0                      0         0          0            0
## 26            0                      0         0          0            0
## 27            0                      0         0          0            0
## 28            0                      0         0          0            0
## 29            0                      0         0          0            0
## 30            0                      0         0          0            0
## 31            0                      0         0          0            0
## 32            0                      0         0          0            0
## 33            0                      0         0          0            0
## 34            0                      0         0          0            0
## 35            0                      0         0          0            0
## 36            0                      0         0          0            0
## 37            0                      0         0          0            0
## 38            0                      0         0          0            0
## 39            0                      0         0          0            0
## 40            0                      0         0          0            0
## 41            0                      0         0          0            0
## 42            0                      0         0          0            0
## 43            0                      0         0          0            0
## 44            0                      0         0          0            0
## 45            0                      0         0          0            0
## 46            0                      0         0          0            0
## 47            0                      0         0          0            0
## 48            0                      0         0          0            0
## 49            0                      0         0          0            0
## 50            0                      0         0          0            0
## 51            0                      0         0          0            0
## 52            0                      0         0          0            0
## 53            0                      0         0          0            0
## 54            0                      0         0          0            0
## 55            0                      0         0          0            0
## 56            0                      0         0          0            0
## 57            0                      0         0          0            0
## 58            0                      0         0          0            0
## 59            0                      0         0          0            0
## 60            0                      0         0          0            0
## 61            0                      0         0          0            0
## 62            0                      0         0          0            0
## 63            0                      0         0          0            0
## 64            0                      0         0          0            0
## 65            0                      0         0          0            0
## 66            0                      0         0          0            0
## 67            0                      0         0          0            0
## 68            0                      0         0          0            0
## 69            0                      0         0          0            0
## 70            0                      0         0          0            0
## 71            0                      0         0          0            0
## 72            0                      0         0          0            0
## 73            0                      0         0          0            0
## 74            0                      0         0          0            0
## 75            0                      0         0          0            0
## 76            0                      0         0          0            0
## 77            0                      0         0          0            0
## 78            0                      0         0          0            0
## 79            0                      0         0          0            0
## 80            0                      0         0          0            0
## 81            0                      0         0          0            0
## 82            0                      0         0          0            0
## 83            0                      0         0          0            0
## 84            0                      0         0          0            0
## 85            0                      0         0          0            0
## 86            0                      0         0          0            0
## 87            0                      0         0          0            0
## 88            0                      0         0          0            0
## 89            0                      0         0          0            0
## 90            0                      0         0          0            0
## 91            0                      0         0          0            0
## 92            0                      0         0          0            0
## 93            0                      0         0          0            0
## 94            0                      0         0          0            0
## 95            0                      0         0          0            0
## 96            0                      0         0          0            0
## 97            0                      0         0          0            0
## 98            0                      0         0          0            0
## 99            0                      0         0          0            0
## 100           0                      0         0          0            0
## 101           0                      0         0          0            0
## 102           0                      0         0          0            0
## 103           0                      0         0          0            0
## 104           0                      0         0          0            0
## 105           0                      0         0          0            0
## 106           0                      0         0          0            0
## 107           0                      0         0          0            0
## 108           0                      0         0          0            0
## 109           0                      0         0          0            0
## 110           0                      0         0          0            0
## 111           0                      0         0          0            0
## 112           0                      0         0          0            0
## 113           0                      0         0          0            0
## 114           0                      0         0          0            0
## 115           0                      0         0          0            0
## 116           0                      0         0          0            0
## 117           0                      0         0          0            0
## 118           0                      0         0          0            0
## 119           0                      0         0          0            0
## 120           0                      0         0          0            0
## 121           0                      0         0          0            0
## 122           0                      0         0          0            0
## 123           0                      0         0          0            0
## 124           0                      0         0          0            0
## 125           0                      0         0          0            0
## 126           0                      0         0          0            0
## 127           0                      0         0          0            0
## 128           0                      0         0          0            0
## 129           0                      0         0          0            0
## 130           0                      0         0          0            0
## 131           0                      0         0       3664            0
## 132           0                      0         0       7328            0
## 133           0                      0         0      14656            0
## 134           0                      0         0      25648            0
## 135           0                      0         0      32976            0
## 136           0                      0         0      40304            0
## 137           0                      0         0      51296            0
## 138           0                      0         0      69616            0
## 139           0                      0         0      95264            0
## 140           0                      0         0     128240            0
## 141           0                      0         0     168544            0
## 142           0                      0         0     216176            0
## 143           0                      0         0     278464            0
## 144           0                      0         0     359072            0
## 145           0                      0         0     443344            0
## 146           0                      0         0     549600            0
## 147           0                      0         0     659520            0
## 148           0                      0         0     806080            0
## 149           0                      0         0     952640            0
## 150           0                      0         0    1168816            0
## 151     2103136                      0         0    1439952            0
## 152     4609312                      0         0    1678112            0
## 153     7049536                      0         0    1912608            0
## 154     9669296                      0         0    2213056            0
## 155    12468592                      0         0    2572128            0
## 156    15674592                      0         0    2887232            0
## 157    19126080                      0         0    3341568            0
## 158    22720464                      0         0    3938800            0
## 159    26329504                      0         0    4543360            0
## 160    30528448                      0         0    5177232            0
## 161    35134096                      0         0    6074912            0
## 162    40725360                      0         0    6972592            0
## 163    46759968                      0         0    7760352            0
## 164    50867312                      0         0    8943824            0
## 165    54011024                      0         0    9705936            0
## 166    56890928                      0         0   10629264            0
## 167    59389776                      0         0   11768768            0
## 168    61712752                      0         0   13190400            0
## 169    64783184                      0         0   14025792            0
## 170    68428864                      0         0   15124992            0
## 171    71319760                      0         0   16491664            0
## 172    75101008                      0         0   18001232            0
## 173    79717648                      0         0   19606064            0
## 174    84821600                      0         0   21449056            0
## 175    90196688                      0         0   23259072            0
## 176    95674368                      0         0   25039776            0
## 177   101749280                      0         0   26857120            0
## 178   107677632                      0         0   28996896            0
## 179   114023680                      0         0   31481088            0
## 180   119538000                      0         0   33884672            0
## 181   123707632                      0         0   36160016            0
## 182   127877264                      0         0   38798096            0
## 183   132600160                      0      3664   41146720            0
## 184   137224128                      0     47632   43586944            0
## 185   142734784                      0     73280   46060144            0
## 186   147882704                      0    150224   48573648            0
## 187   153972272                      0    355408   51361952            0
## 188   160069168                      0    571584   54534976            0
## 189   166019504                      0   3198672   58019440            0
## 190   172508448                      0   6159184   62119456            0
## 191   178792208                      0   8126752   66541904            0
## 192   184661936                      0   9372512   71891344            0
## 193   191139888                      0  11244816   77702448            0
## 194   197038928                      0  13740000   82091920            0
## 195   203864960                      0  14659664   87302128            0
## 196   211328528                      0  15604976   92277840            0
## 197   220279680                      0  20958080   98187872            0
## 198   228131632                      0  21038688  104409344            0
## 199   235503600                      0  32507008  111861920            0
## 200   255168288                      0  32921040  119362128            0
## 201   276833520                      0  33221488  127529184            0
## 202   301774368                      0  33543920  136960320            0
## 203   327001008                      0  33888336  147549280            0
## 204   356686736                      0  34247408  158944320            0
## 205   390721632                      0  34547856  171039184            0
## 206   427343312                      0  34844640  184009744            0
## 207   463331120                      0  35137760  198401936            0
## 208   502400352                      0  35456528  214032560         3664
## 209   541417432                      0  35782624  233654813        10992
## 210   588269253                      0  36116048  255925515        54960
## 211   637413757                      0  36420160  281870554       146560
## 212   691045205                   3664  36790224  312574565       230832
## 213   746596143                   7328  37145632  346948627       318768
## 214   803262819                  14656  37486384  389766692       428688
## 215   859592436                  21984  37819808  436035830       531280
## 216   923804071                  32976  38310784  484751836       633872
## 217   989883479                  36640  38750464  539859502       736464
## 218  1067154853                  51296  39179152  599323010       839056
## 219  1151287562                  69616  39666464  665630721       959968
## 220  1244818056                  87936  47870160  726804693      1102864
## 221  1347175998                 109920  55381360  791024376      1253088
## 222  1461190326                 131904  64834480  857099520      1414304
## 223  1593209936                 157552  74807888  925810735      1582848
## 224  1736137249                 183200  82985936  996938970      1788032
## 225  1886650908                 208848  90061120 1069850634      2007872
## 226  2041048983                 234496  96081072 1142802809      2216720
## 227  2203127321                 263808 102471088 1218582913      2465872
## 228  2379058800                 293120 112004816 1299770117      2813952
## 229  2566213859                 322432 119439072 1378674523      3220656
## 230  2751972189                 351744 126316400 1455899204      3653008
## 231  2922440099                 395712 127785664 1535957101      4209936
## 232  3093229445                 432352 129877808 1625768773      4785184
## 233  3258656405                 472656 132581840 1715794616      5378752
## 234  3426261994                 512960 134498112 1802800884      5844080
## 235  3606198798                 560592 137092224 1891983869      6320400
## 236  3803425015                 615552 139389552 1983112120      6800384
## 237  4009213756                 677840 142705472 2074340173      7317008
## 238  4216776724                 743792 148417648 2161205373      7870272
## 239  4428890368                 809744 154760032 2247642579      8691008
## 240  4635811488                 875696 160948528 2326315521      9273584
## 241  4853038960                 941648 166254000 2386373570      9900128
## 242  5071422464                1011264 171464208 2443213566     10530336
## 243  5299755680                1084544 176428928 2500696978     11156880
## 244  5539226400                1165152 181118848 2556633118     11801744
## 245  5794809776                1249424 185904032 2614170105     12425614
## 246  6076004560                1344688 190645248 2672122648     13130074
## 247  6372589816                1443616 195576992 2727304268     13932766
## 248  6680895536                1546208 200735904 2779830528     14790395
## 249  6997177976                1648800 204539136 2825926800     15704568
## 250  7321404016                1751392 209130128 2871140726     16735464
## 251  7654391416                1857648 213519600 2920064041     17727150
## 252  7981826248                1971232 217773504 2966230405     18728226
## 253  8299334696                2092144 222243584 3016644866     19802536
## 254  8633009840                2216720 227116704 3066153506     20902445
## 255  8975096312                2348624 231986160 3116744801     22024292
## 256  9317042680                2491520 236723712 3168570371     23380526
## 257  9673961432                2641744 245033664 3224207405     25022393
## 258 10054306360                2802960 254025120 3278180198     26885164
## 259 10414397136                2967840 261770816 3323887343     28751993
## 260 10825637328                3140048 269831616 3371680146     30645934
## 261 11255832230                3315920 279376336 3424796614     32787172
## 262 11715895322                3491792 288869760 3473066105     35337514
## 263 12209488834                3667664 296498208 3515652108     38329926
## 264 12729015183                3847200 305423712 3560794577     41132032
## 265 13241097065                4034627 315779037 3608927268     43913288
## 266 13714838441                4225692 325743772 3654214655     46883100
## 267 14190905220                4416724 335970645 3703285889     50218081
##      Burundi  Cambodia  Cameroon      Canada Cape.Verde Cayman.Islands
## 1          0         0         0           0          0              0
## 2          0         0         0           0          0              0
## 3          0         0         0           0          0              0
## 4          0         0         0           0          0              0
## 5          0         0         0           0          0              0
## 6          0         0         0           0          0              0
## 7          0         0         0           0          0              0
## 8          0         0         0           0          0              0
## 9          0         0         0           0          0              0
## 10         0         0         0           0          0              0
## 11         0         0         0           0          0              0
## 12         0         0         0           0          0              0
## 13         0         0         0           0          0              0
## 14         0         0         0           0          0              0
## 15         0         0         0           0          0              0
## 16         0         0         0           0          0              0
## 17         0         0         0           0          0              0
## 18         0         0         0           0          0              0
## 19         0         0         0           0          0              0
## 20         0         0         0           0          0              0
## 21         0         0         0           0          0              0
## 22         0         0         0           0          0              0
## 23         0         0         0           0          0              0
## 24         0         0         0           0          0              0
## 25         0         0         0           0          0              0
## 26         0         0         0           0          0              0
## 27         0         0         0           0          0              0
## 28         0         0         0           0          0              0
## 29         0         0         0           0          0              0
## 30         0         0         0           0          0              0
## 31         0         0         0           0          0              0
## 32         0         0         0           0          0              0
## 33         0         0         0           0          0              0
## 34         0         0         0           0          0              0
## 35         0         0         0        3664          0              0
## 36         0         0         0        7328          0              0
## 37         0         0         0       10992          0              0
## 38         0         0         0       14656          0              0
## 39         0         0         0       18320          0              0
## 40         0         0         0       21984          0              0
## 41         0         0         0       25648          0              0
## 42         0         0         0       29312          0              0
## 43         0         0         0       32976          0              0
## 44         0         0         0       36640          0              0
## 45         0         0         0       40304          0              0
## 46         0         0         0       43968          0              0
## 47         0         0         0       47632          0              0
## 48         0         0         0       51296          0              0
## 49         0         0         0       54960          0              0
## 50         0         0         0       58624          0              0
## 51         0         0         0       62288          0              0
## 52         0         0         0       65952          0              0
## 53         0         0         0       69616          0              0
## 54         0         0         0       73280          0              0
## 55         0         0         0       76944          0              0
## 56         0         0         0       80608          0              0
## 57         0         0         0       84272          0              0
## 58         0         0         0       87936          0              0
## 59         0         0         0       91600          0              0
## 60         0         0         0       95264          0              0
## 61         0         0         0       98928          0              0
## 62         0         0         0      102592          0              0
## 63         0         0         0      106256          0              0
## 64         0         0         0      109920          0              0
## 65         0         0         0      113584          0              0
## 66         0         0         0      117248          0              0
## 67         0         0         0      120912          0              0
## 68         0         0         0      124576          0              0
## 69         0         0         0      128240          0              0
## 70         0         0         0      131904          0              0
## 71         0         0         0      135568          0              0
## 72         0         0         0      139232          0              0
## 73         0         0         0      142896          0              0
## 74         0         0         0      146560          0              0
## 75         0         0         0      150224          0              0
## 76         0         0         0      153888          0              0
## 77         0         0         0      157552          0              0
## 78         0         0         0      161216          0              0
## 79         0         0         0      164880          0              0
## 80         0         0         0      168544          0              0
## 81         0         0         0      172208          0              0
## 82         0         0         0      175872          0              0
## 83         0         0         0      179536          0              0
## 84         0         0         0      183200          0              0
## 85         0         0         0      186864          0              0
## 86         0         0         0      190528          0              0
## 87         0         0         0      194192          0              0
## 88         0         0         0      197856          0              0
## 89         0         0         0      201520          0              0
## 90         0         0         0      205184          0              0
## 91         0         0         0      208848          0              0
## 92         0         0         0      212512          0              0
## 93         0         0         0      216176          0              0
## 94         0         0         0      219840          0              0
## 95         0         0         0      223504          0              0
## 96         0         0         0      249152          0              0
## 97         0         0         0      282128          0              0
## 98         0         0         0      322432          0              0
## 99         0         0         0      370064          0              0
## 100        0         0         0      428688          0              0
## 101        0         0         0      498304          0              0
## 102        0         0         0      582576          0              0
## 103        0         0         0      685168          0              0
## 104        0         0         0      809744          0              0
## 105        0         0         0      959968          0              0
## 106        0         0         0     1139504          0              0
## 107        0         0         0     1355680          0              0
## 108        0         0         0     1619488          0              0
## 109        0         0         0     1934592          0              0
## 110        0         0         0     2315648          0              0
## 111        0         0         0     2773648          0              0
## 112        0         0         0     3334240          0              0
## 113        0         0         0     4037728          0              0
## 114        0         0         0     4880448          0              0
## 115        0         0         0     5899040          0              0
## 116        0         0         0     7141136          0              0
## 117        0         0         0     8734976          0              0
## 118        0         0         0     9680288          0              0
## 119        0         0         0    10365456          0              0
## 120        0         0         0    11589232          0              0
## 121        0         0         0    13369936          0              0
## 122        0         0         0    15216592          0              0
## 123        0         0         0    16825088          0              0
## 124        0         0         0    18448240          0              0
## 125        0         0         0    20324208          0              0
## 126        0         0         0    22181856          0              0
## 127        0         0         0    24204384          0              0
## 128        0         0         0    26138976          0              0
## 129        0         0         0    28322720          0              0
## 130        0         0         0    33554912          0              0
## 131        0         0         0    39146176          0              0
## 132        0         0         0    45763360          0              0
## 133        0         0         0    53193952          0              0
## 134        0         0         0    61793360          0              0
## 135        0         0         0    70037360          0              0
## 136        0         0         0    78834624          0              0
## 137        0         0         0    88983904          0              0
## 138        0         0         0   102295216          0              0
## 139        0         0         0   113587664          0              0
## 140        0         0         0   126001296          0              0
## 141        0         0         0   139942816          0              0
## 142        0         0         0   153833040          0              0
## 143        0         0         0   168686896          0              0
## 144        0         0         0   182866576          0              0
## 145        0         0         0   196397728          0              0
## 146        0         0         0   211046400          0              0
## 147        0         0         0   225845296          0              0
## 148        0         0         0   241552864          0              0
## 149        0         0         0   260722912          0              0
## 150        0         0         0   281351232          0              0
## 151        0         0         0   305196544          0              0
## 152        0         0         0   330844544          0              0
## 153        0         0         0   358804528          0              0
## 154        0         0         0   391901440          0              0
## 155        0         0         0   427288352          0              0
## 156        0         0         0   464675808          0              0
## 157        0         0         0   511666608          0              0
## 158        0         0         0   559075104          0              0
## 159        0         0         0   604461072          0              0
## 160        0         0         0   656083168          0              0
## 161        0         0         0   716352304          0              0
## 162        0         0         0   783623344          0              0
## 163        0         0         0   862904976          0              0
## 164        0         0         0   931286208          0              0
## 165        0         0         0   992401728          0              0
## 166        0         0         0  1068858416          0              0
## 167        0         0         0  1154101376          0              0
## 168        0         0         0  1243620224          0              0
## 169        0         0         0  1319710512          0              0
## 170        0         0         0  1404088768          0              0
## 171        0         0         0  1484572192          0              0
## 172        0         0         0  1553781488          0              0
## 173        0         0         0  1646762816          0              0
## 174        0         0         0  1724146496          0              0
## 175        0         0         0  1799394064          0              0
## 176        0         0         0  1884149712          0              0
## 177        0         0         0  1976149088          0              0
## 178        0         0         0  2069932832          0              0
## 179        0         0         0  2168970752          0              0
## 180        0         0         0  2263326080          0              0
## 181        0         0         0  2339181872          0              0
## 182        0         0         0  2409391440          0              0
## 183        0         0         0  2478875536          0              0
## 184        0         0         0  2558791040          0              0
## 185        0         0         0  2637589024          0              0
## 186        0         0         0  2723755312          0              0
## 187        0         0         0  2817242272          0              0
## 188        0         0         0  2902789344          0              0
## 189        0         0         0  2997796864          0              0
## 190        0         0         0  3106423472          0              0
## 191        0         0         0  3226580688          0              0
## 192        0         0         0  3357663952          0              0
## 193        0         0         0  3495730800          0              0
## 194        0         0         0  3636142608          0              0
## 195        0         0         0  3766668944          0              0
## 196        0         0         0  3905098528          0              0
## 197        0         0         0  4048654048          0              0
## 198        0         0         0  4207169680          0              0
## 199        0         0         0  4352201792          0              0
## 200        0         0    139232  4506346272     102592              0
## 201        0         0    322432  4669035200     179536              0
## 202        0         0    604560  4828455840     216176              0
## 203        0         0    806080  4989078272     234496              0
## 204        0         0   1036912  5152060320     256480              0
## 205        0    102592   1271408  5321549632     278464              0
## 206        0    234496   1509568  5511370480     307776           3664
## 207        0    395712   1766048  5694204080     326096           7328
## 208        0    593568   2044512  5876381824     340752          14656
## 209    38943    806080   2322946  6060863178     359042          21984
## 210    75374   1040576   2594082  6253579353     380997          32976
## 211   123110   1326368   2876210  6447580047     402951          43968
## 212   167078   1634144   3165666  6654570818     421241          54960
## 213   214710   2022528   3466114  6865481594     435867          65952
## 214   262342   2363250   3803202  7103059327     465120          76944
## 215   298982   2766082   4114642  7354976322     490709          87936
## 216   346614   3234837   4459058  7614050693     512693         106256
## 217   394246   3652295   4917058  7895687729     531013         120912
## 218   449206   4143033   5422690  8198949069     560295         142896
## 219   522486   5487483   5994274  8506068274     596875         186864
## 220   584774   6659815   6631691  8847245488     633456         223504
## 221   658054   6908729   7440871  9199530572     670066         267472
## 222   731334   7025769   8301227  9580317153     721333         322432
## 223   804614   7153682   9198135  9961581812     783561         381056
## 224   896214   7226754  10171897 10351187027     849513         436016
## 225   973158   7299826  11332434 10747959768     926457         490976
## 226  1061094   7372600  12421404 11146905749     999737         556928
## 227  1160022   7445076  13980453 11554677167    1080345         626544
## 228  1262614   7496215  15973658 11970182552    1288887         718144
## 229  1372534   7525527  17789000 12411829462    1538039         809744
## 230  1519094   7811319  21674945 12854646733    1658951         970960
## 231  1676646   8111767  26994069 13284244984    1691927        1124848
## 232  1834198   8448855  33309956 13698671402    1728567        1286064
## 233  2039382   8815255  39864436 14106981068    1765207        1454608
## 234  2259222   9225623  45917364 14532180413    1849479        1637808
## 235  2490054   9643319  52387988 14953856010    1933751        1828336
## 236  2724550  10075671  54381204 15358516131    1992375        2029856
## 237  2973702  10511687  56224196 15789437857    2072983        2246032
## 238  3200870  10962359  58378083 16245045884    2146263        2469536
## 239  3468342  11413031  65955752 16707863602    2226871        2726016
## 240  3677190  12673447  67633950 17171743393    2322135        2975168
## 241  3915350  13977831  68690653 17626370897    2421063        3246304
## 242  4131526  15326183  72420568 18095235665    2527319        3557744
## 243  4358694  16711175  76260017 18563115240    2637239        3887504
## 244  4593190  18178226  80031088 19046173697    2750823        4250240
## 245  4831350  19718511  84205545 19541838212    2871735        4612976
## 246  5073174  21315757  88637038 20052394999    3014631        4997696
## 247  5322326  22840810  91793445 20577648070    3161191        5404400
## 248  5571478  24776165  94930541 21111884568    3318743        5833088
## 249  5824294  26670453  97928633 21661927718    3501943        6261776
## 250  6095430  28645349 101274481 22234458458    3718119        6727104
## 251  6300614  30895045 104599472 22799093778    3952615        7196096
## 252  6513126  33100773 107923522 23369978876    4227415        7683408
## 253  6674342  35478709 111622013 23957575166    4535191        8178048
## 254  6872198  37922597 115472075 24543407966    4864951        8639712
## 255  7026086  40696245 119063344 25120209594    5304631        9112368
## 256  7212950  43693397 122815790 25690697237    5777287        9596016
## 257  7399814  47145866 128517728 26284837478    6282919       10167600
## 258  7590342  50950853 133944007 26859643349    6751911       10750176
## 259  7780870  55491550 140538914 27400162036    7275863       11307104
## 260  7993382  60408478 147200941 27955621729    7832791       11864032
## 261  8230947  65502758 152831513 28516397630    8448343       12450272
## 262  8504547  70836280 158806534 29080072830    8953975       12985216
## 263  8782774  76312066 165421547 29648965226    9452279       13520160
## 264  9214305  82828485 172275544 30216973614    9943255       14062432
## 265  9690963  89805010 179492954 30782550291   10440465       14062432
## 266 10199110  97286972 187079087 31340739291   10972669       14062432
## 267 10728250 105225247 194766284 31913521876   11572647       14062432
##     Central.African.Republic     Chad      Chile        China
## 1                          0        0          0            0
## 2                          0        0          0            0
## 3                          0        0          0            0
## 4                          0        0          0            0
## 5                          0        0          0            0
## 6                          0        0          0            0
## 7                          0        0          0            0
## 8                          0        0          0            0
## 9                          0        0          0            0
## 10                         0        0          0            0
## 11                         0        0          0            0
## 12                         0        0          0            0
## 13                         0        0          0            0
## 14                         0        0          0            0
## 15                         0        0          0            0
## 16                         0        0          0            0
## 17                         0        0          0            0
## 18                         0        0          0            0
## 19                         0        0          0            0
## 20                         0        0          0            0
## 21                         0        0          0            0
## 22                         0        0          0            0
## 23                         0        0          0            0
## 24                         0        0          0            0
## 25                         0        0          0            0
## 26                         0        0          0            0
## 27                         0        0          0            0
## 28                         0        0          0            0
## 29                         0        0          0            0
## 30                         0        0          0            0
## 31                         0        0          0            0
## 32                         0        0          0            0
## 33                         0        0          0            0
## 34                         0        0          0            0
## 35                         0        0          0            0
## 36                         0        0          0            0
## 37                         0        0          0            0
## 38                         0        0          0            0
## 39                         0        0          0            0
## 40                         0        0          0            0
## 41                         0        0          0            0
## 42                         0        0          0            0
## 43                         0        0          0            0
## 44                         0        0          0            0
## 45                         0        0          0            0
## 46                         0        0          0            0
## 47                         0        0          0            0
## 48                         0        0          0            0
## 49                         0        0          0            0
## 50                         0        0          0            0
## 51                         0        0          0            0
## 52                         0        0          0            0
## 53                         0        0          0            0
## 54                         0        0          0            0
## 55                         0        0          0            0
## 56                         0        0          0            0
## 57                         0        0          0            0
## 58                         0        0          0            0
## 59                         0        0          0            0
## 60                         0        0          0            0
## 61                         0        0          0            0
## 62                         0        0          0            0
## 63                         0        0          0            0
## 64                         0        0          0            0
## 65                         0        0          0            0
## 66                         0        0          0            0
## 67                         0        0          0            0
## 68                         0        0          0            0
## 69                         0        0          0            0
## 70                         0        0          0            0
## 71                         0        0          0            0
## 72                         0        0          0            0
## 73                         0        0          0            0
## 74                         0        0          0            0
## 75                         0        0          0            0
## 76                         0        0          0            0
## 77                         0        0          0            0
## 78                         0        0          0            0
## 79                         0        0          0            0
## 80                         0        0          0            0
## 81                         0        0          0            0
## 82                         0        0          0            0
## 83                         0        0          0            0
## 84                         0        0          0            0
## 85                         0        0          0            0
## 86                         0        0          0            0
## 87                         0        0          0            0
## 88                         0        0          0            0
## 89                         0        0          0            0
## 90                         0        0          0            0
## 91                         0        0          0            0
## 92                         0        0          0            0
## 93                         0        0          0            0
## 94                         0        0          0            0
## 95                         0        0          0            0
## 96                         0        0          0            0
## 97                         0        0          0            0
## 98                         0        0          0            0
## 99                         0        0          0            0
## 100                        0        0          0            0
## 101                        0        0          0            0
## 102                        0        0          0            0
## 103                        0        0          0            0
## 104                        0        0          0            0
## 105                        0        0          0            0
## 106                        0        0          0            0
## 107                        0        0          0            0
## 108                        0        0          0            0
## 109                        0        0          0            0
## 110                        0        0          0            0
## 111                        0        0          0            0
## 112                        0        0          0            0
## 113                        0        0          0            0
## 114                        0        0          0            0
## 115                        0        0          0            0
## 116                        0        0          0            0
## 117                        0        0          0            0
## 118                        0        0          0            0
## 119                        0        0          0            0
## 120                        0        0          0            0
## 121                        0        0          0            0
## 122                        0        0          0            0
## 123                        0        0          0            0
## 124                        0        0          0            0
## 125                        0        0          0            0
## 126                        0        0          0            0
## 127                        0        0          0            0
## 128                        0        0          0            0
## 129                        0        0          0            0
## 130                        0        0          0            0
## 131                        0        0          0            0
## 132                        0        0          0            0
## 133                        0        0          0            0
## 134                        0        0          0            0
## 135                        0        0          0            0
## 136                        0        0          0            0
## 137                        0        0          0            0
## 138                        0        0          0            0
## 139                        0        0          0            0
## 140                        0        0          0            0
## 141                        0        0          0            0
## 142                        0        0          0            0
## 143                        0        0          0            0
## 144                        0        0          0            0
## 145                        0        0     523952            0
## 146                        0        0    1058896            0
## 147                        0        0    1696432            0
## 148                        0        0    2436560            0
## 149                        0        0    3070432        95264
## 150                        0        0    3920480        95264
## 151                        0        0    5488672        95264
## 152                        0        0    7448912       190528
## 153                        0        0    9610672      2154432
## 154                        0        0   11578240      4242912
## 155                        0        0   13655728      6540240
## 156                        0        0   16095952     23651120
## 157                        0        0   18276032     40490864
## 158                        0        0   20734576     63222320
## 159                        0        0   23086864     84059488
## 160                        0        0   25897152    102808176
## 161                        0        0   29004224    130654576
## 162                        0        0   32466704    140441120
## 163                        0        0   35822928    151198624
## 164                        0        0   38666192    166305296
## 165                        0        0   41732960    182393920
## 166                        0        0   45440928    200358512
## 167                        0        0   49467664    220210064
## 168                        0        0   53435776    241252416
## 169                        0        0   57319616    265508096
## 170                        0        0   60100592    292277280
## 171                        0        0   63434832    317566208
## 172                        0        0   66190160    344199824
## 173                        0        0   69234944    376351424
## 174                        0        0   73261680    411445216
## 175                        0        0   77061248    444666704
## 176                        0        0   80963408    474257168
## 177                        0        0   84839920    507782768
## 178                        0        0   88496592    541898272
## 179                        0        0   92512336    577717536
## 180                        0        0   96363200    615639936
## 181                        0        0   99290736    655899968
## 182                        0        0  102185296    694500208
## 183                        0        0  106277984    736716816
## 184                        0        0  111107136    785990288
## 185                        0        0  116218416    843617680
## 186                        0        0  121245424    908657344
## 187                        0        0  126525248    969234256
## 188                        0        0  132054224   1024538672
## 189                        0        0  137062912   1091696128
## 190                        0        0  142324416   1177796464
## 191                        0        0  147893696   1285411808
## 192                        0        0  153701136   1399281600
## 193                        0        0  159812688   1496586448
## 194                        0        0  165953552   1594451888
## 195                        0        0  171596112   1644802576
## 196                        0        0  177029824   1676078480
## 197                        0        0  182738336   1709666368
## 198                        0        0  188948816   1733519008
## 199                        0        0  194825872   1792828176
## 200                        0        0  203278720   1871475936
## 201                        0        0  213263120   1973199568
## 202                        0        0  223870400   2101421248
## 203                        0        0  234276160   2235523648
## 204                        0        0  245359760   2396779952
## 205                        0        0  256959984   2587670688
## 206                        0        0  268794704   2804018896
## 207                        0        0  280523168   3060366992
## 208                        0        0  292977104   3585747952
## 209                    98928    62288  305680468   4305900099
## 210                   186864   117248  319156937   5084879564
## 211                   274800   168544  333615179   5635838102
## 212                   348080   252816  350322552   6075180207
## 213                   421360   344416  367659540   6510697811
## 214                   494640   443344  385164684   6946401541
## 215                   582576   549600  402911980   7421082166
## 216                   666848   633872  421684453   7942541079
## 217                   758448   751120  440922789   8374764636
## 218                   941648   875696  462125028   8842570279
## 219                  1128512  1036912  484656498   9418514950
## 220                  1337360  1161488  509292301  10188682140
## 221                  1520560  1311712  536349342  11062698491
## 222                  1689104  1432624  564490902  11991592449
## 223                  1850320  1593840  592083214  12957239047
## 224                  1963904  1744064  617966485  13942324263
## 225                  2066496  1927264  640917853  15084426169
## 226                  2194736  2110464  664952100  16275390704
## 227                  2322976  2308320  687976312  17579793492
## 228                  2469536  2502512  710827046  19035050998
## 229                  2572128  2704032  735567989  20522164083
## 230                  2678384  2912880  760682560  21981050821
## 231                  2813952  3121728  785048677  23423833119
## 232                  2956848  3326912  805536526  24994301443
## 233                  3103408  3532096  826225746  26650111926
## 234                  3253632  3748272  848248542  28452429021
## 235                  3414848  3927808  869560640  30404202249
## 236                  3576064  4114672  891604388  32456444261
## 237                  3836208  4312528  914039690  34647497268
## 238                  4067040  4378480  940671070  36995260762
## 239                  4316192  4481072  972724248  39382145760
## 240                  4514048  4623968 1005670924  41802447868
## 241                  4719232  4689920 1036613129  44341371836
## 242                  4935408  4774192 1068671026  46998484242
## 243                  5158912  4865792 1102834045  49834279715
## 244                  5393408  4968384 1140476402  52844521924
## 245                  5627904  5078304 1181566517  56109578888
## 246                  5862400  5202880 1229195028  59517925478
## 247                  6107888  5345776 1284645309  62932474765
## 248                  6357040  5496000 1341452535  66198377385
## 249                  6620848  5657216 1402359812  69456512272
## 250                  6888320  5833088 1460473506  72805807048
## 251                  7133808  6005296 1513050063  76231951110
## 252                  7379296  6173840 1567540399  80014390407
## 253                  7613792  6554896 1622424595  84466700703
## 254                  7848288  6932288 1681472103  89592595120
## 255                  8082784  7331664 1742419246  95363763560
## 256                  8331936  7738368 1806390824 102000000000
## 257                  8584752  8200032 1877097754 109000000000
## 258                  8837568  8709328 1947916432 116000000000
## 259                  9090384  9200304 2013836290 124000000000
## 260                  9354192  9716928 2085166076 132000000000
## 261                  9632656 10255536 2163249857 142000000000
## 262                  9925776 10851222 2242953747 151000000000
## 263                 10222560 11531796 2324629717 161000000000
## 264                 10523008 12238929 2405606788 171000000000
## 265                 10826471 12952385 2486768037 181000000000
## 266                 11137328 13681353 2572896035 190000000000
## 267                 11448062 14410061 2657499285 200000000000
##     Christmas.Island   Colombia Comoros    Congo Cook.Islands Costa.Rica
## 1                  0          0       0        0            0          0
## 2                  0          0       0        0            0          0
## 3                  0          0       0        0            0          0
## 4                  0          0       0        0            0          0
## 5                  0          0       0        0            0          0
## 6                  0          0       0        0            0          0
## 7                  0          0       0        0            0          0
## 8                  0          0       0        0            0          0
## 9                  0          0       0        0            0          0
## 10                 0          0       0        0            0          0
## 11                 0          0       0        0            0          0
## 12                 0          0       0        0            0          0
## 13                 0          0       0        0            0          0
## 14                 0          0       0        0            0          0
## 15                 0          0       0        0            0          0
## 16                 0          0       0        0            0          0
## 17                 0          0       0        0            0          0
## 18                 0          0       0        0            0          0
## 19                 0          0       0        0            0          0
## 20                 0          0       0        0            0          0
## 21                 0          0       0        0            0          0
## 22                 0          0       0        0            0          0
## 23                 0          0       0        0            0          0
## 24                 0          0       0        0            0          0
## 25                 0          0       0        0            0          0
## 26                 0          0       0        0            0          0
## 27                 0          0       0        0            0          0
## 28                 0          0       0        0            0          0
## 29                 0          0       0        0            0          0
## 30                 0          0       0        0            0          0
## 31                 0          0       0        0            0          0
## 32                 0          0       0        0            0          0
## 33                 0          0       0        0            0          0
## 34                 0          0       0        0            0          0
## 35                 0          0       0        0            0          0
## 36                 0          0       0        0            0          0
## 37                 0          0       0        0            0          0
## 38                 0          0       0        0            0          0
## 39                 0          0       0        0            0          0
## 40                 0          0       0        0            0          0
## 41                 0          0       0        0            0          0
## 42                 0          0       0        0            0          0
## 43                 0          0       0        0            0          0
## 44                 0          0       0        0            0          0
## 45                 0          0       0        0            0          0
## 46                 0          0       0        0            0          0
## 47                 0          0       0        0            0          0
## 48                 0          0       0        0            0          0
## 49                 0          0       0        0            0          0
## 50                 0          0       0        0            0          0
## 51                 0          0       0        0            0          0
## 52                 0          0       0        0            0          0
## 53                 0          0       0        0            0          0
## 54                 0          0       0        0            0          0
## 55                 0          0       0        0            0          0
## 56                 0          0       0        0            0          0
## 57                 0          0       0        0            0          0
## 58                 0          0       0        0            0          0
## 59                 0          0       0        0            0          0
## 60                 0          0       0        0            0          0
## 61                 0          0       0        0            0          0
## 62                 0          0       0        0            0          0
## 63                 0          0       0        0            0          0
## 64                 0          0       0        0            0          0
## 65                 0          0       0        0            0          0
## 66                 0          0       0        0            0          0
## 67                 0          0       0        0            0          0
## 68                 0          0       0        0            0          0
## 69                 0          0       0        0            0          0
## 70                 0          0       0        0            0          0
## 71                 0          0       0        0            0          0
## 72                 0          0       0        0            0          0
## 73                 0          0       0        0            0          0
## 74                 0          0       0        0            0          0
## 75                 0          0       0        0            0          0
## 76                 0          0       0        0            0          0
## 77                 0          0       0        0            0          0
## 78                 0          0       0        0            0          0
## 79                 0          0       0        0            0          0
## 80                 0          0       0        0            0          0
## 81                 0          0       0        0            0          0
## 82                 0          0       0        0            0          0
## 83                 0          0       0        0            0          0
## 84                 0          0       0        0            0          0
## 85                 0          0       0        0            0          0
## 86                 0          0       0        0            0          0
## 87                 0          0       0        0            0          0
## 88                 0          0       0        0            0          0
## 89                 0          0       0        0            0          0
## 90                 0          0       0        0            0          0
## 91                 0          0       0        0            0          0
## 92                 0          0       0        0            0          0
## 93                 0          0       0        0            0          0
## 94                 0          0       0        0            0          0
## 95                 0          0       0        0            0          0
## 96                 0          0       0        0            0          0
## 97                 0          0       0        0            0          0
## 98                 0          0       0        0            0          0
## 99                 0          0       0        0            0          0
## 100                0          0       0        0            0          0
## 101                0          0       0        0            0          0
## 102                0          0       0        0            0          0
## 103                0          0       0        0            0          0
## 104                0          0       0        0            0          0
## 105                0          0       0        0            0          0
## 106                0          0       0        0            0          0
## 107                0          0       0        0            0          0
## 108                0          0       0        0            0          0
## 109                0          0       0        0            0          0
## 110                0          0       0        0            0          0
## 111                0          0       0        0            0          0
## 112                0          0       0        0            0          0
## 113                0          0       0        0            0          0
## 114                0          0       0        0            0          0
## 115                0          0       0        0            0          0
## 116                0          0       0        0            0          0
## 117                0          0       0        0            0          0
## 118                0          0       0        0            0          0
## 119                0          0       0        0            0          0
## 120                0          0       0        0            0          0
## 121                0          0       0        0            0          0
## 122                0          0       0        0            0          0
## 123                0          0       0        0            0          0
## 124                0          0       0        0            0          0
## 125                0          0       0        0            0          0
## 126                0          0       0        0            0          0
## 127                0          0       0        0            0          0
## 128                0          0       0        0            0          0
## 129                0          0       0        0            0          0
## 130                0          0       0        0            0          0
## 131                0          0       0        0            0          0
## 132                0          0       0        0            0          0
## 133                0          0       0        0            0          0
## 134                0          0       0        0            0          0
## 135                0          0       0        0            0          0
## 136                0          0       0        0            0          0
## 137                0          0       0        0            0          0
## 138                0          0       0        0            0          0
## 139                0          0       0        0            0          0
## 140                0          0       0        0            0          0
## 141                0          0       0        0            0          0
## 142                0          0       0        0            0          0
## 143                0          0       0        0            0          0
## 144                0          0       0        0            0          0
## 145                0          0       0        0            0          0
## 146                0          0       0        0            0          0
## 147                0          0       0        0            0          0
## 148                0          0       0        0            0          0
## 149                0          0       0        0            0          0
## 150                0          0       0        0            0          0
## 151                0          0       0        0            0          0
## 152                0          0       0        0            0          0
## 153                0          0       0        0            0          0
## 154                0          0       0        0            0          0
## 155                0          0       0        0            0          0
## 156                0          0       0        0            0          0
## 157                0          0       0        0            0          0
## 158                0          0       0        0            0          0
## 159                0          0       0        0            0          0
## 160                0          0       0        0            0          0
## 161                0          0       0        0            0          0
## 162                0          0       0        0            0          0
## 163                0          0       0        0            0          0
## 164                0          0       0        0            0          0
## 165                0          0       0        0            0          0
## 166                0          0       0        0            0          0
## 167                0          0       0        0            0          0
## 168                0          0       0        0            0          0
## 169                0          0       0        0            0          0
## 170                0          0       0        0            0          0
## 171                0      29312       0        0            0          0
## 172                0     172208       0        0            0          0
## 173                0     359072       0        0            0          0
## 174                0     556928       0        0            0          0
## 175                0    1000272       0        0            0          0
## 176                0    1846656       0        0            0          0
## 177                0    2671056       0        0            0          0
## 178                0    4019408       0        0            0          0
## 179                0    5309136       0        0            0          0
## 180                0    5961328       0        0            0          0
## 181                0    6291088       0        0            0          0
## 182                0    6371696       0        0            0          0
## 183                0    6906640       0        0            0          0
## 184                0    7643104       0        0            0          0
## 185                0   10046688       0        0            0          0
## 186                0   12831328       0        0            0          0
## 187                0   15615968       0        0            0          0
## 188                0   18620448       0        0            0          0
## 189                0   23259072       0        0            0          0
## 190                0   27425040       0        0            0          0
## 191                0   31158656       0        0            0          0
## 192                0   35324624       0        0            0          0
## 193                0   39058240       0        0            0          0
## 194                0   43799456       0        0            0          0
## 195                0   48280528       0        0            0          0
## 196                0   53241584       0        0            0          0
## 197                0   58305232       0        0            0          0
## 198                0   62789968       0        0            0          0
## 199                0   67926896       0        0            0          0
## 200                0   75427104       0        0            0     285792
## 201                0   83594160       0        0            0     597232
## 202                0   92230208       0        0            0     985616
## 203                0  102995040       0        0            0    1417968
## 204                0  112620368       0        0            0    1824672
## 205                0  124568672       0        0            0    2172752
## 206                0  137172832       0        0            0    2656400
## 207                0  150828560       0        0            0    3118064
## 208                0  164810384       0        0            0    3565072
## 209                0  180897175   10992   186864            0    3949792
## 210                0  197287661   21984   410368            0    4440768
## 211                0  215483965   32976   677840            0    4931744
## 212                0  234903450   43968   916000            0    5481344
## 213                0  256136229   54960  1150496            0    6082240
## 214                0  277819175   65952  1417968            0    6756297
## 215                0  300677908   80608  1663456            0    7602206
## 216                0  324152104   98928  1971232            0    8594674
## 217                0  348838936  117248  2293664            0    9469924
## 218                0  375411687  135568  2744336            0   10506302
## 219                0  403427966  153888  3246304        10992   11652480
## 220            69616  431798018  183200  3817888        21984   12901161
## 221           153888  462079868  212512  4503056        32976   14428187
## 222           238160  493505969  241824  5166240        43968   16189501
## 223           307776  527138189  271136  6386352        54960   18232914
## 224           432352  563534725  300448  8009504        65952   20137005
## 225           567920  599346111  333424  9108704        80608   22172852
## 226           692496  637329123  373728 10343472        95264   24254707
## 227           784096  676573601  414032 10823456       124576   26862126
## 228           875696  718112882  443344 11145888       153888   29774169
## 229           974624  762385589  465328 11493968       179536   32555151
## 230          1073552  806566438  512960 11899497       208848   35003611
## 231          1176144  850834177  560592 12370221       274800   37239825
## 232          1249424  896522610  608224 13713323       326096   39310446
## 233          1330032  945741559  655856 14855775       377392   41399259
## 234          1330032  994454301  703488 15995279       399376   43380208
## 235          1330032 1042546042  751120 17270492       421360   45622663
## 236          1330032 1091314873  795088 18332866       443344   48200197
## 237          1330032 1141454224  842720 19652958       465328   50924059
## 238          1330032 1193490092  894016 21145899       487312   53829980
## 239          1330032 1246301992  945312 22641526       509296   56763325
## 240          1330032 1303218700 1007600 23820915       545936   59675310
## 241          1330032 1359873954 1073552 24815749       582576   62962575
## 242          1330032 1421374301 1139504 26084010       619216   66703795
## 243          1330032 1484711019 1209120 27392501       659520   70594794
## 244          1330032 1551420471 1278736 29531638       699824   75795128
## 245          1330032 1610040728 1352016 31087476       740128   80597013
## 246          1330032 1669499252 1428960 32797516       787760   85283749
## 247          1330032 1733270482 1509568 35136779       835392   90200414
## 248          1330032 1797884205 1597504 35913547       883024   95435874
## 249          1330032 1852911658 1689104 36734283       930656  100874870
## 250          1330032 1909127374 1791696 37780113       978288  106269346
## 251          1330032 1964378849 1894288 38545889      1011264  111935265
## 252          1330032 2019232075 1996880 39121137      1040576  118161701
## 253          1330032 2075960322 2128784 40037137      1073552  124690242
## 254          1330032 2130511733 2271680 40986113      1128512  131488246
## 255          1330032 2190762489 2410912 41957561      1190800  138175406
## 256          1330032 2252959841 2572128 43064195      1256752  145140687
## 257          1330032 2314531348 2674720 44265538      1322704  153032352
## 258          1330032 2381757865 2780976 45561883      1392320  160942812
## 259          1330032 2453609479 2912880 47293460      1461936  168622068
## 260          1330032 2528909899 3074096 49262904      1531552  176050078
## 261          1330032 2604652996 3209664 51511409      1601168  183634515
## 262          1330032 2684003284 3352560 54462194      1670784  191241509
## 263          1330032 2773003336 3528432 57520011      1740400  198672733
## 264          1330032 2856418874 3682320 60561086      1810016  206259796
## 265          1330032 2942441131 3850231 63789505      1885986  214431896
## 266          1330032 3028814117 4031600 67163659      1962827  222997581
## 267          1330032 3110040939 4221082 70573384      2044872  231692589
##     Cote.d.Ivoire   Croatia       Cuba   Curacao    Cyprus Czech.Republic
## 1               0         0          0         0         0              0
## 2               0         0          0         0         0              0
## 3               0         0          0         0         0              0
## 4               0         0          0         0         0              0
## 5               0         0          0         0         0              0
## 6               0         0          0         0         0              0
## 7               0         0          0         0         0              0
## 8               0         0          0         0         0              0
## 9               0         0          0         0         0              0
## 10              0         0          0         0         0              0
## 11              0         0          0         0         0              0
## 12              0         0          0         0         0              0
## 13              0         0          0         0         0              0
## 14              0         0          0         0         0              0
## 15              0         0          0         0         0              0
## 16              0         0          0         0         0              0
## 17              0         0          0         0         0              0
## 18              0         0          0         0         0              0
## 19              0         0          0         0         0              0
## 20              0         0          0         0         0              0
## 21              0         0          0         0         0              0
## 22              0         0          0         0         0              0
## 23              0         0          0         0         0              0
## 24              0         0          0         0         0              0
## 25              0         0          0         0         0              0
## 26              0         0          0         0         0              0
## 27              0         0          0         0         0              0
## 28              0         0          0         0         0              0
## 29              0         0          0         0         0              0
## 30              0         0          0         0         0              0
## 31              0         0          0         0         0              0
## 32              0         0          0         0         0              0
## 33              0         0          0         0         0              0
## 34              0         0          0         0         0              0
## 35              0         0          0         0         0              0
## 36              0         0          0         0         0              0
## 37              0         0          0         0         0              0
## 38              0         0          0         0         0              0
## 39              0         0          0         0         0              0
## 40              0         0          0         0         0              0
## 41              0         0          0         0         0              0
## 42              0         0          0         0         0              0
## 43              0         0          0         0         0              0
## 44              0         0          0         0         0              0
## 45              0         0          0         0         0              0
## 46              0         0          0         0         0              0
## 47              0         0          0         0         0              0
## 48              0         0          0         0         0              0
## 49              0         0          0         0         0              0
## 50              0         0          0         0         0              0
## 51              0         0          0         0         0              0
## 52              0         0          0         0         0              0
## 53              0         0          0         0         0              0
## 54              0         0          0         0         0              0
## 55              0         0          0         0         0              0
## 56              0         0          0         0         0              0
## 57              0         0          0         0         0              0
## 58              0         0          0         0         0              0
## 59              0         0          0         0         0              0
## 60              0         0          0         0         0              0
## 61              0         0          0         0         0              0
## 62              0         0          0         0         0              0
## 63              0         0          0         0         0              0
## 64              0         0          0         0         0              0
## 65              0         0          0         0         0              0
## 66              0         0          0         0         0              0
## 67              0         0          0         0         0              0
## 68              0         0          0         0         0              0
## 69              0         0          0         0         0              0
## 70              0         0          0         0         0              0
## 71              0         0          0         0         0              0
## 72              0         0          0         0         0              0
## 73              0         0          0         0         0              0
## 74              0         0          0         0         0              0
## 75              0         0          0         0         0              0
## 76              0         0          0         0         0              0
## 77              0         0          0         0         0              0
## 78              0         0          0         0         0              0
## 79              0         0          0         0         0              0
## 80              0         0          0         0         0              0
## 81              0         0          0         0         0              0
## 82              0         0          0         0         0              0
## 83              0         0          0         0         0              0
## 84              0         0          0         0         0              0
## 85              0         0          0         0         0              0
## 86              0         0          0         0         0              0
## 87              0         0          0         0         0              0
## 88              0         0          0         0         0              0
## 89              0         0          0         0         0              0
## 90              0         0          0         0         0              0
## 91              0         0          0         0         0              0
## 92              0         0          0         0         0              0
## 93              0         0          0         0         0              0
## 94              0         0          0         0         0              0
## 95              0         0          0         0         0              0
## 96              0         0          0         0         0              0
## 97              0         0          0         0         0              0
## 98              0         0          0         0         0              0
## 99              0         0          0         0         0              0
## 100             0         0          0         0         0              0
## 101             0         0          0         0         0              0
## 102             0         0          0         0         0              0
## 103             0         0          0         0         0              0
## 104             0         0          0         0         0              0
## 105             0         0          0         0         0              0
## 106             0         0          0         0         0              0
## 107             0         0          0         0         0              0
## 108             0         0          0         0         0              0
## 109             0         0          0         0         0              0
## 110             0         0          0         0         0              0
## 111             0         0          0         0         0              0
## 112             0         0          0         0         0              0
## 113             0         0          0         0         0              0
## 114             0         0          0         0         0              0
## 115             0         0          0         0         0              0
## 116             0         0          0         0         0              0
## 117             0         0          0         0         0              0
## 118             0         0          0         0         0              0
## 119             0         0          0         0         0              0
## 120             0         0          0         0         0              0
## 121             0         0          0         0         0              0
## 122             0         0          0         0         0              0
## 123             0         0          0         0         0              0
## 124             0         0          0         0         0              0
## 125             0         0          0         0         0              0
## 126             0         0          0         0         0              0
## 127             0         0          0         0         0              0
## 128             0         0          0         0         0              0
## 129             0         0          0         0         0              0
## 130             0         0          0         0         0              0
## 131             0         0          0         0         0              0
## 132             0         0          0         0         0              0
## 133             0         0          0         0         0              0
## 134             0         0          0         0         0              0
## 135             0         0          0         0         0              0
## 136             0         0          0         0         0              0
## 137             0         0          0         0         0              0
## 138             0         0          0         0         0              0
## 139             0         0          0         0         0              0
## 140             0         0          0         0         0              0
## 141             0         0          0         0         0              0
## 142             0         0          0         0         0              0
## 143             0         0          0         0         0              0
## 144             0         0          0         0         0              0
## 145             0         0          0         0         0              0
## 146             0         0          0         0         0              0
## 147             0         0          0         0         0              0
## 148             0         0          0         0         0              0
## 149             0         0          0         0         0              0
## 150             0         0          0         0         0              0
## 151             0         0          0         0         0              0
## 152             0         0          0         0         0              0
## 153             0         0          0         0         0              0
## 154             0         0          0         0         0              0
## 155             0         0          0         0         0              0
## 156             0         0          0         0         0              0
## 157             0         0          0         0         0              0
## 158             0         0          0         0         0              0
## 159             0         0          0         0         0              0
## 160             0         0          0         0         0              0
## 161             0         0          0         0         0              0
## 162             0         0          0         0         0              0
## 163             0         0          0         0         0              0
## 164             0         0          0         0         0              0
## 165             0         0          0         0         0              0
## 166             0         0          0         0         0              0
## 167             0         0          0         0         0              0
## 168             0         0          0         0         0              0
## 169             0         0          0         0         0              0
## 170             0         0          0         0         0              0
## 171             0         0          0         0         0              0
## 172             0         0          0         0         0              0
## 173             0         0          0         0         0              0
## 174             0         0          0         0         0              0
## 175             0         0          0         0         0              0
## 176             0         0          0         0         0              0
## 177             0         0          0         0         0              0
## 178             0         0          0         0         0              0
## 179             0         0          0         0         0              0
## 180             0         0          0         0         0              0
## 181             0         0          0         0         0              0
## 182             0         0          0         0         0              0
## 183             0         0          0         0         0              0
## 184             0         0          0         0         0              0
## 185             0         0          0         0         0              0
## 186             0         0          0         0         0              0
## 187             0         0          0         0         0              0
## 188             0         0          0         0         0              0
## 189             0         0          0         0         0              0
## 190             0         0          0         0         0              0
## 191             0         0      76944         0         0              0
## 192             0         0     161216         0         0              0
## 193             0         0     245488         0         0              0
## 194             0         0     333424         0         0              0
## 195             0         0     443344         0         0              0
## 196             0         0     611888         0         0              0
## 197             0         0     802416         0         0              0
## 198             0         0     985616         0         0              0
## 199             0         0    1168816         0         0              0
## 200             0         0    6774736         0    267472              0
## 201             0         0   13245360         0    549600              0
## 202             0         0   19529120         0    864704              0
## 203             0         0   25721280         0   1231104              0
## 204             0         0   31671616         0   1674448              0
## 205             0         0   38450016         0   2125120              0
## 206             0         0   44294096         0   2799296              0
## 207             0         0   58162336         0   3616368              0
## 208        498304         0   76159904         0   4382144              0
## 209       1044240   5250921   91824642  10419189   5213545       92871775
## 210       1505904  10986665  105511741  19378270   6099877      191922488
## 211       2059168  16998979  117680043  28728293   6964194      299428837
## 212       2645408  23168534  131834589  38996437   7868816      413994154
## 213       3268288  30031873  144860504  48832175   8854046      534510517
## 214       4030400  37807975  159139508  58395439   9854020      659934399
## 215       5202880  45808786  173733645  66975425  11004130      782145523
## 216       6441312  53736688  188903030  74998616  12245840      903666941
## 217       7800656  61744433  204639910  84881741  13608105     1024934796
## 218       9398160  70308750  220659432  94071833  15230306     1151810583
## 219      11288784  79188358  237902730 106099214  16900109     1286503612
## 220      13531152  90793219  256556816 119551164  18602800     1440931133
## 221      15986032 103292922  276145193 131258684  20486315     1602908444
## 222      18697392 114997043  296921458 142610802  22892202     1766355941
## 223      21573632 128971486  319295108 155203864  25395653     1930449060
## 224      24816272 142996021  342180440 166618178  27324337     2096416687
## 225      28802704 157618565  369216015 174884226  29314981     2270051053
## 226      32763488 172697119  396397004 192541760  31802298     2450427146
## 227      36815872 187342966  425742051 201764431  34501183     2636184015
## 228      41630368 203699874  456361099 209618806  37345672     2823598978
## 229      47049424 221482983  487993204 217858199  40390504     3006096654
## 230      52618704 238950423  519297466 226337488  43650413     3190706863
## 231      56484224 257951848  551924772 234413988  46745384     3373278888
## 232      62038848 275381596  586345409 243444150  49901824     3554053461
## 233      66556560 294152897  617042392 248085102  53052440     3735050133
## 234      71689824 313951204  649479711 259674155  56286282     3922144491
## 235      78673408 334144122  681884818 273238648  59430682     4106673286
## 236      84250016 355226771  715260023 275839003  63035925     4292455488
## 237      91600000 376166333  748993410 278150778  67219952     4476717307
## 238     100404592 397836221  784392082 280428049  71416577     4657926135
## 239     108670576 419453271  819905115 284763019  75845124     4833105698
## 240     113452096 442895236  853021758 289405389  80488180     4997333100
## 241     117760960 460199421  882572988 293109875  85619999     5145845576
## 242     121604496 476831969  913705975 296161920  91127155     5289919795
## 243     126697456 493935684  942990085 300873299  96878525     5427882462
## 244     130830448 510296901  975136843 305390200 102872548     5559414971
## 245     136945664 527336998 1000723041 309860050 108736864     5691387031
## 246     144280992 544966207 1027595529 314041320 114951341     5826035745
## 247     151293888 563659149 1052104632 318417068 121252542     5956885459
## 248     157878096 583057391 1076462057 318658597 127846296     6082011122
## 249     163817440 603299128 1101645008 320468494 134707091     6198452704
## 250     170280736 623114863 1127589248 325270838 141815951     6325349618
## 251     177678352 644081561 1152921436 330161010 148798192     6452015990
## 252     184636288 666135532 1178887032 334875526 155968972     6575614020
## 253     189769552 689521817 1204242143 339593178 163529207     6702662394
## 254     197104880 712566572 1229108093 344542948 171316958     6830421719
## 255     204601424 736056106 1254955740 349448805 179289128     6955716250
## 256     211412800 759781745 1282183908 354561686 187449973     7082096541
## 257     217949376 784837970 1308781347 360317598 195922586     7210277275
## 258     224540912 808623267 1339027394 365853938 204556779     7333211143
## 259     230055232 830618773 1368732563 371518885 212939378     7448466426
## 260     236119152 851863857 1406904738 375420985 220957255     7565961978
## 261     242465200 872665530 1442676586 380398987 228657450     7680985280
## 262     250808128 891908503 1478603454 386393291 235827377     7791899361
## 263     260338192 910496681 1513192442 391603499 242322236     7898300552
## 264     270077104 928347354 1547825532 397480555 249200779     8002360859
## 265     280931213 946343922 1583826337 403615931 256103650     8107145417
## 266     291688755 964565396 1620492822 409870389 263411449     8213688712
## 267     303413163 981746998 1656996984 416123737 270926137     8321584468
##     Czechoslovakia Democratic.Republic.of.Congo    Denmark Djibouti
## 1                0                            0          0        0
## 2                0                            0          0        0
## 3                0                            0          0        0
## 4                0                            0          0        0
## 5                0                            0          0        0
## 6                0                            0          0        0
## 7                0                            0          0        0
## 8                0                            0          0        0
## 9                0                            0          0        0
## 10               0                            0          0        0
## 11               0                            0          0        0
## 12               0                            0          0        0
## 13               0                            0          0        0
## 14               0                            0          0        0
## 15               0                            0          0        0
## 16               0                            0          0        0
## 17               0                            0          0        0
## 18               0                            0          0        0
## 19               0                            0          0        0
## 20               0                            0          0        0
## 21               0                            0          0        0
## 22               0                            0          0        0
## 23               0                            0          0        0
## 24               0                            0          0        0
## 25               0                            0          0        0
## 26               0                            0          0        0
## 27               0                            0          0        0
## 28               0                            0          0        0
## 29               0                            0          0        0
## 30               0                            0          0        0
## 31               0                            0          0        0
## 32               0                            0          0        0
## 33               0                            0          0        0
## 34               0                            0          0        0
## 35               0                            0          0        0
## 36               0                            0          0        0
## 37               0                            0          0        0
## 38               0                            0          0        0
## 39               0                            0          0        0
## 40               0                            0          0        0
## 41               0                            0          0        0
## 42               0                            0          0        0
## 43               0                            0          0        0
## 44               0                            0          0        0
## 45               0                            0          0        0
## 46               0                            0          0        0
## 47               0                            0          0        0
## 48               0                            0          0        0
## 49               0                            0          0        0
## 50               0                            0          0        0
## 51               0                            0          0        0
## 52               0                            0          0        0
## 53               0                            0          0        0
## 54               0                            0          0        0
## 55               0                            0          0        0
## 56               0                            0          0        0
## 57               0                            0          0        0
## 58               0                            0          0        0
## 59               0                            0          0        0
## 60               0                            0          0        0
## 61               0                            0          0        0
## 62               0                            0          0        0
## 63               0                            0          0        0
## 64               0                            0          0        0
## 65               0                            0          0        0
## 66               0                            0          0        0
## 67               0                            0          0        0
## 68               0                            0          0        0
## 69               0                            0          0        0
## 70               0                            0          0        0
## 71               0                            0          0        0
## 72               0                            0          0        0
## 73               0                            0          0        0
## 74               0                            0          0        0
## 75               0                            0          0        0
## 76               0                            0          0        0
## 77               0                            0          0        0
## 78               0                            0          0        0
## 79               0                            0          0        0
## 80               0                            0          0        0
## 81               0                            0          0        0
## 82               0                            0          0        0
## 83               0                            0          0        0
## 84               0                            0          0        0
## 85               0                            0          0        0
## 86               0                            0          0        0
## 87               0                            0          0        0
## 88               0                            0          0        0
## 89               0                            0          0        0
## 90               0                            0          0        0
## 91               0                            0          0        0
## 92               0                            0          0        0
## 93               0                            0     135568        0
## 94               0                            0     293120        0
## 95               0                            0     501968        0
## 96               0                            0     729136        0
## 97               0                            0     901344        0
## 98               0                            0    1212784        0
## 99               0                            0    1483920        0
## 100              0                            0    1824672        0
## 101              0                            0    2136112        0
## 102              0                            0    2469536        0
## 103              0                            0    2828608        0
## 104              0                            0    3286608        0
## 105              0                            0    3740944        0
## 106              0                            0    4389472        0
## 107              0                            0    5052656        0
## 108              0                            0    5543632        0
## 109              0                            0    6170176        0
## 110         267472                            0    6712448        0
## 111        1146832                            0    7496544        0
## 112        2641744                            0    8174384        0
## 113        4752208                            0    8929168        0
## 114        7478224                            0    9577696        0
## 115       10819792                            0   10592624        0
## 116       14776912                            0   11530608        0
## 117       19345920                            0   12446608        0
## 118       24530480                            0   13531152        0
## 119       30330592                            0   14476464        0
## 120       36746256                            0   15619632        0
## 121       43777472                            0   16806768        0
## 122       51420576                            0   17946272        0
## 123       59679232                            0   19096768        0
## 124       68553440                            0   20338864        0
## 125       78043200                            0   21797136        0
## 126       94446928                            0   23339680        0
## 127      111682384                            0   24863904        0
## 128      129749568                            0   26311184        0
## 129      149165104                            0   27945328        0
## 130      169734800                            0   29806640        0
## 131      191458656                            0   31777872        0
## 132      213673488                            0   33892000        0
## 133      237401552                            0   36321232        0
## 134      261910048                            0   38739472        0
## 135      287642320                            0   41274960        0
## 136      314693632                            0   43704192        0
## 137      343107952                            0   46195712        0
## 138      373563120                            0   48998672        0
## 139      405806320                            0   51992160        0
## 140      440288224                            0   54861072        0
## 141      476037872                            0   57946160        0
## 142      512329792                            0   61115520        0
## 143      549427792                            0   64112672        0
## 144      587456448                            0   67512864        0
## 145      626925056                            0   71037632        0
## 146      667364624                            0   75350160        0
## 147      710163808                            0   79974128        0
## 148      753919296                            0   84777632        0
## 149      798810624                            0   90028144        0
## 150      843375856                            0   95176064        0
## 151      889941632                            0  100536496        0
## 152      937130288                            0  106039824        0
## 153      985205632                            0  111766656        0
## 154     1033749968                            0  117944160        0
## 155     1083723264                            0  123953120        0
## 156     1135909616                            0  130497024        0
## 157     1190756032                            0  136330112        0
## 158     1246613712                            0  143566512        0
## 159     1302130640                            0  151572352        0
## 160     1357068656                            0  158922336        0
## 161     1412702832                            0  166752304        0
## 162     1471898416                            0  176036880        0
## 163     1533816352                            0  185563280        0
## 164     1590263936                            0  195327840        0
## 165     1646586944                            0  205781232        0
## 166     1706533648                            0  215996464        0
## 167     1762904288                            0  223430720        0
## 168     1810964976                            0  232107072        0
## 169     1856369264                            0  240343744        0
## 170     1901399824                         3664  247536176        0
## 171     1944646016                        10992  254329232        0
## 172     1983242592                        91600  263980208        0
## 173     2024037568                       252816  274506880        0
## 174     2074109792                       468992  286847232        0
## 175     2121232496                       641200  297568096        0
## 176     2169011056                       879360  308036144        0
## 177     2220285072                      1110192  321362112        0
## 178     2274270448                      1392320  333922304        0
## 179     2334660496                      1696432  349050960        0
## 180     2387898416                      2084816  362860576        0
## 181     2437710496                      2333968  377183152        0
## 182     2481125232                      2385264  390611712        0
## 183     2520832000                      2388928  403985312        0
## 184     2560494800                      2407248  418630320        0
## 185     2601326416                      2440224  433883552        0
## 186     2645690128                      2480528  449664400        0
## 187     2699426352                      2583120  465961872        0
## 188     2760999872                      2704032  480595888        0
## 189     2828648304                      2791968  496900688        0
## 190     2904892480                      2868912  511725232        0
## 191     2981634960                      2971504  529125568        0
## 192     3064404720                      3114400  545598912        0
## 193     3155788544                      3334240  566223568        0
## 194     3242918464                      3506448  586507472        0
## 195     3289158144                      3678656  600551584        0
## 196     3346708592                      3990096  618197408        0
## 197     3412019392                      4316192  639653792        0
## 198     3482606352                      4689920  656728032        0
## 199     3556809680                      5166240  673611744        0
## 200     3633207744                      6646496  695603072    10992
## 201     3714618160                      8394224  717528448    36640
## 202     3801663808                     10479040  740432112    62288
## 203     3891882480                     12769040  763588592    91600
## 204     3988231024                     15586656  789170640   124576
## 205     4088243568                     18975856  816240272   161216
## 206     4195562128                     22152544  842617408   190528
## 207     4307651216                     25483120  867521616   234496
## 208     4430124080                     28410656  894316448   282128
## 209     4552710528                     31109627  920350880   318768
## 210     4683453040                     33428137  950100399   359072
## 211     4825356096                     35783524  981802266   403040
## 212     4976576704                     37955474 1018692150   450672
## 213     5135649264                     40248157 1059360062   516624
## 214     5301199776                     42222132 1102506988   600896
## 215     5462511040                     44690658 1146800359   721808
## 216     5622913632                     47093172 1196878770   861040
## 217     5782982800                     49381984 1245905197   948976
## 218     5950453248                     52748011 1299177873  1069888
## 219     6128241520                     56396047 1358520459  1154160
## 220     6332077168                     59105714 1420559780  1293392
## 221     6545933856                     62064383 1477569255  1454608
## 222     6761787424                     65081588 1537163159  1645136
## 223     6978556992                     68270762 1596384974  1824672
## 224     7197876704                     71635453 1651426497  2018864
## 225     7427389664                     74868239 1707171099  2216720
## 226     7665875760                     78273124 1767273460  2414576
## 227     7911539632                     81750095 1829090844  2612432
## 228     8159486176                     85276071 1890186701  2813952
## 229     8401017056                     89016176 1953164349  3176688
## 230     8645427840                     92501196 2013512280  3524768
## 231     8887229856                     96256620 2065284865  3825216
## 232     9126705232                     99303585 2118968720  4173296
## 233     9366561664                    103301585 2169136056  4521376
## 234     9614541184                    107233226 2219991918  4873120
## 235     9859179136                    110845160 2280056543  5232192
## 236    10105546496                    114190824 2338962824  5609584
## 237    10349986592                    118006687 2397308442  5997968
## 238    10590546512                    121984679 2452419908  6346048
## 239    10823214176                    126336671 2501227716  6734432
## 240    11040793488                    130363040 2554828590  7056864
## 241    11241448784                    133301447 2619049535  7368304
## 242    11241448784                    136099686 2677462910  7679744
## 243    11241448784                    138676947 2738116325  7991184
## 244    11241448784                    140299486 2802831500  8295296
## 245    11241448784                    142399551 2864459996  8599408
## 246    11241448784                    144692988 2939337495  8910848
## 247    11241448784                    146579420 3004807071  9236944
## 248    11241448784                    148234260 3066036486  9552048
## 249    11241448784                    149600479 3124685992  9867152
## 250    11241448784                    150397985 3178993542 10207904
## 251    11241448784                    151214392 3234874295 10574304
## 252    11241448784                    152115646 3290425983 10973680
## 253    11241448784                    153068558 3351061241 11395040
## 254    11241448784                    154226067 3406171375 11801744
## 255    11241448784                    155671371 3457703449 12215776
## 256    11241448784                    157224661 3517142328 12626144
## 257    11241448784                    158920878 3571799435 13087808
## 258    11241448784                    160731713 3623010033 13586112
## 259    11241448784                    162426996 3671833527 14047776
## 260    11241448784                    164390334 3721125802 14564400
## 261    11241448784                    166829035 3765441345 15037056
## 262    11241448784                    169181202 3805322203 15553680
## 263    11241448784                    172719331 3847147257 16145862
## 264    11241448784                    177350595 3884770789 16828554
## 265    11241448784                    182054375 3920085907 17569039
## 266    11241448784                    182054375 3957203249 18357266
## 267    11241448784                    186868045 3991753370 19174274
##     Dominica Dominican.Republic        EU.28    Ecuador      Egypt
## 1          0                  0      9350528          0          0
## 2          0                  0     18704720          0          0
## 3          0                  0     28058912          0          0
## 4          0                  0     37416768          0          0
## 5          0                  0     46778288          0          0
## 6          0                  0     56784672          0          0
## 7          0                  0     66794720          0          0
## 8          0                  0     76808432          0          0
## 9          0                  0     86825808          0          0
## 10         0                  0     96843184          0          0
## 11         0                  0    107816864          0          0
## 12         0                  0    118794208          0          0
## 13         0                  0    129775216          0          0
## 14         0                  0    140759888          0          0
## 15         0                  0    151748224          0          0
## 16         0                  0    164007968          0          0
## 17         0                  0    176271376          0          0
## 18         0                  0    188538448          0          0
## 19         0                  0    200809184          0          0
## 20         0                  0    213083584          0          0
## 21         0                  0    226695344          0          0
## 22         0                  0    240310768          0          0
## 23         0                  0    253929856          0          0
## 24         0                  0    267552608          0          0
## 25         0                  0    281179024          0          0
## 26         0                  0    296216080          0          0
## 27         0                  0    311256800          0          0
## 28         0                  0    326301184          0          0
## 29         0                  0    341349232          0          0
## 30         0                  0    356404608          0          0
## 31         0                  0    373248016          0          0
## 32         0                  0    390095088          0          0
## 33         0                  0    406949488          0          0
## 34         0                  0    423807552          0          0
## 35         0                  0    440672944          0          0
## 36         0                  0    459821008          0          0
## 37         0                  0    478976400          0          0
## 38         0                  0    498135456          0          0
## 39         0                  0    517301840          0          0
## 40         0                  0    536475552          0          0
## 41         0                  0    557891632          0          0
## 42         0                  0    579784032          0          0
## 43         0                  0    601694752          0          0
## 44         0                  0    623572496          0          0
## 45         0                  0    645461232          0          0
## 46         0                  0    668408864          0          0
## 47         0                  0    692499664          0          0
## 48         0                  0    717590736          0          0
## 49         0                  0    744015504          0          0
## 50         0                  0    771850912          0          0
## 51         0                  0    799539760          0          0
## 52         0                  0    836029536          0          0
## 53         0                  0    867217504          0          0
## 54         0                  0    901190112          0          0
## 55         0                  0    934265040          0          0
## 56         0                  0    968974112          0          0
## 57         0                  0   1005467552          0          0
## 58         0                  0   1040136320          0          0
## 59         0                  0   1074819744          0          0
## 60         0                  0   1111778512          0          0
## 61         0                  0   1150910032          0          0
## 62         0                  0   1191430208          0          0
## 63         0                  0   1232126256          0          0
## 64         0                  0   1273690672          0          0
## 65         0                  0   1316574128          0          0
## 66         0                  0   1363572256          0          0
## 67         0                  0   1412281472          0          0
## 68         0                  0   1461140912          0          0
## 69         0                  0   1510322784          0          0
## 70         0                  0   1560215472          0          0
## 71         0                  0   1610818976          0          0
## 72         0                  0   1663415696          0          0
## 73         0                  0   1719060864          0          0
## 74         0                  0   1776567344          0          0
## 75         0                  0   1836184288          0          0
## 76         0                  0   1896284880          0          0
## 77         0                  0   1960749296          0          0
## 78         0                  0   2025788960          0          0
## 79         0                  0   2090374288          0          0
## 80         0                  0   2177379632          0          0
## 81         0                  0   2259614448          0          0
## 82         0                  0   2341684384          0          0
## 83         0                  0   2424941456          0          0
## 84         0                  0   2510041520          0          0
## 85         0                  0   2596152848          0          0
## 86         0                  0   2696176384          0          0
## 87         0                  0   2795533072          0          0
## 88         0                  0   2898491472          0          0
## 89         0                  0   3004542288          0          0
## 90         0                  0   3117551040          0          0
## 91         0                  0   3233894032          0          0
## 92         0                  0   3356403536          0          0
## 93         0                  0   3481426544          0          0
## 94         0                  0   3613473440          0          0
## 95         0                  0   3757377040          0          0
## 96         0                  0   3902335872          0          0
## 97         0                  0   4059532464          0          0
## 98         0                  0   4216391968          0          0
## 99         0                  0   4381528448          0          0
## 100        0                  0   4558320112          0          0
## 101        0                  0   4732272176          0          0
## 102        0                  0   4912797456          0          0
## 103        0                  0   5099577184          0          0
## 104        0                  0   5321197888          0          0
## 105        0                  0   5542452192          0          0
## 106        0                  0   5779223536          0          0
## 107        0                  0   6017537424          0          0
## 108        0                  0   6258504048          0          0
## 109        0                  0   6512499856          0          0
## 110        0                  0   6792817840          0          0
## 111        0                  0   7090814624          0          0
## 112        0                  0   7392845472          0          0
## 113        0                  0   7710426336          0          0
## 114        0                  0   8052482720          0          0
## 115        0                  0   8418428384          0          0
## 116        0                  0   8794457376          0          0
## 117        0                  0   9187666864          0          0
## 118        0                  0   9584983696          0          0
## 119        0                  0  10000140544          0          0
## 120        0                  0  10420240128          0          0
## 121        0                  0  10866683872          0          0
## 122        0                  0  11348976192          0          0
## 123        0                  0  11856938496          0          0
## 124        0                  0  12325307616          0          0
## 125        0                  0  12842030544          0          0
## 126        0                  0  13362754560          0          0
## 127        0                  0  13881060336          0          0
## 128        0                  0  14402161744          0          0
## 129        0                  0  14939326128          0          0
## 130        0                  0  15544358784          0          0
## 131        0                  0  16164681312          0          0
## 132        0                  0  16805965584          0          0
## 133        0                  0  17482138464          0          0
## 134        0                  0  18152584512          0          0
## 135        0                  0  18822590880          0          0
## 136        0                  0  19490197328          0          0
## 137        0                  0  20182612720          0          0
## 138        0                  0  20916097888          0          0
## 139        0                  0  21682789888          0          0
## 140        0                  0  22482216064          0          0
## 141        0                  0  23307429472          0          0
## 142        0                  0  24116876688          0          0
## 143        0                  0  24896847024          0          0
## 144        0                  0  25746993952          0          0
## 145        0                  0  26615094480          0          0
## 146        0                  0  27524609200          0          0
## 147        0                  0  28474863936          0          0
## 148        0                  0  29451781600          0          0
## 149        0                  0  30488810848          0          0
## 150        0                  0  31573838496          0          0
## 151        0                  0  32645302016          0          0
## 152        0                  0  33718905312          0          0
## 153        0                  0  34841507280          0          0
## 154        0                  0  35979355152          0          0
## 155        0                  0  37160053504          0          0
## 156        0                  0  38370327664          0          0
## 157        0                  0  39713092064          0          0
## 158        0                  0  41077107664          0          0
## 159        0                  0  42438034512          0          0
## 160        0                  0  43821275120          0          0
## 161        0                  0  45235307984          0      10992
## 162        0                  0  46690952896          0      95264
## 163        0                  0  48267425536          0     135568
## 164        0                  0  49671158896          0     443344
## 165        0                  0  51000982048          0     534944
## 166        0                  0  52390022768          0     714480
## 167        0                  0  53770277216      25648    1135840
## 168        0                  0  55071304992      51296    2000544
## 169        0                  0  56167060832      76944    2689376
## 170        0                  0  57451333136     102592    3143712
## 171        0                  0  58619746096     128240    3704304
## 172        0                  0  59924364592     153888    4235584
## 173        0                  0  61158462080     190528    4704576
## 174        0                  0  62580874512     234496    5202880
## 175        0                  0  63991258032     304112    5756144
## 176        0                  0  65163291024     395712    6287424
## 177        0                  0  66672683152     630208    6855344
## 178        0                  0  68175886784    1102864    7723712
## 179        0                  0  69805641312    1703760    8647040
## 180        0                  0  71309574080    2381600    9669296
## 181        0                  0  72675806400    3147376   10676896
## 182        0                  0  73914322672    3858192   11629536
## 183        0                  0  75180014832    4583664   12501568
## 184        0                  0  76547221776    5316464   13325968
## 185        0                  0  77964559568    6100560   14073424
## 186        0                  0  79445709584    6976256   14802560
## 187        0                  0  81067374000    7950880   15491392
## 188        0                  0  82674048992    8980464   16370752
## 189        0                  0  84314579344   10050352   18598464
## 190        0                  0  86017789744   11138560   21628592
## 191        0                  0  87700628304   11867696   25582048
## 192        0                  0  89401233600   12919264   29418256
## 193        0                  0  91089773344   13974496   33521936
## 194        0                  0  92576848048   15300864   37882096
## 195        0                  0  93429607408   16528304   42238592
## 196        0                  0  94641665936   17631168   46463184
## 197        0               7328  96010756176   18788992   50878304
## 198        0              29312  97492166336   20075056   57030160
## 199        0              54960  99092634512   21375776   64493728
## 200        0             403040 101000000000   22115904   74730944
## 201     3664             762112 103000000000   22819392   85294256
## 202    10992            1355680 105000000000   23713408   96190992
## 203    14656            1974896 106000000000   24534144  106974144
## 204    18320            2601440 109000000000   25497776  118643984
## 205    21984            3517440 111000000000   26695904  129291568
## 206    25648            4503056 113000000000   27992960  139239328
## 207    29312            5536304 115000000000   29125136  151161984
## 208    36640            6602528 118000000000   30447840  164850688
## 209    47632            7715611 120000000000   31740608  177557547
## 210    58624            8755504 123000000000   33502190  193590278
## 211    69616            9784137 126000000000   35146434  210656198
## 212    80608           11025252 128000000000   36710100  229227308
## 213    95264           12273755 131000000000   38504420  250754167
## 214   109920           14020265 135000000000   40646701  276245414
## 215   124576           15565611 138000000000   42920738  303854870
## 216   139232           17235266 141000000000   45337462  330387020
## 217   161216           18802210 145000000000   47926335  350036930
## 218   183200           21149526 148000000000   51038982  372909556
## 219   201520           23800687 152000000000   54627860  392574309
## 220   227168           26905768 156000000000   58906075  414228318
## 221   252816           30424465 160000000000   63125517  437240719
## 222   278464           35093332 164000000000   67714548  462715715
## 223   304112           41052312 168000000000   72970426  486476791
## 224   333424           47461875 173000000000   79053983  512565933
## 225   362736           53794554 177000000000   86408888  543625845
## 226   392048           60116904 181000000000   94509482  578076297
## 227   417696           65715823 186000000000  101981683  615891361
## 228   443344           71146147 190000000000  112388104  655152367
## 229   476320           77931733 195000000000  124528568  698041873
## 230   512960           84358741 200000000000  137935736  743217901
## 231   549600           90493982 204000000000  154588537  794120585
## 232   589904           96797467 208000000000  173823655  850551753
## 233   630208          104663062 213000000000  193326271  907532229
## 234   674176          112053527 217000000000  214515773  971236546
## 235   721808          119295070 221000000000  233868451 1035043778
## 236   769440          127416152 226000000000  249062533 1109436676
## 237   817072          137103442 230000000000  264084784 1184050197
## 238   872032          146843197 234000000000  281253380 1258359675
## 239   930656          157101100 239000000000  301407090 1330264226
## 240   989280          166252762 243000000000  318117673 1405886202
## 241  1047904          176205385 248000000000  334495299 1484206913
## 242  1106528          187027722 252000000000  356652628 1565033061
## 243  1168816          198694901 256000000000  380740016 1657735668
## 244  1234768          211071695 260000000000  394278518 1742570610
## 245  1315376          226843058 264000000000  416976429 1837737506
## 246  1388656          244040715 269000000000  441001914 1939145971
## 247  1469264          261897651 273000000000  459206971 2046657961
## 248  1546208          280146161 277000000000  481521714 2168123220
## 249  1626816          298530088 281000000000  502886735 2292620637
## 250  1729408          318123762 286000000000  523449352 2432968240
## 251  1839328          337717551 290000000000  546388822 2557261026
## 252  1941920          358791806 294000000000  571141960 2683042476
## 253  2059168          380051732 298000000000  597889813 2829504519
## 254  2172752          398121422 303000000000  626675657 2978648252
## 255  2290000          416501624 307000000000  656645750 3143689945
## 256  2403584          435922026 311000000000  685170351 3319709463
## 257  2557472          456678458 316000000000  716664332 3505614652
## 258  2689376          476947475 320000000000  749989326 3700900028
## 259  2821280          496761133 324000000000  785492543 3903609734
## 260  2960512          517335562 328000000000  821376640 4102417397
## 261  3088752          538116220 331000000000  859350101 4315688402
## 262  3224320          559767516 335000000000  896810627 4527681137
## 263  3356224          580725311 339000000000  937062838 4736131981
## 264  3491792          601716408 342000000000  980259812 4933233481
## 265  3633319          623187518 346000000000 1022134164 5133655640
## 266  3777592          644969862 349000000000 1061888077 5342566978
## 267  3921840          666238638 353000000000 1100685365 5561231356
##     El.Salvador Equatorial.Guinea  Eritrea    Estonia  Ethiopia
## 1             0                 0        0          0         0
## 2             0                 0        0          0         0
## 3             0                 0        0          0         0
## 4             0                 0        0          0         0
## 5             0                 0        0          0         0
## 6             0                 0        0          0         0
## 7             0                 0        0          0         0
## 8             0                 0        0          0         0
## 9             0                 0        0          0         0
## 10            0                 0        0          0         0
## 11            0                 0        0          0         0
## 12            0                 0        0          0         0
## 13            0                 0        0          0         0
## 14            0                 0        0          0         0
## 15            0                 0        0          0         0
## 16            0                 0        0          0         0
## 17            0                 0        0          0         0
## 18            0                 0        0          0         0
## 19            0                 0        0          0         0
## 20            0                 0        0          0         0
## 21            0                 0        0          0         0
## 22            0                 0        0          0         0
## 23            0                 0        0          0         0
## 24            0                 0        0          0         0
## 25            0                 0        0          0         0
## 26            0                 0        0          0         0
## 27            0                 0        0          0         0
## 28            0                 0        0          0         0
## 29            0                 0        0          0         0
## 30            0                 0        0          0         0
## 31            0                 0        0          0         0
## 32            0                 0        0          0         0
## 33            0                 0        0          0         0
## 34            0                 0        0          0         0
## 35            0                 0        0          0         0
## 36            0                 0        0          0         0
## 37            0                 0        0          0         0
## 38            0                 0        0          0         0
## 39            0                 0        0          0         0
## 40            0                 0        0          0         0
## 41            0                 0        0          0         0
## 42            0                 0        0          0         0
## 43            0                 0        0          0         0
## 44            0                 0        0          0         0
## 45            0                 0        0          0         0
## 46            0                 0        0          0         0
## 47            0                 0        0          0         0
## 48            0                 0        0          0         0
## 49            0                 0        0          0         0
## 50            0                 0        0          0         0
## 51            0                 0        0          0         0
## 52            0                 0        0          0         0
## 53            0                 0        0          0         0
## 54            0                 0        0          0         0
## 55            0                 0        0          0         0
## 56            0                 0        0          0         0
## 57            0                 0        0          0         0
## 58            0                 0        0          0         0
## 59            0                 0        0          0         0
## 60            0                 0        0          0         0
## 61            0                 0        0          0         0
## 62            0                 0        0          0         0
## 63            0                 0        0          0         0
## 64            0                 0        0          0         0
## 65            0                 0        0          0         0
## 66            0                 0        0          0         0
## 67            0                 0        0          0         0
## 68            0                 0        0          0         0
## 69            0                 0        0          0         0
## 70            0                 0        0          0         0
## 71            0                 0        0          0         0
## 72            0                 0        0          0         0
## 73            0                 0        0          0         0
## 74            0                 0        0          0         0
## 75            0                 0        0          0         0
## 76            0                 0        0          0         0
## 77            0                 0        0          0         0
## 78            0                 0        0          0         0
## 79            0                 0        0          0         0
## 80            0                 0        0          0         0
## 81            0                 0        0          0         0
## 82            0                 0        0          0         0
## 83            0                 0        0          0         0
## 84            0                 0        0          0         0
## 85            0                 0        0          0         0
## 86            0                 0        0          0         0
## 87            0                 0        0          0         0
## 88            0                 0        0          0         0
## 89            0                 0        0          0         0
## 90            0                 0        0          0         0
## 91            0                 0        0          0         0
## 92            0                 0        0          0         0
## 93            0                 0        0          0         0
## 94            0                 0        0          0         0
## 95            0                 0        0          0         0
## 96            0                 0        0          0         0
## 97            0                 0        0          0         0
## 98            0                 0        0          0         0
## 99            0                 0        0          0         0
## 100           0                 0        0          0         0
## 101           0                 0        0          0         0
## 102           0                 0        0          0         0
## 103           0                 0        0          0         0
## 104           0                 0        0          0         0
## 105           0                 0        0          0         0
## 106           0                 0        0          0         0
## 107           0                 0        0          0         0
## 108           0                 0        0          0         0
## 109           0                 0        0          0         0
## 110           0                 0        0          0         0
## 111           0                 0        0          0         0
## 112           0                 0        0          0         0
## 113           0                 0        0          0         0
## 114           0                 0        0          0         0
## 115           0                 0        0          0         0
## 116           0                 0        0          0         0
## 117           0                 0        0          0         0
## 118           0                 0        0          0         0
## 119           0                 0        0          0         0
## 120           0                 0        0          0         0
## 121           0                 0        0          0         0
## 122           0                 0        0          0         0
## 123           0                 0        0          0         0
## 124           0                 0        0          0         0
## 125           0                 0        0          0         0
## 126           0                 0        0          0         0
## 127           0                 0        0          0         0
## 128           0                 0        0          0         0
## 129           0                 0        0          0         0
## 130           0                 0        0          0         0
## 131           0                 0        0          0         0
## 132           0                 0        0          0         0
## 133           0                 0        0          0         0
## 134           0                 0        0          0         0
## 135           0                 0        0          0         0
## 136           0                 0        0          0         0
## 137           0                 0        0          0         0
## 138           0                 0        0          0         0
## 139           0                 0        0          0         0
## 140           0                 0        0          0         0
## 141           0                 0        0          0         0
## 142           0                 0        0          0         0
## 143           0                 0        0          0         0
## 144           0                 0        0          0         0
## 145           0                 0        0          0         0
## 146           0                 0        0          0         0
## 147           0                 0        0          0         0
## 148           0                 0        0          0         0
## 149           0                 0        0          0         0
## 150           0                 0        0          0         0
## 151           0                 0        0          0         0
## 152           0                 0        0          0         0
## 153           0                 0        0          0         0
## 154           0                 0        0          0         0
## 155           0                 0        0          0         0
## 156           0                 0        0          0         0
## 157           0                 0        0          0         0
## 158           0                 0        0          0         0
## 159           0                 0        0          0         0
## 160           0                 0        0          0         0
## 161           0                 0        0          0         0
## 162           0                 0        0          0         0
## 163           0                 0        0          0         0
## 164           0                 0        0          0         0
## 165           0                 0        0          0         0
## 166           0                 0        0          0         0
## 167           0                 0        0          0         0
## 168           0                 0        0          0         0
## 169           0                 0        0          0         0
## 170           0                 0        0          0         0
## 171           0                 0        0          0         0
## 172           0                 0        0          0         0
## 173           0                 0        0          0         0
## 174           0                 0        0          0         0
## 175           0                 0        0          0         0
## 176           0                 0        0          0         0
## 177           0                 0        0          0         0
## 178           0                 0        0      32976         0
## 179           0                 0        0      62288         0
## 180           0                 0        0      84272         0
## 181           0                 0        0     106256         0
## 182           0                 0        0     120912         0
## 183           0                 0        0     135568         0
## 184           0                 0        0     150224         0
## 185           0                 0        0     168544         0
## 186           0                 0        0     194192         0
## 187           0                 0        0     227168         0
## 188           0                 0        0     267472         0
## 189           0                 0    14656     304112         0
## 190           0                 0    21984     304112         0
## 191           0                 0    25648     304112     10992
## 192           0                 0    36640     304112     21984
## 193           0                 0    51296     304112     32976
## 194           0                 0    69616     304112     32976
## 195           0                 0    69616     304112     32976
## 196           0                 0    69616     304112     32976
## 197           0                 0    69616     304112     32976
## 198           0                 0    69616     304112     36640
## 199           0                 0    69616     304112     40304
## 200      267472             10992    69616     304112    128240
## 201      589904             21984    69616     304112    190528
## 202      978288             32976    69616     304112    289456
## 203     1395984             43968    69616     304112    472656
## 204     1864976             73280    69616     304112    743792
## 205     2326640            109920    69616     304112    970960
## 206     2854256            146560    69616     304112   1212784
## 207     3451488            179536    69616     304112   1535216
## 208     4048720            227168    69616     304112   1853984
## 209     4652953            274800    69616   10121935   2190983
## 210     5271813            296784    69616   20343633   2542608
## 211     5854091            318768    69616   30884780   2883241
## 212     6502352            340752    69616   41948038   3278775
## 213     7626873            366400    69616   53812648   3699986
## 214     8857620            392048    69616   66430647   4106512
## 215     9897870            421360    69616   79815800   4750990
## 216    11201689            447008    69616   93951094   5574974
## 217    12358948            472656    69616  108731558   6647931
## 218    13618740            501968    69616  123927228   8372962
## 219    14808976            545936    69616  139752550  10039399
## 220    16237282            582576    69616  156397685  11691120
## 221    17746107            648528    69616  174069681  13540578
## 222    19423328            736464    69616  192671706  14946781
## 223    21389915            765776    69616  212068765  16697668
## 224    23359958            817072    69616  232214560  18433929
## 225    25465421            879360    69616  253401342  19642454
## 226    27672154            941648    69616  275406605  20817183
## 227    29953842           1003936    69616  298163479  21863969
## 228    32335214           1073552    69616  321703633  23232470
## 229    34711935           1135840    69616  345439945  25076605
## 230    36831369           1194464    69616  370112707  26894088
## 231    38650100           1264080    69616  394325377  28754095
## 232    40402199           1337360    69616  418998556  30228008
## 233    42287563           1399648    69616  444031244  32062762
## 234    43875862           1480256    69616  469294477  33713044
## 235    45841201           1546208    69616  496540894  35511754
## 236    47808697           1626816    69616  523867874  37707000
## 237    50223189           1725744    69616  552348668  40261381
## 238    52656257           1832000    69616  581615610  42901447
## 239    55203503           1949248    69616  610276130  45695561
## 240    57670673           2015200    69616  647345107  48681336
## 241    60794541           2158096    69616  681382812  51638476
## 242    64082047           2315648    69616  705897403  54575808
## 243    67815494           2414576    69616  724963430  57570625
## 244    72347730           2447552   930337  744864405  59767504
## 245    77309300           2575792  1859977  763068398  62273157
## 246    81808268           2689376  2867203  781993828  65067810
## 247    87206540           2978832  3726486  800476149  68047139
## 248    92938207           3143712  4312297  817385738  71194546
## 249    98558341           3609040  4927392  833112807  74289499
## 250   104219229           4063376  5531468  848475014  77753286
## 251   110073672           7155792  6157457  864182882  82016668
## 252   116004516          12131504  6757727  879416204  86447156
## 253   122438798          18144128  7478839  896503453  91318279
## 254   128692461          23358000  8243847  913790043  96476898
## 255   135041730          28066240  9005122  930926365 101432025
## 256   141762293          32818448  9561048  947365554 106748966
## 257   148608161          37610960 10135057  967437201 112577321
## 258   155016809          42110352 10544073  985309852 118942386
## 259   161329459          46726992 11052038  999918919 125375432
## 260   167646504          51402256 11560026 1018933777 131771166
## 261   174146978          57524800 12131444 1038030974 139250121
## 262   180652722          62636080 12761118 1055969033 147399659
## 263   186746324          67794992 13399894 1075664630 157479846
## 264   192915780          73137104 14062641 1094568471 168470915
## 265   199453649          78973561 14779167 1110459539 180852341
## 266   206287957          85431835 15543434 1127953042 193794234
## 267   213279980          92146727 16336483 1147762306 207190474
##     Europe..other. Faeroe.Islands Falkland.Islands     Fiji    Finland
## 1                0              0                0        0          0
## 2                0              0                0        0          0
## 3                0              0                0        0          0
## 4                0              0                0        0          0
## 5                0              0                0        0          0
## 6                0              0                0        0          0
## 7                0              0                0        0          0
## 8                0              0                0        0          0
## 9                0              0                0        0          0
## 10               0              0                0        0          0
## 11               0              0                0        0          0
## 12               0              0                0        0          0
## 13               0              0                0        0          0
## 14               0              0                0        0          0
## 15               0              0                0        0          0
## 16               0              0                0        0          0
## 17               0              0                0        0          0
## 18               0              0                0        0          0
## 19               0              0                0        0          0
## 20               0              0                0        0          0
## 21               0              0                0        0          0
## 22               0              0                0        0          0
## 23               0              0                0        0          0
## 24               0              0                0        0          0
## 25               0              0                0        0          0
## 26               0              0                0        0          0
## 27               0              0                0        0          0
## 28               0              0                0        0          0
## 29               0              0                0        0          0
## 30               0              0                0        0          0
## 31               0              0                0        0          0
## 32               0              0                0        0          0
## 33               0              0                0        0          0
## 34               0              0                0        0          0
## 35               0              0                0        0          0
## 36               0              0                0        0          0
## 37               0              0                0        0          0
## 38               0              0                0        0          0
## 39               0              0                0        0          0
## 40               0              0                0        0          0
## 41               0              0                0        0          0
## 42               0              0                0        0          0
## 43               0              0                0        0          0
## 44               0              0                0        0          0
## 45               0              0                0        0          0
## 46               0              0                0        0          0
## 47               0              0                0        0          0
## 48               0              0                0        0          0
## 49               0              0                0        0          0
## 50               0              0                0        0          0
## 51               0              0                0        0          0
## 52               0              0                0        0          0
## 53               0              0                0        0          0
## 54               0              0                0        0          0
## 55               0              0                0        0          0
## 56               0              0                0        0          0
## 57               0              0                0        0          0
## 58               0              0                0        0          0
## 59               0              0                0        0          0
## 60               0              0                0        0          0
## 61               0              0                0        0          0
## 62               0              0                0        0          0
## 63               0              0                0        0          0
## 64               0              0                0        0          0
## 65               0              0                0        0          0
## 66               0              0                0        0          0
## 67               0              0                0        0          0
## 68               0              0                0        0          0
## 69               0              0                0        0          0
## 70               0              0                0        0          0
## 71               0              0                0        0          0
## 72               0              0                0        0          0
## 73               0              0                0        0          0
## 74               0              0                0        0          0
## 75               0              0                0        0          0
## 76               0              0                0        0          0
## 77               0              0                0        0          0
## 78               0              0                0        0          0
## 79           10992              0                0        0          0
## 80           43968              0                0        0          0
## 81           69616              0                0        0          0
## 82           84272              0                0        0          0
## 83          102592              0                0        0          0
## 84           98928              0                0        0          0
## 85          113584              0                0        0          0
## 86          128240              0                0        0          0
## 87          153888              0                0        0          0
## 88          201520              0                0        0          0
## 89          241824              0                0        0          0
## 90          289456              0                0        0          0
## 91          344416              0                0        0          0
## 92          414032              0                0        0          0
## 93          479984              0                0        0          0
## 94          556928              0                0        0          0
## 95          659520              0                0        0          0
## 96          758448              0                0        0          0
## 97          857376              0                0        0          0
## 98          989280              0                0        0          0
## 99         1095536              0                0        0          0
## 100        1344688              0                0        0          0
## 101        1494912              0                0        0          0
## 102        1652464              0                0        0          0
## 103        1817344              0                0        0          0
## 104        2055504              0                0        0          0
## 105        2649072              0                0        0          0
## 106        2953184              0                0        0          0
## 107        3257296              0                0        0          0
## 108        4151312              0                0        0          0
## 109        5195552              0                0        0          0
## 110        6782064              0                0        0      36640
## 111        9372512              0                0        0     109920
## 112       12486912              0                0        0     183200
## 113       16246176              0                0        0     260144
## 114       20932432              0                0        0     307776
## 115       26322176              0                0        0     370064
## 116       34240080              0                0        0     439680
## 117       43264512              0                0        0     501968
## 118       52486800              0                0        0     589904
## 119       63149040              0                0        0     659520
## 120       74965440              0                0        0     751120
## 121       88954592              0                0        0     864704
## 122      103889056              0                0        0     956304
## 123      119087328              0                0        0    1044240
## 124      136058976              0                0        0    1168816
## 125      154888272              0                0        0    1253088
## 126      182426896              0                0        0    1348352
## 127      211222272              0                0        0    1461936
## 128      243395856              0                0        0    1590176
## 129      277364800              0                0        0    1667120
## 130      314884160              0                0        0    1766048
## 131      354250176              0                0        0    1864976
## 132      395169728              0                0        0    1985888
## 133      440050064              0                0        0    2103136
## 134      486062576              0                0        0    2246032
## 135      535248112              0                0        0    2465872
## 136      586225344              0                0        0    2594112
## 137      639840656              0                0        0    2722352
## 138      696716928              0                0        0    2843264
## 139      757682224              0                0        0    3004480
## 140      824330384              0                0        0    3213328
## 141      895976240              0                0        0    3433168
## 142      969934080              0                0        0    3627360
## 143     1049615088              0                0        0    3821552
## 144     1132245616              0                0        0    4041392
## 145     1222369024              0                0        0    4275888
## 146     1314716480              0                0        0    4572672
## 147     1416722240              0                0        0    5089296
## 148     1526356448              0                0        0    5576608
## 149     1647422336              0                0        0    6313072
## 150     1777835088              0                0        0    6913968
## 151     1911578416              0                0        0    7335328
## 152     2043661952              0                0        0    7734704
## 153     2175500000              0                0        0    8247664
## 154     2316289200              0                0        0    8775280
## 155     2450142448              0                0        0    9361520
## 156     2597325328              0                0        0    9977072
## 157     2758772160              0                0        0   10863760
## 158     2922838752              0                0        0   12270736
## 159     3091884720              0                0        0   13553136
## 160     3258347568              0                0        0   14615696
## 161     3430123216              0                0        0   15931072
## 162     3619727888              0                0        0   17414992
## 163     3825010816              0                0        0   19078448
## 164     4008621184              0                0        0   19767280
## 165     4184236704              0                0        0   19873536
## 166     4369180768              0                0        0   20053072
## 167     4535123328              0                0        0   20173984
## 168     4633245248              0                0        0   20247264
## 169     4725589040              0                0        0   20485424
## 170     4818170992              0                0        0   20760224
## 171     4907162224              0                0        0   21042352
## 172     5005591920              0                0        0   21753168
## 173     5112903152              0                0        0   23229760
## 174     5238845824              0                0        0   24973824
## 175     5361985536              0                0        0   26684912
## 176     5508212112              0                0        0   28282416
## 177     5681002688              0                0        0   31133008
## 178     5868577504              0                0        0   34262064
## 179     6073999664              0                0        0   37614624
## 180     6311500144              0                0        0   40263696
## 181     6576194832              0                0        0   43275504
## 182     6858198256              0                0        0   46298304
## 183     7160624816              0                0        0   49522624
## 184     7513182224              0                0        0   53476080
## 185     7905233888              0                0        0   56993520
## 186     8349438928              0                0        0   61958240
## 187     8814334576              0                0        0   68740304
## 188     9306376800              0                0        0   74437824
## 189     9813360816              0                0        0   79310944
## 190    10401678304              0                0        0   81626592
## 191    10917683088              0                0        0   84872896
## 192    11305634736              0                0        0   87683184
## 193    11784768688              0                0        0   91629312
## 194    12232960160              0                0        0   94355328
## 195    12546221168              0                0        0   94996528
## 196    12773894800              0                0        0   98279472
## 197    13060419600              0                0        0  103731504
## 198    13327070864              0                0        0  112191680
## 199    13616622128              0                0        0  117127088
## 200    13898471664          40304           274800   120912  123674656
## 201    14178210736          80608           630208   252816  131654848
## 202    14480893776         135568           883024   410368  140312880
## 203    14819143264         219840           985616   578912  147882704
## 204    15209586432         296784          1278736   736464  157039040
## 205    15667615744         395712          1579184   908672  167968752
## 206    16197052752         509296          1890624  1102864  180140560
## 207    16829111072         604560          2202064  1267744  192385648
## 208    17574471264         721808          2568464  1443616  202996592
## 209    18787056099         820736          2671056  1641472  216552331
## 210    20054102113         879360          2865248  1835664  231639266
## 211    21361355056         992944          3019136  2004208  246560964
## 212    22735695190        1110192          3066768  2235040  263351242
## 213    24213204104        1234768          3114400  2476864  282687733
## 214    25783784865        1355680          3125392  2901769  305515422
## 215    27448568445        1491248          3136384  3246037  330815509
## 216    29206361930        1630480          3147376  3568290  360304349
## 217    31041554479        1799024          3165696  3923520  388892084
## 218    32933998630        1982224          3165696  4319024  422173551
## 219    34905142267        2194736          3165696  4751168  460070380
## 220    36993513326        2451216          3176688  5271218  500425427
## 221    39207492513        2711360          3187680  5820491  540962210
## 222    41531251071        2945856          3198672  6399047  585068344
## 223    43961820966        3198672          3213328  7028898  634388585
## 224    46471156236        3499120          3227984  7699083  680997067
## 225    49104224953        3847200          3242640  8321666  727022877
## 226    51836710818        4176960          3257296  8804664  778221483
## 227    54658760479        4583664          3271952  9569291  828358622
## 228    57585819225        4983040          3286608 10278375  880183811
## 229    60540363641        5463024          3301264 11114831  934421026
## 230    63605269795        5884384          3315920 11907251  992560540
## 231    66624120587        6324064          3341568 12984424 1043964074
## 232    69688168489        6782064          3363552 13819547 1086940826
## 233    72799278580        7269376          3385536 14528473 1128404511
## 234    75943387057        7767680          3411184 15105682 1170551950
## 235    79322956838        8284304          3440496 15678673 1220101338
## 236    82723642186        8775280          3473472 16276759 1273315992
## 237    86249720024        9273584          3510112 16748754 1330849704
## 238    89872667370        9801200          3550416 17298519 1382908130
## 239    93430142013       10380112          3590720 17923722 1435356438
## 240    97018807852       11090928          3631024 18729778 1492323425
## 241   100000000000       11757776          3671328 19392903 1547548692
## 242   103000000000       12406304          3711632 20132935 1601829167
## 243   106000000000       12988880          3751936 20876595 1658177691
## 244   108000000000       13564128          3792240 21615192 1719889259
## 245   110000000000       14135712          3836208 22369087 1778030819
## 246   113000000000       14736608          3880176 23182254 1842089169
## 247   115000000000       15326512          3927808 23964690 1904807440
## 248   117000000000       15949392          3964448 24725794 1964182505
## 249   119000000000       16579600          4001088 25500817 2023080767
## 250   121000000000       17268432          4037728 26334421 2080122299
## 251   123000000000       18030544          4081696 27380371 2142661573
## 252   125000000000       18756016          4125664 28259824 2207723393
## 253   127000000000       19488816          4173296 29295898 2280381762
## 254   129000000000       20236272          4224592 30635882 2349343358
## 255   131000000000       20958080          4275888 31716888 2406388373
## 256   133000000000       21635920          4334512 32918261 2474768192
## 257   136000000000       22324752          4393136 34059400 2541523854
## 258   138000000000       22954960          4451760 34937158 2600132670
## 259   140000000000       23530208          4510384 35715718 2655950897
## 260   142000000000       24160416          4565344 36916963 2719942650
## 261   144000000000       24728336          4620304 37984864 2776486792
## 262   147000000000       25318240          4675264 39025939 2827598682
## 263   149000000000       25996080          4730224 40155115 2879500252
## 264   151000000000       26593312          4785184 41301618 2927299905
## 265   153000000000       27210692          4785184 42552318 2971645985
## 266   155000000000       27872403          4785184 43816443 3019572364
## 267   158000000000       28545340          4785184 45160830 3065528408
##          France French.Guiana French.Polynesia     Gabon   Gambia
## 1             0             0                0         0        0
## 2             0             0                0         0        0
## 3             0             0                0         0        0
## 4             0             0                0         0        0
## 5             0             0                0         0        0
## 6             0             0                0         0        0
## 7             0             0                0         0        0
## 8             0             0                0         0        0
## 9             0             0                0         0        0
## 10            0             0                0         0        0
## 11            0             0                0         0        0
## 12            0             0                0         0        0
## 13            0             0                0         0        0
## 14            0             0                0         0        0
## 15            0             0                0         0        0
## 16            0             0                0         0        0
## 17            0             0                0         0        0
## 18            0             0                0         0        0
## 19            0             0                0         0        0
## 20            0             0                0         0        0
## 21            0             0                0         0        0
## 22            0             0                0         0        0
## 23            0             0                0         0        0
## 24            0             0                0         0        0
## 25            0             0                0         0        0
## 26            0             0                0         0        0
## 27            0             0                0         0        0
## 28            0             0                0         0        0
## 29            0             0                0         0        0
## 30            0             0                0         0        0
## 31            0             0                0         0        0
## 32            0             0                0         0        0
## 33            0             0                0         0        0
## 34            0             0                0         0        0
## 35            0             0                0         0        0
## 36            0             0                0         0        0
## 37            0             0                0         0        0
## 38            0             0                0         0        0
## 39            0             0                0         0        0
## 40            0             0                0         0        0
## 41            0             0                0         0        0
## 42            0             0                0         0        0
## 43            0             0                0         0        0
## 44            0             0                0         0        0
## 45            0             0                0         0        0
## 46            0             0                0         0        0
## 47            0             0                0         0        0
## 48            0             0                0         0        0
## 49            0             0                0         0        0
## 50            0             0                0         0        0
## 51            0             0                0         0        0
## 52      2238704             0                0         0        0
## 53      2238704             0                0         0        0
## 54      4415120             0                0         0        0
## 55      4415120             0                0         0        0
## 56      4415120             0                0         0        0
## 57      4415120             0                0         0        0
## 58      4415120             0                0         0        0
## 59      4415120             0                0         0        0
## 60      6536576             0                0         0        0
## 61      8588416             0                0         0        0
## 62     10805136             0                0         0        0
## 63     12853312             0                0         0        0
## 64     14945456             0                0         0        0
## 65     17286752             0                0         0        0
## 66     19785600             0                0         0        0
## 67     22445664             0                0         0        0
## 68     24827264             0                0         0        0
## 69     27384736             0                0         0        0
## 70     30286624             0                0         0        0
## 71     33298432             0                0         0        0
## 72     36467792             0                0         0        0
## 73     39637152             0                0         0        0
## 74     43154592             0                0         0        0
## 75     47111712             0                0         0        0
## 76     51200736             0                0         0        0
## 77     57110768             0                0         0        0
## 78     63354224             0                0         0        0
## 79     69429136             0                0         0        0
## 80     75980368             0                0         0        0
## 81     82033296             0                0         0        0
## 82     88712768             0                0         0        0
## 83     95960160             0                0         0        0
## 84    104882000             0                0         0        0
## 85    114140928             0                0         0        0
## 86    124777520             0                0         0        0
## 87    136128592             0                0         0        0
## 88    147996288             0                0         0        0
## 89    159567200             0                0         0        0
## 90    171365280             0                0         0        0
## 91    185185888             0                0         0        0
## 92    199713648             0                0         0        0
## 93    214263392             0                0         0        0
## 94    229523952             0                0         0        0
## 95    247360304             0                0         0        0
## 96    265889152             0                0         0        0
## 97    286729984             0                0         0        0
## 98    303419504             0                0         0        0
## 99    320805184             0                0         0        0
## 100   340422240             0                0         0        0
## 101   360460656             0                0         0        0
## 102   382030624             0                0         0        0
## 103   407370848             0                0         0        0
## 104   436583920             0                0         0        0
## 105   469655184             0                0         0        0
## 106   504287312             0                0         0        0
## 107   539567968             0                0         0        0
## 108   574163456             0                0         0        0
## 109   609154656             0                0         0        0
## 110   647285904             0                0         0        0
## 111   688527888             0                0         0        0
## 112   732052544             0                0         0        0
## 113   776240384             0                0         0        0
## 114   823069968             0                0         0        0
## 115   872372752             0                0         0        0
## 116   925933104             0                0         0        0
## 117   980211600             0                0         0        0
## 118  1035743184             0                0         0        0
## 119  1092685408             0                0         0        0
## 120  1143222960             0                0         0        0
## 121  1193485712             0                0         0        0
## 122  1254410704             0                0         0        0
## 123  1320260112             0                0         0        0
## 124  1382903520             0                0         0        0
## 125  1448163024             0                0         0        0
## 126  1513521456             0                0         0        0
## 127  1577447264             0                0         0        0
## 128  1642670128             0                0         0        0
## 129  1710168336             0                0         0        0
## 130  1786317248             0                0         0        0
## 131  1864301824             0                0         0        0
## 132  1946609920             0                0         0        0
## 133  2032930096             0                0         0        0
## 134  2115842752             0                0         0        0
## 135  2195556736             0                0         0        0
## 136  2274629520             0                0         0        0
## 137  2357919568             0                0         0        0
## 138  2444573168             0                0         0        0
## 139  2533370208             0                0         0        0
## 140  2631188016             0                0         0        0
## 141  2729170704             0                0         0        0
## 142  2827292624             0                0         0        0
## 143  2923622848             0                0         0        0
## 144  3025522352             0                0         0        0
## 145  3128297552             0                0         0        0
## 146  3234579200             0                0         0        0
## 147  3345840224             0                0         0        0
## 148  3460886160             0                0         0        0
## 149  3581186272             0                0         0        0
## 150  3710463184             0                0         0        0
## 151  3835467872             0                0         0        0
## 152  3953129904             0                0         0        0
## 153  4082472768             0                0         0        0
## 154  4208470400             0                0         0        0
## 155  4335896992             0                0         0        0
## 156  4472465264             0                0         0        0
## 157  4618061632             0                0         0        0
## 158  4764775520             0                0         0        0
## 159  4914871280             0                0         0        0
## 160  5065483664             0                0         0        0
## 161  5222390800             0                0         0        0
## 162  5380968720             0                0         0        0
## 163  5552081184             0                0         0        0
## 164  5670432048             0                0         0        0
## 165  5773665248             0                0         0        0
## 166  5883354416             0                0         0        0
## 167  6004958912             0                0         0        0
## 168  6113409648             0                0         0        0
## 169  6229551120             0                0         0        0
## 170  6381328656             0                0         0        0
## 171  6519237952             0                0         0        0
## 172  6682388544             0                0         0        0
## 173  6866577824             0                0         0        0
## 174  7073212768             0                0         0        0
## 175  7287040144             0                0         0        0
## 176  7500772256             0                0         0        0
## 177  7713811872             0                0         0        0
## 178  7925448176             0                0         0        0
## 179  8159753648             0                0         0        0
## 180  8397408016             0                0         0        0
## 181  8614921376             0                0         0        0
## 182  8806717120             0                0         0        0
## 183  9006122992             0                0         0        0
## 184  9207492768             0                0         0        0
## 185  9402882896             0                0         0        0
## 186  9600980720             0                0         0        0
## 187  9818702928             0                0         0        0
## 188 10020501392             0                0         0        0
## 189 10215118416             0                0         0        0
## 190 10352855504             0                0         0        0
## 191 10472778224             0                0         0        0
## 192 10595284064             0                0         0        0
## 193 10720541568             0                0         0        0
## 194 10800534016             0                0         0        0
## 195 10907706016             0                0         0        0
## 196 11072959744             0                0         0        0
## 197 11256599424             0                0         0        0
## 198 11453121728             0                0         0        0
## 199 11682198672             0                0         0        0
## 200 11884506432          7328                0         0    14656
## 201 12113268272         18320                0         0    29312
## 202 12340289712         29312                0         0    40304
## 203 12554875536         40304                0         0    51296
## 204 12781266768         54960                0         0    65952
## 205 13020291472         69616            43968         0    80608
## 206 13288837024         84272            87936         0    98928
## 207 13566385024         98928           139232         0   120912
## 208 13832592944        117248           190528         0   146560
## 209 14094882429        139232           219840     21984   164880
## 210 14366243265        161216           256480    153888   183200
## 211 14647616603        183200           315104    318768   205184
## 212 14946483143        205184           362736    406704   230832
## 213 15280709560        230832           428688    479984   260144
## 214 15626247642        260144           494640    670512   289456
## 215 15978359246        296784           578912    886688   318768
## 216 16325964020        340752           699824   1267744   351744
## 217 16698439323        410368           839056   2279008   384720
## 218 17083540361        494640           992944   4239248   421360
## 219 17497299830        578912          1154160   5671872   468992
## 220 17936924888        681504          1348352   7753024   516624
## 221 18400067619        784096          1575520  10596288   571584
## 222 18881678943        886688          1791696  13333296   637536
## 223 19399257249       1003936          2000544  18642432   699824
## 224 19899276158       1106528          2216720  24090800   762112
## 225 20347082121       1223776          2429232  29454896   861040
## 226 20853765719       1498576          2693040  35158682   959968
## 227 21335752479       1839328          2967840  41465183  1073552
## 228 21842580752       2169088          3279280  49020045  1212784
## 229 22372962840       2715024          3561408  55766806  1359344
## 230 22879160985       3088752          3854528  62391457  1516896
## 231 23334773206       3414848          4184288  68955488  1674448
## 232 23772783900       3777584          4521376  75499109  1835664
## 233 24196736027       4162304          4942736  81007698  1996880
## 234 24604036997       4517712          5400736  86987160  2169088
## 235 25006496276       4884112          5986976  93285702  2341296
## 236 25393917395       5250512          6591536  98236463  2502512
## 237 25773610048       5668208          7199760 102245946  2682048
## 238 26148268467       6184832          7771344 106566651  2865248
## 239 26541209589       6855344          8313616 112324115  3044784
## 240 26944311311       7485552          8749632 116809514  3220656
## 241 27372960765       8152400          9181984 121331479  3400192
## 242 27791405931       8855888          9596016 126249084  3579728
## 243 28190050736       9555712         10021040 131223920  3766592
## 244 28583445652      10171264         10460720 135598442  3953456
## 245 28984009504      10753840         10889408 140204708  4151312
## 246 29400199056      11241152         11321760 144958410  4349168
## 247 29809648935      11710144         11772432 149732626  4547024
## 248 30239437901      12322032         12219440 154689918  4759536
## 249 30665112551      12787360         12714080 159476939  4990368
## 250 31085765260      13252688         13282000 164146809  5235856
## 251 31511647721      13761984         13959840 168919781  5488672
## 252 31932567219      14219984         14666992 173463765  5778128
## 253 32360569979      14820880         15436432 178076954  6067584
## 254 32789497726      15392464         16198544 182733697  6360704
## 255 33222136998      15945728         17019280 187591548  6653824
## 256 33644238253      16418384         17843680 191733966  6961600
## 257 34057136609      16982640         18660752 195823304  7313344
## 258 34463927432      17539568         19503472 199967022  7679744
## 259 34850869522      18129472         20349856 204185294  8060800
## 260 35248769990      18767008         21207232 208967600  8493152
## 261 35621562606      19408208         22038960 213909574  8940160
## 262 35995675228      19998112         22852368 218986839  9394496
## 263 36369933830      20628320         23673104 224244551  9826848
## 264 36713506462      21361120         24475520 229414031 10339808
## 265 37061670133      21361120         25351176 234701099 10856527
## 266 37411774820      21361120         26236867 240177227 11408781
## 267 37768075471      21361120         27182548 245703654 12030971
##       Georgia     Germany     Ghana Gibraltar     Greece Greenland Grenada
## 1           0           0         0         0          0         0       0
## 2           0           0         0         0          0         0       0
## 3           0           0         0         0          0         0       0
## 4           0           0         0         0          0         0       0
## 5           0           0         0         0          0         0       0
## 6           0           0         0         0          0         0       0
## 7           0           0         0         0          0         0       0
## 8           0           0         0         0          0         0       0
## 9           0           0         0         0          0         0       0
## 10          0           0         0         0          0         0       0
## 11          0           0         0         0          0         0       0
## 12          0           0         0         0          0         0       0
## 13          0           0         0         0          0         0       0
## 14          0           0         0         0          0         0       0
## 15          0           0         0         0          0         0       0
## 16          0           0         0         0          0         0       0
## 17          0           0         0         0          0         0       0
## 18          0           0         0         0          0         0       0
## 19          0           0         0         0          0         0       0
## 20          0           0         0         0          0         0       0
## 21          0           0         0         0          0         0       0
## 22          0           0         0         0          0         0       0
## 23          0           0         0         0          0         0       0
## 24          0           0         0         0          0         0       0
## 25          0           0         0         0          0         0       0
## 26          0           0         0         0          0         0       0
## 27          0           0         0         0          0         0       0
## 28          0           0         0         0          0         0       0
## 29          0           0         0         0          0         0       0
## 30          0           0         0         0          0         0       0
## 31          0           0         0         0          0         0       0
## 32          0           0         0         0          0         0       0
## 33          0           0         0         0          0         0       0
## 34          0           0         0         0          0         0       0
## 35          0           0         0         0          0         0       0
## 36          0           0         0         0          0         0       0
## 37          0           0         0         0          0         0       0
## 38          0           0         0         0          0         0       0
## 39          0           0         0         0          0         0       0
## 40          0           0         0         0          0         0       0
## 41          0           0         0         0          0         0       0
## 42          0      468992         0         0          0         0       0
## 43          0      948976         0         0          0         0       0
## 44          0     1392320         0         0          0         0       0
## 45          0     1839328         0         0          0         0       0
## 46          0     2374272         0         0          0         0       0
## 47          0     2923872         0         0          0         0       0
## 48          0     3499120         0         0          0         0       0
## 49          0     4125664         0         0          0         0       0
## 50          0     4920752         0         0          0         0       0
## 51          0     5455696         0         0          0         0       0
## 52          0     6008960         0         0          0         0       0
## 53          0     6543904         0         0          0         0       0
## 54          0     7551504         0         0          0         0       0
## 55          0     8592080         0         0          0         0       0
## 56          0     9530064         0         0          0         0       0
## 57          0    12219440         0         0          0         0       0
## 58          0    13117120         0         0          0         0       0
## 59          0    14047776         0         0          0         0       0
## 60          0    15026064         0         0          0         0       0
## 61          0    15953056         0         0          0         0       0
## 62          0    16865392         0         0          0         0       0
## 63          0    17755744         0         0          0         0       0
## 64          0    18638768         0         0          0         0       0
## 65          0    19668352         0         0          0         0       0
## 66          0    22053616         0         0          0         0       0
## 67          0    25435488         0         0          0         0       0
## 68          0    28967584         0         0          0         0       0
## 69          0    32243200         0         0          0         0       0
## 70          0    35625072         0         0          0         0       0
## 71          0    39157168         0         0          0         0       0
## 72          0    42788192         0         0          0         0       0
## 73          0    46822256         0         0          0         0       0
## 74          0    50053904         0         0          0         0       0
## 75          0    54392080         0         0          0         0       0
## 76          0    58580032         0         0          0         0       0
## 77          0    63119728         0         0          0         0       0
## 78          0    67659424         0         0          0         0       0
## 79          0    71290448         0         0          0         0       0
## 80          0    76082960         0         0          0         0       0
## 81          0    80673952         0         0          0         0       0
## 82          0    84121776         0         0          0         0       0
## 83          0    88500256         0         0          0         0       0
## 84          0    92911712         0         0          0         0       0
## 85          0    97843456         0         0          0         0       0
## 86          0   103035344         0         0          0         0       0
## 87          0   108985680         0         0          0         0       0
## 88          0   115617520         0         0          0         0       0
## 89          0   122637744         0         0          0         0       0
## 90          0   131812400         0         0          0         0       0
## 91          0   141360784         0         0          0         0       0
## 92          0   152242864         0         0          0         0       0
## 93          0   162542368         0         0          0         0       0
## 94          0   173424448         0         0          0         0       0
## 95          0   186035936         0         0          0         0       0
## 96          0   199222672         0         0          0         0       0
## 97          0   213061600         0         0          0         0       0
## 98          0   225889264         0         0          0         0       0
## 99          0   239512016         0         0          0         0       0
## 100         0   254651664         0         0          0         0       0
## 101         0   271520720         0         0          0         0       0
## 102         0   290694432         0         0          0         0       0
## 103         0   311454656         0         0          0         0       0
## 104         0   335820256         0         0          0         0       0
## 105         0   364436096         0         0          0         0       0
## 106         0   395360256         0         0          0         0       0
## 107         0   428299616         0         0          0         0       0
## 108         0   463910032         0         0          0         0       0
## 109         0   497717760         0         0          0         0       0
## 110         0   534112272         0         0          0         0       0
## 111         0   575442192         0         0          0         0       0
## 112         0   620982048         0         0          0         0       0
## 113         0   670365440         0         0          0         0       0
## 114         0   727007216         0         0          0         0       0
## 115         0   790475024         0         0          0         0       0
## 116         0   853382240         0         0          0         0       0
## 117         0   922536576         0         0     168544         0       0
## 118         0   996904784         0         0     252816         0       0
## 119         0  1074497312         0         0     447008         0       0
## 120         0  1151137200         0         0     648528         0       0
## 121         0  1236486416         0         0     945312         0       0
## 122         0  1328595712         0         0    1121184         0       0
## 123         0  1426963120         0         0    1315376         0       0
## 124         0  1498557680         0         0    1465600         0       0
## 125         0  1600076128         0         0    1630480         0       0
## 126         0  1703514512         0         0    1630480         0       0
## 127         0  1804816784         0         0    1630480         0       0
## 128         0  1909361696         0         0    1630480         0       0
## 129         0  2020208688         0         0    1634144         0       0
## 130         0  2144711408         0         0    1634144         0       0
## 131         0  2278975024         0         0    1634144         0       0
## 132         0  2422640464         0         0    1634144         0       0
## 133         0  2575733376         0         0    1637808         0       0
## 134         0  2733259728         0         0    1637808         0       0
## 135         0  2894442752         0         0    1637808         0       0
## 136         0  3057476096         0         0    1637808         0       0
## 137         0  3227866752         0         0    1637808         0       0
## 138         0  3414214128         0         0    1641472         0       0
## 139         0  3613063072         0         0    1641472         0       0
## 140         0  3821295520         0         0    1641472         0       0
## 141         0  4042135792         0         0    1641472         0       0
## 142         0  4257124656         0         0    2011536         0       0
## 143         0  4477836688         0         0    2337632         0       0
## 144         0  4707334992         0         0    2671056         0       0
## 145         0  4945619568         0         0    2982496         0       0
## 146         0  5201879728         0         0    3356224         0       0
## 147         0  5475433968         0         0    3718960         0       0
## 148         0  5760811936         0         0    4180624         0       0
## 149         0  6064095872         0         0    4422448         0       0
## 150         0  6390855056         0         0    4840144         0       0
## 151         0  6716412448         0         0    5257840         0       0
## 152         0  7035601808         0         0    5591264         0       0
## 153         0  7379200736         0         0    5990640         0       0
## 154         0  7735323216         0         0    6346048         0       0
## 155         0  8117646960         0         0    6624512         0       0
## 156         0  8479584208         0         0    6884656         0       0
## 157         0  8921766720         0         0    7313344         0       0
## 158         0  9368408320         0         0    8042480         0       0
## 159         0  9813980032         0         0    8603072         0       0
## 160         0 10259346560         0         0    9321216         0       0
## 161         0 10717932800         0         0   10226224         0       0
## 162         0 11217053872         0         0   10226224         0       0
## 163         0 11752137104         0         0   11563584         0       0
## 164         0 12250063712         0         0   11574576         0       0
## 165         0 12712969808         0         0   11596560         0       0
## 166         0 13213666400         0         0   11662512         0       0
## 167         0 13738244944         0         0   11754112         0       0
## 168         0 14241667552         0         0   11878688         0       0
## 169         0 14629095248         0         0   11984944         0       0
## 170         0 15058303536         0         0   12662784         0       0
## 171         0 15531483488         0         0   13406576         0       0
## 172         0 15986944336         0         0   14084416         0       0
## 173         0 16318873424         0         0   15004080         0       0
## 174         0 16770666608         0         0   16301136         0       0
## 175         0 17228732560         0         0   18279696         0       0
## 176         0 17641969472         0         0   20100704         0       0
## 177         0 18123012368         0         0   22416352         0       0
## 178         0 18627900576         0         0   24790624         0       0
## 179         0 19166871312         0         0   27494656         0       0
## 180         0 19628604928         0         0   30348912         0       0
## 181         0 20014200624         0         0   33078592         0       0
## 182         0 20361518512         0         0   35760640         0       0
## 183         0 20726372304         0         0   38061632         0       0
## 184         0 21135018224         0         0   40893904         0       0
## 185         0 21587386656         0         0   43806784         0       0
## 186         0 22087068320         0         0   47174000         0       0
## 187         0 22650631824         0         0   50761056         0       0
## 188         0 23251967504         0         0   53604320         0       0
## 189         0 23900649392         0         0   53857136         0       0
## 190         0 24555017808         0         0   54095296         0       0
## 191         0 25215856848         0         0   54230864         0       0
## 192         0 25883785728         0         0   54458032         0       0
## 193         0 26563252544         0         0   54670544         0       0
## 194         0 27163525664         0         0   54780464         0       0
## 195         0 27279590192         0         0   54846416         0       0
## 196         0 27551286784         0         0   54970992         0       0
## 197         0 27868959248         0         0   55139536         0       0
## 198         0 28246801920         0         0   56491552         0       0
## 199         0 28678989040         0         0   58133024         0       0
## 200         0 29189721328    637536    117248   62262352     98928    7328
## 201         0 29766640112   1513232    219840   66838688    197856   18320
## 202         0 30377681728   2381600    293120   71638528    304112   29312
## 203         0 31001246896   3400192    359072   76526304    425024   40304
## 204         0 31661056352   4404128    414032   81611936    527616   51296
## 205         0 32384641392   5591264    472656   87569600    736464   62288
## 206         0 33150923024   6668480    523952   93860688    879360   73280
## 207         0 33928922128   7961872    575248  100679392   1040576   84272
## 208         0 34685395232   9324880    630208  108131968   1267744   98928
## 209   6304757 35441300416  10647584    677840  116252896   1502240  113584
## 210  12868837 36255367936  12109520    725472  125644429   1725744  135568
## 211  19638029 37090338576  13454208    776768  135452856   2018864  153888
## 212  26742473 37973644704  14886832    831728  145601678   2282672  179536
## 213  34361516 38919282800  16608912    886688  157841159   2612432  194192
## 214  42464354 39888355840  18257712    941648  171042756   2927536  216176
## 215  51059801 40848620624  19961472    989280  188041722   3271952  238160
## 216  60136930 41800209056  21401424   1044240  206662325   3660336  267472
## 217  69628346 42736591888  22896336   1106528  226166516   4078032  304112
## 218  79386382 43721548368  24657799   1172480  248452792   4620304  344416
## 219  89548755 44773724592  26345268   1238432  273887047   5027008  392048
## 220 100237564 45799934048  28966909   1308048  298013224   5408064  436016
## 221 111584379 46837589840  31258434   1388656  325762716   5877056  483648
## 222 123526881 47879745024  33678674   1461936  357239983   6430320  531280
## 223 135978170 48966362848  36150121   1546208  394371129   6987248  586240
## 224 148908299 50030091664  39082875   1623152  430432786   7544176  622880
## 225 162504645 51033694240  41824507   1711088  469102396   8049808  670512
## 226 176620258 52125965616  44251104   1788032  511757759   8269648  718144
## 227 191211923 53180168032  47242638   1864976  558414661   8991456  765776
## 228 206300426 54261183600  50200082   1934592  606092462   9383504  817072
## 229 221509849 55381235424  52849306   2026192  656910789   9955088  864704
## 230 237314111 56483549824  55397378   2114128  707799044  10519344  912336
## 231 252816354 57534381360  58427254   2165424  757923973  11046960  970960
## 232 268609895 58552500704  61455690   2187408  809432208  11563584 1033248
## 233 284626479 59566706896  65094729   2224048  864220939  11926320 1095536
## 234 300784104 60602622288  67661809   2257024  920505258  12494240 1157824
## 235 318208876 61649368464  70963483   2300992  980276473  13003536 1220112
## 236 335676556 62699727344  73993827   2341296 1038550155  13329632 1286064
## 237 353877338 63735159088  77257442   2388928 1101125709  13564128 1359344
## 238 372575015 64767425136  80668641   2458544 1168176719  14110064 1454608
## 239 390875941 65783774768  83963661   2528160 1241406739  14582720 1557200
## 240 408029119 66796676576  87718493   2671056 1324782103  15135984 1663456
## 241 424568096 67811648862  91583649   2868912 1408133039  15681920 1773376
## 242 439845052 68778354691  95471746   3103408 1493048837  16161904 1890624
## 243 449761343 69735348871  99906978   3341568 1577278291  16660208 2011536
## 244 455830378 70675756860 104735550   3623696 1663670284  17162176 2154432
## 245 458121783 71615843606 109889726   3898496 1750615925  17664144 2304656
## 246 462176902 72576017905 115358344   4180624 1839714476  18180768 2458544
## 247 466602046 73508365264 121562514   4473744 1933518681  18701056 2627088
## 248 471540682 74432769794 127808407   4781520 2032143452  19228672 2802960
## 249 475850416 75329652478 134177866   5100288 2130085102  19767280 2997152
## 250 480349826 76230612569 140278412   5433712 2233067400  20298560 3187680
## 251 484083576 77148089397 147010964   5778128 2338436372  20837168 3381872
## 252 487434960 78049044496 154242443   6126208 2443447770  21375776 3587056
## 253 491170467 78951014361 161679728   6481616 2552530952  21907056 3803232
## 254 495446705 79839010870 168831844   6866336 2662060973  22489632 4008416
## 255 500463704 80706234376 175635265   7265712 2775986085  23097856 4224592
## 256 506559833 81584981507 184795295   7683408 2888450995  23724400 4455424
## 257 512924609 82437077670 194414596   8097440 3003033628  24361936 4693584
## 258 518034989 83291498632 203340477   8522464 3114146156  25021456 4946400
## 259 524169917 84081462154 210838252   8984128 3218486690  25596704 5199216
## 260 530378989 84915147072 220548991   9449456 3315829666  26259888 5459360
## 261 538164409 85725949397 230082523   9900128 3410361369  26967040 5712176
## 262 546411815 86541146806 241602303  10361792 3501779170  27534960 5983312
## 263 554076147 87373789801 255883423  10852768 3583501750  28088224 6287424
## 264 562866955 88167425644 270005409  11380384 3662157566  28593856 6529248
## 265 572330573 88964503810 284452924  11380384 3737120018  29116546 6786481
## 266 582169452 89766256817 299556658  11380384 3808493099  29676768 7056112
## 267 593121176 90565630028 316321491  11380384 3884493460  30246493 7332340
##     Guadeloupe Guatemala   Guinea Guinea.Bissau   Guyana    Haiti
## 1            0         0        0             0        0        0
## 2            0         0        0             0        0        0
## 3            0         0        0             0        0        0
## 4            0         0        0             0        0        0
## 5            0         0        0             0        0        0
## 6            0         0        0             0        0        0
## 7            0         0        0             0        0        0
## 8            0         0        0             0        0        0
## 9            0         0        0             0        0        0
## 10           0         0        0             0        0        0
## 11           0         0        0             0        0        0
## 12           0         0        0             0        0        0
## 13           0         0        0             0        0        0
## 14           0         0        0             0        0        0
## 15           0         0        0             0        0        0
## 16           0         0        0             0        0        0
## 17           0         0        0             0        0        0
## 18           0         0        0             0        0        0
## 19           0         0        0             0        0        0
## 20           0         0        0             0        0        0
## 21           0         0        0             0        0        0
## 22           0         0        0             0        0        0
## 23           0         0        0             0        0        0
## 24           0         0        0             0        0        0
## 25           0         0        0             0        0        0
## 26           0         0        0             0        0        0
## 27           0         0        0             0        0        0
## 28           0         0        0             0        0        0
## 29           0         0        0             0        0        0
## 30           0         0        0             0        0        0
## 31           0         0        0             0        0        0
## 32           0         0        0             0        0        0
## 33           0         0        0             0        0        0
## 34           0         0        0             0        0        0
## 35           0         0        0             0        0        0
## 36           0         0        0             0        0        0
## 37           0         0        0             0        0        0
## 38           0         0        0             0        0        0
## 39           0         0        0             0        0        0
## 40           0         0        0             0        0        0
## 41           0         0        0             0        0        0
## 42           0         0        0             0        0        0
## 43           0         0        0             0        0        0
## 44           0         0        0             0        0        0
## 45           0         0        0             0        0        0
## 46           0         0        0             0        0        0
## 47           0         0        0             0        0        0
## 48           0         0        0             0        0        0
## 49           0         0        0             0        0        0
## 50           0         0        0             0        0        0
## 51           0         0        0             0        0        0
## 52           0         0        0             0        0        0
## 53           0         0        0             0        0        0
## 54           0         0        0             0        0        0
## 55           0         0        0             0        0        0
## 56           0         0        0             0        0        0
## 57           0         0        0             0        0        0
## 58           0         0        0             0        0        0
## 59           0         0        0             0        0        0
## 60           0         0        0             0        0        0
## 61           0         0        0             0        0        0
## 62           0         0        0             0        0        0
## 63           0         0        0             0        0        0
## 64           0         0        0             0        0        0
## 65           0         0        0             0        0        0
## 66           0         0        0             0        0        0
## 67           0         0        0             0        0        0
## 68           0         0        0             0        0        0
## 69           0         0        0             0        0        0
## 70           0         0        0             0        0        0
## 71           0         0        0             0        0        0
## 72           0         0        0             0        0        0
## 73           0         0        0             0        0        0
## 74           0         0        0             0        0        0
## 75           0         0        0             0        0        0
## 76           0         0        0             0        0        0
## 77           0         0        0             0        0        0
## 78           0         0        0             0        0        0
## 79           0         0        0             0        0        0
## 80           0         0        0             0        0        0
## 81           0         0        0             0        0        0
## 82           0         0        0             0        0        0
## 83           0         0        0             0        0        0
## 84           0         0        0             0        0        0
## 85           0         0        0             0        0        0
## 86           0         0        0             0        0        0
## 87           0         0        0             0        0        0
## 88           0         0        0             0        0        0
## 89           0         0        0             0        0        0
## 90           0         0        0             0        0        0
## 91           0         0        0             0        0        0
## 92           0         0        0             0        0        0
## 93           0         0        0             0        0        0
## 94           0         0        0             0        0        0
## 95           0         0        0             0        0        0
## 96           0         0        0             0        0        0
## 97           0         0        0             0        0        0
## 98           0         0        0             0        0        0
## 99           0         0        0             0        0        0
## 100          0         0        0             0        0        0
## 101          0         0        0             0        0        0
## 102          0         0        0             0        0        0
## 103          0         0        0             0        0        0
## 104          0         0        0             0        0        0
## 105          0         0        0             0        0        0
## 106          0         0        0             0        0        0
## 107          0         0        0             0        0        0
## 108          0         0        0             0        0        0
## 109          0         0        0             0        0        0
## 110          0         0        0             0        0        0
## 111          0         0        0             0        0        0
## 112          0         0        0             0        0        0
## 113          0         0        0             0        0        0
## 114          0         0        0             0        0        0
## 115          0         0        0             0        0        0
## 116          0         0        0             0        0        0
## 117          0         0        0             0        0        0
## 118          0         0        0             0        0        0
## 119          0         0        0             0        0        0
## 120          0         0        0             0        0        0
## 121          0         0        0             0        0        0
## 122          0         0        0             0        0        0
## 123          0         0        0             0        0        0
## 124          0         0        0             0        0        0
## 125          0         0        0             0        0        0
## 126          0         0        0             0        0        0
## 127          0         0        0             0        0        0
## 128          0         0        0             0        0        0
## 129          0         0        0             0        0        0
## 130          0         0        0             0        0        0
## 131          0         0        0             0        0        0
## 132          0         0        0             0        0        0
## 133          0         0        0             0        0        0
## 134          0         0        0             0        0        0
## 135          0         0        0             0        0        0
## 136          0         0        0             0        0        0
## 137          0         0        0             0        0        0
## 138          0         0        0             0        0        0
## 139          0         0        0             0        0        0
## 140          0         0        0             0        0        0
## 141          0         0        0             0        0        0
## 142          0         0        0             0        0        0
## 143          0         0        0             0        0        0
## 144          0         0        0             0        0        0
## 145          0         0        0             0        0        0
## 146          0         0        0             0        0        0
## 147          0         0        0             0        0        0
## 148          0         0        0             0        0        0
## 149          0         0        0             0        0        0
## 150          0         0        0             0        0        0
## 151          0         0        0             0        0        0
## 152          0         0        0             0        0        0
## 153          0         0        0             0        0        0
## 154          0         0        0             0        0        0
## 155          0         0        0             0        0        0
## 156          0         0        0             0        0        0
## 157          0         0        0             0        0        0
## 158          0         0        0             0        0        0
## 159          0         0        0             0        0        0
## 160          0         0        0             0        0        0
## 161          0         0        0             0        0        0
## 162          0         0        0             0        0        0
## 163          0         0        0             0        0        0
## 164          0         0        0             0        0        0
## 165          0         0        0             0        0        0
## 166          0         0        0             0        0        0
## 167          0         0        0             0        0        0
## 168          0         0        0             0        0        0
## 169          0         0        0             0        0        0
## 170          0         0        0             0        0        0
## 171          0         0        0             0        0        0
## 172          0         0        0             0        0        0
## 173          0         0        0             0        0        0
## 174          0         0        0             0        0        0
## 175          0         0        0             0        0        0
## 176          0         0        0             0        0        0
## 177          0         0        0             0        0        0
## 178          0         0        0             0        0        0
## 179          0         0        0             0        0        0
## 180          0         0        0             0        0        0
## 181          0         0        0             0        0        0
## 182          0         0        0             0        0        0
## 183          0         0        0             0        0        0
## 184          0         0        0             0        0        0
## 185          0         0        0             0        0        0
## 186          0         0        0             0        0        0
## 187          0         0        0             0        0        0
## 188          0         0        0             0        0        0
## 189          0         0        0             0        0        0
## 190          0         0        0             0        0        0
## 191          0     10992        0             0        0        0
## 192          0     21984        0             0        0        0
## 193          0     32976        0             0        0        0
## 194          0     43968        0             0        0        0
## 195          0     58624        0             0        0        0
## 196          0     73280        0             0        0        0
## 197          0     87936        0             0        0        0
## 198          0    102592        0             0        0        0
## 199          0    120912        0             0        0        0
## 200      62288    740128        0          7328   260144   113584
## 201     128240   1377664        0         10992   545936   245488
## 202     194192   2022528        0         21984   883024   392048
## 203     260144   2704032        0         29312  1333696   549600
## 204     333424   3447824        0         36640  1806352   765776
## 205     414032   4363824        0         47632  2322976  1033248
## 206     505632   5342112        0         58624  2872576  1297056
## 207     615552   6327728        0         69616  3407520  1549872
## 208     725472   7456240   164880         80608  3865520  1824672
## 209     868368   8694197   322432         95264  4418784  2077339
## 210    1025920  10038439   732800        113584  5078304  2362923
## 211    1201792  11444910  1348352        142896  5814768  2659529
## 212    1388656  12825762  2007872        183200  6492608  2963403
## 213    1593840  14345698  2704032        230832  7108160  3212347
## 214    1810016  16114667  3403856        289456  7756688  3512558
## 215    2015200  18088612  4100016        355408  8833904  3816491
## 216    2268016  19828210  4818160        421360 10013712  4120455
## 217    2557472  21809543  5543632        468992 11336416  4380450
## 218    2835936  23948605  6291088        531280 12666448  4644080
## 219    3147376  26226722  7038544        589904 14033120  4958976
## 220    3451488  28523158  7829968        659520 15612304  5343458
## 221    3792240  30962461  8643376        732800 17110880  5746201
## 222    4169632  33669087  9475104        798752 18671744  6137922
## 223    4576336  36602703 10277520        908672 20474432  6558836
## 224    4961056  39668223 11116576       1011264 22027968  7030928
## 225    5364096  43187752 11959296       1124848 23852640  7513952
## 226    5858736  46492658 12845984       1220112 25604032  8186133
## 227    6382688  50297111 13747328       1322704 27501984  8890278
## 228    6910304  54414244 14648672       1425296 29557488  9640918
## 229    7448912  59092263 15593984       1535216 31078048 10390820
## 230    8075456  63584869 16557616       1681776 32866080 11135891
## 231    8863216  67534336 17546896       1824672 34665104 11894818
## 232    9625328  71141146 18528848       1967568 36068416 12712121
## 233   10438736  74301031 19481488       2110464 37314176 13598149
## 234   11314432  77702092 20459776       2271680 38717488 14501300
## 235   12204784  81198941 21452720       2443888 40135456 15430820
## 236   13153760  84863568 22449328       2627088 41179696 16261042
## 237   14165024  88781968 23442272       2821280 42487744 17159835
## 238   15293536  92857203 24468192       3037456 43891056 18167504
## 239   16480672  97045405 25512432       3268288 45074528 19190624
## 240   17763072 102015548 26516368       3440496 46206704 20170326
## 241   19049136 106967623 27542288       3616368 47320560 21150121
## 242   20390160 112885533 28601184       3795904 48364800 22045334
## 243   21764160 118462705 29689392       3979104 49409040 22701483
## 244   23182128 125213503 30916244       4162304 50794032 23001931
## 245   24644064 132292805 32183244       4345504 52255968 23903275
## 246   26193936 138863149 33522695       4528704 53772864 24936523
## 247   27798768 146364728 34916946       4730224 55363040 26303195
## 248   29868928 155004091 36393261       4902432 57019168 27534299
## 249   31759552 163811136 37944974       5096624 58697280 28864331
## 250   33672160 173576922 39558099       5243184 60305776 30231003
## 251   35745984 184044633 41246280       5393408 61899616 31783696
## 252   37856448 194975099 43013935       5547296 63478800 33585886
## 253   40084160 205631855 44857957       5741488 65043328 35295582
## 254   42396144 217056994 46763689       5943008 66670144 37255954
## 255   44616528 229406829 48588361       6155520 68106432 39303322
## 256   46770960 241823961 50478985       6371696 69396160 41387467
## 257   49101264 254195688 52446553       6602528 70957024 43748472
## 258   51387600 265363602 54590492       6829696 72514224 46114247
## 259   53695920 277051106 56817049       7064192 74078752 48351202
## 260   55993248 288412585 59391969       7302352 75797168 50444633
## 261   58422480 299933116 62126685       7547840 77577872 52628927
## 262   60965296 311579674 64669473       7800656 79571088 54907818
## 263   63519104 324876417 66925895       8057136 81505680 57278317
## 264   66083904 342801846 69318032       8328272 83513552 60102882
## 265   66083904 362605102 71763317       8602850 85531426 63046461
## 266   66083904 383542158 74365036       8896754 87584165 66044904
## 267   66083904 404420205 77269714       9228086 89660737 69042835
##      Honduras  Hong.Kong    Hungary   Iceland       India   Indonesia
## 1           0          0          0         0           0           0
## 2           0          0          0         0           0           0
## 3           0          0          0         0           0           0
## 4           0          0          0         0           0           0
## 5           0          0          0         0           0           0
## 6           0          0          0         0           0           0
## 7           0          0          0         0           0           0
## 8           0          0          0         0           0           0
## 9           0          0          0         0           0           0
## 10          0          0          0         0           0           0
## 11          0          0          0         0           0           0
## 12          0          0          0         0           0           0
## 13          0          0          0         0           0           0
## 14          0          0          0         0           0           0
## 15          0          0          0         0           0           0
## 16          0          0          0         0           0           0
## 17          0          0          0         0           0           0
## 18          0          0          0         0           0           0
## 19          0          0          0         0           0           0
## 20          0          0          0         0           0           0
## 21          0          0          0         0           0           0
## 22          0          0          0         0           0           0
## 23          0          0          0         0           0           0
## 24          0          0          0         0           0           0
## 25          0          0          0         0           0           0
## 26          0          0          0         0           0           0
## 27          0          0          0         0           0           0
## 28          0          0          0         0           0           0
## 29          0          0          0         0           0           0
## 30          0          0          0         0           0           0
## 31          0          0          0         0           0           0
## 32          0          0          0         0           0           0
## 33          0          0          0         0           0           0
## 34          0          0          0         0           0           0
## 35          0          0          0         0           0           0
## 36          0          0          0         0           0           0
## 37          0          0          0         0           0           0
## 38          0          0          0         0           0           0
## 39          0          0          0         0           0           0
## 40          0          0          0         0           0           0
## 41          0          0          0         0           0           0
## 42          0          0          0         0           0           0
## 43          0          0          0         0           0           0
## 44          0          0          0         0           0           0
## 45          0          0          0         0           0           0
## 46          0          0          0         0           0           0
## 47          0          0          0         0           0           0
## 48          0          0          0         0           0           0
## 49          0          0          0         0           0           0
## 50          0          0          0         0           0           0
## 51          0          0          0         0           0           0
## 52          0          0          0         0           0           0
## 53          0          0          0         0           0           0
## 54          0          0          0         0           0           0
## 55          0          0          0         0           0           0
## 56          0          0          0         0           0           0
## 57          0          0          0         0           0           0
## 58          0          0          0         0           0           0
## 59          0          0          0         0           0           0
## 60          0          0          0         0           0           0
## 61          0          0          0         0           0           0
## 62          0          0          0         0           0           0
## 63          0          0          0         0           0           0
## 64          0          0          0         0           0           0
## 65          0          0          0         0           0           0
## 66          0          0          0         0           0           0
## 67          0          0          0         0           0           0
## 68          0          0          0         0           0           0
## 69          0          0          0         0           0           0
## 70          0          0          0         0           0           0
## 71          0          0          0         0           0           0
## 72          0          0          0         0           0           0
## 73          0          0          0         0           0           0
## 74          0          0          0         0           0           0
## 75          0          0          0         0           0           0
## 76          0          0          0         0           0           0
## 77          0          0          0         0           0           0
## 78          0          0          0         0           0           0
## 79          0          0          0         0           0           0
## 80          0          0     113584         0           0           0
## 81          0          0     183200         0           0           0
## 82          0          0     271136         0           0           0
## 83          0          0     337088         0           0           0
## 84          0          0     406704         0           0           0
## 85          0          0     458000         0           0           0
## 86          0          0     542272         0           0           0
## 87          0          0     611888         0           0           0
## 88          0          0     674176         0           0           0
## 89          0          0     813408         0           0           0
## 90          0          0     948976         0           0           0
## 91          0          0    1091872         0           0           0
## 92          0          0    1176144         0           0           0
## 93          0          0    1264080         0           0           0
## 94          0          0    1450944         0           0           0
## 95          0          0    1538880         0           0           0
## 96          0          0    1601168         0           0           0
## 97          0          0    1766048         0           0           0
## 98          0          0    1766048         0           0           0
## 99          0          0    1766048         0           0           0
## 100         0          0    1766048         0           0           0
## 101         0          0    2040848         0           0           0
## 102         0          0    2385264         0           0           0
## 103         0          0    2729680         0           0           0
## 104         0          0    3165696         0           0           0
## 105         0          0    3620032         0           0           0
## 106         0          0    4096352         0           0           0
## 107         0          0    4642288         0           0           0
## 108         0          0    5023344         0      436016           0
## 109         0          0    5792784         0     1139504           0
## 110         0          0    6697792         0     1850320           0
## 111         0          0    7657760         0     2399920           0
## 112         0          0    8815584         0     3008144           0
## 113         0          0   10024704         0     3682320           0
## 114         0          0   11233824         0     4319856           0
## 115         0          0   12490576         0     4946400           0
## 116         0          0   13919536         0     5653552           0
## 117         0          0   15608640         0     5653552           0
## 118         0          0   17414992         0     5653552           0
## 119         0          0   19378896         0     5653552           0
## 120         0          0   21500352         0     5653552           0
## 121         0          0   24131104         0     5653552           0
## 122         0          0   26926736         0     5653552           0
## 123         0          0   29843280         0     5653552           0
## 124         0          0   32400752         0     5653552           0
## 125         0          0   35035168         0     5653552           0
## 126         0          0   37797824         0     5653552           0
## 127         0          0   40685056         0     5653552           0
## 128         0          0   43561296         0     7606464           0
## 129         0          0   46430208         0     9460448           0
## 130         0          0   49742464         0    11534272           0
## 131         0          0   53292880         0    13556800           0
## 132         0          0   56876272         0    15960384           0
## 133         0          0   60954304         0    18642432           0
## 134         0          0   65285152         0    21628592           0
## 135         0          0   69663632         0    24325296           0
## 136         0          0   73759984         0    27351760           0
## 137         0          0   77845344         0    30704320           0
## 138         0          0   82275120         0    34426944           0
## 139         0          0   87027328         0    38805424        3664
## 140         0          0   92281504         0    43634576       18320
## 141         0          0   97803152         0    48833792       40304
## 142         0          0  103555632         0    54545968      219840
## 143         0          0  109549936         0    60558592      622880
## 144         0          0  115983920         0    66692128     1102864
## 145         0          0  122846592         0    74375536     1872304
## 146         0          0  130222224         0    82689152     2733344
## 147         0          0  137685792         0    91687936     3839872
## 148         0          0  146219248         0   101657680     5129600
## 149         0          0  154492560         0   112646016     6254448
## 150         0          0  164077584         0   125697184     7463568
## 151         0          0  173695584         0   140093040     9705936
## 152         0          0  182544144         0   155969152    11244816
## 153         0          0  191718800         0   172134720    14245632
## 154         0          0  200996048         0   190201904    17612848
## 155         0          0  210427184         0   208675792    21745840
## 156         0          0  220591120         0   230018592    26197600
## 157         0          0  230795360         0   253834592    31492080
## 158         0          0  241567520         0   281083760    36984416
## 159         0          0  253420560         0   307402272    42971392
## 160         0          0  265097728         0   333097904    49082944
## 161         0          0  277093664         0   360211504    55810048
## 162         0          0  289397376         0   391428784    61650464
## 163         0          0  302422896         0   425866720    67549504
## 164         0          0  314015792         0   460583120    73565792
## 165         0          0  325780896         0   496860384    79596736
## 166         0          0  337615616         0   533540688    86360480
## 167         0          0  349333088         0   571899104    93497952
## 168         0          0  359984336         0   615057360   100628096
## 169         0          0  364740208         0   662180064   108263872
## 170         0          0  370327808         0   700340624   116526192
## 171         0          0  379564752         0   741384752   125283152
## 172         0          0  390575072         0   781773024   133582112
## 173         0          0  402435440         0   823348432   143170800
## 174         0          0  413698576         0   867858704   153756096
## 175         0          0  423829536         0   911775408   164836032
## 176         0          0  435601968         0   955567536   175934288
## 177         0          0  448689776         0  1001499440   188820576
## 178         0          0  462440768         0  1045698272   203652448
## 179         0          0  477554768         0  1091692464   222192288
## 180         0          0  490070992         0  1138448768   240277792
## 181         0          0  501260848         0  1181273600   257172496
## 182         0          0  511472416         0  1221090288   273759424
## 183         0          0  521478800         0  1260177840   291621424
## 184         0          0  532053104         0  1303823408   310857424
## 185         0          0  543133040         0  1349425552   330859200
## 186         0          0  555033712     21984  1394243600   352627024
## 187         0          0  568656464     40304  1443887136   377970912
## 188         0      54960  583429712     40304  1499462688   404703456
## 189         0     109920  597873200     40304  1553865760   433905536
## 190         0     109920  613698016     73280  1611562768   462638624
## 191         0     164880  631552688     98928  1670520192   489125680
## 192         0     164880  650392976     98928  1729418992   498582464
## 193         0     164880  669603328    117248  1780714992   517609616
## 194         0     164880  685461120    135568  1833176144   526381232
## 195         0     164880  693661152    150224  1891371456   530188128
## 196         0     164880  704458960    161216  1948870608   531532816
## 197         0     183200  718297888    164880  2007472624   535588864
## 198         0     208848  734679632    168544  2066092960   551083920
## 199         0     238160  755091776    172208  2127974256   572987312
## 200    300448    1557200  773485056    912336  2194578448   582817824
## 201    648528    3114400  795674240   1557200  2264300704   592208656
## 202   1007600    4649616  822886768   2333968  2337793216   604930064
## 203   1341024    6379024  854657312   3249968  2412670720   618010544
## 204   1718416    8178048  888670224   4030400  2491410080   632758144
## 205   2154432   10057680  924379568   4942736  2576850896   653602640
## 206   2608768   12179136  957546096   5891712  2665307184   675414432
## 207   3184016   14542416  995996112   6855344  2764542960   697827120
## 208   3770256   16916688 1035244880   7947216  2868267136   720034624
## 209   4356466   19620155 1077147917   9185321  2978085889   743896859
## 210   4971870   22572745 1122476230  10397808  3098661931   765282052
## 211   5708155   25942882 1171406136  11489383  3229054857   791283648
## 212   6407742   29624340 1221918355  12687125  3372506700   814258541
## 213   7118320   33870025 1278146147  13991122  3526574861   837021636
## 214   7839831   38090091 1340487312  15298724  3677213853   859395901
## 215   8590564   42892615 1401721444  16694263  3843175215   884064127
## 216   9396228   48054180 1463394365  18188699  4014863609   907439080
## 217  10271479   54106246 1522165189  19631840  4186956736   931979126
## 218  11494720   60304219 1583258395  21225264  4374061348   959541734
## 219  12670329   68055727 1645616633  22488957  4564461726   992903949
## 220  14058361   76448228 1715551190  23877257  4759190682  1028695336
## 221  15387739   85598820 1784760610  25349380  4964520227  1067650706
## 222  16922183   94874404 1854114970  26832024  5181702172  1110957248
## 223  18430800  104160861 1927096649  28581770  5405304467  1160055819
## 224  19987138  114828111 2001106827  30319816  5636489181  1211283047
## 225  21653069  125836113 2076395121  31932722  5887682495  1265216755
## 226  23427994  138326499 2156292288  33633418  6150214250  1327007358
## 227  25425439  152530403 2239367294  35535395  6427862565  1409427813
## 228  27469106  168244498 2327413464  37455496  6709401725  1503372367
## 229  29395304  184082146 2413495277  39437729  7004700735  1598518597
## 230  31439627  200682361 2500204320  41298701  7317185638  1693404171
## 231  33251646  219299029 2586665956  43045738  7654290821  1793717753
## 232  35004730  238921796 2673379563  44638537  8002106455  1899321362
## 233  36987095  259833902 2762354422  46179988  8378782780  2004528396
## 234  38950633  282058690 2853040601  47988582  8764711611  2117015690
## 235  40840079  304940095 2938987630  49609982  9188967638  2238646054
## 236  42668723  330466013 3022228337  51388963  9644034163  2360850309
## 237  44817178  358551658 3106364719  53232449 10130101461  2484772688
## 238  47287084  387836439 3184419598  55071901 10655183128  2617541962
## 239  49972642  417977618 3260336798  56966784 11231587676  2749273898
## 240  52519439  445124673 3333792257  59204204 11848166774  2899619326
## 241  55169662  473587391 3403569528  61321908 12504907667  3080314615
## 242  58199891  506504492 3465978374  63584925 13203664617  3283973989
## 243  60997574  541282716 3529518076  66005948 13926558876  3503830317
## 244  64289266  572361753 3591400804  68367860 14690800843  3726797959
## 245  68115746  603628160 3653013680  70832978 15502261630  3953467902
## 246  72006490  632537742 3716190663  73353113 16381088594  4208674993
## 247  76087831  663035277 3777946563  75968736 17296137907  4489571513
## 248  80670029  701959325 3839294853  78604192 18229687165  4705676429
## 249  85337545  744509348 3901123057  81445466 19224920237  4949778011
## 250  90271699  784793221 3959674718  84379450 20254557996  5215761195
## 251  95880575  822595058 4019846376  87242134 21290198710  5513531755
## 252 101870786  862080065 4079009221  90230035 22337794361  5821109923
## 253 108531433  905283427 4140946004  93209727 23429667371  6137964091
## 254 115774789  946851726 4201352245  96310967 24575212605  6478040611
## 255 123201319  990583053 4261852209  99279872 25785358272  6821620547
## 256 130050030 1032496770 4321691641 102426914 27072507483  7168320267
## 257 138648384 1076069187 4380213949 105920861 28462760974  7545442891
## 258 147133085 1119845539 4437652116 109715811 30010752013  7963234939
## 259 154814089 1161828338 4489433167 113446894 31730872573  8410536027
## 260 162614795 1202302433 4541553704 117067825 33430899968  8838325547
## 261 171388290 1245877054 4591911705 120554232 35248071567  9439650963
## 262 180175410 1289062981 4638720200 124042918 37231830380 10072795995
## 263 189046412 1333826577 4682487899 127524700 39229708958 10558926026
## 264 198322597 1379789889 4726403295 130986544 41437242850 11018941685
## 265 208377780 1422491903 4773068501 134522956 43713650045 11478570441
## 266 218953982 1465727785 4820646684 138012928 46091097909 11943427259
## 267 229623078 1508760365 4870991390 141492956 48557863281 12430271016
##            Iran       Iraq    Ireland     Israel       Italy   Jamaica
## 1             0          0          0          0           0         0
## 2             0          0          0          0           0         0
## 3             0          0          0          0           0         0
## 4             0          0          0          0           0         0
## 5             0          0          0          0           0         0
## 6             0          0          0          0           0         0
## 7             0          0          0          0           0         0
## 8             0          0          0          0           0         0
## 9             0          0          0          0           0         0
## 10            0          0          0          0           0         0
## 11            0          0          0          0           0         0
## 12            0          0          0          0           0         0
## 13            0          0          0          0           0         0
## 14            0          0          0          0           0         0
## 15            0          0          0          0           0         0
## 16            0          0          0          0           0         0
## 17            0          0          0          0           0         0
## 18            0          0          0          0           0         0
## 19            0          0          0          0           0         0
## 20            0          0          0          0           0         0
## 21            0          0          0          0           0         0
## 22            0          0          0          0           0         0
## 23            0          0          0          0           0         0
## 24            0          0          0          0           0         0
## 25            0          0          0          0           0         0
## 26            0          0          0          0           0         0
## 27            0          0          0          0           0         0
## 28            0          0          0          0           0         0
## 29            0          0          0          0           0         0
## 30            0          0          0          0           0         0
## 31            0          0          0          0           0         0
## 32            0          0          0          0           0         0
## 33            0          0          0          0           0         0
## 34            0          0          0          0           0         0
## 35            0          0          0          0           0         0
## 36            0          0          0          0           0         0
## 37            0          0          0          0           0         0
## 38            0          0          0          0           0         0
## 39            0          0          0          0           0         0
## 40            0          0          0          0           0         0
## 41            0          0          0          0           0         0
## 42            0          0          0          0           0         0
## 43            0          0          0          0           0         0
## 44            0          0          0          0           0         0
## 45            0          0          0          0           0         0
## 46            0          0          0          0           0         0
## 47            0          0          0          0           0         0
## 48            0          0          0          0           0         0
## 49            0          0          0          0           0         0
## 50            0          0          0          0           0         0
## 51            0          0          0          0           0         0
## 52            0          0          0          0           0         0
## 53            0          0          0          0           0         0
## 54            0          0          0          0           0         0
## 55            0          0          0          0           0         0
## 56            0          0          0          0           0         0
## 57            0          0          0          0           0         0
## 58            0          0          0          0           0         0
## 59            0          0          0          0           0         0
## 60            0          0          0          0           0         0
## 61            0          0          0          0           0         0
## 62            0          0          0          0           0         0
## 63            0          0          0          0           0         0
## 64            0          0          0          0           0         0
## 65            0          0          0          0           0         0
## 66            0          0          0          0           0         0
## 67            0          0          0          0           0         0
## 68            0          0          0          0           0         0
## 69            0          0          0          0           0         0
## 70            0          0          0          0           0         0
## 71            0          0          0          0           0         0
## 72            0          0          0          0           0         0
## 73            0          0          0          0           0         0
## 74            0          0          0          0           0         0
## 75            0          0          0          0           0         0
## 76            0          0          0          0           0         0
## 77            0          0          0          0           0         0
## 78            0          0          0          0           0         0
## 79            0          0          0          0           0         0
## 80            0          0          0          0           0         0
## 81            0          0          0          0           0         0
## 82            0          0          0          0           0         0
## 83            0          0          0          0           0         0
## 84            0          0          0          0           0         0
## 85            0          0          0          0           0         0
## 86            0          0          0          0           0         0
## 87            0          0          0          0           0         0
## 88            0          0          0          0           0         0
## 89            0          0          0          0           0         0
## 90            0          0          0          0           0         0
## 91            0          0          0          0           0         0
## 92            0          0          0          0           0         0
## 93            0          0          0          0           0         0
## 94            0          0          0          0           0         0
## 95            0          0          0          0           0         0
## 96            0          0          0          0           0         0
## 97            0          0          0          0           0         0
## 98            0          0          0          0           0         0
## 99            0          0          0          0           0         0
## 100           0          0     395712          0           0         0
## 101           0          0     395712          0           0         0
## 102           0          0     395712          0           0         0
## 103           0          0     395712          0           0         0
## 104           0          0     395712          0           0         0
## 105           0          0     395712          0           0         0
## 106           0          0     395712          0           0         0
## 107           0          0     395712          0           0         0
## 108           0          0     395712          0           0         0
## 109           0          0     395712          0           0         0
## 110           0          0     395712          0       29312         0
## 111           0          0     395712          0      699824         0
## 112           0          0     395712          0     1927264         0
## 113           0          0     395712          0     2997152         0
## 114           0          0     395712          0     4601984         0
## 115           0          0     395712          0     5873392         0
## 116           0          0     395712          0     7349984         0
## 117           0          0     395712          0     8819248         0
## 118           0          0     395712          0    10515680         0
## 119           0          0     395712          0    12387984         0
## 120           0          0     395712          0    15066368         0
## 121           0          0     395712          0    17374688         0
## 122           0          0     395712          0    20349856         0
## 123           0          0     395712          0    23119840         0
## 124           0          0     395712          0    26116992         0
## 125           0          0     395712          0    29183760         0
## 126           0          0     395712          0    33291104         0
## 127           0          0     395712          0    37094336         0
## 128           0          0     395712          0    40879248         0
## 129           0          0     395712          0    45235744         0
## 130           0          0     747456          0    50303056         0
## 131           0          0    1099200          0    56260720         0
## 132           0          0    1099200          0    62533488         0
## 133           0          0    1099200          0    69179984         0
## 134           0          0    1099200          0    76540960         0
## 135           0          0    1099200          0    84916864         0
## 136           0          0    1099200          0    93245136         0
## 137           0          0    1099200          0   103394416         0
## 138           0          0    1099200          0   114291152         0
## 139           0          0    1099200          0   125546960         0
## 140           0          0    1099200          0   137755408         0
## 141           0          0    1099200          0   148754736         0
## 142           0          0    1099200          0   159644144         0
## 143           0          0    1099200          0   170167152         0
## 144           0          0    1099200          0   183229312         0
## 145           0          0    1099200          0   195250896         0
## 146           0          0    1099200          0   206675248         0
## 147           0          0    1099200          0   218594240         0
## 148           0          0    1099200          0   230996880         0
## 149           0          0    1099200          0   244586656         0
## 150           0          0    1099200          0   258495200         0
## 151           0          0    1099200          0   272015360         0
## 152           0          0    1099200          0   287030432         0
## 153           0          0    1099200          0   302345952         0
## 154           0          0    1099200          0   318533504         0
## 155           0          0    1099200          0   336377184         0
## 156        3664          0    1099200          0   357467168         0
## 157        3664          0    1099200          0   380275568         0
## 158        3664          0    1099200          0   403538304         0
## 159        3664          0    1099200          0   429241264         0
## 160        3664          0    1315376          0   454977200         0
## 161      139232          0    1315376          0   481515552         0
## 162      392048          0    1315376          0   509365616         0
## 163     1245760          0    1538880          0   539329808         0
## 164     2418240          0    1788032          0   566567984         0
## 165     3821552          0    2015200          0   590347344         0
## 166     5829424          0    2257024          0   613859232         0
## 167     8628720          0    2513504          0   629980832         0
## 168    12076544          0    2758992          0   648960352         0
## 169    16396400          0    3008144          0   667569808         0
## 170    21833776          0    3301264          0   685439136         0
## 171    29088496          0    3539424          0   707320544         0
## 172    38314448          0    3539424          0   733019840         0
## 173    49892688          0    3539424          0   759843984         0
## 174    63398192          0   10226224          0   792024896         0
## 175    77599856          0   16260832          0   822993024         0
## 176    92658896          0   24358272          0   858834272         0
## 177   109359408     139232   31089040          0   899218880         0
## 178   127038208     428688   37574320          0   937379440         0
## 179   144061152     798752   47573376          0   981420720         0
## 180   162575344    1168816   57125424      40304  1020984592         0
## 181   180499632    1535216   66966928      80608  1055169712         0
## 182   200589344    1908944   73393584     131904  1083246944         0
## 183   222675936    2260688   82659840     197856  1113735088         0
## 184   246169504    5125936   92142272     267472  1153412544         0
## 185   269509184   10849104  101676000     359072  1198805840         0
## 186   295061920   16641888  111821616     436016  1230810880         0
## 187   326751856   22885344  122176080     516624  1276002656         0
## 188   358529728   28802704  132142160     564256  1321000240         0
## 189   388581856   40959856  143672768     619216  1367140992         0
## 190   415710112   48650592  155196048     692496  1416190960         0
## 191   436532624   53457760  163645232     751120  1459096400         0
## 192   466064464   61419632  170661792     861040  1500994240         0
## 193   496519632   72378656  177773616     945312  1508113392         0
## 194   538179312   85151360  184130656    1033248  1511696784         0
## 195   591076480   99283408  190964016    1106528  1516053280         0
## 196   651308976  113638960  199160384    1238432  1538227808         0
## 197   714776784  128064128  207972304    1403312  1575025360         0
## 198   792728384  127968864  216417824    1483920  1610566160         0
## 199   876762224  129097376  224764416    1604832  1650353536         0
## 200   871365152  130746176  234492336    3275616  1691804368    271136
## 201   878279120  133175408  245000688    6195824  1740649152    791424
## 202   882371808  135135648  254622352    9856160  1791296624   1355680
## 203   886200688  137663808  264159744   13897552  1847322848   1971232
## 204   887244928  140712256  273253792   18224736  1912296560   2762656
## 205   903058752  144812272  284971264   23042896  1985605872   3748272
## 206   925867152  151209616  295897312   27839072  2069126752   5008688
## 207   947667952  157181936  305617904   33012640  2156253008   6613520
## 208   972898256  163850416  314576384   38552608  2243903216   7969200
## 209   998466964  171164750  326888562   44155378  2337987819   9807726
## 210  1035825563  179420909  338057097   50615405  2447190905  11276128
## 211  1072334322  188130128  350409698   57676180  2571565802  13404050
## 212  1109762745  197150964  363516429   65608541  2717820787  15521040
## 213  1151067679  206534328  376963734   73808106  2882377025  17916493
## 214  1198586758  215598301  391179796   82945359  3058098103  21978740
## 215  1252305146  234891388  404897226   95874197  3247626482  24967316
## 216  1316408508  262567470  419992083  109455585  3461608743  28483330
## 217  1384289454  280940448  436386917  122983498  3695738483  32347483
## 218  1466619017  300636130  454188489  136777664  3944910644  36225995
## 219  1549657762  323237424  472682885  151578599  4214571613  40492891
## 220  1641445217  347121206  492076624  168137956  4510936158  45481476
## 221  1743073048  375953062  514552748  184356895  4821985372  51228716
## 222  1849088240  405473541  536589055  201247765  5150222917  57511073
## 223  1978563549  436086250  559435233  220508921  5503572154  65801491
## 224  2122338954  466995742  582728276  239877854  5861825238  73395889
## 225  2261552925  500116002  604775700  259418259  6202877874  81576668
## 226  2418012029  548851489  627068709  278914939  6568673563  88852651
## 227  2581743970  592481034  650637012  298680781  6923091489  96293701
## 228  2743847907  634674126  674216107  319712359  7294365643 105405696
## 229  2907521167  687497214  701618140  340576666  7679621537 113935277
## 230  3028085637  732855393  727888989  361561184  8066054975 122380713
## 231  3140614204  764756865  753949694  382578668  8441355583 129789284
## 232  3278129175  795131300  779515246  406433417  8808235134 136003453
## 233  3427342606  833596443  805243200  430142264  9166644743 142448559
## 234  3577285268  873367445  830791925  453640621  9531246349 147589366
## 235  3737232378  917563882  857540907  478253434  9900229311 152631311
## 236  3884768420  964793435  886090367  504601511 10263417498 157178700
## 237  4043375772 1016977177  916315775  531670221 10643516763 162558024
## 238  4218483568 1084104603  946198262  561372558 11029479764 167083872
## 239  4408581570 1156346381  976258198  592766573 11434222473 173808416
## 240  4617819914 1203190155 1009136134  628589632 11874166575 181335548
## 241  4843774120 1248375488 1042742880  664738275 12314260997 189086146
## 242  5070731132 1307264829 1076160862  706821295 12753471411 196796915
## 243  5306307736 1370394599 1109810047  751055570 13185072385 204797191
## 244  5569828114 1441483756 1144582239  798530069 13610563020 212988150
## 245  5840975639 1515567942 1180376618  848395231 14062541927 222161556
## 246  6114983401 1584852296 1217787578  900330983 14507103501 231849269
## 247  6382082680 1652931122 1256539935  955194860 14956569121 241917364
## 248  6688088934 1725032598 1297190037 1011204158 15416809449 251611399
## 249  7067715969 1796713926 1339567819 1065958672 15881410902 261569587
## 250  7436979470 1868429338 1384761771 1125478052 16352178649 271883577
## 251  7831910833 1952985261 1432319125 1188500406 16828380518 282460104
## 252  8229709157 2039306138 1478353711 1247800140 17306089856 292662593
## 253  8643702635 2130092780 1523992835 1310214818 17797570580 303329566
## 254  9085792329 2243727783 1570122576 1368893937 18293098366 313903789
## 255  9549322291 2356708165 1618227142 1425417943 18788332381 324254376
## 256 10053112844 2454889215 1665777337 1487567025 19278082351 335677795
## 257 10566426677 2516380971 1713400283 1550366932 19758573936 345294850
## 258 11101336781 2608548021 1760700388 1618347208 20226635996 355433285
## 259 11648221753 2712037114 1802808896 1682208154 20642568389 363187537
## 260 12212256261 2823022461 1844488413 1750495055 21067441551 370447136
## 261 12791296308 2955852535 1882497717 1819089793 21480873056 378244741
## 262 13391976603 3106945114 1920692470 1893874265 21872863421 385662930
## 263 14000939485 3270515514 1957875318 1959871335 22236263323 393700970
## 264 14640050821 3436883561 1994556943 2023421987 22584739563 401116296
## 265 15270412649 3604595459 2033000592 2089517860 22940222777 408813984
## 266 15907974802 3789534193 2072928710 2154686078 23290545792 416625405
## 267 16580287145 3983988823 2112667064 2221239489 23645999964 424398054
##           Japan    Jordan  Kazakhstan     Kenya Kiribati     Kuwait
## 1             0         0           0         0        0          0
## 2             0         0           0         0        0          0
## 3             0         0           0         0        0          0
## 4             0         0           0         0        0          0
## 5             0         0           0         0        0          0
## 6             0         0           0         0        0          0
## 7             0         0           0         0        0          0
## 8             0         0           0         0        0          0
## 9             0         0           0         0        0          0
## 10            0         0           0         0        0          0
## 11            0         0           0         0        0          0
## 12            0         0           0         0        0          0
## 13            0         0           0         0        0          0
## 14            0         0           0         0        0          0
## 15            0         0           0         0        0          0
## 16            0         0           0         0        0          0
## 17            0         0           0         0        0          0
## 18            0         0           0         0        0          0
## 19            0         0           0         0        0          0
## 20            0         0           0         0        0          0
## 21            0         0           0         0        0          0
## 22            0         0           0         0        0          0
## 23            0         0           0         0        0          0
## 24            0         0           0         0        0          0
## 25            0         0           0         0        0          0
## 26            0         0           0         0        0          0
## 27            0         0           0         0        0          0
## 28            0         0           0         0        0          0
## 29            0         0           0         0        0          0
## 30            0         0           0         0        0          0
## 31            0         0           0         0        0          0
## 32            0         0           0         0        0          0
## 33            0         0           0         0        0          0
## 34            0         0           0         0        0          0
## 35            0         0           0         0        0          0
## 36            0         0           0         0        0          0
## 37            0         0           0         0        0          0
## 38            0         0           0         0        0          0
## 39            0         0           0         0        0          0
## 40            0         0           0         0        0          0
## 41            0         0           0         0        0          0
## 42            0         0           0         0        0          0
## 43            0         0           0         0        0          0
## 44            0         0           0         0        0          0
## 45            0         0           0         0        0          0
## 46            0         0           0         0        0          0
## 47            0         0           0         0        0          0
## 48            0         0           0         0        0          0
## 49            0         0           0         0        0          0
## 50            0         0           0         0        0          0
## 51            0         0           0         0        0          0
## 52            0         0           0         0        0          0
## 53            0         0           0         0        0          0
## 54            0         0           0         0        0          0
## 55            0         0           0         0        0          0
## 56            0         0           0         0        0          0
## 57            0         0           0         0        0          0
## 58            0         0           0         0        0          0
## 59            0         0           0         0        0          0
## 60            0         0           0         0        0          0
## 61            0         0           0         0        0          0
## 62            0         0           0         0        0          0
## 63            0         0           0         0        0          0
## 64            0         0           0         0        0          0
## 65            0         0           0         0        0          0
## 66            0         0           0         0        0          0
## 67            0         0           0         0        0          0
## 68            0         0           0         0        0          0
## 69            0         0           0         0        0          0
## 70            0         0           0         0        0          0
## 71            0         0           0         0        0          0
## 72            0         0           0         0        0          0
## 73            0         0           0         0        0          0
## 74            0         0           0         0        0          0
## 75            0         0           0         0        0          0
## 76            0         0           0         0        0          0
## 77            0         0           0         0        0          0
## 78            0         0           0         0        0          0
## 79            0         0           0         0        0          0
## 80            0         0           0         0        0          0
## 81            0         0           0         0        0          0
## 82            0         0           0         0        0          0
## 83            0         0           0         0        0          0
## 84            0         0           0         0        0          0
## 85            0         0           0         0        0          0
## 86            0         0           0         0        0          0
## 87            0         0           0         0        0          0
## 88            0         0           0         0        0          0
## 89            0         0           0         0        0          0
## 90            0         0           0         0        0          0
## 91            0         0           0         0        0          0
## 92            0         0           0         0        0          0
## 93            0         0           0         0        0          0
## 94            0         0           0         0        0          0
## 95            0         0           0         0        0          0
## 96            0         0           0         0        0          0
## 97            0         0           0         0        0          0
## 98            0         0           0         0        0          0
## 99            0         0           0         0        0          0
## 100           0         0           0         0        0          0
## 101           0         0           0         0        0          0
## 102           0         0           0         0        0          0
## 103           0         0           0         0        0          0
## 104           0         0           0         0        0          0
## 105           0         0           0         0        0          0
## 106           0         0           0         0        0          0
## 107           0         0           0         0        0          0
## 108           0         0           0         0        0          0
## 109           0         0           0         0        0          0
## 110           0         0           0         0        0          0
## 111           0         0           0         0        0          0
## 112           0         0           0         0        0          0
## 113           0         0           0         0        0          0
## 114           0         0           0         0        0          0
## 115           0         0           0         0        0          0
## 116           0         0           0         0        0          0
## 117           0         0           0         0        0          0
## 118       10992         0           0         0        0          0
## 119       29312         0           0         0        0          0
## 120       47632         0           0         0        0          0
## 121       73280         0           0         0        0          0
## 122      106256         0           0         0        0          0
## 123      146560         0           0         0        0          0
## 124      732800         0           0         0        0          0
## 125     2172752         0           0         0        0          0
## 126     3576064         0           0         0        0          0
## 127     4865792         0           0         0        0          0
## 128     6723440         0           0         0        0          0
## 129     9039088         0           0         0        0          0
## 130    11387712         0           0         0        0          0
## 131    13802288         0           0         0        0          0
## 132    16315792         0           0         0        0          0
## 133    19027152         0           0         0        0          0
## 134    21984000         0           0         0        0          0
## 135    25332896         0           0         0        0          0
## 136    28938272         0           0         0        0          0
## 137    33412016         0           0         0        0          0
## 138    38581920         0           0         0        0          0
## 139    44836368         0           0         0        0          0
## 140    51592784         0           0         0        0          0
## 141    59715872         0           0         0        0          0
## 142    67791328         0           0         0        0          0
## 143    76365088         0           0         0        0          0
## 144    87390064         0           0         0        0          0
## 145    99616832         0           0         0        0          0
## 146   112532432         0           0         0        0          0
## 147   126074576         0           0         0        0          0
## 148   143321024         0           0         0        0          0
## 149   160593120         0           0         0        0          0
## 150   180004992         0           0         0        0          0
## 151   203278720         0           0         0        0          0
## 152   228223232         0           0         0        0          0
## 153   254010464         0           0         0        0          0
## 154   283062320         0           0         0        0          0
## 155   312993536         0           0         0        0          0
## 156   345848624         0           0         0        0          0
## 157   380920432         0           0         0        0          0
## 158   418553376         0           0         0        0          0
## 159   456809200         0           0         0        0          0
## 160   496193536         0           0         0        0          0
## 161   540403360         0           0         0        0          0
## 162   589684160         0           0         0        0          0
## 163   643999296         0           0         0        0          0
## 164   702015072         0           0         0        0          0
## 165   754857280         0           0         0        0          0
## 166   813455632         0           0         0        0          0
## 167   880939184         0           0         0        0          0
## 168   952482448         0           0         0        0          0
## 169  1031676144         0           0         0        0          0
## 170  1105956416         0           0         0        0          0
## 171  1172765792         0           0         0        0          0
## 172  1244195472         0           0         0        0          0
## 173  1320102560         0           0         0        0          0
## 174  1399450144         0           0         0        0          0
## 175  1481461456         0           0         0        0          0
## 176  1564066336         0           0         0        0          0
## 177  1653548544         0           0         0        0          0
## 178  1745954624         0           0         0        0          0
## 179  1840852224         0           0         0        0          0
## 180  1927033168         0           0         0        0          0
## 181  2004951792         0           0         0        0          0
## 182  2082947360         0           0         0        0          0
## 183  2174309200         0           0         0        0          0
## 184  2275530864         0           0         0        0          0
## 185  2381937088         0           0         0        0          0
## 186  2498811360         0           0         0        0          0
## 187  2624266720         0           0         0        0          0
## 188  2756024160         0           0         0        0          0
## 189  2883791504         0           0         0        0          0
## 190  3037052960         0           0         0        0          0
## 191  3191681088         0           0         0        0          0
## 192  3339490512         0           0         0        0          0
## 193  3490143200         0           0         0        0          0
## 194  3628887888         0           0         0        0          0
## 195  3705527776         0           0         0        0          0
## 196  3758238080         0           0         0        0    2454880
## 197  3828275440         0           0         0        0    9203968
## 198  3916365328         0           0         0        0    9541056
## 199  4014798688         0           0         0        0   10603616
## 200  4117357712    172208           0    908672        0   10988336
## 201  4240841840    333424           0   2300992        0   11105584
## 202  4371276576    527616           0   3891168        0   10669568
## 203  4517081792    740128           0   5404400        0   10618272
## 204  4659659024    992944           0   7104496        0   12021584
## 205  4801576736   1374000           0   9090384        0   13868240
## 206  4962265120   1824672           0  11310768        0   14908816
## 207  5150393200   2319312           0  13593440        0   17107216
## 208  5331614640   2843264           0  15681920        0   20796864
## 209  5524234627   3498674   107737205  17890034        0   24596432
## 210  5756734268   4241813   219906455  20314176        0   32393424
## 211  6039521168   5219209   335581275  22712759     7328   42366832
## 212  6332385598   6266162   456985614  25334786    18320   56645440
## 213  6657221061   7485115   587183724  28187645    36640   73657392
## 214  7016112153   8725963   725649268  31010896    54960   98971968
## 215  7402583332  10146377   872533359  33474806    65952  134362544
## 216  7821828451  11727709  1027649291  36154893    76944  169485648
## 217  8311135879  13140706  1189845135  38853330    98928  194906480
## 218  8873048433  14644678  1356597340  41668747   131904  217330160
## 219  9526263852  16401467  1530259124  44795217   142896  244139648
## 220 10294226962  17957151  1712917285  47873432   164880  269161104
## 221 11090771359  19611585  1906775803  51552543   194192  296278368
## 222 11942941840  21525183  2110765583  55418488   219840  323890272
## 223 12857207513  23724751  2323396071  59332094   256480  348112976
## 224 13771514304  25950056  2544149491  64275047   289456  367424999
## 225 14640025715  28439258  2776219139  69243470   322432  384237936
## 226 15547171084  31383854  3017180196  73839634   355408  402694133
## 227 16480409788  34537787  3266293786  78874845   377392  419895543
## 228 17382001221  38165134  3523920531  84171581   399376  440867123
## 229 18335074143  41942018  3783642021  89183420   425024  458494802
## 230 19279944467  46637833  4053547600  95334924   454336  483110985
## 231 20206781835  52463017  4318301411 101807982   483648  508250606
## 232 21104191561  58718704  4588047941 106441773   509296  529340873
## 233 21985103065  66018650  4861612957 111036395   531280  550882091
## 234 22922175153  74265522  5137598227 115289508   553264  579167333
## 235 23834578150  82687035  5435247598 119005467   575248  608237516
## 236 24746840361  91852087  5733642578 123078428   593568  643467781
## 237 25649373141 101358106  6044578977 128154300   615552  674845639
## 238 26634840205 110535118  6364021225 132844260   637536  707670750
## 239 27656524971 119614872  6676699974 137932739   659520  743442395
## 240 28811788385 129861896  6943216829 143618828   681504  794328626
## 241 29978828902 139537710  7200314032 148329179   703488  804502844
## 242 31155771473 151520745  7433253221 153731263   729136  825524695
## 243 32325968206 163294767  7638497753 159946400   758448  858726710
## 244 33551141627 176544249  7809563752 166366845   787760  897508432
## 245 34788994450 189751978  7972246887 173772300   817072  952097411
## 246 36038870138 203578402  8121249553 182927272   850048 1002011008
## 247 37282237270 217651996  8262018849 191047013   875696 1056681656
## 248 38485947804 231903854  8397112612 200943032   905008 1108242247
## 249 39725787924 246169227  8504435614 210972356   934320 1162064456
## 250 40988522386 261369264  8637974358 221273926   963632 1215448534
## 251 42236609810 276979716  8766193043 230509580   989280 1272933215
## 252 43513846356 293400390  8912975243 238329177  1029584 1330913065
## 253 44799231768 310382428  9077294244 244914749  1069888 1390535999
## 254 46079267890 329051915  9248354323 252352743  1113856 1453643931
## 255 47366124205 349488014  9432673302 260691342  1176144 1524810370
## 256 48628763657 370015456  9635643224 270027893  1245760 1598199461
## 257 49928815630 391452444  9848859622 279568319  1297056 1673074239
## 258 51158061080 412170359 10062240023 289480031  1352016 1755372503
## 259 52318264713 433506619 10271586716 301444111  1392320 1842327430
## 260 53529837581 454120964 10508548791 313190076  1454608 1931599655
## 261 54791236171 475364733 10735628411 326118137  1516896 2022229770
## 262 56093319098 499177823 10969489209 338085293  1579184 2124120095
## 263 57407388670 522917106 11209325921 350855767  1641472 2221934767
## 264 58671561922 548674764 11466182584 364512175  1703760 2316698068
## 265 59895228397 571842514 11729666450 379060790  1771733 2419025081
## 266 61099547020 593472587 12008028378 394295004  1840486 2522481035
## 267 62304608199 614829331 12300616894 410113224  1913895 2626874527
##     Kyrgysztan Kyrgyzstan     Laos    Latvia   Lebanon  Lesotho  Liberia
## 1            0          0        0         0         0        0        0
## 2            0          0        0         0         0        0        0
## 3            0          0        0         0         0        0        0
## 4            0          0        0         0         0        0        0
## 5            0          0        0         0         0        0        0
## 6            0          0        0         0         0        0        0
## 7            0          0        0         0         0        0        0
## 8            0          0        0         0         0        0        0
## 9            0          0        0         0         0        0        0
## 10           0          0        0         0         0        0        0
## 11           0          0        0         0         0        0        0
## 12           0          0        0         0         0        0        0
## 13           0          0        0         0         0        0        0
## 14           0          0        0         0         0        0        0
## 15           0          0        0         0         0        0        0
## 16           0          0        0         0         0        0        0
## 17           0          0        0         0         0        0        0
## 18           0          0        0         0         0        0        0
## 19           0          0        0         0         0        0        0
## 20           0          0        0         0         0        0        0
## 21           0          0        0         0         0        0        0
## 22           0          0        0         0         0        0        0
## 23           0          0        0         0         0        0        0
## 24           0          0        0         0         0        0        0
## 25           0          0        0         0         0        0        0
## 26           0          0        0         0         0        0        0
## 27           0          0        0         0         0        0        0
## 28           0          0        0         0         0        0        0
## 29           0          0        0         0         0        0        0
## 30           0          0        0         0         0        0        0
## 31           0          0        0         0         0        0        0
## 32           0          0        0         0         0        0        0
## 33           0          0        0         0         0        0        0
## 34           0          0        0         0         0        0        0
## 35           0          0        0         0         0        0        0
## 36           0          0        0         0         0        0        0
## 37           0          0        0         0         0        0        0
## 38           0          0        0         0         0        0        0
## 39           0          0        0         0         0        0        0
## 40           0          0        0         0         0        0        0
## 41           0          0        0         0         0        0        0
## 42           0          0        0         0         0        0        0
## 43           0          0        0         0         0        0        0
## 44           0          0        0         0         0        0        0
## 45           0          0        0         0         0        0        0
## 46           0          0        0         0         0        0        0
## 47           0          0        0         0         0        0        0
## 48           0          0        0         0         0        0        0
## 49           0          0        0         0         0        0        0
## 50           0          0        0         0         0        0        0
## 51           0          0        0         0         0        0        0
## 52           0          0        0         0         0        0        0
## 53           0          0        0         0         0        0        0
## 54           0          0        0         0         0        0        0
## 55           0          0        0         0         0        0        0
## 56           0          0        0         0         0        0        0
## 57           0          0        0         0         0        0        0
## 58           0          0        0         0         0        0        0
## 59           0          0        0         0         0        0        0
## 60           0          0        0         0         0        0        0
## 61           0          0        0         0         0        0        0
## 62           0          0        0         0         0        0        0
## 63           0          0        0         0         0        0        0
## 64           0          0        0         0         0        0        0
## 65           0          0        0         0         0        0        0
## 66           0          0        0         0         0        0        0
## 67           0          0        0         0         0        0        0
## 68           0          0        0         0         0        0        0
## 69           0          0        0         0         0        0        0
## 70           0          0        0         0         0        0        0
## 71           0          0        0         0         0        0        0
## 72           0          0        0         0         0        0        0
## 73           0          0        0         0         0        0        0
## 74           0          0        0         0         0        0        0
## 75           0          0        0         0         0        0        0
## 76           0          0        0         0         0        0        0
## 77           0          0        0         0         0        0        0
## 78           0          0        0         0         0        0        0
## 79           0          0        0         0         0        0        0
## 80           0          0        0         0         0        0        0
## 81           0          0        0         0         0        0        0
## 82           0          0        0         0         0        0        0
## 83           0          0        0         0         0        0        0
## 84           0          0        0         0         0        0        0
## 85           0          0        0         0         0        0        0
## 86           0          0        0         0         0        0        0
## 87           0          0        0         0         0        0        0
## 88           0          0        0         0         0        0        0
## 89           0          0        0         0         0        0        0
## 90           0          0        0         0         0        0        0
## 91           0          0        0         0         0        0        0
## 92           0          0        0         0         0        0        0
## 93           0          0        0         0         0        0        0
## 94           0          0        0         0         0        0        0
## 95           0          0        0         0         0        0        0
## 96           0          0        0         0         0        0        0
## 97           0          0        0         0         0        0        0
## 98           0          0        0         0         0        0        0
## 99           0          0        0         0         0        0        0
## 100          0          0        0         0         0        0        0
## 101          0          0        0         0         0        0        0
## 102          0          0        0         0         0        0        0
## 103          0          0        0         0         0        0        0
## 104          0          0        0         0         0        0        0
## 105          0          0        0         0         0        0        0
## 106          0          0        0         0         0        0        0
## 107          0          0        0         0         0        0        0
## 108          0          0        0         0         0        0        0
## 109          0          0        0         0         0        0        0
## 110          0          0        0         0         0        0        0
## 111          0          0        0         0         0        0        0
## 112          0          0        0         0         0        0        0
## 113          0          0        0         0         0        0        0
## 114          0          0        0         0         0        0        0
## 115          0          0        0         0         0        0        0
## 116          0          0        0         0         0        0        0
## 117          0          0        0         0         0        0        0
## 118          0          0        0         0         0        0        0
## 119          0          0        0         0         0        0        0
## 120          0          0        0         0         0        0        0
## 121          0          0        0         0         0        0        0
## 122          0          0        0         0         0        0        0
## 123          0          0        0         0         0        0        0
## 124          0          0        0         0         0        0        0
## 125          0          0        0         0         0        0        0
## 126          0          0        0         0         0        0        0
## 127          0          0        0         0         0        0        0
## 128          0          0        0         0         0        0        0
## 129          0          0        0         0         0        0        0
## 130          0          0        0         0         0        0        0
## 131          0          0        0         0         0        0        0
## 132          0          0        0         0         0        0        0
## 133          0          0        0         0         0        0        0
## 134          0          0        0         0         0        0        0
## 135          0          0        0         0         0        0        0
## 136          0          0        0         0         0        0        0
## 137          0          0        0         0         0        0        0
## 138          0          0        0         0         0        0        0
## 139          0          0        0         0         0        0        0
## 140          0          0        0         0         0        0        0
## 141          0          0        0         0         0        0        0
## 142          0          0        0         0         0        0        0
## 143          0          0        0         0         0        0        0
## 144          0          0        0         0         0        0        0
## 145          0          0        0         0         0        0        0
## 146          0          0        0         0         0        0        0
## 147          0          0        0         0         0        0        0
## 148          0          0        0         0         0        0        0
## 149          0          0        0         0         0        0        0
## 150          0          0        0         0         0        0        0
## 151          0          0        0         0         0        0        0
## 152          0          0        0         0         0        0        0
## 153          0          0        0         0         0        0        0
## 154          0          0        0         0         0        0        0
## 155          0          0        0         0         0        0        0
## 156          0          0        0         0         0        0        0
## 157          0          0        0         0         0        0        0
## 158          0          0        0         0         0        0        0
## 159          0          0        0         0         0        0        0
## 160          0          0        0         0         0        0        0
## 161          0          0        0         0         0        0        0
## 162          0          0        0         0         0        0        0
## 163          0          0        0         0         0        0        0
## 164          0          0        0         0         0        0        0
## 165          0          0        0         0         0        0        0
## 166          0          0        0         0         0        0        0
## 167          0          0        0         0         0        0        0
## 168          0          0        0         0         0        0        0
## 169          0          0        0         0         0        0        0
## 170          0          0        0         0         0        0        0
## 171          0          0        0         0         0        0        0
## 172          0          0        0         0         0        0        0
## 173          0          0        0         0         0        0        0
## 174          0          0        0         0         0        0        0
## 175          0          0        0         0         0        0        0
## 176          0          0        0         0         0        0        0
## 177          0          0        0         0         0        0        0
## 178          0          0        0     10992         0        0        0
## 179          0          0        0     29312         0        0        0
## 180          0          0        0     65952         0        0        0
## 181          0          0        0    102592      3664        0        0
## 182          0          0        0    128240     14656        0        0
## 183          0          0        0    153888     29312        0        0
## 184          0          0        0    190528     29312        0        0
## 185          0          0        0    227168     80608        0        0
## 186          0          0        0    278464    139232        0        0
## 187          0          0        0    337088    201520        0        0
## 188          0          0        0    414032    263808        0        0
## 189          0          0        0    494640    322432        0        0
## 190          0          0        0    494640    344416        0        0
## 191          0          0        0    494640    366400        0        0
## 192          0          0        0    494640    718144        0        0
## 193          0          0        0    494640    754784        0        0
## 194          0          0        0    494640    820736        0        0
## 195          0          0        0    494640    894016        0        0
## 196          0          0        0    494640    967296        0        0
## 197          0          0        0    494640   1051568        0        0
## 198          0          0        0    494640   1154160        0        0
## 199          0          0        0    494640   1271408        0        0
## 200          0          0        0    494640   2784640        0    47632
## 201          0          0        0    494640   4242912        0    91600
## 202          0          0        0    494640   5419056        0   146560
## 203          0          0        0    494640   6668480        0   205184
## 204          0          0        0    494640   7976528        0   307776
## 205          0          0    25648    494640   9599680        0   366400
## 206          0          0    84272    494640  11486640        0   414032
## 207          0          0   142896    494640  13553136        0   498304
## 208          0          0   216176    494640  15535360        0   659520
## 209          0          0   293120   6309565  17983575        0   802416
## 210          0          0   373728  12363686  20559584        0   967296
## 211          0          0   487312  18606999  23238095        0  1128512
## 212          0          0   619216  25159539  26088875        0  1381328
## 213          0          0   765776  32186701  29111713        0  1736736
## 214          0          0   937984  39660078  32372771        0  2220384
## 215          0          0  1117520  47587815  35684769        0  2777312
## 216          0          0  1352016  55959832  39307701        0  3389200
## 217          0          0  1670784  64713964  42872336        0  4001088
## 218          0          0  1839328  73714009  46565657        0  4883904
## 219          0          0  2158096  83086983  50909774        0  6155015
## 220          0          0  2729680  92945508  54850493        0  7605602
## 221          0          0  3151040 103413554  60151133        0  9129470
## 222          0          0  3638352 114433897  65804450        0 10635017
## 223          0          0  4154976 125926753  72871187        0 12114916
## 224          0          0  4448096 137864889  79959054        0 13836640
## 225          0          0  4700912 150421662  86224161        0 15320203
## 226          0          0  4924416 163464700  92148193        0 16795804
## 227          0          0  5155248 176954483  97533711        0 18267167
## 228          0          0  5386080 190909527 103029601        0 19770319
## 229          0          0  5609584 204981652 108814825        0 21712218
## 230          0          0  5796448 219609939 114704597        0 23749776
## 231          0          0  5946672 233967583 120548866        0 25684719
## 232          0          0  6104224 248599104 126268307        0 26282127
## 233          0          0  6283760 263445848 133210524        0 26988645
## 234          0          0  6466960 278431131 139923722        0 27684077
## 235          0          0  6668480 294592829 147688670        0 28400162
## 236          0          0  6877328 310804701 155167131        0 29123040
## 237          0          0  7086176 327702097 162837509        0 29881503
## 238          0          0  7295024 345067267 170183179        0 30690686
## 239          0          0  7529520 362075189 177903965        0 31350280
## 240          0          0  7742032 381881083 185771819  1472928 31818417
## 241          0          0  7976528 399919717 193886686  3000816 32096881
## 242          0   11166356  8232333 414186954 203613622  4587328 32378354
## 243          0   19752213  8488135 426174716 213983236  6221472 32692799
## 244          0   25956673  8762253 436594980 225111936  7895920 33004239
## 245          0   30467721  9109649 445762564 237392114  9603344 33329666
## 246          0   36131920  9578400 455006106 250177716 11340080 33665408
## 247          0   41704965 10179019 463712924 265310083 13109792 34012811
## 248          0   47618102 10856546 472041836 281625605 14912480 34385856
## 249          0   52264947 11775860 479779806 298083837 16737152 34776531
## 250          0   56867430 12704728 486878852 313550101 18587472 35190977
## 251          0   60729730 13567479 494395178 329956334 20463440 35675625
## 252          0   65649012 14693995 501938112 346200719 22368720 36157932
## 253          0   71030631 15768058 509678782 364728188 24299648 36676040
## 254          0   76837452 17134809 517429738 381935876 26281872 37279775
## 255          0   82351073 18512120 525264893 398589355 28293408 37990241
## 256          0   87770042 20019146 533598200 413381387 30330592 38721369
## 257          0   94288317 20882770 542253265 427134202 32404416 39371055
## 258          0  101836588 21781876 550471989 444560260 34529536 39924444
## 259          0  108573965 22921991 557952693 465530770 36746256 40432743
## 260          0  114886823 24420015 566599649 485545942 39021600 41215880
## 261          0  122440330 25886889 574482329 505810070 41351904 42096861
## 262          0  132440156 27401546 582066184 528178903 43755488 43108284
## 263          0  142098611 28803091 589489776 550375263 46188384 44043734
## 264          0  151511687 30476239 596728530 574079083 48654256 44945457
## 265          0  161441127 32221226 604062191 595348268 51139004 45858339
## 266          0  171301052 34119762 611325809 615105675 53600907 46827371
## 267          0  181734180 36077735 618492628 634652476 56424722 47905144
##          Libya Liechtenstein  Lithuania Luxembourg    Macao Macedonia
## 1            0             0          0          0        0         0
## 2            0             0          0          0        0         0
## 3            0             0          0          0        0         0
## 4            0             0          0          0        0         0
## 5            0             0          0          0        0         0
## 6            0             0          0          0        0         0
## 7            0             0          0          0        0         0
## 8            0             0          0          0        0         0
## 9            0             0          0          0        0         0
## 10           0             0          0          0        0         0
## 11           0             0          0          0        0         0
## 12           0             0          0          0        0         0
## 13           0             0          0          0        0         0
## 14           0             0          0          0        0         0
## 15           0             0          0          0        0         0
## 16           0             0          0          0        0         0
## 17           0             0          0          0        0         0
## 18           0             0          0          0        0         0
## 19           0             0          0          0        0         0
## 20           0             0          0          0        0         0
## 21           0             0          0          0        0         0
## 22           0             0          0          0        0         0
## 23           0             0          0          0        0         0
## 24           0             0          0          0        0         0
## 25           0             0          0          0        0         0
## 26           0             0          0          0        0         0
## 27           0             0          0          0        0         0
## 28           0             0          0          0        0         0
## 29           0             0          0          0        0         0
## 30           0             0          0          0        0         0
## 31           0             0          0          0        0         0
## 32           0             0          0          0        0         0
## 33           0             0          0          0        0         0
## 34           0             0          0          0        0         0
## 35           0             0          0          0        0         0
## 36           0             0          0          0        0         0
## 37           0             0          0          0        0         0
## 38           0             0          0          0        0         0
## 39           0             0          0          0        0         0
## 40           0             0          0          0        0         0
## 41           0             0          0          0        0         0
## 42           0             0          0          0        0         0
## 43           0             0          0          0        0         0
## 44           0             0          0          0        0         0
## 45           0             0          0          0        0         0
## 46           0             0          0          0        0         0
## 47           0             0          0          0        0         0
## 48           0             0          0          0        0         0
## 49           0             0          0          0        0         0
## 50           0             0          0          0        0         0
## 51           0             0          0          0        0         0
## 52           0             0          0          0        0         0
## 53           0             0          0          0        0         0
## 54           0             0          0          0        0         0
## 55           0             0          0          0        0         0
## 56           0             0          0          0        0         0
## 57           0             0          0          0        0         0
## 58           0             0          0          0        0         0
## 59           0             0          0          0        0         0
## 60           0             0          0          0        0         0
## 61           0             0          0          0        0         0
## 62           0             0          0          0        0         0
## 63           0             0          0          0        0         0
## 64           0             0          0          0        0         0
## 65           0             0          0          0        0         0
## 66           0             0          0          0        0         0
## 67           0             0          0          0        0         0
## 68           0             0          0          0        0         0
## 69           0             0          0          0        0         0
## 70           0             0          0          0        0         0
## 71           0             0          0          0        0         0
## 72           0             0          0          0        0         0
## 73           0             0          0          0        0         0
## 74           0             0          0          0        0         0
## 75           0             0          0          0        0         0
## 76           0             0          0          0        0         0
## 77           0             0          0          0        0         0
## 78           0             0          0          0        0         0
## 79           0             0          0          0        0         0
## 80           0             0          0          0        0         0
## 81           0             0          0          0        0         0
## 82           0             0          0          0        0         0
## 83           0             0          0          0        0         0
## 84           0             0          0          0        0         0
## 85           0             0          0          0        0         0
## 86           0             0          0          0        0         0
## 87           0             0          0          0        0         0
## 88           0             0          0          0        0         0
## 89           0             0          0          0        0         0
## 90           0             0          0          0        0         0
## 91           0             0          0          0        0         0
## 92           0             0          0          0        0         0
## 93           0             0          0          0        0         0
## 94           0             0          0          0        0         0
## 95           0             0          0          0        0         0
## 96           0             0          0          0        0         0
## 97           0             0          0          0        0         0
## 98           0             0          0          0        0         0
## 99           0             0          0          0        0         0
## 100          0             0          0          0        0         0
## 101          0             0          0          0        0         0
## 102          0             0          0          0        0         0
## 103          0             0          0          0        0         0
## 104          0             0          0          0        0         0
## 105          0             0          0          0        0         0
## 106          0             0          0          0        0         0
## 107          0             0          0          0        0         0
## 108          0             0          0          0        0         0
## 109          0             0          0          0        0         0
## 110          0             0          0          0        0         0
## 111          0             0          0          0        0         0
## 112          0             0          0          0        0         0
## 113          0             0          0          0        0         0
## 114          0             0          0          0        0         0
## 115          0             0          0          0        0         0
## 116          0             0          0          0        0         0
## 117          0             0          0          0        0         0
## 118          0             0          0          0        0         0
## 119          0             0          0          0        0         0
## 120          0             0          0          0        0         0
## 121          0             0          0          0        0         0
## 122          0             0          0          0        0         0
## 123          0             0          0          0        0         0
## 124          0             0          0          0        0         0
## 125          0             0          0          0        0         0
## 126          0             0          0          0        0         0
## 127          0             0          0          0        0         0
## 128          0             0          0          0        0         0
## 129          0             0          0          0        0         0
## 130          0             0          0          0        0         0
## 131          0             0          0          0        0         0
## 132          0             0          0          0        0         0
## 133          0             0          0          0        0         0
## 134          0             0          0          0        0         0
## 135          0             0          0          0        0         0
## 136          0             0          0          0        0         0
## 137          0             0          0          0        0         0
## 138          0             0          0          0        0         0
## 139          0             0          0          0        0         0
## 140          0             0          0          0        0         0
## 141          0             0          0          0        0         0
## 142          0             0          0          0        0         0
## 143          0             0          0          0        0         0
## 144          0             0          0          0        0         0
## 145          0             0          0          0        0         0
## 146          0             0          0          0        0         0
## 147          0             0          0          0        0         0
## 148          0             0          0          0        0         0
## 149          0             0          0          0        0         0
## 150          0             0          0          0        0         0
## 151          0             0          0          0        0         0
## 152          0             0          0          0        0         0
## 153          0             0          0          0        0         0
## 154          0             0          0          0        0         0
## 155          0             0          0          0        0         0
## 156          0             0          0          0        0         0
## 157          0             0          0          0        0         0
## 158          0             0          0          0        0         0
## 159          0             0          0          0        0         0
## 160          0             0          0          0        0         0
## 161          0             0          0          0        0         0
## 162          0             0          0          0        0         0
## 163          0             0          0          0        0         0
## 164          0             0          0          0        0         0
## 165          0             0          0          0        0         0
## 166          0             0          0          0        0         0
## 167          0             0          0          0        0         0
## 168          0             0          0          0        0         0
## 169          0             0          0          0        0         0
## 170          0             0          0          0        0         0
## 171          0             0          0          0        0         0
## 172          0             0          0          0        0         0
## 173          0             0          0          0        0         0
## 174          0             0          0          0        0         0
## 175          0             0          0          0        0         0
## 176          0             0          0          0        0         0
## 177          0             0          0          0        0         0
## 178          0             0          0          0        0         0
## 179          0             0          0          0        0         0
## 180          0             0          0          0        0         0
## 181          0             0          0          0        0         0
## 182          0             0          0          0        0         0
## 183          0             0          0          0        0         0
## 184          0             0          0          0        0         0
## 185          0             0          0          0        0         0
## 186          0             0          0          0        0         0
## 187          0             0          0          0        0         0
## 188          0             0          0          0        0         0
## 189          0             0          0          0        0         0
## 190          0             0          0          0        0         0
## 191          0             0          0          0        0         0
## 192          0             0          0          0        0         0
## 193          0             0          0          0        0         0
## 194          0             0          0          0        0         0
## 195          0             0          0      25648        0         0
## 196          0             0          0      62288        0         0
## 197          0             0          0     106256        0         0
## 198          0             0          0     157552        0         0
## 199          0             0          0     216176        0         0
## 200     142896             0          0    7635776        0         0
## 201     311440             0          0   16645552        0         0
## 202     476320             0          0   26047376        0         0
## 203     725472             0          0   34701744        0         0
## 204    1025920             0          0   43484352    21984         0
## 205    1454608             0          0   53369824    43968         0
## 206    1784368             0          0   63738944    69616         0
## 207    2095808             0          0   74577056    98928         0
## 208    2447552             0          0   84664048   128240         0
## 209    2879904             0    9104218   95083691   164880   3449028
## 210    3572400             0   18582657  106591454   216176   7216482
## 211    4766864             0   28357074  118172436   285792  11165444
## 212    5814768             0   38615374  129713115   381056  15217786
## 213    7276704             0   49616701  141151291   487312  19725868
## 214    7939888             0   61316548  153446843   615552  24833317
## 215    8954816             0   73727480  165639744   747456  30088340
## 216   11581904             0   86833697  177250098   897680  35295619
## 217   30074112             0  100537989  188600427  1062560  40555377
## 218   60188528             0  114627170  200859398  1231104  46180911
## 219   95710741             0  129300165  214041638  1399648  52013599
## 220  128015842             0  144733160  227776994  1604832  59635711
## 221  149644137             0  161143038  240971710  1832000  67850482
## 222  164864155             0  178442363  254466549  2062832  75549931
## 223  179439220             0  196509122  268644782  2286336  84747602
## 224  188776795             0  215303820  283072739  2553808  93985520
## 225  200345211             0  235102357  294941221  2850592 103624727
## 226  218233077             0  255686049  306807863  3103408 113573679
## 227  238284767             0  276994418  317767286  3411184 123248793
## 228  259440149             0  299052448  329654691  3825216 134060692
## 229  285366520             0  321307804  341824497  4239248 145820769
## 230  312147062             0  344458112  352906667  4766864 157384739
## 231  340815025             0  367215500  362402763  5301808 169969884
## 232  371380127             0  390420465  371337972  5785456 181531881
## 233  401526144             0  414000295  379714207  6466960 193982079
## 234  429802355             0  437830014  388731030  7071520 207111745
## 235  460804532             0  463531683  397979608  7804320 220504990
## 236  494700026             0  489352281  407107352  8680016 234492474
## 237  527048288             0  516281367  415942492  9650976 248391966
## 238  563208673             0  543978213  425069406 10614608 262777187
## 239  600277195             0  571147302  434945414 11644192 277130841
## 240  636790190             0  606934508  446757456 12677440 291473053
## 241  679409337             0  644817791  459181483 13769312 301617717
## 242  716434309             0  666004853  471361677 14850192 312386213
## 243  755143289             0  682336994  483682307 16030000 322718693
## 244  798896296             0  698085213  495191257 17301408 333179413
## 245  844587374             0  713089360  504309337 18532512 344010197
## 246  888384177             0  728748180  513474817 19939488 355742325
## 247  933090709             0  743818376  521993579 21427072 366367925
## 248  978249630             0  759706416  529632952 22984272 378983077
## 249 1022552971             0  773113934  537723410 24501168 390696885
## 250 1069345962             0  784901959  546396280 26131648 402751445
## 251 1117119760             0  797398085  555562404 27817088 414740053
## 252 1164591964             0  810000457  565504652 29333984 425666101
## 253 1213372948             0  822592337  575916286 30865536 436965877
## 254 1263328782             0  835759661  587701517 32580288 448148405
## 255 1315025067             0  849848985  599749914 34408624 459418869
## 256 1367691385             0  864251943  611629171 36028112 470348581
## 257 1417031130        200764  880015212  622898005 37563328 479834677
## 258 1472372605        420268  895095057  634030265 38900688 489229173
## 259 1529568214        625620  907923062  644618718 40970848 497920181
## 260 1590689859        816426  921635694  655773007 42377824 506515925
## 261 1629954473        993206  935702333  666823377 43825104 515906757
## 262 1682363217       1178524  949836082  677611458 45136816 524865237
## 263 1738365468       1371064  962942391  687844797 46316624 532706197
## 264 1795093357       1532165  975817059  697602303 47599024 540210069
## 265 1847257937       1691050  988958651  706861962 49013505 547467616
## 266 1898568306       1839412 1002116108  715864917 50435741 554611635
## 267 1951955718       2000665 1015509983  725159607 51947913 561863099
##     Madagascar   Malawi   Malaysia Maldives     Mali    Malta
## 1            0        0          0        0        0        0
## 2            0        0          0        0        0        0
## 3            0        0          0        0        0        0
## 4            0        0          0        0        0        0
## 5            0        0          0        0        0        0
## 6            0        0          0        0        0        0
## 7            0        0          0        0        0        0
## 8            0        0          0        0        0        0
## 9            0        0          0        0        0        0
## 10           0        0          0        0        0        0
## 11           0        0          0        0        0        0
## 12           0        0          0        0        0        0
## 13           0        0          0        0        0        0
## 14           0        0          0        0        0        0
## 15           0        0          0        0        0        0
## 16           0        0          0        0        0        0
## 17           0        0          0        0        0        0
## 18           0        0          0        0        0        0
## 19           0        0          0        0        0        0
## 20           0        0          0        0        0        0
## 21           0        0          0        0        0        0
## 22           0        0          0        0        0        0
## 23           0        0          0        0        0        0
## 24           0        0          0        0        0        0
## 25           0        0          0        0        0        0
## 26           0        0          0        0        0        0
## 27           0        0          0        0        0        0
## 28           0        0          0        0        0        0
## 29           0        0          0        0        0        0
## 30           0        0          0        0        0        0
## 31           0        0          0        0        0        0
## 32           0        0          0        0        0        0
## 33           0        0          0        0        0        0
## 34           0        0          0        0        0        0
## 35           0        0          0        0        0        0
## 36           0        0          0        0        0        0
## 37           0        0          0        0        0        0
## 38           0        0          0        0        0        0
## 39           0        0          0        0        0        0
## 40           0        0          0        0        0        0
## 41           0        0          0        0        0        0
## 42           0        0          0        0        0        0
## 43           0        0          0        0        0        0
## 44           0        0          0        0        0        0
## 45           0        0          0        0        0        0
## 46           0        0          0        0        0        0
## 47           0        0          0        0        0        0
## 48           0        0          0        0        0        0
## 49           0        0          0        0        0        0
## 50           0        0          0        0        0        0
## 51           0        0          0        0        0        0
## 52           0        0          0        0        0        0
## 53           0        0          0        0        0        0
## 54           0        0          0        0        0        0
## 55           0        0          0        0        0        0
## 56           0        0          0        0        0        0
## 57           0        0          0        0        0        0
## 58           0        0          0        0        0        0
## 59           0        0          0        0        0        0
## 60           0        0          0        0        0        0
## 61           0        0          0        0        0        0
## 62           0        0          0        0        0        0
## 63           0        0          0        0        0        0
## 64           0        0          0        0        0        0
## 65           0        0          0        0        0        0
## 66           0        0          0        0        0        0
## 67           0        0          0        0        0        0
## 68           0        0          0        0        0        0
## 69           0        0          0        0        0        0
## 70           0        0          0        0        0        0
## 71           0        0          0        0        0        0
## 72           0        0          0        0        0        0
## 73           0        0          0        0        0        0
## 74           0        0          0        0        0        0
## 75           0        0          0        0        0        0
## 76           0        0          0        0        0        0
## 77           0        0          0        0        0        0
## 78           0        0          0        0        0        0
## 79           0        0          0        0        0        0
## 80           0        0          0        0        0        0
## 81           0        0          0        0        0        0
## 82           0        0          0        0        0        0
## 83           0        0          0        0        0        0
## 84           0        0          0        0        0        0
## 85           0        0          0        0        0        0
## 86           0        0          0        0        0        0
## 87           0        0          0        0        0        0
## 88           0        0          0        0        0        0
## 89           0        0          0        0        0        0
## 90           0        0          0        0        0        0
## 91           0        0          0        0        0        0
## 92           0        0          0        0        0        0
## 93           0        0          0        0        0        0
## 94           0        0          0        0        0        0
## 95           0        0          0        0        0        0
## 96           0        0          0        0        0        0
## 97           0        0          0        0        0        0
## 98           0        0          0        0        0        0
## 99           0        0          0        0        0        0
## 100          0        0          0        0        0        0
## 101          0        0          0        0        0        0
## 102          0        0          0        0        0        0
## 103          0        0          0        0        0        0
## 104          0        0          0        0        0        0
## 105          0        0          0        0        0        0
## 106          0        0          0        0        0        0
## 107          0        0          0        0        0        0
## 108          0        0          0        0        0        0
## 109          0        0          0        0        0        0
## 110          0        0          0        0        0        0
## 111          0        0          0        0        0        0
## 112          0        0          0        0        0        0
## 113          0        0          0        0        0        0
## 114          0        0          0        0        0        0
## 115          0        0          0        0        0        0
## 116          0        0          0        0        0        0
## 117          0        0          0        0        0        0
## 118          0        0          0        0        0        0
## 119          0        0          0        0        0        0
## 120          0        0          0        0        0        0
## 121          0        0          0        0        0        0
## 122          0        0          0        0        0        0
## 123          0        0          0        0        0        0
## 124          0        0          0        0        0        0
## 125          0        0          0        0        0        0
## 126          0        0          0        0        0        0
## 127          0        0          0        0        0        0
## 128          0        0          0        0        0        0
## 129          0        0          0        0        0        0
## 130          0        0          0        0        0        0
## 131          0        0          0        0        0        0
## 132          0        0          0        0        0        0
## 133          0        0          0        0        0        0
## 134          0        0          0        0        0        0
## 135          0        0          0        0        0        0
## 136          0        0          0        0        0        0
## 137          0        0          0        0        0        0
## 138          0        0          0        0        0        0
## 139          0        0          0        0        0        0
## 140          0        0       7328        0        0        0
## 141          0        0      25648        0        0        0
## 142          0        0      73280        0        0        0
## 143          0        0      84272        0        0        0
## 144          0        0     131904        0        0        0
## 145          0        0     241824        0        0        0
## 146          0        0     366400        0        0        0
## 147          0        0     458000        0        0        0
## 148          0        0     586240        0        0        0
## 149          0        0     707152        0        0        0
## 150          0        0     765776        0        0        0
## 151          0        0     813408        0        0        0
## 152          0        0     864704        0        0        0
## 153          0        0     916000        0        0        0
## 154          0        0     948976        0        0        0
## 155          0        0     989280        0        0        0
## 156          0        0    1025920        0        0        0
## 157          0        0    1113856        0        0        0
## 158          0        0    1205456        0        0        0
## 159          0        0    1374000        0        0        0
## 160          0        0    1608496        0        0        0
## 161          0        0    1608496        0        0        0
## 162          0        0    1626816        0        0        0
## 163          0        0    1689104        0        0        0
## 164          0        0    1835664        0        0        0
## 165          0        0    2040848        0        0        0
## 166          0        0    2590448        0        0        0
## 167          0        0    3242640        0        0        0
## 168          0        0    3913152        0        0        0
## 169          0        0    4682592        0        0        0
## 170          0        0    5792784        0        0        0
## 171          0        0    7207088        0        0        0
## 172          0        0    9211296        0        0        0
## 173          0        0   11794416        0        0        0
## 174          0        0   14630352        0        0        0
## 175          0        0   17594528        0        0        0
## 176          0        0   20994720        0        0        0
## 177          0        0   24372928        0        0        0
## 178          0        0   28179824        0        0        0
## 179          0        0   32294496        0        0        0
## 180          0        0   35965824        0        0        0
## 181          0        0   38673520        0        0        0
## 182          0        0   40468880        0        0        0
## 183       3664        0   42059056        0        0        0
## 184      10992        0   43792128        0        0        0
## 185      14656        0   45598480        0        0        0
## 186      14656        0   47646656        0        0        0
## 187      14656        0   49991616        0        0        0
## 188      14656        0   51904224        0        0        0
## 189      14656        0   53607984        0        0        0
## 190      14656        0   56176448        0        0        0
## 191      14656        0   58360192        0        0        0
## 192      14656        0   59019712        0        0        0
## 193      14656        0   60338752        0        0        0
## 194      14656        0   61441616        0        0        0
## 195      21984        0   62053504        0        0        0
## 196      21984        0   62658064        0        0        0
## 197      25648        0   63343232        0        0        0
## 198      29312        0   64497392        0        0        0
## 199      32976        0   65717504        0        0        0
## 200     337088        0   65717504        0        0   245488
## 201     582576        0   65717504        0        0   501968
## 202     890352        0   65717504        0        0   743792
## 203    1143168        0   65717504        0        0   974624
## 204    1432624        0   65717504        0        0  1282400
## 205    1736736        0   65717504        0        0  1623152
## 206    2055504        0   65717504        0        0  1919936
## 207    2370608        0   68692672        0        0  2231376
## 208    2744336        0   71931648        0        0  2561136
## 209    3118064   459765   74555072        0    47632  2949520
## 210    3517440   898133   78120144        0   168544  3290272
## 211    3872848  1271461   82117568        0   285792  3583392
## 212    4268501  1632081   86188272        0   425024  3913152
## 213    4729986  1978791   91152992        0   600896  4323520
## 214    5213456  2308432   97572320        0   776768  4821824
## 215    5770235  2656393  104053936        0   974624  5294480
## 216    6348939  3084903  111741008        0  1165152  5708512
## 217    7191422  3451125  120212176        0  1388656  6228800
## 218    8103490  3839271  128716320        0  1586512  6866336
## 219    8953241  4220030  138235392        0  1747728  7518528
## 220    9923904  4674098  152821280        0  1949248  8181712
## 221   10949527  5175799  169480724     3664  2176416  8841232
## 222   12235323  5721438  187374669     7328  2421904  9680288
## 223   13308578  6292665  204868762    10992  2689198 10486368
## 224   14495476  6841908  223897715    14656  2993131 11230160
## 225   16188007  7420404  243322053    21984  3333675 11897008
## 226   17180243  8002131  267179545    32976  3673932 12659120
## 227   18025844  8638213  289743973    47632  4087405 13461536
## 228   19043060  9306585  312915669    69616  4482352 14395856
## 229   20173297  9941406  340110564    98928  4910265 15300864
## 230   21787241 10649402  368007822   142896  5301608 16323120
## 231   22811780 11250925  398697625   190528  5696491 17466288
## 232   23825123 11842273  429105112   238160  6061623 18778000
## 233   24475524 12413940  466883274   289456  6478244 19774608
## 234   25341896 12966875  501357171   348080  6913063 21137616
## 235   26394926 13520281  537371259   414032  7318446 22335744
## 236   27532024 14068731  577081982   494640  7698058 23819664
## 237   28814431 14609443  617567205   575248  8055563 25673648
## 238   30100215 15146644  659957313   670512  8438592 27685184
## 239   31026035 15704855  709390735   795088  8854475 29854272
## 240   31969846 16443919  765402611   967296  9273898 31797593
## 241   32997893 17228604  833257411  1121184  9707964 33908168
## 242   33996591 18013871  907725968  1352016 10149343 36227621
## 243   35020900 18893015  998562496  1549872 10601701 38561534
## 244   36285325 19797729 1091576471  1747728 11062038 41064065
## 245   37546063 20704692 1211611670  1996880 11529693 43562366
## 246   38905032 21608951 1335728565  2286336 12015659 46032334
## 247   40550444 22556320 1459256243  2616096 12536900 48547381
## 248   42283087 23478360 1572367292  2916544 13299012 51063432
## 249   44195238 24402838 1679254480  3337904 14094100 53633719
## 250   46062702 25256688 1803793866  3788576 14914836 56204587
## 251   47798180 26103813 1937961023  4250240 15742900 58672701
## 252   49030089 26943136 2070177475  4843808 16589284 61116620
## 253   50710563 27843148 2226570969  5349440 17432004 63778977
## 254   52499928 28761988 2388658984  6016288 18307700 66336254
## 255   54225322 29620426 2561145555  6617184 19205380 69002273
## 256   55891547 30512546 2726726109  7375632 20147028 71681716
## 257   57674990 31378804 2909181850  8156064 21154628 74437761
## 258   59543559 32407285 3110762165  8998784 22224516 77261505
## 259   61297455 33325959 3307206260  9881808 23030596 79845824
## 260   63235798 34447579 3523198564 10816128 23994228 82436041
## 261   65550428 35603534 3740877812 11801744 25038468 85091310
## 262   68228026 36679457 3956773030 12911936 26031412 87901830
## 263   71317561 37867941 4190601522 14003808 27057332 90375764
## 264   74364764 39093302 4430656619 15337504 28467972 92838760
## 265   77412192 40368520 4675754241 16792933 29896521 94596514
## 266   80456539 41684057 4926843845 18265039 31425616 96016791
## 267   83638600 43051513 5181419717 19836857 33149434 97461275
##     Marshall.Islands Martinique Mauritania Mauritius      Mexico
## 1                  0          0          0         0           0
## 2                  0          0          0         0           0
## 3                  0          0          0         0           0
## 4                  0          0          0         0           0
## 5                  0          0          0         0           0
## 6                  0          0          0         0           0
## 7                  0          0          0         0           0
## 8                  0          0          0         0           0
## 9                  0          0          0         0           0
## 10                 0          0          0         0           0
## 11                 0          0          0         0           0
## 12                 0          0          0         0           0
## 13                 0          0          0         0           0
## 14                 0          0          0         0           0
## 15                 0          0          0         0           0
## 16                 0          0          0         0           0
## 17                 0          0          0         0           0
## 18                 0          0          0         0           0
## 19                 0          0          0         0           0
## 20                 0          0          0         0           0
## 21                 0          0          0         0           0
## 22                 0          0          0         0           0
## 23                 0          0          0         0           0
## 24                 0          0          0         0           0
## 25                 0          0          0         0           0
## 26                 0          0          0         0           0
## 27                 0          0          0         0           0
## 28                 0          0          0         0           0
## 29                 0          0          0         0           0
## 30                 0          0          0         0           0
## 31                 0          0          0         0           0
## 32                 0          0          0         0           0
## 33                 0          0          0         0           0
## 34                 0          0          0         0           0
## 35                 0          0          0         0           0
## 36                 0          0          0         0           0
## 37                 0          0          0         0           0
## 38                 0          0          0         0           0
## 39                 0          0          0         0           0
## 40                 0          0          0         0           0
## 41                 0          0          0         0           0
## 42                 0          0          0         0           0
## 43                 0          0          0         0           0
## 44                 0          0          0         0           0
## 45                 0          0          0         0           0
## 46                 0          0          0         0           0
## 47                 0          0          0         0           0
## 48                 0          0          0         0           0
## 49                 0          0          0         0           0
## 50                 0          0          0         0           0
## 51                 0          0          0         0           0
## 52                 0          0          0         0           0
## 53                 0          0          0         0           0
## 54                 0          0          0         0           0
## 55                 0          0          0         0           0
## 56                 0          0          0         0           0
## 57                 0          0          0         0           0
## 58                 0          0          0         0           0
## 59                 0          0          0         0           0
## 60                 0          0          0         0           0
## 61                 0          0          0         0           0
## 62                 0          0          0         0           0
## 63                 0          0          0         0           0
## 64                 0          0          0         0           0
## 65                 0          0          0         0           0
## 66                 0          0          0         0           0
## 67                 0          0          0         0           0
## 68                 0          0          0         0           0
## 69                 0          0          0         0           0
## 70                 0          0          0         0           0
## 71                 0          0          0         0           0
## 72                 0          0          0         0           0
## 73                 0          0          0         0           0
## 74                 0          0          0         0           0
## 75                 0          0          0         0           0
## 76                 0          0          0         0           0
## 77                 0          0          0         0           0
## 78                 0          0          0         0           0
## 79                 0          0          0         0           0
## 80                 0          0          0         0           0
## 81                 0          0          0         0           0
## 82                 0          0          0         0           0
## 83                 0          0          0         0           0
## 84                 0          0          0         0           0
## 85                 0          0          0         0           0
## 86                 0          0          0         0           0
## 87                 0          0          0         0           0
## 88                 0          0          0         0           0
## 89                 0          0          0         0           0
## 90                 0          0          0         0           0
## 91                 0          0          0         0           0
## 92                 0          0          0         0           0
## 93                 0          0          0         0           0
## 94                 0          0          0         0           0
## 95                 0          0          0         0           0
## 96                 0          0          0         0           0
## 97                 0          0          0         0           0
## 98                 0          0          0         0           0
## 99                 0          0          0         0           0
## 100                0          0          0         0           0
## 101                0          0          0         0           0
## 102                0          0          0         0           0
## 103                0          0          0         0           0
## 104                0          0          0         0           0
## 105                0          0          0         0           0
## 106                0          0          0         0           0
## 107                0          0          0         0           0
## 108                0          0          0         0           0
## 109                0          0          0         0           0
## 110                0          0          0         0           0
## 111                0          0          0         0           0
## 112                0          0          0         0           0
## 113                0          0          0         0           0
## 114                0          0          0         0           0
## 115                0          0          0         0           0
## 116                0          0          0         0           0
## 117                0          0          0         0           0
## 118                0          0          0         0           0
## 119                0          0          0         0           0
## 120                0          0          0         0           0
## 121                0          0          0         0           0
## 122                0          0          0         0           0
## 123                0          0          0         0           0
## 124                0          0          0         0           0
## 125                0          0          0         0           0
## 126                0          0          0         0           0
## 127                0          0          0         0           0
## 128                0          0          0         0           0
## 129                0          0          0         0           0
## 130                0          0          0         0           0
## 131                0          0          0         0           0
## 132                0          0          0         0           0
## 133                0          0          0         0           0
## 134                0          0          0         0           0
## 135                0          0          0         0           0
## 136                0          0          0         0           0
## 137                0          0          0         0           0
## 138                0          0          0         0           0
## 139                0          0          0         0           0
## 140                0          0          0         0           0
## 141                0          0          0         0      520288
## 142                0          0          0         0     1099200
## 143                0          0          0         0     1630480
## 144                0          0          0         0     2169088
## 145                0          0          0         0     2663728
## 146                0          0          0         0     3242640
## 147                0          0          0         0     3931472
## 148                0          0          0         0     4667936
## 149                0          0          0         0     5422720
## 150                0          0          0         0     6422992
## 151                0          0          0         0     7734704
## 152                0          0          0         0     9160000
## 153                0          0          0         0    10717200
## 154                0          0          0         0    12435616
## 155                0          0          0         0    14143040
## 156                0          0          0         0    16062976
## 157                0          0          0         0    18327328
## 158                0          0          0         0    22097584
## 159                0          0          0         0    25790896
## 160                0          0          0         0    29945872
## 161                0          0          0         0    38347424
## 162                0          0          0         0    46979808
## 163                0          0          0         0    58722928
## 164                0          0          0         0    68864880
## 165                0          0          0         0    83180128
## 166                0          0          0         0   100364288
## 167                0          0          0         0   126495936
## 168                0          0          0         0   157137968
## 169                0          0          0         0   198222400
## 170                0          0          0         0   274459248
## 171                0          0          0         0   364747536
## 172                0          0          0         0   450298272
## 173                0          0          0         0   522336176
## 174                0          0          0         0   590208112
## 175                0          0          0         0   647293232
## 176                0          0          0         0   691979376
## 177                0          0          0         0   723775568
## 178                0          0          0         0   747859040
## 179                0          0          0         0   770007920
## 180                0          0          0         0   790387088
## 181                0          0          0         0   807138896
## 182                0          0          0         0   823333776
## 183                0          0          0         0   840074592
## 184                0          0          0         0   858966176
## 185                0          0          0         0   880393248
## 186                0          0          0         0   902355264
## 187                0          0          0         0   927259472
## 188                0          0          0         0   951526144
## 189                0          0          0         0   974191648
## 190                0          0          0         0   997403088
## 191                0          0          0         0  1019951344
## 192                0          0          0         0  1038930864
## 193                0          0          0         0  1057990992
## 194                0          0          0         0  1078117344
## 195                0          0          0         0  1100735216
## 196                0          0          0         0  1126361232
## 197                0          0          0         0  1155717200
## 198                0          0          0         0  1186230992
## 199                0          0          0         0  1215194912
## 200                0      54960          0    201520  1245708704
## 201                0     135568          0    340752  1280604640
## 202                0     227168          0    516624  1317823552
## 203                0     318768          0    703488  1354536832
## 204                0     410368          0    890352  1390814096
## 205                0     523952          0   1018592  1430484224
## 206                0     641200          0   1238432  1472627552
## 207                0     802416          0   1458272  1521915680
## 208                0     945312          0   1667120  1575934032
## 209                0    1110192      32976   1890624  1634221001
## 210                0    1278736      69616   2070160  1697273288
## 211                0    1450944     117248   2257024  1762513191
## 212                0    1623152     179536   2509840  1826256905
## 213                0    1832000     267472   2718688  1892549098
## 214                0    2066496     384720   3026464  1966749223
## 215                0    2311984     545936   3330576  2041917119
## 216                0    2583120     725472   3605376  2122761689
## 217                0    2879904     923328   4103680  2212767220
## 218                0    3187680    1157824   4741216  2306654450
## 219                0    3517440    1432624   5312800  2408830639
## 220                0    3880176    1861312   5811104  2522781318
## 221                0    4415120    2260688   6206816  2648992682
## 222                0    5199216    2707696   6895648  2781321352
## 223                0    6148192    3176688   7573488  2925477746
## 224                0    7188768    3660336   8265984  3080346488
## 225                0    8090112    4169632   8855888  3244679232
## 226                0    8940160    4686256   9475104  3428670680
## 227                0    9793872    5243184  10116304  3621373874
## 228                0   10523008    5825760  10746512  3843865396
## 229                0   11233824    6430320  11406032  4084579904
## 230                0   12014256    7060528  11995936  4352865713
## 231                0   12802016    7694400  12538208  4637233009
## 232                0   13703360    8577424  13040176  4941910616
## 233                0   14729280    9515408  13637408  5220216769
## 234                0   16209536   10387440  14263952  5497726485
## 235                0   17418656   11043296  14971104  5786132229
## 236                0   18788992   11417024  15769856  6080598825
## 237                0   20430464   14659664  16700512  6387888435
## 238                0   22159872   17843680  17554224  6694906247
## 239                0   23680432   20646640  18605792  7056708554
## 240                0   25288928   21500352  20067728  7375123360
## 241                0   26688576   22368720  21588288  7706497689
## 242            54960   28282416   23273728  23295712  8040705685
## 243           117248   29865264   24200720  25069088  8380178592
## 244           183200   31499408   25157024  26692240  8733416746
## 245           249152   33137216   26171952  28520576  9066426520
## 246           315104   34775024   27234512  30469824  9413848515
## 247           381056   36405504   28311728  32466704  9784254901
## 248           450672   38032320   29381616  34635792 10174434246
## 249           516624   39662800   30477152  37061360 10566758700
## 250           593568   41403200   31591008  39750736 10964658366
## 251           674176   43220544   32763488  42612320 11377285768
## 252           758448   45004912   34012912  45495888 11791258343
## 253           842720   47001792   35302640  48555328 12231044393
## 254           930656   49071952   36687632  51644080 12671844029
## 255          1014928   51274016   38123920  54938016 13137757657
## 256          1106528   53399136   39545552  58565376 13616561294
## 257          1205456   55330064   41183360  62251360 14098886754
## 258          1304384   57202368   42956736  66017952 14594191769
## 259          1406976   59228560   44916976  69725920 15072580769
## 260          1509568   61236432   46877216  73639072 15538671421
## 261          1612160   63453152   48987680  77555888 16025174631
## 262          1714752   65666208   51317984  81520336 16523833153
## 263          1817344   67875600   53640960  85587376 17016392882
## 264          1919936   70172928   55963936  89811968 17498920775
## 265          2031892   70172928   58316404  93973881 17976194427
## 266          2145131   70172928   60834446  98060513 18481174375
## 267          2266040   70172928   63673149 102339737 18971469004
##     Micronesia..country. Middle.East   Moldova  Mongolia Montenegro
## 1                      0           0         0         0          0
## 2                      0           0         0         0          0
## 3                      0           0         0         0          0
## 4                      0           0         0         0          0
## 5                      0           0         0         0          0
## 6                      0           0         0         0          0
## 7                      0           0         0         0          0
## 8                      0           0         0         0          0
## 9                      0           0         0         0          0
## 10                     0           0         0         0          0
## 11                     0           0         0         0          0
## 12                     0           0         0         0          0
## 13                     0           0         0         0          0
## 14                     0           0         0         0          0
## 15                     0           0         0         0          0
## 16                     0           0         0         0          0
## 17                     0           0         0         0          0
## 18                     0           0         0         0          0
## 19                     0           0         0         0          0
## 20                     0           0         0         0          0
## 21                     0           0         0         0          0
## 22                     0           0         0         0          0
## 23                     0           0         0         0          0
## 24                     0           0         0         0          0
## 25                     0           0         0         0          0
## 26                     0           0         0         0          0
## 27                     0           0         0         0          0
## 28                     0           0         0         0          0
## 29                     0           0         0         0          0
## 30                     0           0         0         0          0
## 31                     0           0         0         0          0
## 32                     0           0         0         0          0
## 33                     0           0         0         0          0
## 34                     0           0         0         0          0
## 35                     0           0         0         0          0
## 36                     0           0         0         0          0
## 37                     0           0         0         0          0
## 38                     0           0         0         0          0
## 39                     0           0         0         0          0
## 40                     0           0         0         0          0
## 41                     0           0         0         0          0
## 42                     0           0         0         0          0
## 43                     0           0         0         0          0
## 44                     0           0         0         0          0
## 45                     0           0         0         0          0
## 46                     0           0         0         0          0
## 47                     0           0         0         0          0
## 48                     0           0         0         0          0
## 49                     0           0         0         0          0
## 50                     0           0         0         0          0
## 51                     0           0         0         0          0
## 52                     0           0         0         0          0
## 53                     0           0         0         0          0
## 54                     0           0         0         0          0
## 55                     0           0         0         0          0
## 56                     0           0         0         0          0
## 57                     0           0         0         0          0
## 58                     0           0         0         0          0
## 59                     0           0         0         0          0
## 60                     0           0         0         0          0
## 61                     0           0         0         0          0
## 62                     0           0         0         0          0
## 63                     0           0         0         0          0
## 64                     0           0         0         0          0
## 65                     0           0         0         0          0
## 66                     0           0         0         0          0
## 67                     0           0         0         0          0
## 68                     0           0         0         0          0
## 69                     0           0         0         0          0
## 70                     0           0         0         0          0
## 71                     0           0         0         0          0
## 72                     0           0         0         0          0
## 73                     0           0         0         0          0
## 74                     0           0         0         0          0
## 75                     0           0         0         0          0
## 76                     0           0         0         0          0
## 77                     0           0         0         0          0
## 78                     0           0         0         0          0
## 79                     0           0         0         0          0
## 80                     0           0         0         0          0
## 81                     0           0         0         0          0
## 82                     0           0         0         0          0
## 83                     0           0         0         0          0
## 84                     0           0         0         0          0
## 85                     0           0         0         0          0
## 86                     0           0         0         0          0
## 87                     0           0         0         0          0
## 88                     0           0         0         0          0
## 89                     0           0         0         0          0
## 90                     0           0         0         0          0
## 91                     0           0         0         0          0
## 92                     0           0         0         0          0
## 93                     0           0         0         0          0
## 94                     0           0         0         0          0
## 95                     0           0         0         0          0
## 96                     0           0         0         0          0
## 97                     0           0         0         0          0
## 98                     0           0         0         0          0
## 99                     0           0         0         0          0
## 100                    0           0         0         0          0
## 101                    0           0         0         0          0
## 102                    0           0         0         0          0
## 103                    0           0         0         0          0
## 104                    0           0         0         0          0
## 105                    0           0         0         0          0
## 106                    0           0         0         0          0
## 107                    0           0         0         0          0
## 108                    0           0         0         0          0
## 109                    0           0         0         0          0
## 110                    0           0         0         0          0
## 111                    0           0         0         0          0
## 112                    0           0         0         0          0
## 113                    0           0         0         0          0
## 114                    0           0         0         0          0
## 115                    0      150224         0         0          0
## 116                    0      359072         0         0          0
## 117                    0      586240         0         0          0
## 118                    0      762112         0         0          0
## 119                    0     1029584         0         0          0
## 120                    0     1187136         0         0          0
## 121                    0     1384992         0         0          0
## 122                    0     1630480         0         0          0
## 123                    0     1868640         0         0          0
## 124                    0     2125120         0         0          0
## 125                    0     2476864         0         0          0
## 126                    0     2751664         0         0          0
## 127                    0     3198672         0         0          0
## 128                    0     3524768         0         0          0
## 129                    0     3649344         0         0          0
## 130                    0     3788576         0         0          0
## 131                    0     3971776         0         0          0
## 132                    0     4125664         0         0          0
## 133                    0     4286880         0         0          0
## 134                    0     4462752         0         0          0
## 135                    0     4656944         0         0          0
## 136                    0     4792512         0         0          0
## 137                    0     5038000         0         0          0
## 138                    0     5305472         0         0          0
## 139                    0     5708512         0         0          0
## 140                    0     6074912         0         0          0
## 141                    0     6477952         0         0          0
## 142                    0     6888320         0         0          0
## 143                    0     7313344         0         0          0
## 144                    0     7705392         0         0          0
## 145                    0     8079120         0         0          0
## 146                    0     8522464         0         0          0
## 147                    0     8837568         0         0          0
## 148                    0     9361520         0         0          0
## 149                    0    10032032         0         0          0
## 150                    0    11068944         0         0          0
## 151                    0    12017920         0         0          0
## 152                    0    13065824         0         0          0
## 153                    0    14271280         0         0          0
## 154                    0    15637952         0         0          0
## 155                    0    17169504         0         0          0
## 156                    0    18752352         0         0          0
## 157                    0    20631984         0         0          0
## 158                    0    22354064         0         0          0
## 159                    0    24310640         0         0          0
## 160                    0    26193936         0         0          0
## 161                    0    28557216         0         0          0
## 162                    0    30806912         0         0          0
## 163                    0    33697808         0         0          0
## 164                    0    36533744         0         0          0
## 165                    0    38970304         0         0          0
## 166                    0    41487472         0         0          0
## 167                    0    44678816         0         0          0
## 168                    0    48584640         0         0          0
## 169                    0    53842480         0         0          0
## 170                    0    60679504         0         0          0
## 171                    0    68776944         0         0          0
## 172                    0    79014160         0         0          0
## 173                    0    92061664         0         0          0
## 174                    0   108018384         0         0          0
## 175                    0   124586992         0         0          0
## 176                    0   142654176         0         0          0
## 177                    0   162769536         0         0          0
## 178                    0   183863184         0         0          0
## 179                    0   204806608         0         0          0
## 180                    0   227702944         0         0          0
## 181                    0   249983728         0         0          0
## 182                    0   274521536         0         0          0
## 183                    0   301734064         0         0          0
## 184                    0   334083520         0         0          0
## 185                    0   369770880         0         0          0
## 186                    0   409103920         0         0          0
## 187                    0   454768352         0         0          0
## 188                    0   500949408         0         0          0
## 189                    0   553073472         0         0          0
## 190                    0   598595008         0         0          0
## 191                    0   634601136         0         0          0
## 192                    0   682071920         0         0          0
## 193                    0   734511088         0         0          0
## 194                    0   802218144         0         0          0
## 195                    0   888377104         0         0          0
## 196                    0  1001184336         0         0          0
## 197                    0  1135253760         0         0          0
## 198                    0  1243880368         0         0          0
## 199                    0  1361597360         0         0          0
## 200                    0  1378693584         0    285792          0
## 201                    0  1404806912         0    578912          0
## 202                    0  1428087968         0    879360          0
## 203                    0  1455648576         0   1183472          0
## 204                    0  1488837088         0   1670784          0
## 205                    0  1539557840         0   2260688          0
## 206                    0  1599504544         0   2949520          0
## 207                    0  1662100320         0   3711632          0
## 208                    0  1731412208         0   4847472          0
## 209                    0  1802179946         0   6192160     613444
## 210                    0  1892455602         0   7485552    1283524
## 211                    0  1986939411         0   8877872    1985886
## 212                    0  2096234692         0  10849104    2706635
## 213                    0  2219827860         0  12450272    3508443
## 214                    0  2364596988         0  14494784    4416854
## 215                    0  2537392060         0  16451360    5351512
## 216                    0  2736343011         0  18404272    6277679
## 217                    0  2941881864         0  20529392    7213179
## 218                    0  3177839025         0  23009623    8213737
## 219                    0  3446301815         0  25691374    9251139
## 220                    0  3731661912         0  28537915   10606807
## 221                    0  4066093934         0  31570357   12067886
## 222                    0  4426931504         0  34846255   13437310
## 223                    0  4855439043         0  38318349   15073208
## 224                    0  5299163557         0  42059116   16716264
## 225                    0  5733617953         0  46113683   18430693
## 226                    0  6241636793         0  50503707   20200214
## 227                    0  6775937801         0  55464410   21921030
## 228                    0  7312205641         0  61228212   23844034
## 229                    0  7882233496         0  67505540   25935681
## 230                    0  8436663128         0  74360698   27992449
## 231                    0  8988308410         0  80975354   30230843
## 232                    0  9552166418         0  87687639   32287259
## 233                    0 10146255270         0  94656693   34501652
## 234                    0 10768782500         0 101081384   36836894
## 235                    0 11439674228         0 110079316   39219016
## 236                    0 12153270686         0 119674423   41706830
## 237                    0 12882883871         0 130156925   44178994
## 238                    0 13660026606         0 141649726   46737549
## 239                    0 14481709509         0 152108689   49290490
## 240                    0 15309183264         0 161998675   51841396
## 241                    0 16215423788         0 174119685   53645725
## 242                98928 17190925124  21080650 185113573   55561010
## 243               197856 18248802383  37051038 194376197   57228812
## 244               300448 19354139144  49441362 202303257   58851236
## 245               406704 20427119742  60846768 210202607   60565034
## 246               512960 21509962999  72533858 218225933   62571073
## 247               622880 22573316451  79835202 225914341   64726407
## 248               740128 23715831384  86279059 233601809   66995571
## 249               850048 24950588135  90963615 241137033   68560383
## 250               974624 26310847287  94536567 248623879   70298806
## 251              1143168 27690296821  98323156 256493803   72166390
## 252              1286064 29088200125 102374891 264756323   74162982
## 253              1428960 30577391247 106779159 272764199   76298183
## 254              1571856 32198107889 111392583 281334915   78631773
## 255              1692768 33882410934 116330337 289908645   80840692
## 256              1813680 35687146925 121360084 299314397   83222292
## 257              1952912 37489084913 126338638 311393141   85471988
## 258              2070160 39428477552 131529018 323409825   88219988
## 259              2231376 41444882020 136068530 336483839   90044660
## 260              2344960 43547146140 140899435 350303789   92624116
## 261              2465872 45704106288 145862730 371730279   95192580
## 262              2601440 48012211196 150628411 397919969   97526548
## 263              2744336 50289408635 155527770 436609311   99772580
## 264              2894560 52724475683 160271930 457409029  101981972
## 265              3058496 55234106667 165220672 477765393  104421155
## 266              3224310 57801288093 170421028 506446358  106994645
## 267              3401355 60473230861 175514617 536837014  109622459
##     Montserrat    Morocco Mozambique   Myanmar  Namibia   Nauru     Nepal
## 1            0          0          0         0        0       0         0
## 2            0          0          0         0        0       0         0
## 3            0          0          0         0        0       0         0
## 4            0          0          0         0        0       0         0
## 5            0          0          0         0        0       0         0
## 6            0          0          0         0        0       0         0
## 7            0          0          0         0        0       0         0
## 8            0          0          0         0        0       0         0
## 9            0          0          0         0        0       0         0
## 10           0          0          0         0        0       0         0
## 11           0          0          0         0        0       0         0
## 12           0          0          0         0        0       0         0
## 13           0          0          0         0        0       0         0
## 14           0          0          0         0        0       0         0
## 15           0          0          0         0        0       0         0
## 16           0          0          0         0        0       0         0
## 17           0          0          0         0        0       0         0
## 18           0          0          0         0        0       0         0
## 19           0          0          0         0        0       0         0
## 20           0          0          0         0        0       0         0
## 21           0          0          0         0        0       0         0
## 22           0          0          0         0        0       0         0
## 23           0          0          0         0        0       0         0
## 24           0          0          0         0        0       0         0
## 25           0          0          0         0        0       0         0
## 26           0          0          0         0        0       0         0
## 27           0          0          0         0        0       0         0
## 28           0          0          0         0        0       0         0
## 29           0          0          0         0        0       0         0
## 30           0          0          0         0        0       0         0
## 31           0          0          0         0        0       0         0
## 32           0          0          0         0        0       0         0
## 33           0          0          0         0        0       0         0
## 34           0          0          0         0        0       0         0
## 35           0          0          0         0        0       0         0
## 36           0          0          0         0        0       0         0
## 37           0          0          0         0        0       0         0
## 38           0          0          0         0        0       0         0
## 39           0          0          0         0        0       0         0
## 40           0          0          0         0        0       0         0
## 41           0          0          0         0        0       0         0
## 42           0          0          0         0        0       0         0
## 43           0          0          0         0        0       0         0
## 44           0          0          0         0        0       0         0
## 45           0          0          0         0        0       0         0
## 46           0          0          0         0        0       0         0
## 47           0          0          0         0        0       0         0
## 48           0          0          0         0        0       0         0
## 49           0          0          0         0        0       0         0
## 50           0          0          0         0        0       0         0
## 51           0          0          0         0        0       0         0
## 52           0          0          0         0        0       0         0
## 53           0          0          0         0        0       0         0
## 54           0          0          0         0        0       0         0
## 55           0          0          0         0        0       0         0
## 56           0          0          0         0        0       0         0
## 57           0          0          0         0        0       0         0
## 58           0          0          0         0        0       0         0
## 59           0          0          0         0        0       0         0
## 60           0          0          0         0        0       0         0
## 61           0          0          0         0        0       0         0
## 62           0          0          0         0        0       0         0
## 63           0          0          0         0        0       0         0
## 64           0          0          0         0        0       0         0
## 65           0          0          0         0        0       0         0
## 66           0          0          0         0        0       0         0
## 67           0          0          0         0        0       0         0
## 68           0          0          0         0        0       0         0
## 69           0          0          0         0        0       0         0
## 70           0          0          0         0        0       0         0
## 71           0          0          0         0        0       0         0
## 72           0          0          0         0        0       0         0
## 73           0          0          0         0        0       0         0
## 74           0          0          0         0        0       0         0
## 75           0          0          0         0        0       0         0
## 76           0          0          0         0        0       0         0
## 77           0          0          0         0        0       0         0
## 78           0          0          0         0        0       0         0
## 79           0          0          0         0        0       0         0
## 80           0          0          0         0        0       0         0
## 81           0          0          0         0        0       0         0
## 82           0          0          0         0        0       0         0
## 83           0          0          0         0        0       0         0
## 84           0          0          0         0        0       0         0
## 85           0          0          0         0        0       0         0
## 86           0          0          0         0        0       0         0
## 87           0          0          0         0        0       0         0
## 88           0          0          0         0        0       0         0
## 89           0          0          0         0        0       0         0
## 90           0          0          0         0        0       0         0
## 91           0          0          0         0        0       0         0
## 92           0          0          0         0        0       0         0
## 93           0          0          0         0        0       0         0
## 94           0          0          0         0        0       0         0
## 95           0          0          0         0        0       0         0
## 96           0          0          0         0        0       0         0
## 97           0          0          0         0        0       0         0
## 98           0          0          0         0        0       0         0
## 99           0          0          0         0        0       0         0
## 100          0          0          0         0        0       0         0
## 101          0          0          0         0        0       0         0
## 102          0          0          0         0        0       0         0
## 103          0          0          0         0        0       0         0
## 104          0          0          0         0        0       0         0
## 105          0          0          0         0        0       0         0
## 106          0          0          0         0        0       0         0
## 107          0          0          0         0        0       0         0
## 108          0          0          0         0        0       0         0
## 109          0          0          0         0        0       0         0
## 110          0          0          0         0        0       0         0
## 111          0          0          0         0        0       0         0
## 112          0          0          0         0        0       0         0
## 113          0          0          0         0        0       0         0
## 114          0          0          0         0        0       0         0
## 115          0          0          0         0        0       0         0
## 116          0          0          0         0        0       0         0
## 117          0          0          0         0        0       0         0
## 118          0          0          0         0        0       0         0
## 119          0          0          0         0        0       0         0
## 120          0          0          0         0        0       0         0
## 121          0          0          0         0        0       0         0
## 122          0          0          0         0        0       0         0
## 123          0          0          0         0        0       0         0
## 124          0          0          0         0        0       0         0
## 125          0          0          0         0        0       0         0
## 126          0          0          0         0        0       0         0
## 127          0          0          0         0        0       0         0
## 128          0          0          0         0        0       0         0
## 129          0          0          0         0        0       0         0
## 130          0          0          0         0        0       0         0
## 131          0          0          0         0        0       0         0
## 132          0          0          0         0        0       0         0
## 133          0          0          0         0        0       0         0
## 134          0          0          0         0        0       0         0
## 135          0          0          0         0        0       0         0
## 136          0          0          0         0        0       0         0
## 137          0          0          0         0        0       0         0
## 138          0          0          0         0        0       0         0
## 139          0          0          0         0        0       0         0
## 140          0          0          0         0        0       0         0
## 141          0          0          0         0        0       0         0
## 142          0          0          0         0        0       0         0
## 143          0          0          0         0        0       0         0
## 144          0          0          0         0        0       0         0
## 145          0          0          0         0        0       0         0
## 146          0          0          0         0        0       0         0
## 147          0          0          0         0        0       0         0
## 148          0          0          0         0        0       0         0
## 149          0          0          0         0        0       0         0
## 150          0          0          0         0        0       0         0
## 151          0          0          0         0        0       0         0
## 152          0          0          0         0        0       0         0
## 153          0          0          0         0        0       0         0
## 154          0          0          0         0        0       0         0
## 155          0          0          0         0        0       0         0
## 156          0          0          0         0        0       0         0
## 157          0          0          0         0        0       0         0
## 158          0          0          0         0        0       0         0
## 159          0          0          0         0        0       0         0
## 160          0          0          0         0        0       0         0
## 161          0          0          0         0        0       0         0
## 162          0          0          0         0        0       0         0
## 163          0          0          0         0        0       0         0
## 164          0          0          0         0        0       0         0
## 165          0          0          0         0        0       0         0
## 166          0          0          0         0        0       0         0
## 167          0          0          0         0        0       0         0
## 168          0          0          0         0        0       0         0
## 169          0          0          0         0        0       0         0
## 170          0          0          0         0        0       0         0
## 171          0          0          0         0        0       0         0
## 172          0          0          0         0        0       0         0
## 173          0          0          0         0        0       0         0
## 174          0          0          0         0        0       0         0
## 175          0          0          0         0        0       0         0
## 176          0          0          0         0        0       0         0
## 177          0          0      43968         0        0       0         0
## 178          0      29312      65952   3158368        0       0         0
## 179          0      62288      76944   6206816        0       0         0
## 180          0     102592      87936   9291904        0       0         0
## 181          0     194192      98928  12226768        0       0         0
## 182          0     344416     161216  15205600        0       0         0
## 183          0     520288     212512  18202752        0       0         0
## 184          0     710816     278464  21265856        0       0         0
## 185          0     945312     326096  24292320        0       0         0
## 186          0    1157824     377392  27403056        0       0         0
## 187          0    1527888     436016  30620048        0       0         0
## 188          0    1993216     476320  33708800        0       0         0
## 189          0    2311984     542272  36940448        0       0         0
## 190          0    2707696     608224  40113472        0       0         0
## 191          0    3096080     666848  43297488        0       0         0
## 192          0    3425840     696160  44323408        0       0         0
## 193          0    3781248     747456  44733776        0       0         0
## 194          0    4202608     802416  45041552        0       0         0
## 195          0    4726560     850048  45338336        0       0         0
## 196          0    5411728     905008  45345664        0       0         0
## 197          0    6243456     963632  45371312        0       0         0
## 198          0    7185104    1007600  45525200        0       0         0
## 199          0    8273312    1066224  45627792        0       0         0
## 200          0   10834448    1967568  46430208        0       0     25648
## 201          0   13761984    2898224  47346208        0       0     54960
## 202          0   17327056    3971776  48478384        0       0     84272
## 203          0   21500352    5052656  49782768        0       0    120912
## 204          0   25087408    6195824  51244704        0       0    161216
## 205          0   28645152    7569824  52666336        0       0    205184
## 206          0   32166256    9123360  54322464        0       0    252816
## 207          0   35222032   10893072  56421936        0       0    307776
## 208          0   38490320   12710416  58832848        0       0    366400
## 209          0   41859179   14504914  61610011        0       0    432352
## 210          0   45495184   16387319  64324857        0       0    512960
## 211          0   49266548   19017209  66915157        0       0    593568
## 212       3664   52341485   21002384  69794853        0       0    681504
## 213       7328   56295544   22661492  72428763        0       0    780432
## 214      14656   60710584   24800525  75286148        0   29312    930656
## 215      18320   64964973   26803842  78011630        0   62288   1110192
## 216      25648   70424520   28928041  80817689        0   95264   1300720
## 217      32976   75832771   30799334  84433522        0  142896   1513232
## 218      40304   81452999   33575488  87360345        0  190528   1766048
## 219      47632   87270400   36813245  90572930        0  256480   2165424
## 220      62288   94552421   39794137  95185223        0  322432   2392592
## 221      76944  102742748   43405147 100284708        0  410368   2590448
## 222      91600  110778845   46700845 105179010        0  487312   2857920
## 223     106256  120404740   50259786 109285581        0  571584   3279280
## 224     120912  131524230   53405290 113956498        0  670512   3704155
## 225     131904  142617481   56287729 118539419        0  773104   4055870
## 226     142896  154145385   58843149 123432210        0  875696   4337709
## 227     168544  166824967   61549588 128597864        0  989280   4674107
## 228     194192  179878372   64415437 133743938        0 1102864   5003080
## 229     219840  195809488   67050005 138829962        0 1216448   5515440
## 230     234496  211724572   70248485 144338753        0 1341024   6056742
## 231     252816  227551322   72727507 149961724        0 1465600   6509937
## 232     271136  244579056   75251438 155541249        0 1590176   6952298
## 233     293120  262342604   77205918 161295016        0 1714752   7444716
## 234     315104  280125502   78716781 167843563        0 1839328   8146140
## 235     340752  297959043   79851725 174519080        0 1963904   8822158
## 236     370064  316807096   80828864 181275426        0 2125120   9519172
## 237     399376  336889425   81805592 186218823        0 2282672  10379852
## 238     428688  358028469   82811785 190305504        0 2440224  11355885
## 239     458000  380907828   83846316 194730803        0 2597776  12249449
## 240     487312  404409873   84861470 198965602        0 2722352  12873297
## 241     516624  429336468   85876575 203102267  1055232 2846928  13821176
## 242     545936  455322496   86877892 207943861  2205728 2967840  15129612
## 243     575248  483484572   87953130 213245688  3594384 3081424  16570119
## 244     608224  513067988   89010379 219441865  5166240 3191344  18237248
## 245     641200  543349857   90118887 226348203  6785728 3297600  20240638
## 246     677840  574415478   91143310 233551782  8507808 3400192  22695931
## 247     710816  606099226   92247829 240996267 10277520 3502784  25455475
## 248     740128  637915678   93360220 249033326 12109520 3601712  27678774
## 249     769440  670802807   94527439 257963364 13772976 3693312  30868545
## 250     795088  704379723   95850211 268005862 15414448 3777584  33906562
## 251     820736  741805585   97404081 276686107 17429648 3858192  37143342
## 252     857376  779879541   98942691 285839905 19188368 3935136  39738427
## 253     894016  817374951  100799371 295620077 21060672 4001088  42548453
## 254     930656  860737111  102663917 307991306 23020912 4067040  45186516
## 255     967296  906262215  104434654 319523948 25329232 4129328  48238115
## 256    1003936  953653011  106349455 332300716 27659536 4173296  50767514
## 257    1044240 1003883432  108536593 345095780 30019152 4217264  53345743
## 258    1091872 1056744456  110716515 354810930 33342400 4261232  56730028
## 259    1139504 1109334804  113156434 364955446 36409168 4301536  60921083
## 260    1205456 1165534788  115790329 377398075 39505248 4345504  65815088
## 261    1245760 1223232213  118897679 391619558 42270064 4385808  71091548
## 262    1289728 1285715529  121878453 402569792 45634184 4426112  76613265
## 263    1341024 1344545965  125752229 415289812 48235339 4470080  82898009
## 264    1388656 1404170789  134005854 436750135 51958750 4517712  90560020
## 265    1438382 1465214016  143024297 460190802 55877223 4569692  98145451
## 266    1489072 1526499744  152830723 484208427 59876068 4622267 106671407
## 267    1539754 1589225046  163105098 484208427 63941325 4678403 115699603
##     Netherlands New.Caledonia New.Zealand Nicaragua    Niger    Nigeria
## 1             0             0           0         0        0          0
## 2             0             0           0         0        0          0
## 3             0             0           0         0        0          0
## 4             0             0           0         0        0          0
## 5             0             0           0         0        0          0
## 6             0             0           0         0        0          0
## 7             0             0           0         0        0          0
## 8             0             0           0         0        0          0
## 9             0             0           0         0        0          0
## 10            0             0           0         0        0          0
## 11            0             0           0         0        0          0
## 12            0             0           0         0        0          0
## 13            0             0           0         0        0          0
## 14            0             0           0         0        0          0
## 15            0             0           0         0        0          0
## 16            0             0           0         0        0          0
## 17            0             0           0         0        0          0
## 18            0             0           0         0        0          0
## 19            0             0           0         0        0          0
## 20            0             0           0         0        0          0
## 21            0             0           0         0        0          0
## 22            0             0           0         0        0          0
## 23            0             0           0         0        0          0
## 24            0             0           0         0        0          0
## 25            0             0           0         0        0          0
## 26            0             0           0         0        0          0
## 27            0             0           0         0        0          0
## 28            0             0           0         0        0          0
## 29            0             0           0         0        0          0
## 30            0             0           0         0        0          0
## 31            0             0           0         0        0          0
## 32            0             0           0         0        0          0
## 33            0             0           0         0        0          0
## 34            0             0           0         0        0          0
## 35            0             0           0         0        0          0
## 36            0             0           0         0        0          0
## 37            0             0           0         0        0          0
## 38            0             0           0         0        0          0
## 39            0             0           0         0        0          0
## 40            0             0           0         0        0          0
## 41            0             0           0         0        0          0
## 42            0             0           0         0        0          0
## 43            0             0           0         0        0          0
## 44            0             0           0         0        0          0
## 45            0             0           0         0        0          0
## 46            0             0           0         0        0          0
## 47            0             0           0         0        0          0
## 48            0             0           0         0        0          0
## 49            0             0           0         0        0          0
## 50            0             0           0         0        0          0
## 51            0             0           0         0        0          0
## 52            0             0           0         0        0          0
## 53            0             0           0         0        0          0
## 54            0             0           0         0        0          0
## 55            0             0           0         0        0          0
## 56            0             0           0         0        0          0
## 57            0             0           0         0        0          0
## 58            0             0           0         0        0          0
## 59            0             0           0         0        0          0
## 60            0             0           0         0        0          0
## 61            0             0           0         0        0          0
## 62            0             0           0         0        0          0
## 63            0             0           0         0        0          0
## 64            0             0           0         0        0          0
## 65            0             0           0         0        0          0
## 66            0             0           0         0        0          0
## 67            0             0           0         0        0          0
## 68            0             0           0         0        0          0
## 69            0             0           0         0        0          0
## 70            0             0           0         0        0          0
## 71            0             0           0         0        0          0
## 72            0             0           0         0        0          0
## 73            0             0           0         0        0          0
## 74            0             0           0         0        0          0
## 75            0             0           0         0        0          0
## 76            0             0           0         0        0          0
## 77            0             0           0         0        0          0
## 78            0             0           0         0        0          0
## 79            0             0           0         0        0          0
## 80            0             0           0         0        0          0
## 81            0             0           0         0        0          0
## 82            0             0           0         0        0          0
## 83            0             0           0         0        0          0
## 84            0             0           0         0        0          0
## 85            0             0           0         0        0          0
## 86            0             0           0         0        0          0
## 87            0             0           0         0        0          0
## 88            0             0           0         0        0          0
## 89            0             0           0         0        0          0
## 90            0             0           0         0        0          0
## 91            0             0           0         0        0          0
## 92            0             0           0         0        0          0
## 93            0             0           0         0        0          0
## 94            0             0           0         0        0          0
## 95            0             0           0         0        0          0
## 96      2868912             0           0         0        0          0
## 97      6738096             0           0         0        0          0
## 98     10387440             0           0         0        0          0
## 99     13718016             0           0         0        0          0
## 100    16854400             0           0         0        0          0
## 101    19972464             0           0         0        0          0
## 102    23735392             0           0         0        0          0
## 103    27905024             0           0         0        0          0
## 104    33851696             0           0         0        0          0
## 105    38501312             0           0         0        0          0
## 106    43224208             0           0         0        0          0
## 107    47441472             0           0         0        0          0
## 108    51149440             0           0         0        0          0
## 109    54674208             0           0         0        0          0
## 110    59470384             0           0         0        0          0
## 111    63874512             0           0         0        0          0
## 112    69546384             0           0         0        0          0
## 113    73631744             0           0         0        0          0
## 114    77035600             0           0         0        0          0
## 115    80882800             0           0         0        0          0
## 116    85100064             0           0         0        0          0
## 117    89141456             0           0         0        0          0
## 118    93380704             0           0         0        0          0
## 119    97751856             0           0         0        0          0
## 120   102694592             0           0         0        0          0
## 121   107673968             0           0         0        0          0
## 122   113005088             0           0         0        0          0
## 123   118145680             0           0         0        0          0
## 124   122886896             0           0         0        0          0
## 125   128305952             0           0         0        0          0
## 126   134516432             0           0         0        0          0
## 127   140825840             0           0         0        0          0
## 128   147512640             0      355408         0        0          0
## 129   154723392             0      861040         0        0          0
## 130   162696256             0     1516896         0        0          0
## 131   170724080             0     2253360         0        0          0
## 132   178854496             0     3081424         0        0          0
## 133   187864272             0     4008416         0        0          0
## 134   196881376             0     5067312         0        0          0
## 135   206301520             0     6195824         0        0          0
## 136   215919520             0     7375632         0        0          0
## 137   225706064             0     8614064         0        0          0
## 138   236566160             0     9977072         0        0          0
## 139   247177104             0    11288784         0        0          0
## 140   257461952             0    12710416         0        0          0
## 141   269369952             0    14201664         0        0          0
## 142   280691712             0    15703904         0        0          0
## 143   292152704             0    17246448         0        0          0
## 144   303771248             0    18854944         0        0          0
## 145   315397120             0    20478096         0        0          0
## 146   327891360             0    22247808         0        0          0
## 147   340993824             0    24123776         0        0          0
## 148   353927744             0    26146304         0        0          0
## 149   367206080             0    28322720         0        0          0
## 150   381840096             0    30762944         0        0          0
## 151   396151680             0    33503616         0        0          0
## 152   410452272             0    36544736         0        0          0
## 153   425749472             0    39714096         0        0          0
## 154   441915040             0    43147264         0        0          0
## 155   458509296             0    46686688         0        0          0
## 156   476565488             0    50548544         0        0          0
## 157   495141968             0    54633904         0        0          0
## 158   514062864             0    58785216         0        0          0
## 159   533980368             0    63050112         0        0          0
## 160   554813872             0    67952544         0        0          0
## 161   576893136             0    72561856         0        0          0
## 162   601815664             0    77423984         0        0          0
## 163   629365280             0    81637584         0        0          0
## 164   655189152             0    86719552         0        0          0
## 165   679723296             0    91651296         0        0      18320
## 166   702121328             0    96689296         0        0      84272
## 167   710775696             0   101305936         0        0     307776
## 168   725303456             0   105849296         0        0     707152
## 169   747283792             0   109978624         0        0    1077216
## 170   769454656             0   113536368         0        0    1564528
## 171   792688080             0   117035488         0        0    2136112
## 172   819959232             0   120596896         0        0    2440224
## 173   847157104             0   124433104         0        0    2912880
## 174   877751504             0   128423200         0        0    3455152
## 175   911343056             0   132512224         0        0    4100016
## 176   945671072             0   136784448         0        0    4975712
## 177   983637440             0   141280176         0        0    5943008
## 178  1021644112             0   145995744         0        0    6910304
## 179  1062911744             0   150890848         0        0    7840960
## 180  1103692064             0   155756640         0        0    8778944
## 181  1148649344             0   159995888         0        0    9661968
## 182  1190067200             0   163535312         0        0   10339808
## 183  1228638128             0   167082064         0        0   10973680
## 184  1267267680             0   171064832         0        0   11673504
## 185  1304534224             0   175216144         0        0   12369664
## 186  1344427856             0   179393104         0        0   13157424
## 187  1388428832             0   183775248         0        0   14135712
## 188  1431737312             0   188021824         0        0   15110336
## 189  1472440688             0   192484576         0        0   15931072
## 190  1505878352             0   197244112         0        0   16766464
## 191  1543005664             0   202245472         0        0   17755744
## 192  1577601152             0   207342096         0        0   18997840
## 193  1612530064             0   212713520      7328        0   20360848
## 194  1635866080             0   218183872     10992        0   22016976
## 195  1650518416             0   223804448     18320        0   23398304
## 196  1681622112             0   229337088     21984        0   25036112
## 197  1726227648             0   234789120     29312        0   26596976
## 198  1773493248             0   240292448     36640        0   28234784
## 199  1823994160             0   245902032     43968        0   29718704
## 200  1875282832        219840   254472128    234496        0   31975728
## 201  1930253824        501968   262642848    436016        0   33661168
## 202  1984972000        974624   271964064    710816        0   35841248
## 203  2040239776       1374000   280515840    996608        0   38277808
## 204  2098636608       1894288   289584240   1311712        0   40849936
## 205  2159627552       2594112   298978736   1703760        0   43546640
## 206  2224711184       3759264   308655360   2081152        0   46558448
## 207  2289124304       4825488   318962192   2498848        0   49742464
## 208  2355820096       5565616   329144448   3099744    25648   53465088
## 209  2422938098       6155520   339463678   3579579    47632   57029655
## 210  2496375698       7016560   350995453   4110741    76944   60432827
## 211  2572194481       7903248   362750585   4671184   131904   64542379
## 212  2655476387       8467504   373948877   5330526   197856   68717378
## 213  2746620969       9086720   386165405   6173038   285792   74061014
## 214  2843397574      10185920   399257361   7121776   381056   81327716
## 215  2943801153      11417024   412942648   7901941   472656   93077846
## 216  3047358663      12926592   426942920   8861582   608165  105971085
## 217  3154040823      14399520   440569701   9942075   739979  118795569
## 218  3267486369      16238848   454042803  11172763   901106  125421427
## 219  3383288433      17796048   468299852  12458382  1091545  137521331
## 220  3525091735      20188640   482479838  13861188  1307602  159041290
## 221  3665757889      22606880   497528843  15366617  1538315  191292807
## 222  3823253284      24310640   513718441  16970973  1791013  232680410
## 223  3988513172      26908208   531918786  18798537  2120475  282212757
## 224  4148498371      29688917   550678768  20746834  2409842  344448251
## 225  4301023865      32216839   568949080  22673385  2743207  391799924
## 226  4470154751      34605261   588197603  24895559  3076277  446989504
## 227  4633760510      36744233   608511032  27728670  3442118  497494146
## 228  4803553667      38285517   626535059  30356131  3858896  545717072
## 229  4990560822      39925389   643029503  32065388  4337911  615902660
## 230  5167192739      41923993   660508390  34087731  4908085  683937843
## 231  5331302660      43314317   677069366  36222585  5591872  749748351
## 232  5464789893      44576103   695339619  38333287  6337743  815141925
## 233  5602147360      45727300   713337725  40329974  7299584  874847172
## 234  5746220367      46929453   732674356  42176008  8290532  944253054
## 235  5893200536      48380418   754532333  44160844  9284938 1013889004
## 236  6037215086      49781240   777478326  46416385 10183876 1087081178
## 237  6188695611      51235728   801643610  48847369 11181536 1146105609
## 238  6334298560      52736967   827092961  51087395 12168562 1216526955
## 239  6495963023      54376471   852546178  52555711 13206720 1258646342
## 240  6658403859      55953305   877999747  54599657 13937583 1297503546
## 241  6829223684      57711293   904117819  56587548 14657441 1339432665
## 242  6999878571      59286043   932230388  58961197 15354646 1385697781
## 243  7170674797      61113569   959937357  61244601 16132440 1430511156
## 244  7342073196      63083951   987826114  63762480 16902889 1465444882
## 245  7515105903      65148188  1015979550  66517328 17709959 1501020179
## 246  7697579101      67333291  1045354778  69364692 18608611 1540420791
## 247  7872871483      69151948  1076710867  72478293 19514572 1582481915
## 248  8049273644      70961964  1106645300  75870154 20468147 1620069670
## 249  8220264921      73017468  1138173867  79468574 21418040 1660088865
## 250  8392200722      75239027  1170533025  83189635 22110743 1735848822
## 251  8569280156      77116705  1205115692  87111672 22762380 1821283911
## 252  8745655055      79510116  1239884410  91102501 23457200 1914679979
## 253  8925479254      82236774  1276377502  95437766 24210561 2015985614
## 254  9106932569      84752901  1312442420  99816028 25018799 2119973271
## 255  9284463451      87561945  1350089994 104085761 25727276 2225679106
## 256  9457200153      90267938  1387610074 108499923 26413552 2324140740
## 257  9629800614      93195948  1424252121 113050358 27130457 2418596745
## 258  9805319833      96044939  1461907852 117415614 27933513 2513529935
## 259  9975500246      99000148  1496714551 121853133 28895814 2589070654
## 260 10157679881     102520705  1531725250 126322122 30064979 2679386011
## 261 10326798581     106148727  1566054066 131123773 31382828 2773611423
## 262 10491747325     109760939  1602023329 135672613 33239277 2870178239
## 263 10656504601     113986542  1637237794 140148625 35174325 2966052554
## 264 10813851663     118261407  1672848198 144929803 37297000 3060037913
## 265 10978881540     122710478  1708685306 149998381 39386385 3163862456
## 266 11144403609     127943317  1743148237 155298212 41620891 3265434282
## 267 11308449554     133507792  1779162164 160721077 44106013 3372735176
##       Niue North.Korea     Norway       Oman   Pakistan    Palau Palestine
## 1        0           0          0          0          0        0         0
## 2        0           0          0          0          0        0         0
## 3        0           0          0          0          0        0         0
## 4        0           0          0          0          0        0         0
## 5        0           0          0          0          0        0         0
## 6        0           0          0          0          0        0         0
## 7        0           0          0          0          0        0         0
## 8        0           0          0          0          0        0         0
## 9        0           0          0          0          0        0         0
## 10       0           0          0          0          0        0         0
## 11       0           0          0          0          0        0         0
## 12       0           0          0          0          0        0         0
## 13       0           0          0          0          0        0         0
## 14       0           0          0          0          0        0         0
## 15       0           0          0          0          0        0         0
## 16       0           0          0          0          0        0         0
## 17       0           0          0          0          0        0         0
## 18       0           0          0          0          0        0         0
## 19       0           0          0          0          0        0         0
## 20       0           0          0          0          0        0         0
## 21       0           0          0          0          0        0         0
## 22       0           0          0          0          0        0         0
## 23       0           0          0          0          0        0         0
## 24       0           0          0          0          0        0         0
## 25       0           0          0          0          0        0         0
## 26       0           0          0          0          0        0         0
## 27       0           0          0          0          0        0         0
## 28       0           0          0          0          0        0         0
## 29       0           0          0          0          0        0         0
## 30       0           0          0          0          0        0         0
## 31       0           0          0          0          0        0         0
## 32       0           0          0          0          0        0         0
## 33       0           0          0          0          0        0         0
## 34       0           0          0          0          0        0         0
## 35       0           0          0          0          0        0         0
## 36       0           0          0          0          0        0         0
## 37       0           0          0          0          0        0         0
## 38       0           0          0          0          0        0         0
## 39       0           0          0          0          0        0         0
## 40       0           0          0          0          0        0         0
## 41       0           0          0          0          0        0         0
## 42       0           0          0          0          0        0         0
## 43       0           0          0          0          0        0         0
## 44       0           0          0          0          0        0         0
## 45       0           0          0          0          0        0         0
## 46       0           0          0          0          0        0         0
## 47       0           0          0          0          0        0         0
## 48       0           0          0          0          0        0         0
## 49       0           0          0          0          0        0         0
## 50       0           0          0          0          0        0         0
## 51       0           0          0          0          0        0         0
## 52       0           0          0          0          0        0         0
## 53       0           0          0          0          0        0         0
## 54       0           0          0          0          0        0         0
## 55       0           0          0          0          0        0         0
## 56       0           0          0          0          0        0         0
## 57       0           0          0          0          0        0         0
## 58       0           0          0          0          0        0         0
## 59       0           0          0          0          0        0         0
## 60       0           0          0          0          0        0         0
## 61       0           0          0          0          0        0         0
## 62       0           0          0          0          0        0         0
## 63       0           0          0          0          0        0         0
## 64       0           0          0          0          0        0         0
## 65       0           0          0          0          0        0         0
## 66       0           0          0          0          0        0         0
## 67       0           0          0          0          0        0         0
## 68       0           0          0          0          0        0         0
## 69       0           0          0          0          0        0         0
## 70       0           0          0          0          0        0         0
## 71       0           0          0          0          0        0         0
## 72       0           0          0          0          0        0         0
## 73       0           0          0          0          0        0         0
## 74       0           0          0          0          0        0         0
## 75       0           0          0          0          0        0         0
## 76       0           0          0          0          0        0         0
## 77       0           0          0          0          0        0         0
## 78       0           0          0          0          0        0         0
## 79       0           0      10992          0          0        0         0
## 80       0           0      18320          0          0        0         0
## 81       0           0      21984          0          0        0         0
## 82       0           0      21984          0          0        0         0
## 83       0           0      21984          0          0        0         0
## 84       0           0      21984          0          0        0         0
## 85       0           0      36640          0          0        0         0
## 86       0           0      54960          0          0        0         0
## 87       0           0      80608          0          0        0         0
## 88       0           0     131904          0          0        0         0
## 89       0           0     172208          0          0        0         0
## 90       0           0     216176          0          0        0         0
## 91       0           0     274800          0          0        0         0
## 92       0           0     348080          0          0        0         0
## 93       0           0     410368          0          0        0         0
## 94       0           0     476320          0          0        0         0
## 95       0           0     575248          0          0        0         0
## 96       0           0     674176          0          0        0         0
## 97       0           0     776768          0          0        0         0
## 98       0           0     908672          0          0        0         0
## 99       0           0    1014928          0          0        0         0
## 100      0           0    1154160          0          0        0         0
## 101      0           0    1304384          0          0        0         0
## 102      0           0    1454608          0          0        0         0
## 103      0           0    1619488          0          0        0         0
## 104      0           0    1853984          0          0        0         0
## 105      0           0    2110464          0          0        0         0
## 106      0           0    2414576          0          0        0         0
## 107      0           0    2718688          0          0        0         0
## 108      0           0    2986160          0          0        0         0
## 109      0           0    3312256          0          0        0         0
## 110      0           0    3645680          0          0        0         0
## 111      0           0    4074368          0          0        0         0
## 112      0           0    4444432          0          0        0         0
## 113      0           0    4807168          0          0        0         0
## 114      0           0    5287152          0          0        0         0
## 115      0           0    5759808          0          0        0         0
## 116      0           0    6280096          0          0        0         0
## 117      0           0    6899312          0          0        0         0
## 118      0           0    7533184          0          0        0         0
## 119      0           0    8086448          0          0        0         0
## 120      0           0    8716656          0          0        0         0
## 121      0           0    9328544          0          0        0         0
## 122      0           0    9984400          0          0        0         0
## 123      0           0   10643920          0          0        0         0
## 124      0           0   11460992          0          0        0         0
## 125      0           0   12486912          0          0        0         0
## 126      0           0   13391920          0          0        0         0
## 127      0           0   14612032          0          0        0         0
## 128      0           0   15700240          0          0        0         0
## 129      0           0   16843408          0          0        0         0
## 130      0           0   18092832          0          0        0         0
## 131      0           0   19386224          0          0        0         0
## 132      0           0   20800528          0          0        0         0
## 133      0           0   22324752          0          0        0         0
## 134      0           0   23885616          0          0        0         0
## 135      0           0   25669984          0          0        0         0
## 136      0           0   27414048          0          0        0         0
## 137      0           0   29095824          0          0        0         0
## 138      0           0   31041408          0          0        0         0
## 139      0           0   33261792          0          0        0         0
## 140      0           0   35339280          0          0        0         0
## 141      0           0   37753856          0          0        0         0
## 142      0           0   40219728          0          0        0         0
## 143      0           0   42681936          0          0        0         0
## 144      0           0   45587488          0          0        0         0
## 145      0           0   48646928          0          0        0         0
## 146      0           0   51772320          0          0        0         0
## 147      0           0   55157856          0          0        0         0
## 148      0           0   58543392          0          0        0         0
## 149      0           0   62592112          0          0        0         0
## 150      0           0   66747088          0          0        0         0
## 151      0           0   70641920          0          0        0         0
## 152      0           0   74884832          0          0        0         0
## 153      0           0   79124080          0          0        0         0
## 154      0           0   83282720          0          0        0         0
## 155      0           0   87430368          0          0        0         0
## 156      0           0   91654960          0          0        0         0
## 157      0           0   96436480          0          0        0         0
## 158      0           0  102152320          0          0        0         0
## 159      0           0  107915792          0          0        0         0
## 160      0           0  113855136          0          0        0         0
## 161      0           0  119933712          0          0        0         0
## 162      0           0  126811040          0          0        0         0
## 163      0           0  133728672          0          0        0         0
## 164      0           0  141437728          0          0        0         0
## 165      0           0  149886912          0          0        0         0
## 166      0           0  157782832          0          0        0         0
## 167      0           0  161278288          0          0        0         0
## 168      0           0  165730048          0          0        0         0
## 169      0           0  171020864          0          0        0         0
## 170      0           0  176322672          0          0        0         0
## 171      0           0  179697216          0          0        0         0
## 172      0           0  186178832          0          0        0         0
## 173      0           0  192971888          0          0        0         0
## 174      0           0  200699264          0          0        0         0
## 175      0           0  208294736          0          0        0         0
## 176      0           0  214655440          0          0        0         0
## 177      0           0  223188896          0          0        0         0
## 178      0           0  231641744          0          0        0         0
## 179      0           0  241160816          0          0        0         0
## 180      0           0  249888464          0          0        0         0
## 181      0           0  257974912          0          0        0         0
## 182      0           0  266618288          0          0        0         0
## 183      0           0  275796608          0          0        0         0
## 184      0           0  285282704          0          0        0         0
## 185      0           0  295065584          0          0        0         0
## 186      0           0  305507984          0          0        0         0
## 187      0           0  317269424          0          0        0         0
## 188      0           0  327748464          0          0        0         0
## 189      0           0  340264688          0          0        0         0
## 190      0           0  346775616          0          0        0         0
## 191      0           0  351590112          0          0        0         0
## 192      0           0  356217744          0          0        0         0
## 193      0           0  361662448          0          0        0         0
## 194      0           0  366542896          0          0        0         0
## 195      0       65952  370554976          0          0        0         0
## 196      0      139232  377630160          0          0        0         0
## 197      0      212512  388259424          0          0        0         0
## 198      0     1615824  399244096          0          0        0         0
## 199      0     3396528  409653520          0          0        0         0
## 200      0     4176960  418088048          0          0        0         0
## 201      0     5173568  427566816          0          0        0         0
## 202      0     6063920  437254432          0          0        0         0
## 203      0     7800656  447040976          0          0        0         0
## 204      0    12589504  456926448          0          0        0         0
## 205      0    19935824  468343472          0          0    10992         0
## 206      0    28901632  480299104          0          0    21984         0
## 207      0    40194080  491661168          0          0    36640         0
## 208      0    55832032  502851024          0          0    51296         0
## 209      0    75697782  514659184          0    9921057    65952         0
## 210      0    99486221  527745990          0   21847496    80608         0
## 211      0   125912828  541081474          0   34197073   131904         0
## 212      0   156600222  555141864          0   47766959   183200         0
## 213      0   189426768  570107144          0   63367192   238160         0
## 214      0   225044955  586277463      10992   79406163   296784         0
## 215      0   269267075  602667385      36640   96235772   362736         0
## 216      0   316866988  622207456      65952  113361552   428688         0
## 217      0   369259026  641511693     201520  131537492   501968         0
## 218      0   428528006  662625382     362736  152379337   578912         0
## 219      0   492607372  684819148     597232  172592746   710816         0
## 220   3664   566083689  712797895     831728  193097116   846384         0
## 221   7328   673536703  739964095    2923872  212537756  1011264         0
## 222  10992   763041602  769359448    5012352  231440804  1183472         0
## 223  14656   860366943  799851725    7122816  251449281  1359344         0
## 224  18320   961978450  827520624    9456784  272836679  1553536         0
## 225  21984  1069602204  857165652   16707840  296024528  1747728         0
## 226  25648  1179633067  886456683   25028784  318813053  1861312         0
## 227  29312  1293298248  917500647   33529264  343132927  2044512         0
## 228  32976  1401511173  952264748   41318928  369183483  2154432         0
## 229  36640  1511774162  986480368   49035312  397317938  2279008         0
## 230  40304  1625856352 1024504010   55077248  429249488  2436560         0
## 231  43968  1740251296 1064803546   61089872  463482321  2594112         0
## 232  47632  1857143393 1105825719   66820368  500671958  2751664         0
## 233  51296  1982306537 1143298083   74346224  540694147  2909216         0
## 234  54960  2116968168 1183727759   82399696  583251495  3066768         0
## 235  58624  2261252862 1224414912   91018242  630065041  3227984         0
## 236  62288  2418088155 1271460524  100843138  679123663  3389200         0
## 237  65952  2593706813 1312142151  110244913  732112201  3550416         0
## 238  69616  2794514943 1354596897  120761489  789719543  3733616         0
## 239  73280  3007586463 1403944062  130747186  850036159  3960784         0
## 240  80608  3129986447 1439648450  142042885  917864640  4195280    861040
## 241  87936  3247213020 1473717784  153720848  985342481  4429776   1744064
## 242  95264  3350175613 1508549677  165705459 1057357503  4664272   2660064
## 243 102592  3445044140 1545081240  179062095 1134534074  4898768   3594384
## 244 109920  3531763639 1583527197  194243788 1218553391  5133264   4561680
## 245 117248  3613023486 1622004417  210013826 1302168474  5367760   5506992
## 246 124576  3684632067 1663598251  224980779 1395705897  5602256   6543904
## 247 131904  3749764673 1705297161  240324168 1489493461  5840416   7408608
## 248 139232  3808533505 1747253824  256730232 1586235541  6078576   8870544
## 249 146560  3872632890 1789963312  277288177 1685626013  6320400  10237216
## 250 153888  3941798916 1832179197  299027862 1791044388  6569552  11897008
## 251 161216  4013463870 1875739041  319133825 1898170580  6822368  13245360
## 252 168544  4082106771 1918406088  344368220 2011074225  7071520  14399520
## 253 172208  4152243264 1962327870  376395705 2128564942  7324336  15678256
## 254 175872  4223965251 2006664881  403986913 2258524417  7577152  17872992
## 255 179536  4298883957 2050225589  433453509 2393280653  7837296  20613664
## 256 183200  4375056808 2094148937  472499886 2537007353  8101104  22878016
## 257 186864  4438536025 2140000827  515631210 2692851519  8361248  25200992
## 258 194192  4508864151 2184903849  557741912 2848207764  8614064  27252832
## 259 197856  4578737952 2228109253  598256519 3003426812  8859552  29341312
## 260 201520  4644425175 2273932530  645006604 3161191553  9112368  31374832
## 261 208848  4691663245 2318915087  698269713 3319533522  9365184  33620864
## 262 216176  4739892544 2363475907  756612679 3479261119  9618000  35819264
## 263 223504  4775049204 2407778561  817269908 3639856816  9874480  38255824
## 264 234496  4814703580 2451731224  877643787 3802284444 10134624  41091760
## 265 246491  4853107486 2496394959  941864909 3974374439 10418513  43645821
## 266 258624  4908032713 2540426581 1006307031 4161779858 10705654  45986350
## 267 271579  4966052271 2585216441 1071493410 4360589827 11012245  48304340
##        Panama Papua.New.Guinea  Paraguay       Peru Philippines
## 1           0                0         0          0           0
## 2           0                0         0          0           0
## 3           0                0         0          0           0
## 4           0                0         0          0           0
## 5           0                0         0          0           0
## 6           0                0         0          0           0
## 7           0                0         0          0           0
## 8           0                0         0          0           0
## 9           0                0         0          0           0
## 10          0                0         0          0           0
## 11          0                0         0          0           0
## 12          0                0         0          0           0
## 13          0                0         0          0           0
## 14          0                0         0          0           0
## 15          0                0         0          0           0
## 16          0                0         0          0           0
## 17          0                0         0          0           0
## 18          0                0         0          0           0
## 19          0                0         0          0           0
## 20          0                0         0          0           0
## 21          0                0         0          0           0
## 22          0                0         0          0           0
## 23          0                0         0          0           0
## 24          0                0         0          0           0
## 25          0                0         0          0           0
## 26          0                0         0          0           0
## 27          0                0         0          0           0
## 28          0                0         0          0           0
## 29          0                0         0          0           0
## 30          0                0         0          0           0
## 31          0                0         0          0           0
## 32          0                0         0          0           0
## 33          0                0         0          0           0
## 34          0                0         0          0           0
## 35          0                0         0          0           0
## 36          0                0         0          0           0
## 37          0                0         0          0           0
## 38          0                0         0          0           0
## 39          0                0         0          0           0
## 40          0                0         0          0           0
## 41          0                0         0          0           0
## 42          0                0         0          0           0
## 43          0                0         0          0           0
## 44          0                0         0          0           0
## 45          0                0         0          0           0
## 46          0                0         0          0           0
## 47          0                0         0          0           0
## 48          0                0         0          0           0
## 49          0                0         0          0           0
## 50          0                0         0          0           0
## 51          0                0         0          0           0
## 52          0                0         0          0           0
## 53          0                0         0          0           0
## 54          0                0         0          0           0
## 55          0                0         0          0           0
## 56          0                0         0          0           0
## 57          0                0         0          0           0
## 58          0                0         0          0           0
## 59          0                0         0          0           0
## 60          0                0         0          0           0
## 61          0                0         0          0           0
## 62          0                0         0          0           0
## 63          0                0         0          0           0
## 64          0                0         0          0           0
## 65          0                0         0          0           0
## 66          0                0         0          0           0
## 67          0                0         0          0           0
## 68          0                0         0          0           0
## 69          0                0         0          0           0
## 70          0                0         0          0           0
## 71          0                0         0          0           0
## 72          0                0         0          0           0
## 73          0                0         0          0           0
## 74          0                0         0          0           0
## 75          0                0         0          0           0
## 76          0                0         0          0           0
## 77          0                0         0          0           0
## 78          0                0         0          0           0
## 79          0                0         0          0           0
## 80          0                0         0          0           0
## 81          0                0         0          0           0
## 82          0                0         0          0           0
## 83          0                0         0          0           0
## 84          0                0         0          0           0
## 85          0                0         0          0           0
## 86          0                0         0          0           0
## 87          0                0         0          0           0
## 88          0                0         0          0           0
## 89          0                0         0          0           0
## 90          0                0         0          0           0
## 91          0                0         0          0           0
## 92          0                0         0          0           0
## 93          0                0         0          0           0
## 94          0                0         0          0           0
## 95          0                0         0          0           0
## 96          0                0         0          0           0
## 97          0                0         0          0           0
## 98          0                0         0          0           0
## 99          0                0         0          0           0
## 100         0                0         0          0           0
## 101         0                0         0          0           0
## 102         0                0         0          0           0
## 103         0                0         0          0           0
## 104         0                0         0          0           0
## 105         0                0         0          0           0
## 106         0                0         0          0           0
## 107         0                0         0          0           0
## 108         0                0         0          0           0
## 109         0                0         0          0           0
## 110         0                0         0          0           0
## 111         0                0         0          0           0
## 112         0                0         0          0           0
## 113         0                0         0          0           0
## 114         0                0         0          0           0
## 115         0                0         0          0           0
## 116         0                0         0          0           0
## 117         0                0         0          0           0
## 118         0                0         0          0           0
## 119         0                0         0          0           0
## 120         0                0         0          0           0
## 121         0                0         0          0           0
## 122         0                0         0          0           0
## 123         0                0         0          0           0
## 124         0                0         0          0           0
## 125         0                0         0          0           0
## 126         0                0         0          0           0
## 127         0                0         0          0           0
## 128         0                0         0          0           0
## 129         0                0         0          0           0
## 130         0                0         0          0           0
## 131         0                0         0          0           0
## 132         0                0         0          0           0
## 133         0                0         0          0           0
## 134         0                0         0       3664           0
## 135         0                0         0       7328           0
## 136         0                0         0      14656           0
## 137         0                0         0      21984           0
## 138         0                0         0      29312           0
## 139         0                0         0      36640           0
## 140         0                0         0      47632           0
## 141         0                0         0      95264           0
## 142         0                0         0     161216           0
## 143         0                0         0     208848           0
## 144         0                0         0     249152           0
## 145         0                0         0     289456           0
## 146         0                0         0     329760           0
## 147         0                0         0     370064           0
## 148         0                0         0     458000           0
## 149         0                0         0     619216           0
## 150         0                0         0     864704           0
## 151         0                0         0    1102864           0
## 152         0                0         0    1201792           0
## 153         0                0         0    1414304           0
## 154         0                0         0    1692768           0
## 155         0                0         0    2044512           0
## 156         0                0         0    2473200           0
## 157         0                0         0    3271952        7328
## 158         0                0         0    4484736       25648
## 159         0                0         0    5994304       80608
## 160         0                0         0    7324336      131904
## 161         0                0         0    8830240      168544
## 162         0                0         0   10288512      172208
## 163         0                0         0   11860368      179536
## 164         0                0         0   13402912      197856
## 165         0                0         0   15289872      252816
## 166         0                0         0   17253776      304112
## 167         0                0         0   19257984      315104
## 168         0                0         0   21203568      344416
## 169         0                0         0   23185792      403040
## 170         0                0         0   25332896      505632
## 171         0                0         0   27780448      575248
## 172         0                0         0   30733632      652192
## 173         0                0         0   33712464      729136
## 174         0                0         0   37328832      813408
## 175         0                0         0   42114016      897680
## 176         0                0         0   46847904      948976
## 177         0                0         0   51530496      989280
## 178         0                0         0   56909248     1069888
## 179         0                0         0   63991760     1139504
## 180         0                0         0   69616000     1227440
## 181         0                0         0   74115392     1308048
## 182         0                0         0   78222736     1395984
## 183         0                0         0   84883888     1472928
## 184         0                0         0   91632976     1560864
## 185         0                0         0   98799760     1659792
## 186         0                0         0  106204704     1780704
## 187         0                0         0  115005632     1901616
## 188         0                0         0  123011472     2059168
## 189         0                0         0  128862880     2143440
## 190         0                0         0  134161024     2257024
## 191         0                0         0  139411536     2348624
## 192         0                0         0  145453472     2348624
## 193         0                0         0  152030352     2348624
## 194         0                0         0  158486320     2348624
## 195         0                0         0  164755424     2363280
## 196         0                0         0  170522560     2476864
## 197         0                0         0  176432592     2674720
## 198     21984                0         0  182818944     2890896
## 199     47632                0         0  189450784     3209664
## 200    564256            54960     62288  193994144     6815040
## 201   1117520           117248    109920  198768336    10369120
## 202   1835664           201520    212512  203956560    14421504
## 203   2550144           296784    333424  209470880    18455568
## 204   3184016           392048    516624  215707008    23786688
## 205   3894832           520288    707152  221833216    30403872
## 206   4528704           648528    905008  228146288    36658320
## 207   5290816           795088   1117520  234822096    43389088
## 208   6217808           941648   1359344  242197728    50951584
## 209   7210366          1102864   1663397  249413460    58177714
## 210   8206528          1282400   1967449  257578080    66502777
## 211   9308946          1483920   2330126  266211721    75215302
## 212  10499241          1681776   2722114  276171314    85551218
## 213  11682148          1938256   3132423  286394477    97023032
## 214  12923739          2205728   3564686  298647259   109845852
## 215  14450944          2509840   4114167  310598790   123810504
## 216  16106477          2850592   4627008  323839841   139914604
## 217  17802167          3286608   5114261  337480179   158123483
## 218  19820377          3788576   5704075  351966812   180346264
## 219  21871504          4345504   6224215  367252078   203175724
## 220  24072587          5038000   6967650  385017902   227927141
## 221  26672898          5862400   7601284  403610512   255478813
## 222  29471094          7130144   8315467  421762728   281888180
## 223  32708317          8474832   9183538  441494822   313389504
## 224  35725848         10061344  10135762  462829925   343881824
## 225  39385055         11592896  10974254  484769589   376364268
## 226  42991799         13164752  12006446  507179842   411430500
## 227  46447242         14743936  13162356  530482638   448106637
## 228  49281846         16418384  14618526  552899495   485486879
## 229  52462662         18213744  15946206  575118119   523517899
## 230  55570276         20042080  17434272  599180803   560386459
## 231  58892985         21973008  18819712  623200109   594914684
## 232  62171510         23918592  20183778  646790083   629753212
## 233  65651182         25926464  21594002  667172338   664992287
## 234  68518533         27970976  23085692  687791354   695823571
## 235  71131809         30096096  24634151  707231231   723722704
## 236  73866564         32158928  26291463  728984545   752747441
## 237  77046117         34492896  28172131  754648778   785243212
## 238  79960782         36691296  30320817  779634566   822727937
## 239  82471039         38724816  32549206  801366486   861634457
## 240  85217250         40864592  34696082  822319023   902983940
## 241  88439617         42927424  36813529  842493662   946455127
## 242  92665580         44979264  39326571  862804565   994748931
## 243  96565185         46972480  42168622  886283007  1043678122
## 244 100857150         49152560  45566727  909402355  1097801467
## 245 103796761         51211728  49497279  933084598  1157750204
## 246 108371785         53399136  53216154  957268625  1219003885
## 247 113965082         55974928  57374942  984514231  1289066495
## 248 119854788         58836512  61838745 1012086248  1357319454
## 249 125465094         61280400  66302286 1041233010  1425496093
## 250 131182102         63944128  69956169 1071311278  1497842528
## 251 138122011         67150128  73738949 1098239950  1568147091
## 252 143929276         70634592  77607359 1125170521  1638302233
## 253 150004940         74577056  81641221 1151275122  1708516918
## 254 155716681         79061792  85694486 1182830667  1781287671
## 255 162457769         83443936  89483192 1219563714  1854558964
## 256 169725904         87749136  93420327 1253974615  1921080878
## 257 176815954         93864352  97503087 1296375853  1991844953
## 258 183997651         98656864 101875933 1336708050  2069144944
## 259 192417005        103746160 106373086 1387552517  2144912016
## 260 201416441        108482542 111399091 1444230405  2227844946
## 261 211317286        113782495 116646970 1492921687  2311379786
## 262 221169154        118833076 121840454 1546859280  2400306922
## 263 231619187        124991218 127167766 1602843347  2496029859
## 264 240170353        131281119 132761279 1663427348  2599054891
## 265 249778151        138158059 138459551 1726176861  2712878046
## 266 259974130        145094663 144248102 1792518047  2832151729
## 267 270033082        152482152 150098368 1857299524  2959759692
##          Poland   Portugal      Qatar  Reunion    Romania       Russia
## 1             0          0          0        0          0            0
## 2             0          0          0        0          0            0
## 3             0          0          0        0          0            0
## 4             0          0          0        0          0            0
## 5             0          0          0        0          0            0
## 6             0          0          0        0          0            0
## 7             0          0          0        0          0            0
## 8             0          0          0        0          0            0
## 9             0          0          0        0          0            0
## 10            0          0          0        0          0            0
## 11            0          0          0        0          0            0
## 12            0          0          0        0          0            0
## 13            0          0          0        0          0            0
## 14            0          0          0        0          0            0
## 15            0          0          0        0          0            0
## 16            0          0          0        0          0            0
## 17            0          0          0        0          0            0
## 18            0          0          0        0          0            0
## 19            0          0          0        0          0            0
## 20            0          0          0        0          0            0
## 21            0          0          0        0          0            0
## 22            0          0          0        0          0            0
## 23            0          0          0        0          0            0
## 24            0          0          0        0          0            0
## 25            0          0          0        0          0            0
## 26            0          0          0        0          0            0
## 27            0          0          0        0          0            0
## 28            0          0          0        0          0            0
## 29            0          0          0        0          0            0
## 30            0          0          0        0          0            0
## 31            0          0          0        0          0            0
## 32            0          0          0        0          0            0
## 33            0          0          0        0          0            0
## 34            0          0          0        0          0            0
## 35            0          0          0        0          0            0
## 36            0          0          0        0          0            0
## 37            0          0          0        0          0            0
## 38            0          0          0        0          0            0
## 39            0          0          0        0          0            0
## 40            0          0          0        0          0            0
## 41            0          0          0        0          0            0
## 42            0          0          0        0          0            0
## 43            0          0          0        0          0            0
## 44            0          0          0        0          0            0
## 45            0          0          0        0          0            0
## 46            0          0          0        0          0            0
## 47            0          0          0        0          0            0
## 48            0          0          0        0          0            0
## 49            0          0          0        0          0            0
## 50       406704          0          0        0          0            0
## 51       850048          0          0        0          0            0
## 52      1300720          0          0        0          0            0
## 53      1762384          0          0        0          0            0
## 54      2220384          0          0        0          0            0
## 55      2791968          0          0        0          0            0
## 56      3312256          0          0        0          0            0
## 57      3689648          0          0        0          0            0
## 58      4191616          0          0        0          0            0
## 59      4664272          0          0        0          0            0
## 60      5232192          0          0        0          0            0
## 61      5822096          0          0        0          0            0
## 62      6276432          0          0        0          0            0
## 63      6657488          0          0        0          0            0
## 64      7159456          0          0        0          0            0
## 65      7749360          0          0        0          0            0
## 66      8427200          0          0        0          0            0
## 67      9170992          0          0        0          0            0
## 68     10094320          0          0        0          0            0
## 69     10852768          0          0        0          0            0
## 70     11600224          0          0        0          0            0
## 71     12428288          0          0        0          0            0
## 72     13336960          0          0        0          0            0
## 73     14557072          0          0        0          0            0
## 74     15832144          0          0        0          0            0
## 75     17158512          0          0        0          0            0
## 76     18378624          0          0        0          0            0
## 77     19686672          0          0        0          0            0
## 78     20895792          0          0        0          0            0
## 79     21962016          0          0        0          0            0
## 80     22951296          0          0        0          0            0
## 81     23761040          0          0        0          0            0
## 82     24794288          0          0        0          0            0
## 83     25867840          0          0        0          0            0
## 84     26996352          0          0        0          0            0
## 85     28205472          0          0        0          0            0
## 86     29575808          0          0        0          0            0
## 87     31048736          0          0        0          0            0
## 88     32635248          0          0        0          0            0
## 89     34317024          0          0        0          0            0
## 90     36284592          0          0        0          0            0
## 91     38424368          0          0        0          0            0
## 92     40707040          0          0        0          0            0
## 93     42953072          0          0        0          0            0
## 94     45345664          0          0        0          0            0
## 95     48137632          0          0        0          0            0
## 96     51087152          0          0        0          0            0
## 97     54109952          0          0        0          0            0
## 98     57154736          0          0        0          0            0
## 99     60159216          0          0        0          0            0
## 100    63361552          0          0        0          0            0
## 101    66820368          0          0        0          0            0
## 102    70949696          0          0        0          0            0
## 103    75265888          0          0        0          0            0
## 104    80043744          0          0        0          0            0
## 105    85664320          0          0        0          0            0
## 106    91981056          0          0        0          0            0
## 107    98697168          0          0        0          0            0
## 108   106402560          0          0        0       3664            0
## 109   113514384          0          0        0       7328            0
## 110   120999936          0          0        0      10992            0
## 111   128668688          0          0        0      18320            0
## 112   137473280          0          0        0      29312            0
## 113   147527296          0          0        0      40304            0
## 114   158746464          0          0        0      54960            0
## 115   171167424          0          0        0      69616            0
## 116   183320912          0          0        0      87936            0
## 117   196613904          0          0        0     109920            0
## 118   211731568          0          0        0     135568            0
## 119   227343872          0          0        0     161216            0
## 120   244007744      21984          0        0     197856            0
## 121   262979936      58624          0        0     238160            0
## 122   283611920     578912          0        0     278464            0
## 123   305962320    1304384          0        0     322432            0
## 124   330459824    1835664          0        0     366400            0
## 125   354517648    3004480          0        0     414032            0
## 126   379106752    4151312          0        0     461664            0
## 127   402241248    4821824          0        0     509296            0
## 128   426573872    5463024          0        0     556928            0
## 129   453060928    6170176          0        0     604560            0
## 130   479408752    7049536          0        0     652192            0
## 131   505639328    7939888          0        0     703488            0
## 132   532884832    9024432          0        0     926992            0
## 133   562812384   10163936          0        0    1333696            0
## 134   594015008   11365728          0        0    1806352            0
## 135   626613616   12479584          0        0    2257024            0
## 136   660043952   13710688          0        0    2740672            0
## 137   693719776   14978432          0        0    3268288            0
## 138   731220816   16345104          0        0    3898496            0
## 139   771737328   17916960          0        0    4543360            0
## 140   813602192   19595072          0        0    5349440            0
## 141   858944192   21335472          0        0    6466960            0
## 142   902040160   23028240          0        0    7518528            0
## 143   947374832   24541472          0        0    8654368            0
## 144   993467952   26318512          0        0    9694944            0
## 145  1042459296   28014944          0        0   10772160            0
## 146  1095184256   29744352          0        0   11889680            0
## 147  1150276160   31561696          0        0   13186736            0
## 148  1210120272   33642848          0        0   14897824            0
## 149  1272038208   35786288          0        0   16509984            0
## 150  1335344800   38252160          0        0   17748416            0
## 151  1402242112   40641088          0        0   19342256            0
## 152  1467732448   43260848          0        0   20932432            0
## 153  1536219936   45781680          0        0   22779088            0
## 154  1605601440   48361136          0        0   24966496            0
## 155  1680486272   50881968          0        0   27626560            0
## 156  1759178000   53780192          0        0   31224608            0
## 157  1846373872   56942224          0        0   35782624            0
## 158  1939395504   60085936          0        0   40168432            0
## 159  2034930640   63280944          0        0   45026896            0
## 160  2129476496   66530912          0        0   49845056            0
## 161  2229078672   69674624          0        0   55619520            0
## 162  2340013600   73327632          0        0   61632144            0
## 163  2456221024   77185824          0        0   68623056            0
## 164  2553225424   80560368          0        0   74408512            0
## 165  2647969136   83645456          0        0   79552768            0
## 166  2756745968   86635280          0        0   82549920            0
## 167  2877628656   88291408          0        0   85063424            0
## 168  2979154432   89386944          0        0   88251104            0
## 169  2981884112   91545040          0        0   92915376            0
## 170  3058263856   93648176          0        0   98400384            0
## 171  3133210976   95795280          0        0  104317744            0
## 172  3204981408   98755792          0        0  111458880            0
## 173  3257530496  101434176          0        0  119933712            0
## 174  3305367680  104464304          0        0  129940096            0
## 175  3353443024  107586032          0        0  141650240            0
## 176  3401573328  110722416          0        0  156152352            0
## 177  3462241840  114353440          0        0  172277616            0
## 178  3525134400  118347200          0        0  190549984            0
## 179  3597828160  122315312          0        0  211042736            0
## 180  3654396656  126638832          0        0  234287152            0
## 181  3709224752  130559312          0        0  260136672            0
## 182  3751203200  133948512          0        0  287495760            0
## 183  3794409088  137945936          0        0  314807216            0
## 184  3839626512  142042288          0        0  346467840            0
## 185  3885778256  146420768          0        0  378000224            0
## 186  3935678272  150550096          0        0  411155760            0
## 187  3992019600  155481840          0        0  439621376            0
## 188  4051962640  159600176          0        0  466335600            0
## 189  4103863200  164352384          0        0  491525600            0
## 190  4271110144  168250880          0        0  515473504            0
## 191  4435913200  172032128          0        0  538021760            0
## 192  4617526688  175058592          0        0  561694864            0
## 193  4815313072  178000784          0        0  583803440            0
## 194  5004353488  181247088          0        0  598862480            0
## 195  5063812880  184584992          0        0  617768720            0
## 196  5168412752  188476160          0        0  635235008            0
## 197  5259965120  194019792          0        0  651583776            0
## 198  5348897728  199273968          0        0  674960096            0
## 199  5454332992  204795616     260144        0  698076272            0
## 200  5566466048  210416192     611888    25648  717495472            0
## 201  5688609152  215813264    1000272    54960  740003424            0
## 202  5816662288  221166368    1194464    87936  766640704            0
## 203  5955868640  227098384    1560864   109920  797275408            0
## 204  6103450896  232891168    2169088   146560  830786352            0
## 205  6257668656  239354464    2586784   186864  867576576            0
## 206  6424102192  246521248    3092416   234496  908364224            0
## 207  6602802800  254307248    3403856   293120  954303456            0
## 208  6779557824  261866080    3572400   355408 1004108208            0
## 209  6969217955  269845776    3755600   425024 1054751478    854787568
## 210  7168795028  278059284    3931472   498304 1108145610   1744770541
## 211  7376030435  287137318    4092688   582576 1163861678   2662596301
## 212  7592637610  296427210    4283216   674176 1227674473   3625914210
## 213  7823636443  306438792   10416752   787760 1297129925   4659020500
## 214  8066516923  317446209   16685856   912336 1369166953   5757742864
## 215  8313497785  329028665   22973280  1062560 1447803864   6923301202
## 216  8565928777  340863760   29246048  1242096 1531894539   8154218692
## 217  8824954235  353255366   35929184  1454608 1623923290   9441344235
## 218  9100755247  366247720   43004368  1670784 1724002689  10764649486
## 219  9394120555  380840529   50170944  1894288 1835530128  12142799638
## 220  9698263953  396077013   57732400  2213056 1955511611  13592370257
## 221 10011144763  412452712   66876704  2542816 2081193064  15130612383
## 222 10340651135  430760040   77652112  2890896 2213447272  16749027260
## 223 10676241085  450705138   90109296  3275616 2358212318  18435781559
## 224 11022477657  471350114  100587831  3700640 2508932627  20186753204
## 225 11397257725  492625385  111535209  4184288 2670939057  22027253983
## 226 11795376436  514951226  121910106  4814496 2845411035  23938580067
## 227 12213331370  537556305  131826134  5463024 3023487720  25914876832
## 228 12644201396  560141201  142345140  6181168 3217027113  27959001748
## 229 13085509991  584996950  156687583  7097168 3412703533  30020011303
## 230 13548839033  611770591  169769277  7910576 3608902579  32162101998
## 231 13957835960  638771253  182609960  8694672 3806632801  34263323294
## 232 14378806354  667771339  194944866  9559376 4001962001  36404102346
## 233 14799830082  697673194  206187427 10460720 4202078393  38575191454
## 234 15232297391  726467229  218485452 11457328 4390895000  40765480515
## 235 15676805217  753597133  230863260 12450272 4584801883  43127612594
## 236 16128653839  783818527  244130243 13527488 4786443166  45495762561
## 237 16592386426  815017160  255600763 14699968 4998074776  47963487045
## 238 17036616325  847585023  267498424 16044656 5210296408  50498774641
## 239 17458791423  888407575  281790793 17433312 5423895841  52980491869
## 240 17834830129  933986661  293534451 18536176 5595127629  55551702520
## 241 18208208329  981192874  311179722 19899184 5736094387  57988740602
## 242 18571927257 1032651394  337912467 21438064 5866380435  59981958231
## 243 18936492601 1082721444  368560356 22878016 5988007624  61872893233
## 244 19296103678 1133541807  398715130 24501168 6107678372  63542530377
## 245 19657407529 1188332743  430432277 26263552 6232515303  65182793595
## 246 20032712173 1240430820  462636041 28205472 6360792934  66789742610
## 247 20399282289 1295539597  500029568 30436848 6480058826  68291880035
## 248 20736623820 1355137213  532300611 32954016 6584814485  69776732259
## 249 21064276269 1422360718  563571686 35522480 6673496783  71289716964
## 250 21381373530 1488405064  598137836 38380400 6767035165  72789333174
## 251 21694919199 1554109239  639352370 41417856 6865912229  74327577573
## 252 22000649742 1623665968  680054306 44433328 6965064107  75856539320
## 253 22319065301 1688103156  721353663 47408496 7068640800  77419011671
## 254 22641604250 1755323682  764063993 50412976 7171515230  78989875869
## 255 22963273096 1824821054  814754072 53857136 7272481847  80578538733
## 256 23297895918 1889591231  877950240 57477168 7376612407  82227197467
## 257 23632261611 1951861359  940849667 61335360 7485172100  83874926408
## 258 23959709823 2011784885 1005106764 65277824 7590537497  85554720858
## 259 24273854403 2068862008 1073703655 69377840 7677742920  87127159867
## 260 24605985114 2121743807 1145623567 73543808 7761294178  88784720546
## 261 24937679753 2173445608 1225271140 77812368 7850637396  90497145315
## 262 25261896375 2223323507 1318490560 82058944 7936958321  92223244815
## 263 25581807633 2271405450 1402643073 86155296 8013787519  93889233389
## 264 25889362760 2319361228 1509514275 90324928 8090948006  95556344096
## 265 26199977903 2371556428 1630061485 90324928 8168736227  97228239175
## 266 26522211857 2421831220 1748751275 90324928 8243787884  98896309108
## 267 26848816401 2476694776 1878554596 90324928 8323783409 101000000000
##       Rwanda Saint.Helena Saint.Kitts.and.Nevis Saint.Lucia
## 1          0            0                     0           0
## 2          0            0                     0           0
## 3          0            0                     0           0
## 4          0            0                     0           0
## 5          0            0                     0           0
## 6          0            0                     0           0
## 7          0            0                     0           0
## 8          0            0                     0           0
## 9          0            0                     0           0
## 10         0            0                     0           0
## 11         0            0                     0           0
## 12         0            0                     0           0
## 13         0            0                     0           0
## 14         0            0                     0           0
## 15         0            0                     0           0
## 16         0            0                     0           0
## 17         0            0                     0           0
## 18         0            0                     0           0
## 19         0            0                     0           0
## 20         0            0                     0           0
## 21         0            0                     0           0
## 22         0            0                     0           0
## 23         0            0                     0           0
## 24         0            0                     0           0
## 25         0            0                     0           0
## 26         0            0                     0           0
## 27         0            0                     0           0
## 28         0            0                     0           0
## 29         0            0                     0           0
## 30         0            0                     0           0
## 31         0            0                     0           0
## 32         0            0                     0           0
## 33         0            0                     0           0
## 34         0            0                     0           0
## 35         0            0                     0           0
## 36         0            0                     0           0
## 37         0            0                     0           0
## 38         0            0                     0           0
## 39         0            0                     0           0
## 40         0            0                     0           0
## 41         0            0                     0           0
## 42         0            0                     0           0
## 43         0            0                     0           0
## 44         0            0                     0           0
## 45         0            0                     0           0
## 46         0            0                     0           0
## 47         0            0                     0           0
## 48         0            0                     0           0
## 49         0            0                     0           0
## 50         0            0                     0           0
## 51         0            0                     0           0
## 52         0            0                     0           0
## 53         0            0                     0           0
## 54         0            0                     0           0
## 55         0            0                     0           0
## 56         0            0                     0           0
## 57         0            0                     0           0
## 58         0            0                     0           0
## 59         0            0                     0           0
## 60         0            0                     0           0
## 61         0            0                     0           0
## 62         0            0                     0           0
## 63         0            0                     0           0
## 64         0            0                     0           0
## 65         0            0                     0           0
## 66         0            0                     0           0
## 67         0            0                     0           0
## 68         0            0                     0           0
## 69         0            0                     0           0
## 70         0            0                     0           0
## 71         0            0                     0           0
## 72         0            0                     0           0
## 73         0            0                     0           0
## 74         0            0                     0           0
## 75         0            0                     0           0
## 76         0            0                     0           0
## 77         0            0                     0           0
## 78         0            0                     0           0
## 79         0            0                     0           0
## 80         0            0                     0           0
## 81         0            0                     0           0
## 82         0            0                     0           0
## 83         0            0                     0           0
## 84         0            0                     0           0
## 85         0            0                     0           0
## 86         0            0                     0           0
## 87         0            0                     0           0
## 88         0            0                     0           0
## 89         0            0                     0           0
## 90         0            0                     0           0
## 91         0            0                     0           0
## 92         0            0                     0           0
## 93         0            0                     0           0
## 94         0            0                     0           0
## 95         0            0                     0           0
## 96         0            0                     0           0
## 97         0            0                     0           0
## 98         0            0                     0           0
## 99         0            0                     0           0
## 100        0            0                     0           0
## 101        0            0                     0           0
## 102        0            0                     0           0
## 103        0            0                     0           0
## 104        0            0                     0           0
## 105        0            0                     0           0
## 106        0            0                     0           0
## 107        0            0                     0           0
## 108        0            0                     0           0
## 109        0            0                     0           0
## 110        0            0                     0           0
## 111        0            0                     0           0
## 112        0            0                     0           0
## 113        0            0                     0           0
## 114        0            0                     0           0
## 115        0            0                     0           0
## 116        0            0                     0           0
## 117        0            0                     0           0
## 118        0            0                     0           0
## 119        0            0                     0           0
## 120        0            0                     0           0
## 121        0            0                     0           0
## 122        0            0                     0           0
## 123        0            0                     0           0
## 124        0            0                     0           0
## 125        0            0                     0           0
## 126        0            0                     0           0
## 127        0            0                     0           0
## 128        0            0                     0           0
## 129        0            0                     0           0
## 130        0            0                     0           0
## 131        0            0                     0           0
## 132        0            0                     0           0
## 133        0            0                     0           0
## 134        0            0                     0           0
## 135        0            0                     0           0
## 136        0            0                     0           0
## 137        0            0                     0           0
## 138        0            0                     0           0
## 139        0            0                     0           0
## 140        0            0                     0           0
## 141        0            0                     0           0
## 142        0            0                     0           0
## 143        0            0                     0           0
## 144        0            0                     0           0
## 145        0            0                     0           0
## 146        0            0                     0           0
## 147        0            0                     0           0
## 148        0            0                     0           0
## 149        0            0                     0           0
## 150        0            0                     0           0
## 151        0            0                     0           0
## 152        0            0                     0           0
## 153        0            0                     0           0
## 154        0            0                     0           0
## 155        0            0                     0           0
## 156        0            0                     0           0
## 157        0            0                     0           0
## 158        0            0                     0           0
## 159        0            0                     0           0
## 160        0            0                     0           0
## 161        0            0                     0           0
## 162        0            0                     0           0
## 163        0            0                     0           0
## 164        0            0                     0           0
## 165        0            0                     0           0
## 166        0            0                     0           0
## 167        0            0                     0           0
## 168        0            0                     0           0
## 169        0            0                     0           0
## 170        0            0                     0           0
## 171        0            0                     0           0
## 172        0            0                     0           0
## 173        0            0                     0           0
## 174        0            0                     0           0
## 175        0            0                     0           0
## 176        0            0                     0           0
## 177        0            0                     0           0
## 178        0            0                     0           0
## 179        0            0                     0           0
## 180        0            0                     0           0
## 181        0            0                     0           0
## 182        0            0                     0           0
## 183        0            0                     0           0
## 184        0            0                     0           0
## 185        0            0                     0           0
## 186        0            0                     0           0
## 187        0            0                     0           0
## 188        0            0                     0           0
## 189        0            0                     0           0
## 190        0            0                     0           0
## 191        0            0                     0           0
## 192        0            0                     0           0
## 193        0            0                     0           0
## 194        0            0                     0           0
## 195        0            0                     0           0
## 196        0            0                     0           0
## 197        0            0                     0           0
## 198        0            0                     0           0
## 199        0            0                     0           0
## 200        0            0                     0        3664
## 201        0            0                     0       14656
## 202        0            0                     0       21984
## 203        0            0                     0       32976
## 204        0            0                     0       40304
## 205        0            0                     0       51296
## 206        0            0                     0       62288
## 207        0            0                     0       73280
## 208        0            0                     0       84272
## 209    74641            0                     0       95264
## 210   144466            0                     0      109920
## 211   235962            0                     0      128240
## 212   320234            0                     0      146560
## 213   404506            0                     0      168544
## 214   441146            0                     0      190528
## 215   488778            0                     0      216176
## 216   532746            0                     0      245488
## 217   573050            0                     0      278464
## 218   628010         3664                     0      315104
## 219   686634         3664                     0      377392
## 220   745258         3664                     0      443344
## 221   807546         3664                     0      512960
## 222   873498         3664                     0      589904
## 223   943114         3664                     0      670512
## 224  1016394         3664                     0      743792
## 225  1192266         3664                     0      820736
## 226  1459738         3664                     0      905008
## 227  1727210         3664                     0      974624
## 228  2016666         3664                     0     1073552
## 229  2313450         3664                     0     1223776
## 230  2808090         3664                     0     1337360
## 231  3408986        10992                 54960     1432624
## 232  4017210        14656                120912     1546208
## 233  4713370        18320                172208     1648800
## 234  5347242        21984                223504     1762384
## 235  5962794        25648                274800     1890624
## 236  6560026        29312                333424     2022528
## 237  7170876        32976                388384     2169088
## 238  7862528        40304                454336     2333968
## 239  8545920        47632                520288     2498848
## 240  9083027        54960                626544     2660064
## 241  9565138        62288                732800     2828608
## 242 10047212        69616                842720     3030128
## 243 10536578        80608                956304     3253632
## 244 11008570        91600               1077216     3513776
## 245 11469565       102592               1205456     3825216
## 246 11945511       113584               1337360     4151312
## 247 12438394       124576               1480256     4459088
## 248 12920248       135568               1630480     4766864
## 249 13423363       146560               1791696     5085632
## 250 13944065       157552               1963904     5415392
## 251 14466907       168544               2139776     5778128
## 252 14988178       179536               2337632     6104224
## 253 15498292       190528               2535488     6463296
## 254 16015568       201520               2748000     6818704
## 255 16532680       212512               2945856     7185104
## 256 17049410       223504               3147376     7551504
## 257 17594897       234496               3363552     7936224
## 258 18125466       245488               3579728     8331936
## 259 18689892       256480               3803232     8716656
## 260 19269022       267472               4023072     9119696
## 261 19921131       278464               4253904     9526400
## 262 20645657       289456               4473744     9933104
## 263 21436042       300448               4697248    10339808
## 264 22259614       311440               4928080    10746512
## 265 23176503       322915               5169058    11171092
## 266 24160679       334613               5414713    11603913
## 267 25185419       346309               5660325    12036657
##     Saint.Pierre.and.Miquelon Saint.Vincent.and.the.Grenadines   Samoa
## 1                           0                                0       0
## 2                           0                                0       0
## 3                           0                                0       0
## 4                           0                                0       0
## 5                           0                                0       0
## 6                           0                                0       0
## 7                           0                                0       0
## 8                           0                                0       0
## 9                           0                                0       0
## 10                          0                                0       0
## 11                          0                                0       0
## 12                          0                                0       0
## 13                          0                                0       0
## 14                          0                                0       0
## 15                          0                                0       0
## 16                          0                                0       0
## 17                          0                                0       0
## 18                          0                                0       0
## 19                          0                                0       0
## 20                          0                                0       0
## 21                          0                                0       0
## 22                          0                                0       0
## 23                          0                                0       0
## 24                          0                                0       0
## 25                          0                                0       0
## 26                          0                                0       0
## 27                          0                                0       0
## 28                          0                                0       0
## 29                          0                                0       0
## 30                          0                                0       0
## 31                          0                                0       0
## 32                          0                                0       0
## 33                          0                                0       0
## 34                          0                                0       0
## 35                          0                                0       0
## 36                          0                                0       0
## 37                          0                                0       0
## 38                          0                                0       0
## 39                          0                                0       0
## 40                          0                                0       0
## 41                          0                                0       0
## 42                          0                                0       0
## 43                          0                                0       0
## 44                          0                                0       0
## 45                          0                                0       0
## 46                          0                                0       0
## 47                          0                                0       0
## 48                          0                                0       0
## 49                          0                                0       0
## 50                          0                                0       0
## 51                          0                                0       0
## 52                          0                                0       0
## 53                          0                                0       0
## 54                          0                                0       0
## 55                          0                                0       0
## 56                          0                                0       0
## 57                          0                                0       0
## 58                          0                                0       0
## 59                          0                                0       0
## 60                          0                                0       0
## 61                          0                                0       0
## 62                          0                                0       0
## 63                          0                                0       0
## 64                          0                                0       0
## 65                          0                                0       0
## 66                          0                                0       0
## 67                          0                                0       0
## 68                          0                                0       0
## 69                          0                                0       0
## 70                          0                                0       0
## 71                          0                                0       0
## 72                          0                                0       0
## 73                          0                                0       0
## 74                          0                                0       0
## 75                          0                                0       0
## 76                          0                                0       0
## 77                          0                                0       0
## 78                          0                                0       0
## 79                          0                                0       0
## 80                          0                                0       0
## 81                          0                                0       0
## 82                          0                                0       0
## 83                          0                                0       0
## 84                          0                                0       0
## 85                          0                                0       0
## 86                          0                                0       0
## 87                          0                                0       0
## 88                          0                                0       0
## 89                          0                                0       0
## 90                          0                                0       0
## 91                          0                                0       0
## 92                          0                                0       0
## 93                          0                                0       0
## 94                          0                                0       0
## 95                          0                                0       0
## 96                          0                                0       0
## 97                          0                                0       0
## 98                          0                                0       0
## 99                          0                                0       0
## 100                         0                                0       0
## 101                         0                                0       0
## 102                         0                                0       0
## 103                         0                                0       0
## 104                         0                                0       0
## 105                         0                                0       0
## 106                         0                                0       0
## 107                         0                                0       0
## 108                         0                                0       0
## 109                         0                                0       0
## 110                         0                                0       0
## 111                         0                                0       0
## 112                         0                                0       0
## 113                         0                                0       0
## 114                         0                                0       0
## 115                         0                                0       0
## 116                         0                                0       0
## 117                         0                                0       0
## 118                         0                                0       0
## 119                         0                                0       0
## 120                         0                                0       0
## 121                         0                                0       0
## 122                         0                                0       0
## 123                         0                                0       0
## 124                         0                                0       0
## 125                         0                                0       0
## 126                         0                                0       0
## 127                         0                                0       0
## 128                         0                                0       0
## 129                         0                                0       0
## 130                         0                                0       0
## 131                         0                                0       0
## 132                         0                                0       0
## 133                         0                                0       0
## 134                         0                                0       0
## 135                         0                                0       0
## 136                         0                                0       0
## 137                         0                                0       0
## 138                         0                                0       0
## 139                         0                                0       0
## 140                         0                                0       0
## 141                         0                                0       0
## 142                         0                                0       0
## 143                         0                                0       0
## 144                         0                                0       0
## 145                         0                                0       0
## 146                         0                                0       0
## 147                         0                                0       0
## 148                         0                                0       0
## 149                         0                                0       0
## 150                         0                                0       0
## 151                         0                                0       0
## 152                         0                                0       0
## 153                         0                                0       0
## 154                         0                                0       0
## 155                         0                                0       0
## 156                         0                                0       0
## 157                         0                                0       0
## 158                         0                                0       0
## 159                         0                                0       0
## 160                         0                                0       0
## 161                         0                                0       0
## 162                         0                                0       0
## 163                         0                                0       0
## 164                         0                                0       0
## 165                         0                                0       0
## 166                         0                                0       0
## 167                         0                                0       0
## 168                         0                                0       0
## 169                         0                                0       0
## 170                         0                                0       0
## 171                         0                                0       0
## 172                         0                                0       0
## 173                         0                                0       0
## 174                         0                                0       0
## 175                         0                                0       0
## 176                         0                                0       0
## 177                         0                                0       0
## 178                         0                                0       0
## 179                         0                                0       0
## 180                         0                                0       0
## 181                         0                                0       0
## 182                         0                                0       0
## 183                         0                                0       0
## 184                         0                                0       0
## 185                         0                                0       0
## 186                         0                                0       0
## 187                         0                                0       0
## 188                         0                                0       0
## 189                         0                                0       0
## 190                         0                                0       0
## 191                         0                                0       0
## 192                         0                                0       0
## 193                         0                                0       0
## 194                         0                                0       0
## 195                         0                                0       0
## 196                         0                                0       0
## 197                         0                                0       0
## 198                         0                                0       0
## 199                         0                                0       0
## 200                     14656                             3664    3664
## 201                     36640                             7328    7328
## 202                     69616                            18320   14656
## 203                     98928                            25648   21984
## 204                    131904                            32976   32976
## 205                    168544                            40304   43968
## 206                    201520                            47632   54960
## 207                    241824                            54960   69616
## 208                    282128                            65952   80608
## 209                    315104                            76944   95264
## 210                    351744                            87936  109920
## 211                    399376                            98928  128240
## 212                    432352                           109920  146560
## 213                    468992                           124576  168544
## 214                    516624                           142896  194192
## 215                    556928                           157552  223504
## 216                    600896                           175872  249152
## 217                    652192                           194192  274800
## 218                    692496                           216176  304112
## 219                    725472                           245488  333424
## 220                    762112                           274800  362736
## 221                    809744                           304112  399376
## 222                    879360                           340752  436016
## 223                    919664                           381056  472656
## 224                    963632                           414032  505632
## 225                    996608                           447008  564256
## 226                   1044240                           479984  611888
## 227                   1080880                           512960  692496
## 228                   1113856                           549600  798752
## 229                   1150496                           578912  894016
## 230                   1187136                           615552  992944
## 231                   1227440                           652192 1095536
## 232                   1267744                           692496 1209120
## 233                   1300720                           740128 1322704
## 234                   1337360                           806080 1436288
## 235                   1370336                           872032 1549872
## 236                   1417968                           937984 1663456
## 237                   1469264                          1014928 1777040
## 238                   1535216                          1080880 1890624
## 239                   1637808                          1157824 2011536
## 240                   1729408                          1238432 2114128
## 241                   1832000                          1315376 2220384
## 242                   1927264                          1399648 2330304
## 243                   2000544                          1502240 2440224
## 244                   2070160                          1623152 2553808
## 245                   2139776                          1751392 2671056
## 246                   2209392                          1883296 2795632
## 247                   2257024                          2015200 2923872
## 248                   2311984                          2176416 3055776
## 249                   2366944                          2341296 3191344
## 250                   2421904                          2487856 3334240
## 251                   2476864                          2667392 3480800
## 252                   2535488                          2854256 3627360
## 253                   2601440                          3052112 3781248
## 254                   2663728                          3271952 3931472
## 255                   2729680                          3491792 4092688
## 256                   2795632                          3711632 4257568
## 257                   2861584                          3938800 4429776
## 258                   2927536                          4165968 4609312
## 259                   2993488                          4477408 4796176
## 260                   3063104                          4697248 4983040
## 261                   3132720                          4895104 5184560
## 262                   3202336                          5147920 5382416
## 263                   3275616                          5356768 5580272
## 264                   3352560                          5565616 5778128
## 265                   3432886                          5783644 5994043
## 266                   3514771                          6005903 6212433
## 267                   3596642                          6228123 6445614
##     Sao.Tome.and.Principe Saudi.Arabia   Senegal     Serbia Seychelles
## 1                       0            0         0          0          0
## 2                       0            0         0          0          0
## 3                       0            0         0          0          0
## 4                       0            0         0          0          0
## 5                       0            0         0          0          0
## 6                       0            0         0          0          0
## 7                       0            0         0          0          0
## 8                       0            0         0          0          0
## 9                       0            0         0          0          0
## 10                      0            0         0          0          0
## 11                      0            0         0          0          0
## 12                      0            0         0          0          0
## 13                      0            0         0          0          0
## 14                      0            0         0          0          0
## 15                      0            0         0          0          0
## 16                      0            0         0          0          0
## 17                      0            0         0          0          0
## 18                      0            0         0          0          0
## 19                      0            0         0          0          0
## 20                      0            0         0          0          0
## 21                      0            0         0          0          0
## 22                      0            0         0          0          0
## 23                      0            0         0          0          0
## 24                      0            0         0          0          0
## 25                      0            0         0          0          0
## 26                      0            0         0          0          0
## 27                      0            0         0          0          0
## 28                      0            0         0          0          0
## 29                      0            0         0          0          0
## 30                      0            0         0          0          0
## 31                      0            0         0          0          0
## 32                      0            0         0          0          0
## 33                      0            0         0          0          0
## 34                      0            0         0          0          0
## 35                      0            0         0          0          0
## 36                      0            0         0          0          0
## 37                      0            0         0          0          0
## 38                      0            0         0          0          0
## 39                      0            0         0          0          0
## 40                      0            0         0          0          0
## 41                      0            0         0          0          0
## 42                      0            0         0          0          0
## 43                      0            0         0          0          0
## 44                      0            0         0          0          0
## 45                      0            0         0          0          0
## 46                      0            0         0          0          0
## 47                      0            0         0          0          0
## 48                      0            0         0          0          0
## 49                      0            0         0          0          0
## 50                      0            0         0          0          0
## 51                      0            0         0          0          0
## 52                      0            0         0          0          0
## 53                      0            0         0          0          0
## 54                      0            0         0          0          0
## 55                      0            0         0          0          0
## 56                      0            0         0          0          0
## 57                      0            0         0          0          0
## 58                      0            0         0          0          0
## 59                      0            0         0          0          0
## 60                      0            0         0          0          0
## 61                      0            0         0          0          0
## 62                      0            0         0          0          0
## 63                      0            0         0          0          0
## 64                      0            0         0          0          0
## 65                      0            0         0          0          0
## 66                      0            0         0          0          0
## 67                      0            0         0          0          0
## 68                      0            0         0          0          0
## 69                      0            0         0          0          0
## 70                      0            0         0          0          0
## 71                      0            0         0          0          0
## 72                      0            0         0          0          0
## 73                      0            0         0          0          0
## 74                      0            0         0          0          0
## 75                      0            0         0          0          0
## 76                      0            0         0          0          0
## 77                      0            0         0          0          0
## 78                      0            0         0          0          0
## 79                      0            0         0          0          0
## 80                      0            0         0          0          0
## 81                      0            0         0          0          0
## 82                      0            0         0          0          0
## 83                      0            0         0          0          0
## 84                      0            0         0          0          0
## 85                      0            0         0          0          0
## 86                      0            0         0          0          0
## 87                      0            0         0          0          0
## 88                      0            0         0          0          0
## 89                      0            0         0          0          0
## 90                      0            0         0          0          0
## 91                      0            0         0          0          0
## 92                      0            0         0          0          0
## 93                      0            0         0          0          0
## 94                      0            0         0          0          0
## 95                      0            0         0          0          0
## 96                      0            0         0          0          0
## 97                      0            0         0          0          0
## 98                      0            0         0          0          0
## 99                      0            0         0          0          0
## 100                     0            0         0          0          0
## 101                     0            0         0          0          0
## 102                     0            0         0          0          0
## 103                     0            0         0          0          0
## 104                     0            0         0          0          0
## 105                     0            0         0          0          0
## 106                     0            0         0          0          0
## 107                     0            0         0          0          0
## 108                     0            0         0          0          0
## 109                     0            0         0          0          0
## 110                     0            0         0          0          0
## 111                     0            0         0          0          0
## 112                     0            0         0          0          0
## 113                     0            0         0          0          0
## 114                     0            0         0          0          0
## 115                     0            0         0          0          0
## 116                     0            0         0          0          0
## 117                     0            0         0          0          0
## 118                     0            0         0          0          0
## 119                     0            0         0          0          0
## 120                     0            0         0          0          0
## 121                     0            0         0          0          0
## 122                     0            0         0          0          0
## 123                     0            0         0          0          0
## 124                     0            0         0          0          0
## 125                     0            0         0          0          0
## 126                     0            0         0          0          0
## 127                     0            0         0          0          0
## 128                     0            0         0          0          0
## 129                     0            0         0          0          0
## 130                     0            0         0          0          0
## 131                     0            0         0          0          0
## 132                     0            0         0          0          0
## 133                     0            0         0          0          0
## 134                     0            0         0          0          0
## 135                     0            0         0          0          0
## 136                     0            0         0          0          0
## 137                     0            0         0          0          0
## 138                     0            0         0          0          0
## 139                     0            0         0          0          0
## 140                     0            0         0          0          0
## 141                     0            0         0          0          0
## 142                     0            0         0          0          0
## 143                     0            0         0          0          0
## 144                     0            0         0          0          0
## 145                     0            0         0          0          0
## 146                     0            0         0          0          0
## 147                     0            0         0          0          0
## 148                     0            0         0          0          0
## 149                     0            0         0          0          0
## 150                     0            0         0          0          0
## 151                     0            0         0          0          0
## 152                     0            0         0          0          0
## 153                     0            0         0          0          0
## 154                     0            0         0          0          0
## 155                     0            0         0          0          0
## 156                     0            0         0          0          0
## 157                     0            0         0          0          0
## 158                     0            0         0          0          0
## 159                     0            0         0          0          0
## 160                     0            0         0          0          0
## 161                     0            0         0          0          0
## 162                     0            0         0          0          0
## 163                     0            0         0          0          0
## 164                     0            0         0          0          0
## 165                     0            0         0          0          0
## 166                     0            0         0          0          0
## 167                     0            0         0          0          0
## 168                     0            0         0          0          0
## 169                     0            0         0          0          0
## 170                     0            0         0          0          0
## 171                     0            0         0          0          0
## 172                     0            0         0          0          0
## 173                     0            0         0          0          0
## 174                     0            0         0          0          0
## 175                     0            0         0          0          0
## 176                     0            0         0          0          0
## 177                     0            0         0          0          0
## 178                     0            0         0          0          0
## 179                     0            0         0          0          0
## 180                     0            0         0          0          0
## 181                     0            0         0          0          0
## 182                     0            0         0          0          0
## 183                     0            0         0          0          0
## 184                     0            0         0          0          0
## 185                     0            0         0          0          0
## 186                     0         7328         0          0          0
## 187                     0        32976         0          0          0
## 188                     0       238160         0          0          0
## 189                     0      1890624         0          0          0
## 190                     0      4037728         0          0          0
## 191                     0      5847744         0          0          0
## 192                     0      7749360         0          0          0
## 193                     0      9742576         0          0          0
## 194                     0     13003536         0          0          0
## 195                     0     21815456         0          0          0
## 196                     0     46968816         0          0          0
## 197                     0     84700688         0          0          0
## 198                     0    102643296         0          0          0
## 199                     0    121029248         0          0          0
## 200                     0    126169840         0          0          0
## 201                  3664    125821760         0          0          0
## 202                  7328    125649552         0          0          0
## 203                 10992    126125872         0          0          0
## 204                 14656    127364304         0          0          0
## 205                 18320    129478432         0          0          0
## 206                 25648    131108912         0          0          0
## 207                 36640    133208384         0          0          0
## 208                 43968    136568272    355408          0          0
## 209                 51296    138421959    743109   13896228          0
## 210                 62288    141096322   1570489   29075449          0
## 211                 73280    144664642   2383154   44986242          0
## 212                 84272    150914683   3195819   61313384          0
## 213                 91600    157853497   4056087   79476658       7328
## 214                102592    164894665   4978583  100055105      14656
## 215                113584    169110919   6670608  121228174      21984
## 216                124576    175518244   8388251  142208625      29312
## 217                135568    201003721   9087392  163400454      36640
## 218                150224    230082838   9006784  186065660      43968
## 219                164880    265353789   9496928  209565397      51296
## 220                179536    310605119  10803995  240275888      80608
## 221                190528    370361761  12155030  273368345     113584
## 222                201520    440643437  13608271  304375401     157552
## 223                216176    535696947  15156955  341410749     205184
## 224                234496    634398755  17005938  378599437     260144
## 225                252816    717659519  19583937  417394797     318768
## 226                282128    819118975  21353633  457425856     399376
## 227                311440    937189260  23590969  496341037     483648
## 228                344416   1052213534  26210565  539821129     560592
## 229                377392   1190217846  29098704  587108091     681504
## 230                417696   1359457637  32435145  633591449     776768
## 231                461664   1534761056  35715002  684173166     875696
## 232                509296   1692652495  38751576  730621405     959968
## 233                564256   1853487183  41362986  780640290    1058896
## 234                615552   2008997428  44647154  833391347    1157824
## 235                670512   2181415972  47297659  887199422    1308048
## 236                721808   2386016543  49934137  943390216    1472928
## 237                773104   2576460277  52358710  999219451    1674448
## 238                820736   2778707953  55069519 1056998799    1872304
## 239                868368   2982127170  58731396 1114647382    2106800
## 240                916000   3167612437  61870432 1172254925    2257024
## 241                963632   3434998613  65248397 1212973878    2429232
## 242               1011264   3720072727  68671845 1256267701    2601440
## 243               1058896   4033400112  72209820 1294008485    2784640
## 244               1106528   4340873360  76046574 1330706913    2986160
## 245               1154160   4575585309  79475530 1369482115    3184016
## 246               1201792   4833848956  83138774 1414874866    3418512
## 247               1249424   5049645698  86321129 1463667550    3759264
## 248               1297056   5256876214  89654188 1515047192    4191616
## 249               1344688   5482852694  93257760 1550487300    4700912
## 250               1392320   5779206015  97067066 1589867846    5272496
## 251               1443616   6075780906 101247289 1632145403    5906368
## 252               1502240   6401462082 105593145 1677318420    6444976
## 253               1568192   6727979197 110398044 1725616885    6994576
## 254               1641472   7122563990 115386550 1778354711    7731040
## 255               1718416   7518418750 120926128 1828233940    8419872
## 256               1802688   7949710718 125347890 1881993525    9152672
## 257               1886960   8336217865 130174535 1934179367    9793872
## 258               1971232   8768554275 134913569 1985969107   10486368
## 259               2062832   9234398584 139117297 2031895107   11010320
## 260               2161760   9752114531 146397370 2077591467   11453664
## 261               2264352  10249773541 154216797 2126548547   11794416
## 262               2377936  10812953034 161579664 2170273023   12234096
## 263               2491520  11353758266 169429605 2214818851   12637136
## 264               2605104  11955654331 177735418 2252007973   13131776
## 265               2719828  12576537288 185850325 2293345455   13671491
## 266               2837347  13208086495 194391925 2336696451   14254463
## 267               2954820  13843097583 203710385 2381789224   14863511
##     Sierra.Leone  Singapore Sint.Maarten..Dutch.part.   Slovakia  Slovenia
## 1              0          0                         0          0         0
## 2              0          0                         0          0         0
## 3              0          0                         0          0         0
## 4              0          0                         0          0         0
## 5              0          0                         0          0         0
## 6              0          0                         0          0         0
## 7              0          0                         0          0         0
## 8              0          0                         0          0         0
## 9              0          0                         0          0         0
## 10             0          0                         0          0         0
## 11             0          0                         0          0         0
## 12             0          0                         0          0         0
## 13             0          0                         0          0         0
## 14             0          0                         0          0         0
## 15             0          0                         0          0         0
## 16             0          0                         0          0         0
## 17             0          0                         0          0         0
## 18             0          0                         0          0         0
## 19             0          0                         0          0         0
## 20             0          0                         0          0         0
## 21             0          0                         0          0         0
## 22             0          0                         0          0         0
## 23             0          0                         0          0         0
## 24             0          0                         0          0         0
## 25             0          0                         0          0         0
## 26             0          0                         0          0         0
## 27             0          0                         0          0         0
## 28             0          0                         0          0         0
## 29             0          0                         0          0         0
## 30             0          0                         0          0         0
## 31             0          0                         0          0         0
## 32             0          0                         0          0         0
## 33             0          0                         0          0         0
## 34             0          0                         0          0         0
## 35             0          0                         0          0         0
## 36             0          0                         0          0         0
## 37             0          0                         0          0         0
## 38             0          0                         0          0         0
## 39             0          0                         0          0         0
## 40             0          0                         0          0         0
## 41             0          0                         0          0         0
## 42             0          0                         0          0         0
## 43             0          0                         0          0         0
## 44             0          0                         0          0         0
## 45             0          0                         0          0         0
## 46             0          0                         0          0         0
## 47             0          0                         0          0         0
## 48             0          0                         0          0         0
## 49             0          0                         0          0         0
## 50             0          0                         0          0         0
## 51             0          0                         0          0         0
## 52             0          0                         0          0         0
## 53             0          0                         0          0         0
## 54             0          0                         0          0         0
## 55             0          0                         0          0         0
## 56             0          0                         0          0         0
## 57             0          0                         0          0         0
## 58             0          0                         0          0         0
## 59             0          0                         0          0         0
## 60             0          0                         0          0         0
## 61             0          0                         0          0         0
## 62             0          0                         0          0         0
## 63             0          0                         0          0         0
## 64             0          0                         0          0         0
## 65             0          0                         0          0         0
## 66             0          0                         0          0         0
## 67             0          0                         0          0         0
## 68             0          0                         0          0         0
## 69             0          0                         0          0         0
## 70             0          0                         0          0         0
## 71             0          0                         0          0         0
## 72             0          0                         0          0         0
## 73             0          0                         0          0         0
## 74             0          0                         0          0         0
## 75             0          0                         0          0         0
## 76             0          0                         0          0         0
## 77             0          0                         0          0         0
## 78             0          0                         0          0         0
## 79             0          0                         0          0         0
## 80             0          0                         0          0         0
## 81             0          0                         0          0         0
## 82             0          0                         0          0         0
## 83             0          0                         0          0         0
## 84             0          0                         0          0         0
## 85             0          0                         0          0         0
## 86             0          0                         0          0         0
## 87             0          0                         0          0         0
## 88             0          0                         0          0         0
## 89             0          0                         0          0         0
## 90             0          0                         0          0         0
## 91             0          0                         0          0         0
## 92             0          0                         0          0         0
## 93             0          0                         0          0         0
## 94             0          0                         0          0         0
## 95             0          0                         0          0         0
## 96             0          0                         0          0         0
## 97             0          0                         0          0         0
## 98             0          0                         0          0         0
## 99             0          0                         0          0         0
## 100            0          0                         0          0         0
## 101            0          0                         0          0         0
## 102            0          0                         0          0         0
## 103            0          0                         0          0         0
## 104            0          0                         0          0         0
## 105            0          0                         0          0         0
## 106            0          0                         0          0         0
## 107            0          0                         0          0         0
## 108            0          0                         0          0         0
## 109            0          0                         0          0         0
## 110            0          0                         0          0         0
## 111            0          0                         0          0         0
## 112            0          0                         0          0         0
## 113            0          0                         0          0         0
## 114            0          0                         0          0         0
## 115            0          0                         0          0         0
## 116            0          0                         0          0         0
## 117            0          0                         0          0         0
## 118            0          0                         0          0         0
## 119            0          0                         0          0         0
## 120            0          0                         0          0         0
## 121            0          0                         0          0         0
## 122            0          0                         0          0         0
## 123            0          0                         0          0         0
## 124            0          0                         0          0         0
## 125            0          0                         0          0         0
## 126            0          0                         0          0         0
## 127            0          0                         0          0         0
## 128            0          0                         0          0         0
## 129            0          0                         0          0         0
## 130            0          0                         0          0         0
## 131            0          0                         0          0         0
## 132            0          0                         0          0         0
## 133            0          0                         0          0         0
## 134            0          0                         0          0         0
## 135            0          0                         0          0         0
## 136            0          0                         0          0         0
## 137            0          0                         0          0         0
## 138            0          0                         0          0         0
## 139            0          0                         0          0         0
## 140            0          0                         0          0         0
## 141            0          0                         0          0         0
## 142            0          0                         0          0         0
## 143            0          0                         0          0         0
## 144            0          0                         0          0         0
## 145            0          0                         0          0         0
## 146            0          0                         0          0         0
## 147            0          0                         0          0         0
## 148            0          0                         0          0         0
## 149            0          0                         0          0         0
## 150            0          0                         0          0         0
## 151            0          0                         0          0         0
## 152            0          0                         0          0         0
## 153            0          0                         0          0         0
## 154            0          0                         0          0         0
## 155            0          0                         0          0         0
## 156            0          0                         0          0         0
## 157            0          0                         0          0         0
## 158            0          0                         0          0         0
## 159            0          0                         0          0         0
## 160            0          0                         0          0         0
## 161            0          0                         0          0         0
## 162            0          0                         0          0         0
## 163            0          0                         0          0         0
## 164            0          0                         0          0         0
## 165            0          0                         0          0         0
## 166            0          0                         0          0         0
## 167            0          0                         0          0         0
## 168            0          0                         0          0         0
## 169            0          0                         0          0         0
## 170            0          0                         0          0         0
## 171            0          0                         0          0         0
## 172            0          0                         0          0         0
## 173            0          0                         0          0         0
## 174            0          0                         0          0         0
## 175            0          0                         0          0         0
## 176            0          0                         0          0         0
## 177            0          0                         0          0         0
## 178            0          0                         0          0         0
## 179            0          0                         0          0         0
## 180            0          0                         0          0         0
## 181            0          0                         0          0         0
## 182            0          0                         0          0         0
## 183            0          0                         0          0         0
## 184            0          0                         0          0         0
## 185            0          0                         0          0         0
## 186            0          0                         0          0         0
## 187            0          0                         0          0         0
## 188            0          0                         0          0         0
## 189            0          0                         0          0         0
## 190            0          0                         0          0         0
## 191            0          0                         0          0         0
## 192            0          0                         0          0         0
## 193            0          0                         0          0         0
## 194            0          0                         0          0         0
## 195            0          0                         0          0         0
## 196            0          0                         0          0         0
## 197            0          0                         0          0         0
## 198            0          0                         0          0         0
## 199            0          0                         0          0         0
## 200       157552          0                         0          0         0
## 201       252816          0                         0          0         0
## 202       432352          0                         0          0         0
## 203       600896          0                         0          0         0
## 204       725472          0                         0          0         0
## 205       908672          0                         0          0         0
## 206      1088208          0                         0          0         0
## 207      1476592    1729408                         0          0         0
## 208      1685440    4026736                         0          0         0
## 209      1919936    5825760                   1210053   29695684   3992183
## 210      2634416    7218080                   2250533   61367068   8352957
## 211      2923872    9310224                   3336415   95742173  12923929
## 212      3249968   11885511                   4528926  132374374  17614495
## 213      3620032   15281266                   5671218  170909651  22832548
## 214      3924144   18981104                   6781866  211014083  28744477
## 215      4206272   21508432                   7778320  250091134  34827237
## 216      4506720   22181033                   8710108  288947525  40854634
## 217      4759536   25234907                   9857904  327722747  46942750
## 218      5122272   30648011                  10925213  368291169  53454109
## 219      6206816   37845245                  12322036  411359192  60205206
## 220      7064192   56037727                  13884304  460737395  69027967
## 221      7866608   72614861                  15243979  512542219  78530352
## 222      8544448   94832950                  16562379  564830038  87427305
## 223      9083056  116032358                  18024899  617338588  98049000
## 224      9603344  137979132                  19350522  670463369 108707704
## 225     10127296  162496935                  20310515  726056510 119819752
## 226     10577968  192495458                  22361207  783822482 131277005
## 227     11090928  220760404                  23432299  843326340 142403882
## 228     11801744  253868653                  24344482  903381533 154829496
## 229     12479584  289925916                  25301380  961881280 168337416
## 230     13087808  321269199                  26286139 1021077289 181603685
## 231     13780304  348009752                  27224118 1079640067 196033862
## 232     14333568  377615511                  28272854 1137638912 209267938
## 233     15022400  412425872                  28811839 1195728755 223520419
## 234     15637952  445642709                  30157756 1255785726 238552508
## 235     16301136  478909318                  31733095 1315032806 253883634
## 236     16975312  513785835                  32035092 1374697897 269889421
## 237     17473616  546246354                  32303574 1433894942 285777330
## 238     17931616  582195555                  32568050 1492149269 302285059
## 239     18305344  623904259                  33071500 1548490654 318732759
## 240     18792656  668194825                  33610650 1610486381 333807189
## 241     19338592  713244233                  34040878 1664103451 347802223
## 242     19785600  761456896                  34395333 1713259401 361798235
## 243     20232608  812328009                  34942498 1759918374 376090905
## 244     20694272  873672570                  35467077 1803746247 390724686
## 245     21042352  915514359                  35986192 1848612763 405969139
## 246     21434400  964863608                  36471791 1893778298 421874959
## 247     21797136 1022935362                  36979977 1938982611 438107955
## 248     22159872 1071291773                  37008028 1983157762 454056179
## 249     22504288 1121162291                  37218224 2026498544 469379621
## 250     22892672 1170018593                  37775953 2068031698 484809715
## 251     23405632 1219460689                  38343883 2111868256 501173012
## 252     23940576 1266633390                  38891412 2153919747 517681216
## 253     24508496 1297725963                  39439305 2196346522 533951350
## 254     25061760 1326176923                  40014157 2239337686 550582014
## 255     25523424 1356511179                  40583908 2282245173 567510820
## 256     26138976 1387285115                  41177702 2324848892 584634826
## 257     26655600 1407195291                  41846176 2365797961 601894787
## 258     27190544 1443300347                  42489149 2407282551 620092178
## 259     27725488 1499187339                  43147059 2444921977 636402188
## 260     28300736 1554784875                  43600237 2483548496 652754816
## 261     29044528 1599969323                  44178366 2521481341 669095388
## 262     29905568 1636312539                  44178366 2557590394 684896143
## 263     30938816 1691943051                  44178366 2593224329 700063220
## 264     32078320 1748269723                  44178366 2626789000 713575796
## 265     33232291 1808990287                  44943376 2660686477 727174938
## 266     34467482 1871819432                  45723234 2694683249 741574727
## 267     35859969 1936584508                  46502953 2730069466 756184328
##     Solomon.Islands  Somalia South.Africa South.Korea South.Sudan
## 1                 0        0            0           0           0
## 2                 0        0            0           0           0
## 3                 0        0            0           0           0
## 4                 0        0            0           0           0
## 5                 0        0            0           0           0
## 6                 0        0            0           0           0
## 7                 0        0            0           0           0
## 8                 0        0            0           0           0
## 9                 0        0            0           0           0
## 10                0        0            0           0           0
## 11                0        0            0           0           0
## 12                0        0            0           0           0
## 13                0        0            0           0           0
## 14                0        0            0           0           0
## 15                0        0            0           0           0
## 16                0        0            0           0           0
## 17                0        0            0           0           0
## 18                0        0            0           0           0
## 19                0        0            0           0           0
## 20                0        0            0           0           0
## 21                0        0            0           0           0
## 22                0        0            0           0           0
## 23                0        0            0           0           0
## 24                0        0            0           0           0
## 25                0        0            0           0           0
## 26                0        0            0           0           0
## 27                0        0            0           0           0
## 28                0        0            0           0           0
## 29                0        0            0           0           0
## 30                0        0            0           0           0
## 31                0        0            0           0           0
## 32                0        0            0           0           0
## 33                0        0            0           0           0
## 34                0        0            0           0           0
## 35                0        0            0           0           0
## 36                0        0            0           0           0
## 37                0        0            0           0           0
## 38                0        0            0           0           0
## 39                0        0            0           0           0
## 40                0        0            0           0           0
## 41                0        0            0           0           0
## 42                0        0            0           0           0
## 43                0        0            0           0           0
## 44                0        0            0           0           0
## 45                0        0            0           0           0
## 46                0        0            0           0           0
## 47                0        0            0           0           0
## 48                0        0            0           0           0
## 49                0        0            0           0           0
## 50                0        0            0           0           0
## 51                0        0            0           0           0
## 52                0        0            0           0           0
## 53                0        0            0           0           0
## 54                0        0            0           0           0
## 55                0        0            0           0           0
## 56                0        0            0           0           0
## 57                0        0            0           0           0
## 58                0        0            0           0           0
## 59                0        0            0           0           0
## 60                0        0            0           0           0
## 61                0        0            0           0           0
## 62                0        0            0           0           0
## 63                0        0            0           0           0
## 64                0        0            0           0           0
## 65                0        0            0           0           0
## 66                0        0            0           0           0
## 67                0        0            0           0           0
## 68                0        0            0           0           0
## 69                0        0            0           0           0
## 70                0        0            0           0           0
## 71                0        0            0           0           0
## 72                0        0            0           0           0
## 73                0        0            0           0           0
## 74                0        0            0           0           0
## 75                0        0            0           0           0
## 76                0        0            0           0           0
## 77                0        0            0           0           0
## 78                0        0            0           0           0
## 79                0        0            0           0           0
## 80                0        0            0           0           0
## 81                0        0            0           0           0
## 82                0        0            0           0           0
## 83                0        0            0           0           0
## 84                0        0            0           0           0
## 85                0        0            0           0           0
## 86                0        0            0           0           0
## 87                0        0            0           0           0
## 88                0        0            0           0           0
## 89                0        0            0           0           0
## 90                0        0            0           0           0
## 91                0        0            0           0           0
## 92                0        0            0           0           0
## 93                0        0            0           0           0
## 94                0        0            0           0           0
## 95                0        0            0           0           0
## 96                0        0            0           0           0
## 97                0        0            0           0           0
## 98                0        0            0           0           0
## 99                0        0            0           0           0
## 100               0        0            0           0           0
## 101               0        0            0           0           0
## 102               0        0            0           0           0
## 103               0        0            0           0           0
## 104               0        0            0           0           0
## 105               0        0            0           0           0
## 106               0        0            0           0           0
## 107               0        0            0           0           0
## 108               0        0            0           0           0
## 109               0        0            0           0           0
## 110               0        0            0           0           0
## 111               0        0            0           0           0
## 112               0        0            0           0           0
## 113               0        0            0           0           0
## 114               0        0            0           0           0
## 115               0        0            0           0           0
## 116               0        0            0           0           0
## 117               0        0            0           0           0
## 118               0        0            0           0           0
## 119               0        0            0           0           0
## 120               0        0            0           0           0
## 121               0        0            0           0           0
## 122               0        0            0           0           0
## 123               0        0            0           0           0
## 124               0        0            0           0           0
## 125               0        0            0           0           0
## 126               0        0            0           0           0
## 127               0        0            0           0           0
## 128               0        0            0           0           0
## 129               0        0            0           0           0
## 130               0        0            0           0           0
## 131               0        0            0           0           0
## 132               0        0            0           0           0
## 133               0        0            0           0           0
## 134               0        0        21984           0           0
## 135               0        0        58624           0           0
## 136               0        0       106256           0           0
## 137               0        0       153888           0           0
## 138               0        0       234496           0           0
## 139               0        0       366400           0           0
## 140               0        0       663184           0           0
## 141               0        0       959968           0           0
## 142               0        0      1439952           0           0
## 143               0        0      3238976           0           0
## 144               0        0      5671872           0           0
## 145               0        0      9009776           0           0
## 146               0        0     13267344           0           0
## 147               0        0     18045200           0           0
## 148               0        0     24094464           0           0
## 149               0        0     29612448           0           0
## 150               0        0     31942752           0           0
## 151               0        0     35852240           0           0
## 152               0        0     41678000           0           0
## 153               0        0     49460336           0           0
## 154               0        0     58228288           0           0
## 155               0        0     68256656           0           0
## 156               0        0     79721312           0           0
## 157               0        0     92373104           0           0
## 158               0        0    105380304           0           0
## 159               0        0    120355072           0           0
## 160               0        0    137334048           0           0
## 161               0        0    153675488           0           0
## 162               0        0    171024528           0           0
## 163               0        0    190007712           0           0
## 164               0        0    208408320           0           0
## 165               0        0    226918848           0           0
## 166               0        0    248730640           0           0
## 167               0        0    272070320           0           0
## 168               0        0    294292480           0           0
## 169               0        0    317430640           0           0
## 170               0        0    343096960           0           0
## 171               0        0    368510464           0           0
## 172               0        0    390296608           0           0
## 173               0        0    416739696           0           0
## 174               0        0    444516480           0           0
## 175               0        0    473469408           0           0
## 176               0        0    503898928           0           0
## 177               0        0    533460080           0           0
## 178               0        0    563083520           0           0
## 179               0        0    593853792           0           0
## 180               0        0    622575888           0           0
## 181               0        0    648143280           0           0
## 182               0        0    671600208           0           0
## 183               0        0    696933104           0           0
## 184               0        0    725805424           0           0
## 185               0        0    757964352           0           0
## 186               0        0    793219360           0           0
## 187               0        0    830038896           0           0
## 188               0        0    868741728           0           0
## 189               0        0    908902832           0           0
## 190               0        0    950423280           0           0
## 191               0        0    994754016           0           0
## 192               0        0   1043181104           0           0
## 193               0        0   1091948944           0           0
## 194               0        0   1146520560           0           0
## 195               0        0   1202392896        3664           0
## 196               0        0   1258441104      490976           0
## 197               0        0   1314280464     1388656           0
## 198               0        0   1371383904     3059440           0
## 199               0        0   1431975472     5235856           0
## 200               0    47632   1493014048     7419600           0
## 201               0    95264   1558163632    10343472           0
## 202            3664   142896   1629054704    13805952           0
## 203            7328   190528   1700059360    18499536           0
## 204           10992   238160   1773965904    23658448           0
## 205           21984   304112   1856911536    30103424           0
## 206           32976   373728   1944184352    37658592           0
## 207           43968   447008   2033846096    45873280           0
## 208           54960   531280   2130110368    54883056           0
## 209           65952   619216   2224583238    66104432      113889
## 210           76944   703488   2322426751    78644551      227168
## 211           91600   791424   2424546597    93093257      342584
## 212          106256   897680   2530216592   110354845      466244
## 213          120912  1000272   2639941743   131438015      606087
## 214          139232  1135840   2759487761   153633169      760891
## 215          164880  1267744   2887627799   178611478      963021
## 216          190528  1406976   3015862685   208593710     1183167
## 217          223504  1634144   3149622794   243706949     1448501
## 218          260144  1788032   3287576548   280904091     1707119
## 219          296784  1949248   3430719397   323372311     2055504
## 220          337088  2165424   3580337583   377088664     2459765
## 221          384720  2352288   3748729842   435638440     2874713
## 222          439680  2586784   3920259987   495915762     3322637
## 223          505632  2850592   4093572736   568947630     3774531
## 224          571584  3180352   4270061003   644580693     4247797
## 225          630208  3682320   4454993406   726364692     4600763
## 226          692496  4162304   4647817303   819635483     4913424
## 227          773104  4961056   4847463644   925327072     5230360
## 228          835392  5517984   5049234835  1038728814     5516763
## 229          945312  6005296   5267782956  1171947674     5814157
## 230         1047904  6818704   5495842691  1306836308     6126208
## 231         1183472  7093504   5752747151  1446613815     6429404
## 232         1304384  7811648   6032996196  1588597045     6748172
## 233         1447280  8745968   6324701381  1739634818     7073657
## 234         1590176  9460448   6640074644  1903683622     7365556
## 235         1740400 10317824   6963733554  2082168450     7704781
## 236         1894288 11241152   7294024665  2264840281     8058663
## 237         2055504 12234096   7622469788  2457780131     8337737
## 238         2213056 13237752   7964831558  2680087990     8741388
## 239         2374272 14189824   8305250024  2916336177     9054355
## 240         2520832 14919396   8617879970  3163774374     9489149
## 241         2667392 15625898   8943607143  3425812690     9896464
## 242         2810288 16305438   9244636475  3708006733    10261032
## 243         2953184 16944660   9564974564  4029844509    10512627
## 244         3092416 17572876   9903363232  4374108263    10857959
## 245         3235312 18160775  10264727372  4748100693    11215809
## 246         3378208 18728695  10628213838  5149630567    11584957
## 247         3521104 19267303  11013334529  5577416635    12036240
## 248         3664000 19780263  11390110805  5940964895    12427372
## 249         3814224 20271239  11764428366  6339290153    12851480
## 250         3964448 20751223  12142159272  6784731036    13312228
## 251         4122000 21253191  12513299848  7233281612    13842592
## 252         4279552 21839431  12868753906  7696909627    14518600
## 253         4440768 22432999  13271989174  8159316945    15273995
## 254         4601984 23026567  13720528242  8637922725    16228467
## 255         4763200 23620135  14135579092  9097268389    17142940
## 256         4928080 24213703  14581287756  9562874298    18143212
## 257         5107616 24821927  15045262756 10056227516    19319356
## 258         5294480 25422823  15539389912 10562010071    20561147
## 259         5488672 26020055  16040766850 11068774611    21856981
## 260         5686528 26631943  16513249430 11634735536    23184265
## 261         5884384 27236503  16982176670 12223170623    24488039
## 262         6082240 27844727  17449257316 12806802599    24488039
## 263         6283760 28452951  17913876373 13398342333    24488039
## 264         6485280 29061175  18401882557 13984890342    24488039
## 265         6705194 29724825  18862999143 14575447863    26119178
## 266         6927627 30441664  19331044546 15170521542    27881048
## 267         7165127 31190568  19787369762 15786618228    29721727
##           Spain Sri.Lanka     Sudan  Suriname Swaziland     Sweden
## 1             0         0         0         0         0          0
## 2             0         0         0         0         0          0
## 3             0         0         0         0         0          0
## 4             0         0         0         0         0          0
## 5             0         0         0         0         0          0
## 6             0         0         0         0         0          0
## 7             0         0         0         0         0          0
## 8             0         0         0         0         0          0
## 9             0         0         0         0         0          0
## 10            0         0         0         0         0          0
## 11            0         0         0         0         0          0
## 12            0         0         0         0         0          0
## 13            0         0         0         0         0          0
## 14            0         0         0         0         0          0
## 15            0         0         0         0         0          0
## 16            0         0         0         0         0          0
## 17            0         0         0         0         0          0
## 18            0         0         0         0         0          0
## 19            0         0         0         0         0          0
## 20            0         0         0         0         0          0
## 21            0         0         0         0         0          0
## 22            0         0         0         0         0          0
## 23            0         0         0         0         0          0
## 24            0         0         0         0         0          0
## 25            0         0         0         0         0          0
## 26            0         0         0         0         0          0
## 27            0         0         0         0         0          0
## 28            0         0         0         0         0          0
## 29            0         0         0         0         0          0
## 30            0         0         0         0         0          0
## 31            0         0         0         0         0          0
## 32            0         0         0         0         0          0
## 33            0         0         0         0         0          0
## 34            0         0         0         0         0          0
## 35            0         0         0         0         0          0
## 36            0         0         0         0         0          0
## 37            0         0         0         0         0          0
## 38            0         0         0         0         0          0
## 39            0         0         0         0         0          0
## 40            0         0         0         0         0          0
## 41            0         0         0         0         0          0
## 42            0         0         0         0         0          0
## 43            0         0         0         0         0          0
## 44            0         0         0         0         0          0
## 45            0         0         0         0         0          0
## 46            0         0         0         0         0          0
## 47            0         0         0         0         0          0
## 48            0         0         0         0         0          0
## 49            0         0         0         0         0          0
## 50            0         0         0         0         0          0
## 51            0         0         0         0         0          0
## 52            0         0         0         0         0          0
## 53            0         0         0         0         0          0
## 54            0         0         0         0         0          0
## 55            0         0         0         0         0          0
## 56            0         0         0         0         0          0
## 57            0         0         0         0         0          0
## 58            0         0         0         0         0          0
## 59            0         0         0         0         0          0
## 60            0         0         0         0         0          0
## 61            0         0         0         0         0          0
## 62            0         0         0         0         0          0
## 63            0         0         0         0         0          0
## 64            0         0         0         0         0          0
## 65            0         0         0         0         0          0
## 66            0         0         0         0         0          0
## 67            0         0         0         0         0          0
## 68            0         0         0         0         0          0
## 69            0         0         0         0         0          0
## 70            0         0         0         0         0          0
## 71            0         0         0         0         0          0
## 72            0         0         0         0         0          0
## 73            0         0         0         0         0          0
## 74            0         0         0         0         0          0
## 75            0         0         0         0         0          0
## 76            0         0         0         0         0          0
## 77            0         0         0         0         0          0
## 78            0         0         0         0         0          0
## 79            0         0         0         0         0          0
## 80         3664         0         0         0         0          0
## 81         7328         0         0         0         0          0
## 82        10992         0         0         0         0          0
## 83        14656         0         0         0         0          0
## 84        18320         0         0         0         0      32976
## 85        21984         0         0         0         0      32976
## 86        43968         0         0         0         0      32976
## 87        80608         0         0         0         0      32976
## 88       106256         0         0         0         0      32976
## 89       153888         0         0         0         0      76944
## 90       190528         0         0         0         0     117248
## 91       293120         0         0         0         0     157552
## 92       436016         0         0         0         0     238160
## 93       608224         0         0         0         0     296784
## 94       809744         0         0         0         0     395712
## 95      1084544         0         0         0         0     483648
## 96      1366672         0         0         0         0     564256
## 97      1626816         0         0         0         0     644864
## 98      1919936         0         0         0         0     784096
## 99      2246032         0         0         0         0     978288
## 100     2740672         0         0         0         0    1179808
## 101     3249968         0         0         0         0    1395984
## 102     3784912         0         0         0         0    1612160
## 103     4437104         0         0         0         0    1839328
## 104     4986704         0         0         0         0    2176416
## 105     5539968         0         0         0         0    2491520
## 106     6294752         0         0         0         0    2967840
## 107     7144800         0         0         0         0    3579728
## 108     8295296         0         0         0         0    4092688
## 109     9925776         0         0         0         0    4847472
## 110    11856704         0         0         0         0    5598592
## 111    13860912         0         0         0         0    6565888
## 112    16048320         0         0         0         0    7551504
## 113    18481216         0         0         0         0    8537120
## 114    20815184         0         0         0         0    9574032
## 115    23119840         0         0         0         0   10654912
## 116    25409840         0         0         0         0   11768768
## 117    27967312         0         0         0         0   12805680
## 118    30627376         0         0         0         0   14029456
## 119    33265456         0         0         0         0   15117664
## 120    36339552         0         0         0         0   16458688
## 121    39278080         0         0         0         0   17891312
## 122    42539040         0         0         0         0   19602400
## 123    45675424         0         0         0         0   21339136
## 124    48793488         0         0         0         0   23211440
## 125    52083760         0         0         0         0   25486784
## 126    55652496         0         0         0         0   27916016
## 127    59433744         0         0         0         0   30488144
## 128    63189344         0         0         0         0   32668224
## 129    67161120         0         0         0         0   34881280
## 130    71576240         0         0         0         0   37709888
## 131    76507984         0         0         0         0   40461552
## 132    81890400         0         0         0         0   43608928
## 133    87793104         0         0         0         0   46825920
## 134    93662832         0         0         0         0   50376336
## 135    99422640         0         0         0         0   54205216
## 136   105515872         0         0         0         0   57957152
## 137   111656736         0         0         0         0   61760384
## 138   118090720         0         0         0         0   66006960
## 139   124913088         0         0         0         0   70964352
## 140   132252080         0         0         0         0   75910752
## 141   140191968         0         0         0         0   81190576
## 142   148490928         0         0         0         0   86441088
## 143   156610352         0         0         0         0   91720912
## 144   165345328         0         0         0         0   97612624
## 145   173948400         0         0         0         0  103566624
## 146   183251296         0         0         0         0  109722144
## 147   192796016         0         0         0         0  116577488
## 148   202168528         0         0         0         0  123876176
## 149   212794128         0         0         0         0  133010528
## 150   224013296         0         0         0         0  142181520
## 151   235818704         0         0         0         0  150703984
## 152   248155392         0         0         0         0  159629488
## 153   260330864         0         0         0         0  169434352
## 154   273323408         0         0         0         0  179759504
## 155   286894864         0         0         0         0  189923440
## 156   300755776         0         0         0         0  201215888
## 157   314851184         0         0         0         0  213988592
## 158   329635424         0         0         0         0  227633328
## 159   344800720         0         0         0         0  240193520
## 160   359694880         0         0         0         0  253182400
## 161   374424160         0         0         0         0  265834192
## 162   390406528         0         0         0         0  279852656
## 163   407825184         0         0         0         0  295611520
## 164   425126592         0         0         0         0  310458048
## 165   440438448         0         0         0         0  325407168
## 166   458304112         0         0         0         0  341166032
## 167   474154576         0         0         0         0  347929776
## 168   490888064         0         0         0         0  355931952
## 169   506815472         0         0         0         0  363611696
## 170   520870576         0         0         0         0  374013792
## 171   535717104         0         0         0         0  380026416
## 172   550658896         0         0         0         0  389970512
## 173   567872368         0         0         0         0  402069040
## 174   586261984         0         0         0         0  416508864
## 175   605314784         0         0         0         0  429406144
## 176   623693408         0         0         0         0  441940688
## 177   645138800         0         0         0         0  459568192
## 178   666653808         0         0         0         0  475814368
## 179   690631024         0         0         0         0  495185936
## 180   714274816         0         0         0         0  514117824
## 181   736812080         0         0         0         0  533060704
## 182   757993664         0         0         0         0  551798400
## 183   776705712         0         0         0         0  571316528
## 184   796956640         0         0         0         0  593051376
## 185   819416960         0         0         0         0  615918400
## 186   827474096         0         0         0         0  640969168
## 187   832720944         0         0         0         0  669914768
## 188   845944320         0         0         0         0  696053744
## 189   861662880         0         0         0         0  725358416
## 190   883287808         0         0         0         0  743835968
## 191   904802816         0         0         0         0  758880352
## 192   927867696         0         0         0         0  771905872
## 193   951724000         0         0         0         0  787745344
## 194   977522224         0         0         0         0  800191952
## 195  1005797312         0         0         0         0  804746304
## 196  1033892864         0         0         0         0  822128320
## 197  1065073504         0         0         0         0  847226720
## 198  1097796688         0         0         0         0  878033632
## 199  1133560992         0         0         0         0  904872432
## 200  1166606608   1626816    549600    212512      3664  933535904
## 201  1199732832   3173024   1271408    447008      7328  966980896
## 202  1237347456   5111280   2029856    714480     10992 1001510432
## 203  1276292112   7177776   2861584   1025920     14656 1034068736
## 204  1316031856   8962144   3678656   1363008     18320 1068572624
## 205  1356321200  10625600   4605648   1674448     21984 1107678496
## 206  1398673376  12043568   5503328   2015200     25648 1151063920
## 207  1448906816  14362880   6657488   2388928     29312 1189916976
## 208  1504801136  16312128   7947216   2707696     32976 1231998016
## 209  1556880067  18367246   9313888   3074096     36640 1274386413
## 210  1605745641  20623913  10673232   3506448     69616 1323556934
## 211  1659352499  22957554  12058224   3935136     73280 1372356439
## 212  1719328349  25518334  13542144   4429776     73280 1423629026
## 213  1778071252  28049860  15220256   4961056     73280 1478942084
## 214  1842395061  30321243  17077904   5565616     84272 1539310154
## 215  1913415511  32977287  19503472   6360704    164880 1601872365
## 216  1991032525  35637024  22145216   7456240    366400 1674389725
## 217  2077426502  38582107  25329232   8789936    593568 1743319463
## 218  2174443740  41820192  28432640  10240880    872032 1820925494
## 219  2271180680  46135255  32613264  11761440   1176144 1907306627
## 220  2387947163  49728331  37464400  13369936   1542544 1999593652
## 221  2516405698  52921794  42443776  15084480   1941920 2084102608
## 222  2661121909  56459673  47818864  16828306   2322976 2168806008
## 223  2816079168  60143963  53241584  18934869   2693040 2256095819
## 224  2988744760  63073261  58920784  20535858   3004480 2335918957
## 225  3169798252  65966246  63156368  22554603   3341568 2416679427
## 226  3367544027  68765013  66908304  24551131   3674992 2504920673
## 227  3562372894  71676044  70711536  26448658   4015744 2590661482
## 228  3761886509  75111588  74148368  28840519   4455424 2670138396
## 229  3964632755  78920604  77717104  31133287   4902432 2755007463
## 230  4178544341  82309203  81461712  33502702   5367760 2826721703
## 231  4384640165  86314795  85100064  35531026   5803776 2896110784
## 232  4593238293  90781684  88925280  37401593   6239792 2958368154
## 233  4796672984  95636582  92831104  38773650   6510928 3016637130
## 234  4994339778  99488683  96333888  40325682   6844352 3073945976
## 235  5194270778 103405249 100404592  41921538   7284032 3136310706
## 236  5383382980 107065551 104651168  43678466   7742032 3198321228
## 237  5572890583 111092468 108000064  45435250   8178048 3258016805
## 238  5770347980 114549106 112843872  47309139   8614064 3315442844
## 239  5995232826 117996117 116599472  49160899   9050080 3370964666
## 240  6227127874 121825549 121817008  50928243   9475104 3428471009
## 241  6468592871 125962579 126704784  52977696   9801200 3486184502
## 242  6718919795 131068563 131079600  55041787  10065008 3543631594
## 243  6960737621 136044170 134098736  57080212  10196912 3601027308
## 244  7214971669 141479952 138242720  59121932  10680560 3660872800
## 245  7482803856 147295450 142536928  61181952  11134896 3720148927
## 246  7738251852 154265618 146966704  63263935  11475648 3783342950
## 247  8006310574 161785177 152382096  65367880  12677440 3841475660
## 248  8282946544 169521489 157075680  67471804  13890224 3900192735
## 249  8583123105 178039061 162164976  69594027  15128656 3956049709
## 250  8895049164 188172878 167693952  71785845  16315792 4010774690
## 251  9208941158 198500144 174058320  74149198  17458960 4066456980
## 252  9542948274 209446827 182170416  75709828  18583808 4123098293
## 253  9880927507 220398955 191235152  77248166  19624384 4180322647
## 254 10235213162 232545124 202688816  78804517  20653968 4236765987
## 255 10604177295 244480318 213662496  80393536  21672560 4290609298
## 256 10964456534 256273974 225665760  82132592  22687488 4344282049
## 257 11332590137 268425285 239779488  83889462  23750048 4397098526
## 258 11669080256 280413101 254680976  85825169  24845584 4447821622
## 259 11966328397 293356585 270230992  87820517  25889824 4494974861
## 260 12250205887 306406886 286158400  90215872  26926736 4547902135
## 261 12534800636 321293489 301803680  92175647  27974640 4596872092
## 262 12814071919 337069239 301803680  94419997  29180096 4643275658
## 263 13066754630 352322537 301803680  96322152  30268304 4688044655
## 264 13321950369 370481468 301803680  98297939  31470096 4731270361
## 265 13593677569 391194906 318100566 100295158  32703337 4774655918
## 266 13854663465 413145633 335588441 102325938  33944549 4817223936
## 267 14136085452 436284059 353794293 104379605  35288300 4858725461
##     Switzerland      Syria     Taiwan Tajikistan  Tanzania   Thailand
## 1             0          0          0          0         0          0
## 2             0          0          0          0         0          0
## 3             0          0          0          0         0          0
## 4             0          0          0          0         0          0
## 5             0          0          0          0         0          0
## 6             0          0          0          0         0          0
## 7             0          0          0          0         0          0
## 8             0          0          0          0         0          0
## 9             0          0          0          0         0          0
## 10            0          0          0          0         0          0
## 11            0          0          0          0         0          0
## 12            0          0          0          0         0          0
## 13            0          0          0          0         0          0
## 14            0          0          0          0         0          0
## 15            0          0          0          0         0          0
## 16            0          0          0          0         0          0
## 17            0          0          0          0         0          0
## 18            0          0          0          0         0          0
## 19            0          0          0          0         0          0
## 20            0          0          0          0         0          0
## 21            0          0          0          0         0          0
## 22            0          0          0          0         0          0
## 23            0          0          0          0         0          0
## 24            0          0          0          0         0          0
## 25            0          0          0          0         0          0
## 26            0          0          0          0         0          0
## 27            0          0          0          0         0          0
## 28            0          0          0          0         0          0
## 29            0          0          0          0         0          0
## 30            0          0          0          0         0          0
## 31            0          0          0          0         0          0
## 32            0          0          0          0         0          0
## 33            0          0          0          0         0          0
## 34            0          0          0          0         0          0
## 35            0          0          0          0         0          0
## 36            0          0          0          0         0          0
## 37            0          0          0          0         0          0
## 38            0          0          0          0         0          0
## 39            0          0          0          0         0          0
## 40            0          0          0          0         0          0
## 41            0          0          0          0         0          0
## 42            0          0          0          0         0          0
## 43            0          0          0          0         0          0
## 44            0          0          0          0         0          0
## 45            0          0          0          0         0          0
## 46            0          0          0          0         0          0
## 47            0          0          0          0         0          0
## 48            0          0          0          0         0          0
## 49            0          0          0          0         0          0
## 50            0          0          0          0         0          0
## 51            0          0          0          0         0          0
## 52            0          0          0          0         0          0
## 53            0          0          0          0         0          0
## 54            0          0          0          0         0          0
## 55            0          0          0          0         0          0
## 56            0          0          0          0         0          0
## 57            0          0          0          0         0          0
## 58            0          0          0          0         0          0
## 59            0          0          0          0         0          0
## 60            0          0          0          0         0          0
## 61            0          0          0          0         0          0
## 62            0          0          0          0         0          0
## 63            0          0          0          0         0          0
## 64            0          0          0          0         0          0
## 65            0          0          0          0         0          0
## 66            0          0          0          0         0          0
## 67            0          0          0          0         0          0
## 68            0          0          0          0         0          0
## 69            0          0          0          0         0          0
## 70            0          0          0          0         0          0
## 71            0          0          0          0         0          0
## 72            0          0          0          0         0          0
## 73            0          0          0          0         0          0
## 74            0          0          0          0         0          0
## 75            0          0          0          0         0          0
## 76            0          0          0          0         0          0
## 77            0          0          0          0         0          0
## 78            0          0          0          0         0          0
## 79            0          0          0          0         0          0
## 80            0          0          0          0         0          0
## 81            0          0          0          0         0          0
## 82            0          0          0          0         0          0
## 83            0          0          0          0         0          0
## 84            0          0          0          0         0          0
## 85            0          0          0          0         0          0
## 86            0          0          0          0         0          0
## 87            0          0          0          0         0          0
## 88            0          0          0          0         0          0
## 89            0          0          0          0         0          0
## 90            0          0          0          0         0          0
## 91            0          0          0          0         0          0
## 92            0          0          0          0         0          0
## 93            0          0          0          0         0          0
## 94            0          0          0          0         0          0
## 95            0          0          0          0         0          0
## 96            0          0          0          0         0          0
## 97            0          0          0          0         0          0
## 98            0          0          0          0         0          0
## 99            0          0          0          0         0          0
## 100           0          0          0          0         0          0
## 101           0          0          0          0         0          0
## 102           0          0          0          0         0          0
## 103           0          0          0          0         0          0
## 104           0          0          0          0         0          0
## 105           0          0          0          0         0          0
## 106           0          0          0          0         0          0
## 107           0          0          0          0         0          0
## 108      146560          0          0          0         0          0
## 109      351744          0          0          0         0          0
## 110      655856          0          0          0         0          0
## 111     1080880          0          0          0         0          0
## 112     1549872          0          0          0         0          0
## 113     2018864          0          0          0         0          0
## 114     2590448          0          0          0         0          0
## 115     3286608          0          0          0         0          0
## 116     3975440          0          0          0         0          0
## 117     4649616          0          0          0         0          0
## 118     5419056          0          0          0         0          0
## 119     6162848          0          0          0         0          0
## 120     7060528          0          0          0         0          0
## 121     8170720          0          0          0         0          0
## 122     9445792          0          0          0         0          0
## 123    10684224          0          0          0         0          0
## 124    11853040          0          0          0         0          0
## 125    13131776          0          0          0         0          0
## 126    14626688          0          0          0         0          0
## 127    16044656          0          0          0         0          0
## 128    17400336          0          0          0         0          0
## 129    18847616          0          0          0         0          0
## 130    20518400          0          0          0         0          0
## 131    22082928          0          0          0         0          0
## 132    23812336          0          0          0         0          0
## 133    25724944          0          0          0         0          0
## 134    27688848          0          0          0         0          0
## 135    29733360          0          0          0         0          0
## 136    31818176          0          0          0         0          0
## 137    34075200          0          0          0         0          0
## 138    36379856          0          0          0         0          0
## 139    38922672          0          0          0         0          0
## 140    41798912          0          0          0         0          0
## 141    45320016          0          0          0         0          0
## 142    48789824          0          0          0         0          0
## 143    51666064          0          0          0         0          0
## 144    55249456          0          0          0         0          0
## 145    59096656          0          0          0         0          0
## 146    63306592          0       3664          0         0          0
## 147    67747360          0      54960          0         0          0
## 148    72495904          0     168544          0         0          0
## 149    77618176          0     249152          0         0          0
## 150    83293712          0     359072          0         0          0
## 151    88478272          0     534944          0         0          0
## 152    93714128          0     791424          0         0          0
## 153    99386000          0    1007600          0         0          0
## 154   105347328          0    1227440          0         0          0
## 155   111587120          0    1480256          0         0          0
## 156   118482768          0    1755056          0         0          0
## 157   126481280          0    2114128          0         0          0
## 158   134487120          0    2524496          0         0          0
## 159   142555248          0    3011808          0         0          0
## 160   150344912          0    3627360          0         0          0
## 161   158955312          0    4305200          0         0          0
## 162   167715936          0    5045328          0         0          0
## 163   176967536          0    5899040          0         0          0
## 164   185394736          0    6818704          0         0          0
## 165   194320240          0    7833632          0         0          0
## 166   202802400          0    9218624          0         0          0
## 167   208910288          0   11017648          0         0          0
## 168   214655440          0   13161088          0         0          0
## 169   219261088          0   16070304          0         0          0
## 170   226493824          0   19115088          0         0          0
## 171   230960240          0   21870416          0         0          0
## 172   237112096          0   25442816          0         0          0
## 173   244777184          0   29275360          0         0          0
## 174   252009920          0   33269120          0         0          0
## 175   259546768          0   37757520          0         0          0
## 176   267003008          0   42509728          0         0          0
## 177   275598752          0   47437808          0         0          0
## 178   284564560          0   51640416          0         0          0
## 179   294831088          0   55832032          0         0          0
## 180   304390464          0   60074944          0         0          0
## 181   314488448       3664   63848864          0         0      29312
## 182   324714672      14656   67443248          0         0      54960
## 183   334281376      29312   71638528          0         0      76944
## 184   343837088      40304   75811824          0         0     102592
## 185   353312192      54960   80175648          0         0     128240
## 186   363234304      84272   84909536          0         0     157552
## 187   373698688     146560   90160048          0         0     194192
## 188   384159408     208848   96059088          0         0     234496
## 189   396019776     267472  103240528          0         0     282128
## 190   404333392     289456  111008208          0         0     340752
## 191   410961568     311440  118944432          0         0     399376
## 192   416801984     366400  125363760          0         0     399376
## 193   422975824     403040  131790416          0         0     432352
## 194   427427584     421360  136421712          0         0     447008
## 195   429050736     439680  138609120          0         0     447008
## 196   434817872     461664  141470704          0         0     447008
## 197   444267328     487312  145090736          0         0     476320
## 198   454482560     512960  149630432          0         0     516624
## 199   463016016     542272  154104176          0         0     578912
## 200   473253232     956304  157889088          0         0    1535216
## 201   485556944    1337360  162798848          0         0    2627088
## 202   496787104    1813680  169192528          0         0    3905824
## 203   507126912    2326640  175666816          0         0    5550960
## 204   519727408    2905552  182155760          0         0    7602800
## 205   533350160    4550688  189355520          0         0    9977072
## 206   550417072    6554896  197042592          0         0   12596832
## 207   568117856    8537120  205227968          0         0   15520704
## 208   584408000   10706208  214802000          0         0   18539840
## 209   601006066   12932107  225793355    3007314         0   21861038
## 210   620500929   16150802  237667259    6138271         0   25570530
## 211   640858208   19211737  250195711    9367023         0   29711245
## 212   664977910   22411606  264360515   12755641         0   34738025
## 213   694044607   26017883  279469116   16389705         0   40299629
## 214   722170318   30379151  296376295   20254515         0   47769910
## 215   752499252   34051409  314221101   24354244         0   55210106
## 216   783984851   38962337  333682691   28683675         0   64675543
## 217   816504292   43565549  355652606   33210684         0   76825683
## 218   852485619   49519498  379793222   37864844         0   93901346
## 219   890532580   56752124  406084220   42711858         0  108441373
## 220   930776902   63402055  434818244   47809939   1765365  123793916
## 221   972664840   72276243  466293603   53222473   4226859  143015020
## 222  1015580614   80032524  502166098   58919790   6391332  164820500
## 223  1061783046   87917698  542412488   64860493   9574071  189240739
## 224  1103209819   97572109  581724260   71030364  11877538  213451269
## 225  1142260910  108743298  625181154   77518885  14159140  237822776
## 226  1182697979  122480441  681234868   84255436  16945109  266538963
## 227  1223735696  137112791  742251183   91219420  18952731  298603851
## 228  1265905539  152294186  813087347   98420680  21150055  333550819
## 229  1305770003  174778777  888586558  105679767  23212845  370137297
## 230  1346260011  195505465  971705922  113222921  25086506  410093530
## 231  1385071729  222040081 1046272877  120623095  27193331  447910303
## 232  1421656771  246404540 1121126886  128163103  29341631  485545886
## 233  1461678831  274179063 1203594224  135810769  31537935  527663190
## 234  1500806728  307028048 1287733770  143526894  33884918  573218937
## 235  1540586727  336417425 1371651271  151848619  36222818  621449307
## 236  1582832312  367490643 1465062237  160192015  38500411  670672678
## 237  1623036452  403433484 1562185652  168886216  40867920  726978844
## 238  1663697619  440112601 1674003537  177818555  43139606  793181716
## 239  1703115236  474383853 1795695663  186562638  45301205  870965960
## 240  1747277176  511429112 1917600955  194759764  47518430  960356063
## 241  1793417340  553629851 2050605878  202663479  49867225 1058721657
## 242  1839432832  596190910 2193951576  209958103  52142406 1166798371
## 243  1883037512  641412607 2348787075  215119498  54688388 1289664316
## 244  1925716081  687602423 2510608674  217466944  57063424 1426508530
## 245  1969130142  728802573 2682720206  219909832  60559694 1584965599
## 246  2013228608  771124850 2863062137  222732317  63951878 1762230010
## 247  2056263623  811555618 3057366630  224881238  66774861 1945275945
## 248  2100875970  861302148 3255219793  227375647  69256354 2107827592
## 249  2145317680  913073571 3460442055  229891193  71714234 2281958609
## 250  2188929597  963555066 3677627781  232123267  74285181 2461222599
## 251  2234005394 1011695758 3903838319  234408756  77324788 2653599878
## 252  2277463921 1050134339 4139572106  236281690  80811751 2859375911
## 253  2322108023 1103715711 4384078578  238343882  84497978 3081292353
## 254  2367336307 1154100337 4642534191  240891157  88729634 3321534057
## 255  2413116145 1203981165 4899642287  243312326  94089739 3565837997
## 256  2458481773 1256821551 5164449755  245946465  99968732 3814457992
## 257  2501841600 1322540031 5439986357  249150758 105679021 4063624102
## 258  2546548288 1389417427 5699348306  252036071 111616430 4313215121
## 259  2590076356 1450979644 5945804488  254470762 117310356 4577965420
## 260  2635121458 1511696046 6213679908  256988525 124150963 4857393934
## 261  2676101148 1567835396 6480615828  259308560 131957981 5133229900
## 262  2718352048 1611625452 6736620011  262214852 141196063 5426894330
## 263  2761535958 1647434427 6994924930  265651911 152108072 5723797325
## 264  2800773709 1677546449 7257077088  270712598 163349359 6036983816
## 265  2839512256 1706471690 7515964663  276172800 175802862 6357557824
## 266  2878717170 1734471087 7779440605  281751836 189407554 6682391958
## 267  2918791195 1762385573 8050965637  287463210 203638082 7013231542
##       Timor     Togo   Tonga Trinidad.and.Tobago   Tunisia     Turkey
## 1         0        0       0                   0         0          0
## 2         0        0       0                   0         0          0
## 3         0        0       0                   0         0          0
## 4         0        0       0                   0         0          0
## 5         0        0       0                   0         0          0
## 6         0        0       0                   0         0          0
## 7         0        0       0                   0         0          0
## 8         0        0       0                   0         0          0
## 9         0        0       0                   0         0          0
## 10        0        0       0                   0         0          0
## 11        0        0       0                   0         0          0
## 12        0        0       0                   0         0          0
## 13        0        0       0                   0         0          0
## 14        0        0       0                   0         0          0
## 15        0        0       0                   0         0          0
## 16        0        0       0                   0         0          0
## 17        0        0       0                   0         0          0
## 18        0        0       0                   0         0          0
## 19        0        0       0                   0         0          0
## 20        0        0       0                   0         0          0
## 21        0        0       0                   0         0          0
## 22        0        0       0                   0         0          0
## 23        0        0       0                   0         0          0
## 24        0        0       0                   0         0          0
## 25        0        0       0                   0         0          0
## 26        0        0       0                   0         0          0
## 27        0        0       0                   0         0          0
## 28        0        0       0                   0         0          0
## 29        0        0       0                   0         0          0
## 30        0        0       0                   0         0          0
## 31        0        0       0                   0         0          0
## 32        0        0       0                   0         0          0
## 33        0        0       0                   0         0          0
## 34        0        0       0                   0         0          0
## 35        0        0       0                   0         0          0
## 36        0        0       0                   0         0          0
## 37        0        0       0                   0         0          0
## 38        0        0       0                   0         0          0
## 39        0        0       0                   0         0          0
## 40        0        0       0                   0         0          0
## 41        0        0       0                   0         0          0
## 42        0        0       0                   0         0          0
## 43        0        0       0                   0         0          0
## 44        0        0       0                   0         0          0
## 45        0        0       0                   0         0          0
## 46        0        0       0                   0         0          0
## 47        0        0       0                   0         0          0
## 48        0        0       0                   0         0          0
## 49        0        0       0                   0         0          0
## 50        0        0       0                   0         0          0
## 51        0        0       0                   0         0          0
## 52        0        0       0                   0         0          0
## 53        0        0       0                   0         0          0
## 54        0        0       0                   0         0          0
## 55        0        0       0                   0         0          0
## 56        0        0       0                   0         0          0
## 57        0        0       0                   0         0          0
## 58        0        0       0                   0         0          0
## 59        0        0       0                   0         0          0
## 60        0        0       0                   0         0          0
## 61        0        0       0                   0         0          0
## 62        0        0       0                   0         0          0
## 63        0        0       0                   0         0          0
## 64        0        0       0                   0         0          0
## 65        0        0       0                   0         0          0
## 66        0        0       0                   0         0          0
## 67        0        0       0                   0         0          0
## 68        0        0       0                   0         0          0
## 69        0        0       0                   0         0          0
## 70        0        0       0                   0         0          0
## 71        0        0       0                   0         0          0
## 72        0        0       0                   0         0          0
## 73        0        0       0                   0         0          0
## 74        0        0       0                   0         0          0
## 75        0        0       0                   0         0          0
## 76        0        0       0                   0         0          0
## 77        0        0       0                   0         0          0
## 78        0        0       0                   0         0          0
## 79        0        0       0                   0         0          0
## 80        0        0       0                   0         0          0
## 81        0        0       0                   0         0          0
## 82        0        0       0                   0         0          0
## 83        0        0       0                   0         0          0
## 84        0        0       0                   0         0          0
## 85        0        0       0                   0         0          0
## 86        0        0       0                   0         0          0
## 87        0        0       0                   0         0          0
## 88        0        0       0                   0         0          0
## 89        0        0       0                   0         0          0
## 90        0        0       0                   0         0          0
## 91        0        0       0                   0         0          0
## 92        0        0       0                   0         0          0
## 93        0        0       0                   0         0          0
## 94        0        0       0                   0         0          0
## 95        0        0       0                   0         0          0
## 96        0        0       0                   0         0          0
## 97        0        0       0                   0         0          0
## 98        0        0       0                   0         0          0
## 99        0        0       0                   0         0          0
## 100       0        0       0                   0         0          0
## 101       0        0       0                   0         0          0
## 102       0        0       0                   0         0          0
## 103       0        0       0                   0         0          0
## 104       0        0       0                   0         0          0
## 105       0        0       0                   0         0          0
## 106       0        0       0                   0         0          0
## 107       0        0       0                   0         0          0
## 108       0        0       0                   0         0          0
## 109       0        0       0                   0         0          0
## 110       0        0       0                   0         0          0
## 111       0        0       0                   0         0          0
## 112       0        0       0                   0         0          0
## 113       0        0       0                   0         0          0
## 114       0        0       0                   0         0          0
## 115       0        0       0                   0         0     150224
## 116       0        0       0                   0         0     359072
## 117       0        0       0                   0         0     586240
## 118       0        0       0                   0         0     762112
## 119       0        0       0                   0         0    1029584
## 120       0        0       0                   0         0    1187136
## 121       0        0       0                   0         0    1384992
## 122       0        0       0                   0         0    1630480
## 123       0        0       0                   0         0    1868640
## 124       0        0       0                   0         0    2125120
## 125       0        0       0                   0         0    2476864
## 126       0        0       0                   0         0    2751664
## 127       0        0       0                   0         0    3198672
## 128       0        0       0                   0         0    3524768
## 129       0        0       0                   0         0    3649344
## 130       0        0       0                   0         0    3788576
## 131       0        0       0                   0         0    3971776
## 132       0        0       0                   0         0    4125664
## 133       0        0       0                   0         0    4286880
## 134       0        0       0                   0         0    4462752
## 135       0        0       0                   0         0    4656944
## 136       0        0       0                   0         0    4792512
## 137       0        0       0                   0         0    5038000
## 138       0        0       0                   0         0    5305472
## 139       0        0       0                   0         0    5708512
## 140       0        0       0                   0         0    6074912
## 141       0        0       0                   0         0    6477952
## 142       0        0       0                   0         0    6888320
## 143       0        0       0                   0         0    7313344
## 144       0        0       0                   0         0    7705392
## 145       0        0       0                   0         0    8079120
## 146       0        0       0                   0         0    8522464
## 147       0        0       0                   0         0    8837568
## 148       0        0       0                   0         0    9361520
## 149       0        0       0                   0         0   10032032
## 150       0        0       0                   0         0   11068944
## 151       0        0       0                   0         0   12017920
## 152       0        0       0                   0         0   13065824
## 153       0        0       0                   0         0   14271280
## 154       0        0       0                   0         0   15637952
## 155       0        0       0                   0         0   17169504
## 156       0        0       0                   0         0   18748688
## 157       0        0       0                   0         0   20628320
## 158       0        0       0                   0         0   22350400
## 159       0        0       0               25648         0   24306976
## 160       0        0       0               91600         0   26190272
## 161       0        0       0              216176         0   28417984
## 162       0        0       0              414032         0   30414864
## 163       0        0       0              637536         0   32452048
## 164       0        0       0              926992         0   34115504
## 165       0        0       0             1260416         0   35152416
## 166       0        0       0             1674448     10992   35665376
## 167       0        0       0             2202064     40304   36057424
## 168       0        0       0             2971504     80608   36515424
## 169       0        0       0             3620032     80608   37453408
## 170       0        0       0             4488400    109920   38856720
## 171       0        0       0             5488672    131904   39699440
## 172       0        0       0             6470624    131904   40710704
## 173       0        0       0             7679744    131904   42183632
## 174       0        0       0             9335872    131904   44634848
## 175       0        0       0            11281456    131904   47001792
## 176       0        0       0            13241696    131904   50009936
## 177       0        0       0            15341168    131904   53289216
## 178       0        0       0            18572816    131904   56414608
## 179       0        0       0            22167200    131904   59965024
## 180       0        0       0            25812880    131904   63936800
## 181       0        0       0            28886976    131904   67875600
## 182       0        0       0            32140608    131904   71876688
## 183       0        0       0            36207648    150224   76540960
## 184       0        0       0            40985504    168544   82333744
## 185       0        0       0            46074800    186864   88269424
## 186       0        0       0            51816288    212512   94135488
## 187       0        0       0            59063680    241824   98382064
## 188       0        0       0            67402944    274800  103017024
## 189       0        0       0            76856064    307776  107923120
## 190       0        0       0            87591584    366400  113393472
## 191       0        0       0            97491712    501968  119014048
## 192       0        0       0           108157616    663184  123960448
## 193       0        0       0           118431472    714480  130079328
## 194       0        0       0           129203632    806080  137103216
## 195       0        0       0           140224944    901344  144193056
## 196       0        0       0           151161984   1033248  151216944
## 197       0        0       0           163165248   1161488  158695168
## 198       0        0       0           175806048   1308048  166396896
## 199       0        0       0           189557040   1436288  174366096
## 200       0    25648    7328           191909328   2656400  183855856
## 201       0    51296   14656           194422832   4034064  194041776
## 202       0    95264   21984           197218464   5477680  204517152
## 203       0   124576   29312           200153328   6855344  217484048
## 204       0   157552   36640           202989264   8262320  230919936
## 205       0   197856   43968           205711616   9859824  244542688
## 206       0   238160   51296           208591520  11420688  258905568
## 207       0   285792   58624           211156320  12996208  274880608
## 208       0   333424   65952           214633456  14443488  290921600
## 209       0   388384   73280           217725159  16031881  308113403
## 210       0   454336   84272           220303902  17755991  324911940
## 211       0   545936   95264           224901835  19520701  342252778
## 212       0   633872  106256           232133918  21314605  363857324
## 213       0   740128  117248           233441312  23258733  386497266
## 214       0   872032  128240           237232839  26012219  412800228
## 215       0  1003936  139232           242423954  28472585  440153183
## 216       0  1183472  150224           246475476  31354221  471658944
## 217       0  1381328  164880           251109664  34437407  505138056
## 218       0  1575520  179536           255146530  38029741  541403541
## 219       0  1817344  190528           259047709  41881832  580156237
## 220       0  2092144  216176           268038066  45620577  622735465
## 221       0  2407248  234496           276134466  49828166  670373632
## 222       0  2812109  256480           284369979  54559528  724095483
## 223       0  3223615  282128           293759800  59382906  783405513
## 224       0  3613884  304112           303801844  64774145  844334197
## 225       0  3925324  337088           313415140  70315280  909753585
## 226       0  4247756  366400           329325958  76156699  983113066
## 227       0  4709420  395712           345485219  82905383 1064233895
## 228       0  5064828  432352           360797083  90383329 1140947908
## 229       0  6446156  472656           377504162  99133591 1215985891
## 230       0  7239453  512960           394423595 108598917 1291198305
## 231       0  7944749  560592           411665977 118399076 1370384479
## 232       0  8761360  604560           430071214 127891946 1456594746
## 233       0  9383835  652192           446346759 139141695 1546407100
## 234       0 10077136  699824           463851168 150630220 1641313343
## 235       0 10734547  747456           484574249 162501157 1746975993
## 236       0 11580380  795088           501929098 174493533 1862594227
## 237       0 12503002  850048           519418165 186156880 1991036792
## 238       0 13463909  919664           535251270 198533724 2115764753
## 239       0 14485302  989280           551356291 211674149 2253335205
## 240       0 15457976 1066224           568338816 224841576 2399842404
## 241       0 16506443 1161488           585307140 240204429 2553380422
## 242       0 17537113 1231104           604411312 255096229 2712446269
## 243       0 18606036 1315376           622332395 271450148 2879748135
## 244       0 19610956 1406976           639718365 287226261 3043531307
## 245       0 20785697 1502240           656687852 302778742 3221841559
## 246       0 22050868 1579184           677217991 319359587 3417592262
## 247       0 22929854 1678112           695550463 336125735 3625615262
## 248       0 24219821 1766048           714609101 353934272 3833657566
## 249       0 26070255 1875968           737085874 372054505 4037606593
## 250       0 27401627 1971232           760851948 391724829 4263636436
## 251       0 28560540 2059168           787132530 412270103 4473165581
## 252  161216 29883011 2161760           815671827 432828731 4690818493
## 253  322432 31687742 2279008           847570562 453754178 4923781512
## 254  498304 33431671 2388928           880910528 475680759 5165690733
## 255  674176 35153262 2502512           918970774 497949443 5426588688
## 256  853712 36653768 2630752           961531423 520551936 5708130407
## 257 1036912 38170520 2744336          1006880624 544236285 6020992905
## 258 1238432 39693298 2865248          1051133031 568569703 6331389600
## 259 1465600 42434136 2997152          1095901990 592891310 6648160632
## 260 1700096 45033498 3114400          1143714324 619993841 6967689032
## 261 1945584 47541082 3216992          1190521282 645518173 7312434527
## 262 2238704 49833655 3323248          1235831750 671824580 7666569292
## 263 2678384 52069775 3436832          1282247280 698690081 8013350257
## 264 3147376 54289513 3557744          1328390553 726582118 8370910218
## 265 3659175 56929815 3689692          1374075573 752986787 8751768314
## 266 4176839 59681972 3823152          1415099191 779894477 9154589098
## 267 4729566 62673116 3965652          1455796378 808028626 9602486274
##     Turkmenistan Turks.and.Caicos.Islands Tuvalu   Uganda     Ukraine
## 1              0                        0      0        0           0
## 2              0                        0      0        0           0
## 3              0                        0      0        0           0
## 4              0                        0      0        0           0
## 5              0                        0      0        0           0
## 6              0                        0      0        0           0
## 7              0                        0      0        0           0
## 8              0                        0      0        0           0
## 9              0                        0      0        0           0
## 10             0                        0      0        0           0
## 11             0                        0      0        0           0
## 12             0                        0      0        0           0
## 13             0                        0      0        0           0
## 14             0                        0      0        0           0
## 15             0                        0      0        0           0
## 16             0                        0      0        0           0
## 17             0                        0      0        0           0
## 18             0                        0      0        0           0
## 19             0                        0      0        0           0
## 20             0                        0      0        0           0
## 21             0                        0      0        0           0
## 22             0                        0      0        0           0
## 23             0                        0      0        0           0
## 24             0                        0      0        0           0
## 25             0                        0      0        0           0
## 26             0                        0      0        0           0
## 27             0                        0      0        0           0
## 28             0                        0      0        0           0
## 29             0                        0      0        0           0
## 30             0                        0      0        0           0
## 31             0                        0      0        0           0
## 32             0                        0      0        0           0
## 33             0                        0      0        0           0
## 34             0                        0      0        0           0
## 35             0                        0      0        0           0
## 36             0                        0      0        0           0
## 37             0                        0      0        0           0
## 38             0                        0      0        0           0
## 39             0                        0      0        0           0
## 40             0                        0      0        0           0
## 41             0                        0      0        0           0
## 42             0                        0      0        0           0
## 43             0                        0      0        0           0
## 44             0                        0      0        0           0
## 45             0                        0      0        0           0
## 46             0                        0      0        0           0
## 47             0                        0      0        0           0
## 48             0                        0      0        0           0
## 49             0                        0      0        0           0
## 50             0                        0      0        0           0
## 51             0                        0      0        0           0
## 52             0                        0      0        0           0
## 53             0                        0      0        0           0
## 54             0                        0      0        0           0
## 55             0                        0      0        0           0
## 56             0                        0      0        0           0
## 57             0                        0      0        0           0
## 58             0                        0      0        0           0
## 59             0                        0      0        0           0
## 60             0                        0      0        0           0
## 61             0                        0      0        0           0
## 62             0                        0      0        0           0
## 63             0                        0      0        0           0
## 64             0                        0      0        0           0
## 65             0                        0      0        0           0
## 66             0                        0      0        0           0
## 67             0                        0      0        0           0
## 68             0                        0      0        0           0
## 69             0                        0      0        0           0
## 70             0                        0      0        0           0
## 71             0                        0      0        0           0
## 72             0                        0      0        0           0
## 73             0                        0      0        0           0
## 74             0                        0      0        0           0
## 75             0                        0      0        0           0
## 76             0                        0      0        0           0
## 77             0                        0      0        0           0
## 78             0                        0      0        0           0
## 79             0                        0      0        0           0
## 80             0                        0      0        0           0
## 81             0                        0      0        0           0
## 82             0                        0      0        0           0
## 83             0                        0      0        0           0
## 84             0                        0      0        0           0
## 85             0                        0      0        0           0
## 86             0                        0      0        0           0
## 87             0                        0      0        0           0
## 88             0                        0      0        0           0
## 89             0                        0      0        0           0
## 90             0                        0      0        0           0
## 91             0                        0      0        0           0
## 92             0                        0      0        0           0
## 93             0                        0      0        0           0
## 94             0                        0      0        0           0
## 95             0                        0      0        0           0
## 96             0                        0      0        0           0
## 97             0                        0      0        0           0
## 98             0                        0      0        0           0
## 99             0                        0      0        0           0
## 100            0                        0      0        0           0
## 101            0                        0      0        0           0
## 102            0                        0      0        0           0
## 103            0                        0      0        0           0
## 104            0                        0      0        0           0
## 105            0                        0      0        0           0
## 106            0                        0      0        0           0
## 107            0                        0      0        0           0
## 108            0                        0      0        0           0
## 109            0                        0      0        0           0
## 110            0                        0      0        0           0
## 111            0                        0      0        0           0
## 112            0                        0      0        0           0
## 113            0                        0      0        0           0
## 114            0                        0      0        0           0
## 115            0                        0      0        0           0
## 116            0                        0      0        0           0
## 117            0                        0      0        0           0
## 118            0                        0      0        0           0
## 119            0                        0      0        0           0
## 120            0                        0      0        0           0
## 121            0                        0      0        0           0
## 122            0                        0      0        0           0
## 123            0                        0      0        0           0
## 124            0                        0      0        0           0
## 125            0                        0      0        0           0
## 126            0                        0      0        0           0
## 127            0                        0      0        0           0
## 128            0                        0      0        0           0
## 129            0                        0      0        0           0
## 130            0                        0      0        0           0
## 131            0                        0      0        0           0
## 132            0                        0      0        0           0
## 133            0                        0      0        0           0
## 134            0                        0      0        0           0
## 135            0                        0      0        0           0
## 136            0                        0      0        0           0
## 137            0                        0      0        0           0
## 138            0                        0      0        0           0
## 139            0                        0      0        0           0
## 140            0                        0      0        0           0
## 141            0                        0      0        0           0
## 142            0                        0      0        0           0
## 143            0                        0      0        0           0
## 144            0                        0      0        0           0
## 145            0                        0      0        0           0
## 146            0                        0      0        0           0
## 147            0                        0      0        0           0
## 148            0                        0      0        0           0
## 149            0                        0      0        0           0
## 150            0                        0      0        0           0
## 151            0                        0      0        0           0
## 152            0                        0      0        0           0
## 153            0                        0      0        0           0
## 154            0                        0      0        0           0
## 155            0                        0      0        0           0
## 156            0                        0      0        0           0
## 157            0                        0      0        0           0
## 158            0                        0      0        0           0
## 159            0                        0      0        0           0
## 160            0                        0      0        0           0
## 161            0                        0      0        0           0
## 162            0                        0      0        0           0
## 163            0                        0      0        0           0
## 164            0                        0      0        0           0
## 165            0                        0      0        0           0
## 166            0                        0      0        0           0
## 167            0                        0      0        0           0
## 168            0                        0      0        0           0
## 169            0                        0      0        0           0
## 170            0                        0      0        0           0
## 171            0                        0      0        0           0
## 172            0                        0      0        0           0
## 173            0                        0      0        0           0
## 174            0                        0      0        0           0
## 175            0                        0      0        0           0
## 176            0                        0      0        0           0
## 177            0                        0      0        0           0
## 178            0                        0      0        0           0
## 179            0                        0      0        0           0
## 180            0                        0      0        0           0
## 181            0                        0      0        0           0
## 182            0                        0      0        0           0
## 183            0                        0      0        0           0
## 184            0                        0      0        0           0
## 185            0                        0      0        0           0
## 186            0                        0      0        0           0
## 187            0                        0      0        0           0
## 188            0                        0      0        0           0
## 189            0                        0      0        0           0
## 190            0                        0      0        0           0
## 191            0                        0      0        0           0
## 192            0                        0      0        0           0
## 193            0                        0      0        0           0
## 194            0                        0      0        0           0
## 195            0                        0      0        0           0
## 196            0                        0      0        0           0
## 197            0                        0      0        0           0
## 198            0                        0      0        0           0
## 199            0                        0      0        0           0
## 200            0                        0      0   106256           0
## 201            0                        0      0   245488           0
## 202            0                        0      0   388384           0
## 203            0                        0      0   597232           0
## 204            0                        0      0   817072           0
## 205            0                        0      0  1080880           0
## 206            0                        0      0  1344688           0
## 207            0                        0      0  1623152           0
## 208            0                        0      0  1916272           0
## 209     13578842                        0      0  2329977   259196536
## 210     27716191                        0      0  2751040   529017008
## 211     42295291                        0      0  3157477   807235379
## 212     57596433                        0      0  3585927  1099196777
## 213     74005887                        0      0  4018071  1412293257
## 214     91457307                        0      0  4508750  1745254162
## 215    109969676                        0      0  5134759  2098417232
## 216    129519455                        0      0  5867083  2471328084
## 217    149961499                        0      0  6676263  2861230105
## 218    170977767                        0      0  7657591  3262060063
## 219    192864874                        0      0  8833021  3679486138
## 220    215885784                        0      0 10275865  4118506023
## 221    240323968                        0      0 11714985  4584381460
## 222    266045218                        0      0 13095629  5074543640
## 223    292862379                        0      0 14274873  5585387757
## 224    320710965                        0      0 15468713  6115657428
## 225    349994557                        0      0 16600502  6673021608
## 226    380396263                        0      0 17588933  7251803993
## 227    411823002                        0      0 18393783  7850219369
## 228    444319542                        0      0 19091925  8469167939
## 229    477076269                        0      0 19764744  9093234885
## 230    511113862                        0      0 20391053  9741834445
## 231    544500818                        0      0 20918393 10377977853
## 232    578515043                        0      0 21463694 11026149437
## 233    613009457                        0      0 22078172 11683439031
## 234    647807464                        0      0 22659550 12346506551
## 235    685334432                        0      0 23277445 13061701934
## 236    722953565                        0      0 23979971 13778633334
## 237    762151391                        0      0 24748888 14525725832
## 238    802419175                        0      0 25612465 15293265517
## 239    841832240                        0      0 26413672 16044501812
## 240    878773207                    29312   7328 27169538 16750334043
## 241    914391735                    58624  14656 27945419 17382872801
## 242    947292151                    91600  21984 28728596 17971935047
## 243    975483831                   131904  29312 29504413 18482136420
## 244   1008926371                   175872  36640 30208245 18901404055
## 245   1042858578                   223504  43968 31138207 19291269845
## 246   1073462302                   271136  51296 32174220 19642679712
## 247   1104018192                   326096  58624 33254320 19982923509
## 248   1136043146                   384720  65952 34488383 20303990728
## 249   1173648171                   450672  73280 35767815 20596302009
## 250   1211113763                   520288  80608 37162207 20875839852
## 251   1249113524                   593568  87936 38630288 21177140585
## 252   1289003135                   692496  98928 40138157 21471340564
## 253   1333523267                   795088 109920 41685516 21776524009
## 254   1379970352                   897680 120912 43366124 22082779438
## 255   1428201904                  1018592 131904 45470684 22396313137
## 256   1477574053                  1161488 139232 47939304 22729077849
## 257   1533464184                  1326368 150224 50754620 23065678945
## 258   1590129918                  1505904 161216 53806877 23391411721
## 259   1640300666                  1685440 172208 57053556 23668581623
## 260   1697409557                  1875968 179536 60818712 23962100434
## 261   1759591822                  2066496 186864 64886558 24269171598
## 262   1824124726                  2264352 197856 68747236 24572876666
## 263   1890498848                  2462208 208848 73392457 24868950727
## 264   1958527304                  2667392 219840 78380175 25125534326
## 265   2033906302                  2881595 231835 83704938 25349114024
## 266   2110469600                  3099955 243968 89276331 25584270039
## 267   2183172085                  3318276 256923 95059160 25796386297
##     United.Arab.Emirates United.Kingdom United.States   Uruguay Uzbekistan
## 1                      0        9350528             0         0          0
## 2                      0       18704720             0         0          0
## 3                      0       28058912             0         0          0
## 4                      0       37416768             0         0          0
## 5                      0       46778288             0         0          0
## 6                      0       56784672             0         0          0
## 7                      0       66794720             0         0          0
## 8                      0       76808432             0         0          0
## 9                      0       86825808             0         0          0
## 10                     0       96843184             0         0          0
## 11                     0      107816864             0         0          0
## 12                     0      118794208             0         0          0
## 13                     0      129775216             0         0          0
## 14                     0      140759888             0         0          0
## 15                     0      151748224             0         0          0
## 16                     0      164007968             0         0          0
## 17                     0      176271376             0         0          0
## 18                     0      188538448             0         0          0
## 19                     0      200809184             0         0          0
## 20                     0      213083584             0         0          0
## 21                     0      226695344             0         0          0
## 22                     0      240310768             0         0          0
## 23                     0      253929856             0         0          0
## 24                     0      267552608             0         0          0
## 25                     0      281179024             0         0          0
## 26                     0      296216080             0         0          0
## 27                     0      311256800             0         0          0
## 28                     0      326301184             0         0          0
## 29                     0      341349232             0         0          0
## 30                     0      356404608             0         0          0
## 31                     0      373248016             0         0          0
## 32                     0      390095088             0         0          0
## 33                     0      406949488             0         0          0
## 34                     0      423807552             0         0          0
## 35                     0      440672944             0         0          0
## 36                     0      459821008             0         0          0
## 37                     0      478976400             0         0          0
## 38                     0      498135456             0         0          0
## 39                     0      517301840             0         0          0
## 40                     0      536475552             0         0          0
## 41                     0      557891632             0         0          0
## 42                     0      579315040             0         0          0
## 43                     0      600745776             0         0          0
## 44                     0      622180176             0         0          0
## 45                     0      643621904             0         0          0
## 46                     0      666034592             0         0          0
## 47                     0      689575792             0         0          0
## 48                     0      714091616             0         0          0
## 49                     0      739889840             0         0          0
## 50                     0      766523456        252816         0          0
## 51                     0      793234016        520288         0          0
## 52                     0      820083808        809744         0          0
## 53                     0      850275168       1106528         0          0
## 54                     0      880605760       1439952         0          0
## 55                     0      912068528       1780704         0          0
## 56                     0      945319328       2114128         0          0
## 57                     0      978577456       2491520         0          0
## 58                     0     1011846576       2883568         0          0
## 59                     0     1045126688       3286608         0          0
## 60                     0     1078417792       3704304         0          0
## 61                     0     1113980576       4151312         0          0
## 62                     0     1150917360       4634960         0          0
## 63                     0     1188293824       5155248         0          0
## 64                     0     1226381104       5715840         0          0
## 65                     0     1265303776       6316736         0          0
## 66                     0     1306739952       6979920         0          0
## 67                     0     1348663440       7698064         0          0
## 68                     0     1390685856       8478496         0          0
## 69                     0     1433023376       9240608         0          0
## 70                     0     1475551424      10032032         0          0
## 71                     0     1518423888      10860096         0          0
## 72                     0     1562945152      11724800         0          0
## 73                     0     1609818704      12626144         0          0
## 74                     0     1658901648      13641072         0          0
## 75                     0     1708493888      14776912         0          0
## 76                     0     1758639392      16092288         0          0
## 77                     0     1810869712      17539568         0          0
## 78                     0     1863459104      19133408         0          0
## 79                     0     1916795952      20928768         0          0
## 80                     0     1984660560      23017248         0          0
## 81                     0     2050425696      25281600         0          0
## 82                     0     2116014960      28304400         0          0
## 83                     0     2181508960      31832832         0          0
## 84                     0     2247046928      35214704         0          0
## 85                     0     2312310096      39530896         0          0
## 86                     0     2388755792      44261120         0          0
## 87                     0     2462526768      49566592         0          0
## 88                     0     2538338592      54597264         0          0
## 89                     0     2616117984      60115248         0          0
## 90                     0     2697077728      65988640         0          0
## 91                     0     2778916832      72202784         0          0
## 92                     0     2864288032      79120416         0          0
## 93                     0     2953381856      86884432         0          0
## 94                     0     3046854160      96190992         0          0
## 95                     0     3146841056     107395504         0          0
## 96                     0     3242533744     120105920         0          0
## 97                     0     3346082048     135175952         0          0
## 98                     0     3455368176     151960736         0          0
## 99                     0     3571374080     170181808         0          0
## 100                    0     3693978848     189974736         0          0
## 101                    0     3810633280     214607808         0          0
## 102                    0     3926873680     241398976         0          0
## 103                    0     4042472880     271561024         0          0
## 104                    0     4181774496     304720224         0          0
## 105                    0     4312216560     342880784         0          0
## 106                    0     4452591728     382917312         0          0
## 107                    0     4590453392     423972432         0          0
## 108                    0     4725567056     465621120         0          0
## 109                    0     4875578544     510941136         0          0
## 110                    0     5043528976     558378944         0          0
## 111                    0     5218576576     604058032         0          0
## 112                    0     5388047568     651506832         0          0
## 113                    0     5568272400     706316608         0          0
## 114                    0     5762182272     764973584         0          0
## 115                    0     5967670384     823795440         0          0
## 116                    0     6179401952     883027664         0          0
## 117                    0     6396776080     955893632         0          0
## 118                    0     6609995232    1038245696         0          0
## 119                    0     6833700752    1131941504         0          0
## 120                    0     7062195120    1230561728         0          0
## 121                    0     7304231632    1333582416         0          0
## 122                    0     7559220384    1459887824         0          0
## 123                    0     7823878432    1599394624         0          0
## 124                    0     8081065584    1733691216         0          0
## 125                    0     8352553328    1869438752         0          0
## 126                    0     8623572080    2002258752         0          0
## 127                    0     8899471280    2149434304         0          0
## 128                    0     9170446064    2293337904         0          0
## 129                    0     9443091632    2468806864         0          0
## 130                    0     9740216384    2667490928         0          0
## 131                    0    10052528416    2877683616         0          0
## 132                    0    10367493184    3113077296         0          0
## 133                    0    10695223328    3366959520         0          0
## 134                    0    11014321088    3634548768         0          0
## 135                    0    11329611952    3906710688         0          0
## 136                    0    11642041232    4194173472         0          0
## 137                    0    11962483680    4501553760         0          0
## 138                    0    12295651200    4875428320         0          0
## 139                    0    12640675424    5210970112         0          0
## 140                    0    12993698160    5612716720         0          0
## 141                    0    13354169808    6040140640         0          0
## 142                    0    13707177888    6490589136         0          0
## 143                    0    14023388416    6944683312         0          0
## 144                    0    14385490544    7369732960         0          0
## 145                    0    14751040496    7849680320         0          0
## 146                    0    15127021856    8330562000         0          0
## 147                    0    15512991280    8830848224         0          0
## 148                    0    15899869376    9376168672         0          0
## 149                    0    16314421664   10001701408         0          0
## 150                    0    16734162176   10664438400         0          0
## 151                    0    17144863600   11385964272         0          0
## 152                    0    17571503424   12150457872         0          0
## 153                    0    18001488480   13044862256         0          0
## 154                    0    18433481408   13925083296         0          0
## 155                    0    18871153536   14909581776         0          0
## 156                    0    19324503920   15942921376         0          0
## 157                    0    19798072256   17144724368         0          0
## 158                    0    20260036704   18195698800         0          0
## 159                    0    20726123152   19359051776         0          0
## 160                    0    21195855280   20628279696         0          0
## 161                    0    21677205952   21884665296         0          0
## 162                    0    22133091824   23225876160         0          0
## 163                    0    22631414144   24665989376         0          0
## 164                    0    23114596816   25981687808         0          0
## 165                    0    23604077904   27346956496         0          0
## 166                    0    24111149856   28863214960         0          0
## 167                    0    24612319104   30531683312         0          0
## 168                    0    25079167664   32277267872         0          0
## 169                    0    25535299024   33754218944         0          0
## 170                    0    26005313280   35490108560         0          0
## 171                    0    26325118192   36912081312         0          0
## 172                    0    26753340864   38345408800         0          0
## 173                    0    27208233792   40239418336         0          0
## 174                    0    27684216704   41935011280         0          0
## 175                    0    28133873776   43675909584         0          0
## 176                    0    28380244800   45564445104         0          0
## 177                    0    28846979776   47409283760         0          0
## 178                    0    29284637248   49237070160         0          0
## 179                    0    29745330288   51197409088         0          0
## 180                    0    30186424592   52939619104         0          0
## 181                    0    30598661232   54422700048         0          0
## 182                    0    30994578416   55679100304     76944          0
## 183                    0    31386750992   57026283488    142896          0
## 184                    0    31809975968   58460673536    194192          0
## 185                    0    32239107312   59950935920    245488          0
## 186                    0    32692930352   61661631872    300448          0
## 187                    0    33161090624   63451195424    373728          0
## 188                    0    33610062528   64964614288    450672          0
## 189                    0    34062518896   66632478080    538608          0
## 190                    0    34537662752   68503968672    622880          0
## 191                    0    35007343584   70543182528    710816          0
## 192                    0    35476273296   72737079472    784096          0
## 193                    0    35931122256   75004263744    850048          0
## 194                    0    36373165536   77444641632    945312          0
## 195                    0    36790806576   79799981744   1055232          0
## 196                    0    37226961808   82053015648   1198128          0
## 197                    0    37688259408   84533778144   1344688          0
## 198                    0    38163857600   87110830560   1491248          0
## 199                    0    38649004176   89270820848   1637808          0
## 200                    0    39149444288   91806763184   4092688          0
## 201                    0    39694281088   94419132896   6716112          0
## 202                    0    40222706832   96964213248   9870816          0
## 203                    0    40762795088   99569958448  13377264          0
## 204                    0    41315505824  102000000000  17114544          0
## 205                    0    41892149808  105000000000  21035024          0
## 206                    0    42466159376  108000000000  25058096          0
## 207                    0    43036556240  110000000000  29491536          0
## 208                    0    43592491296  113000000000  33470640          0
## 209                10992    44139097428  116000000000  37858418   45961762
## 210                21984    44723117446  119000000000  42172946   93813275
## 211                32976    45311732247  122000000000  46289707  143159453
## 212                51296    45904663746  125000000000  50296608  194948964
## 213                73280    46508049409  128000000000  54611433  250489714
## 214                91600    47115915398  131000000000  59164150  309557069
## 215               113584    47738027020  135000000000  64680441  372214820
## 216               139232    48356101686  138000000000  70079275  438383239
## 217              1055232    48948158713  142000000000  74958029  507571342
## 218              2297328    49554647017  146000000000  79836397  578702766
## 219             22804736    50183029564  150000000000  85425789  652781644
## 220             38039648    50835606959  154000000000  91161592  730697710
## 221             59206576    51495995243  158000000000  96963526  813370349
## 222             82641520    52144021692  163000000000 103032902  900341391
## 223            113246912    52803599014  168000000000 108801621  990971510
## 224            144548464    53420782903  172000000000 114478622 1085036372
## 225            175593536    54024030270  177000000000 120441029 1183893588
## 226            215210547    54622556620  181000000000 126328115 1286490595
## 227            253961835    55226918759  186000000000 131967749 1392509425
## 228            298715425    55831632748  191000000000 137697070 1502109501
## 229            335261884    56476146060  196000000000 143959422 1612564038
## 230            372085276    57055182034  200000000000 149777928 1727308206
## 231            408852206    57615737041  205000000000 155133884 1839808542
## 232            445604980    58163977997  209000000000 159987706 1954413999
## 233            480825434    58709463791  214000000000 163791245 2070591649
## 234            526981076    59238572677  218000000000 167229401 2187753253
## 235            576633593    59798200759  223000000000 170513213 2314115007
## 236            623663666    60366755544  227000000000 173678126 2440728456
## 237            671114020    60938424061  232000000000 177220659 2572635248
## 238            719209618    61508718917  237000000000 182006632 2708113054
## 239            773395753    62090296227  242000000000 186859270 2840652619
## 240            825098351    62691363779  247000000000 190826363 2964806880
## 241            881770699    63300384201  252000000000 195353868 3084682130
## 242            939528384    63893888327  257000000000 200496745 3195952332
## 243           1005093763    64473291109  262000000000 204935953 3311818726
## 244           1077698328    65048948495  268000000000 208965837 3420102816
## 245           1147711072    65615782597  273000000000 213524339 3523305106
## 246           1188140086    66204276059  279000000000 218928776 3629177162
## 247           1229213801    66766760794  284000000000 224441912 3736180468
## 248           1309896251    67334246973  290000000000 230081998 3855126434
## 249           1387438915    67894752319  296000000000 236763026 3977330960
## 250           1499226982    68461813771  302000000000 242030179 4098786596
## 251           1599829926    69037741271  308000000000 247060755 4221827284
## 252           1683575514    69597782225  314000000000 251618489 4349770672
## 253           1789252612    70169383194  320000000000 256146320 4476208668
## 254           1901120073    70742586958  326000000000 261710116 4601927718
## 255           2015674509    71312588008  332000000000 267435921 4718822658
## 256           2137558304    71880240253  338000000000 274032007 4838521020
## 257           2270895296    72439562234  344000000000 279978518 4957938290
## 258           2425050706    72984410472  350000000000 288179183 5081273920
## 259           2590235842    73479015204  356000000000 296126516 5187807822
## 260           2748400504    73991229457  361000000000 302423228 5291389310
## 261           2911105368    74461040920  367000000000 310077038 5404434674
## 262           3085029107    74948711673  372000000000 318670121 5519556616
## 263           3253240102    75426444245  378000000000 326159965 5622211473
## 264           3462051750    75865135422  383000000000 332816072 5726692290
## 265           3689528971    76287797976  389000000000 339467178 5837361615
## 266           3922955515    76686348860  394000000000 346231602 5935286883
## 267           4154728973    77071055648  399000000000 353071942 6034285830
##     Vanuatu  Venezuela    Vietnam Wallis.and.Futuna.Islands        World
## 1         0          0          0                         0 9.350528e+06
## 2         0          0          0                         0 1.870472e+07
## 3         0          0          0                         0 2.805891e+07
## 4         0          0          0                         0 3.741677e+07
## 5         0          0          0                         0 4.677829e+07
## 6         0          0          0                         0 5.678467e+07
## 7         0          0          0                         0 6.679472e+07
## 8         0          0          0                         0 7.680843e+07
## 9         0          0          0                         0 8.682581e+07
## 10        0          0          0                         0 9.684318e+07
## 11        0          0          0                         0 1.078169e+08
## 12        0          0          0                         0 1.187942e+08
## 13        0          0          0                         0 1.297752e+08
## 14        0          0          0                         0 1.407599e+08
## 15        0          0          0                         0 1.517482e+08
## 16        0          0          0                         0 1.640080e+08
## 17        0          0          0                         0 1.762714e+08
## 18        0          0          0                         0 1.885384e+08
## 19        0          0          0                         0 2.008092e+08
## 20        0          0          0                         0 2.130836e+08
## 21        0          0          0                         0 2.266953e+08
## 22        0          0          0                         0 2.403108e+08
## 23        0          0          0                         0 2.539299e+08
## 24        0          0          0                         0 2.675526e+08
## 25        0          0          0                         0 2.811790e+08
## 26        0          0          0                         0 2.962161e+08
## 27        0          0          0                         0 3.112568e+08
## 28        0          0          0                         0 3.263012e+08
## 29        0          0          0                         0 3.413492e+08
## 30        0          0          0                         0 3.564046e+08
## 31        0          0          0                         0 3.732480e+08
## 32        0          0          0                         0 3.900951e+08
## 33        0          0          0                         0 4.069495e+08
## 34        0          0          0                         0 4.238076e+08
## 35        0          0          0                         0 4.406766e+08
## 36        0          0          0                         0 4.598283e+08
## 37        0          0          0                         0 4.789874e+08
## 38        0          0          0                         0 4.981501e+08
## 39        0          0          0                         0 5.173202e+08
## 40        0          0          0                         0 5.364975e+08
## 41        0          0          0                         0 5.579173e+08
## 42        0          0          0                         0 5.798133e+08
## 43        0          0          0                         0 6.017277e+08
## 44        0          0          0                         0 6.236091e+08
## 45        0          0          0                         0 6.455015e+08
## 46        0          0          0                         0 6.684528e+08
## 47        0          0          0                         0 6.925473e+08
## 48        0          0          0                         0 7.176420e+08
## 49        0          0          0                         0 7.440705e+08
## 50        0          0          0                         0 7.721624e+08
## 51        0          0          0                         0 8.001223e+08
## 52        0          0          0                         0 8.369052e+08
## 53        0          0          0                         0 8.683936e+08
## 54        0          0          0                         0 9.027033e+08
## 55        0          0          0                         0 9.361227e+08
## 56        0          0          0                         0 9.711688e+08
## 57        0          0          0                         0 1.008043e+09
## 58        0          0          0                         0 1.043108e+09
## 59        0          0          0                         0 1.078198e+09
## 60        0          0          0                         0 1.115578e+09
## 61        0          0          0                         0 1.155160e+09
## 62        0          0          0                         0 1.196168e+09
## 63        0          0          0                         0 1.237388e+09
## 64        0          0          0                         0 1.279516e+09
## 65        0          0          0                         0 1.323004e+09
## 66        0          0          0                         0 1.370669e+09
## 67        0          0          0                         0 1.420100e+09
## 68        0          0          0                         0 1.469744e+09
## 69        0          0          0                         0 1.519692e+09
## 70        0          0          0                         0 1.570379e+09
## 71        0          0          0                         0 1.621815e+09
## 72        0          0          0                         0 1.675280e+09
## 73        0          0          0                         0 1.731830e+09
## 74        0          0          0                         0 1.790355e+09
## 75        0          0          0                         0 1.851111e+09
## 76        0          0          0                         0 1.912531e+09
## 77        0          0          0                         0 1.978446e+09
## 78        0          0          0                         0 2.045084e+09
## 79        0          0          0                         0 2.111479e+09
## 80        0          0          0                         0 2.200602e+09
## 81        0          0          0                         0 2.285131e+09
## 82        0          0          0                         0 2.370242e+09
## 83        0          0          0                         0 2.457049e+09
## 84        0          0          0                         0 2.545535e+09
## 85        0          0          0                         0 2.635981e+09
## 86        0          0          0                         0 2.740756e+09
## 87        0          0          0                         0 2.845448e+09
## 88        0          0          0                         0 2.953492e+09
## 89        0          0          0                         0 3.065105e+09
## 90        0          0          0                         0 3.184034e+09
## 91        0          0          0                         0 3.306654e+09
## 92        0          0          0                         0 3.436158e+09
## 93        0          0          0                         0 3.569011e+09
## 94        0          0          0                         0 3.710434e+09
## 95        0          0          0                         0 3.865645e+09
## 96        0          0          0                         0 4.023438e+09
## 97        0          0          0                         0 4.195841e+09
## 98        0          0          0                         0 4.369657e+09
## 99        0          0          0                         0 4.553169e+09
## 100       0          0          0                         0 4.750065e+09
## 101       0          0          0                         0 4.948807e+09
## 102       0          0          0                         0 5.156303e+09
## 103       0          0          0                         0 5.373403e+09
## 104       0          0          0                         0 5.628413e+09
## 105       0          0          0                         0 5.888447e+09
## 106       0          0          0                         0 6.165556e+09
## 107       0          0          0                         0 6.445236e+09
## 108       0          0          0                         0 6.729203e+09
## 109       0          0          0                         0 7.030205e+09
## 110       0          0          0                         0 7.360914e+09
## 111       0          0          0                         0 7.708701e+09
## 112       0          0          0                         0 8.062815e+09
## 113       0          0          0                         0 8.440738e+09
## 114       0          0          0                         0 8.847889e+09
## 115       0          0          0                         0 9.280256e+09
## 116       0          0          0                         0 9.726293e+09
## 117       0          0          0                         0 1.020411e+10
## 118       0          0          0                         0 1.069486e+10
## 119       0          0          0                         0 1.121599e+10
## 120       0          0          0                         0 1.174853e+10
## 121       0          0          0                         0 1.231467e+10
## 122       0          0          0                         0 1.294104e+10
## 123       0          0          0                         0 1.360646e+10
## 124       0          0          0                         0 1.422946e+10
## 125       0          0          0                         0 1.490526e+10
## 126       0          0          0                         0 1.559081e+10
## 127       0          0          0                         0 1.628991e+10
## 128       0          0          0                         0 1.699447e+10
## 129       0          0          0                         0 1.774951e+10
## 130       0          0          0                         0 1.860340e+10
## 131       0          0          0                         0 1.948599e+10
## 132       0          0          0                         0 2.041812e+10
## 133       0          0          0                         0 2.140939e+10
## 134       0          0          0                         0 2.241182e+10
## 135       0          0          0                         0 2.342173e+10
## 136       0          0          0                         0 2.444746e+10
## 137       0          0          0                         0 2.552450e+10
## 138       0          0          0                         0 2.671709e+10
## 139       0          0          0                         0 2.790924e+10
## 140       0          0          0                         0 2.920810e+10
## 141       0          0          0                         0 3.056740e+10
## 142       0          0     212512                         0 3.193794e+10
## 143       0          0     875696                         0 3.329208e+10
## 144       0          0    1179808                         0 3.469345e+10
## 145       0          0    1359344                         0 3.617937e+10
## 146       0          0    1722080                         0 3.771378e+10
## 147       0          0    2246032                         0 3.932082e+10
## 148       0          0    2901888                         0 4.101593e+10
## 149       0          0    3634688                         0 4.286776e+10
## 150       0          0    4147648                         0 4.482107e+10
## 151       0          0    4649616                         0 4.683904e+10
## 152       0          0    5048992                         0 4.890813e+10
## 153       0          0    5605920                         0 5.116540e+10
## 154       0       3664    6408336                         0 5.344663e+10
## 155       0       3664    7199760                         0 5.587530e+10
## 156       0       3664    8035152                         0 5.842616e+10
## 157       0       3664    8885200                         0 6.131082e+10
## 158       0       7328    9804864                         0 6.408653e+10
## 159       0       7328   10823456                         0 6.697182e+10
## 160       0       7328   12146160                         0 6.999784e+10
## 161       0       7328   13303984                         0 7.307907e+10
## 162       0       7328   14443488                         0 7.630579e+10
## 163       0      21984   15795504                         0 7.979716e+10
## 164       0      51296   17440640                         0 8.296523e+10
## 165       0     102592   19148064                         0 8.609039e+10
## 166       0     183200   20965408                         0 8.946272e+10
## 167       0     263808   22702144                         0 9.299109e+10
## 168       0     479984   24391248                         0 9.647178e+10
## 169       0     692496   26157296                         0 9.948842e+10
## 170       0     842720   28014944                         0 1.030000e+11
## 171       0    1003936   30458832                         0 1.060000e+11
## 172       0    1209120   33085920                         0 1.090000e+11
## 173       0    1659792   35888880                         0 1.130000e+11
## 174       0    2044512   39168160                         0 1.170000e+11
## 175       0    2718688   42784528                         0 1.200000e+11
## 176       0    3788576   46206704                         0 1.240000e+11
## 177       0    4803504   50163824                         0 1.280000e+11
## 178       0    6705120   55381360                         0 1.320000e+11
## 179       0    8654368   60613552                         0 1.360000e+11
## 180       0    7489216   65801776                         0 1.400000e+11
## 181       0    7232736   70381776                         0 1.440000e+11
## 182       0   11039632   74925136                         0 1.470000e+11
## 183       0   13860912   79146064                         0 1.500000e+11
## 184       0   19085776   83370656                         0 1.540000e+11
## 185       0   25076416   88078896                         0 1.580000e+11
## 186       0   28242112   93879008                         0 1.620000e+11
## 187       0   37640272  100001552                         0 1.670000e+11
## 188       0   43762816  106223024                         0 1.710000e+11
## 189       0   50761056  113162640                         0 1.750000e+11
## 190       0   63105072  119794480                         0 1.800000e+11
## 191       0   78164112  125971984                         0 1.850000e+11
## 192       0   89713040  129269584                         0 1.900000e+11
## 193       0  100045520  131977280                         0 1.960000e+11
## 194       0  115170512  133402576                         0 2.010000e+11
## 195       0  130925712  134014464                         0 2.050000e+11
## 196       0  210976784  134014464                         0 2.100000e+11
## 197       0  231473200  134014464                         0 2.150000e+11
## 198       0  257025936  134014464                         0 2.210000e+11
## 199       0  285744368  134014464                         0 2.260000e+11
## 200       0  324022176  134014464                         0 2.320000e+11
## 201       0  371405024  134014464                         0 2.380000e+11
## 202       0  422151424  134014464                         0 2.440000e+11
## 203       0  470010592  134014464                         0 2.510000e+11
## 204       0  521214992  134014464                         0 2.570000e+11
## 205       0  580971168  134014464                         0 2.640000e+11
## 206       0  645985184  134014464                         0 2.720000e+11
## 207       0  715575536  134014464                         0 2.800000e+11
## 208       0  770037232  134014464                         0 2.880000e+11
## 209       0  835186566  134014464                         0 2.970000e+11
## 210       0  892203396  134014464                         0 3.070000e+11
## 211       0  944083178  134014464                         0 3.160000e+11
## 212   40304  998139288  134014464                         0 3.260000e+11
## 213   73280 1054291027  134014464                         0 3.360000e+11
## 214  135568 1110841042  134014464                         0 3.470000e+11
## 215  183200 1171570642  134014464                         0 3.590000e+11
## 216  260144 1228544641  134014464                         0 3.710000e+11
## 217  344416 1294297020  134014464                         0 3.830000e+11
## 218  406704 1359869091  134014464                         0 3.960000e+11
## 219  450672 1428802267  134014464                         0 4.100000e+11
## 220  490976 1503291682  162187444                         0 4.250000e+11
## 221  549600 1565791864  186692850                         0 4.400000e+11
## 222  611888 1628305959  209730061                         0 4.570000e+11
## 223  666848 1694738811  234803387                         0 4.730000e+11
## 224  729136 1769796392  253868020                         0 4.900000e+11
## 225  784096 1833546839  275647677                         0 5.070000e+11
## 226  828064 1890820283  289552584                         0 5.250000e+11
## 227  879360 1954470347  304803599                         0 5.430000e+11
## 228  937984 2023061790  320192614                         0 5.620000e+11
## 229 1000272 2099509182  336440974                         0 5.810000e+11
## 230 1062560 2190149787  353226638                         0 6.010000e+11
## 231 1113856 2281941375  370917313                         0 6.200000e+11
## 232 1165152 2375142410  389249224                         0 6.380000e+11
## 233 1220112 2468050360  408504519                         0 6.570000e+11
## 234 1275072 2561053250  425978906                         0 6.760000e+11
## 235 1395984 2662079761  447047358                         0 6.960000e+11
## 236 1454608 2771319589  467592642                         0 7.160000e+11
## 237 1502240 2881980724  490840874                         0 7.370000e+11
## 238 1568192 2997732478  513849564                         0 7.590000e+11
## 239 1630480 3106303564  531175594                         0 7.810000e+11
## 240 1696432 3228125545  552338806                         0 8.030000e+11
## 241 1762384 3343178049  573499197                         0 8.260000e+11
## 242 1824672 3448756139  594592108                         0 8.480000e+11
## 243 1886960 3572724007  617192803                         0 8.700000e+11
## 244 1949248 3702254851  642965931                         0 8.920000e+11
## 245 2015200 3835129565  671489419                         0 9.150000e+11
## 246 2099472 3957469163  705512367                         0 9.390000e+11
## 247 2183744 4090952689  749821626                         0 9.630000e+11
## 248 2264352 4257754843  796376346                         0 9.870000e+11
## 249 2348624 4430317321  843034350                         0 1.010000e+12
## 250 2432896 4582188349  895366446                         0 1.040000e+12
## 251 2520832 4754162542  954895631                     14656 1.060000e+12
## 252 2605104 4946908952 1023556886                     40304 1.090000e+12
## 253 2689376 5138365650 1099833829                     65952 1.110000e+12
## 254 2748000 5289633634 1187633982                     91600 1.140000e+12
## 255 2806624 5454171610 1282493038                    120912 1.170000e+12
## 256 2854256 5622714825 1381627071                    150224 1.200000e+12
## 257 2953184 5782703743 1482204313                    179536 1.230000e+12
## 258 3048448 5960916552 1595445128                    201520 1.260000e+12
## 259 3169360 6139761658 1718281657                    230832 1.290000e+12
## 260 3290272 6327940990 1854394747                    260144 1.330000e+12
## 261 3422176 6503796829 1999442577                    285792 1.360000e+12
## 262 3535760 6701526588 2134817900                    311440 1.400000e+12
## 263 3642016 6884395507 2275256776                    333424 1.430000e+12
## 264 3795904 7068632089 2434969153                    355408 1.470000e+12
## 265 3963838 7245529368 2619471032                    379399 1.500000e+12
## 266 4133697 7411625736 2817272589                    403664 1.540000e+12
## 267 4315060 7571193371 3016099138                    429573 1.580000e+12
##         Yemen    Zambia  Zimbabwe
## 1           0         0         0
## 2           0         0         0
## 3           0         0         0
## 4           0         0         0
## 5           0         0         0
## 6           0         0         0
## 7           0         0         0
## 8           0         0         0
## 9           0         0         0
## 10          0         0         0
## 11          0         0         0
## 12          0         0         0
## 13          0         0         0
## 14          0         0         0
## 15          0         0         0
## 16          0         0         0
## 17          0         0         0
## 18          0         0         0
## 19          0         0         0
## 20          0         0         0
## 21          0         0         0
## 22          0         0         0
## 23          0         0         0
## 24          0         0         0
## 25          0         0         0
## 26          0         0         0
## 27          0         0         0
## 28          0         0         0
## 29          0         0         0
## 30          0         0         0
## 31          0         0         0
## 32          0         0         0
## 33          0         0         0
## 34          0         0         0
## 35          0         0         0
## 36          0         0         0
## 37          0         0         0
## 38          0         0         0
## 39          0         0         0
## 40          0         0         0
## 41          0         0         0
## 42          0         0         0
## 43          0         0         0
## 44          0         0         0
## 45          0         0         0
## 46          0         0         0
## 47          0         0         0
## 48          0         0         0
## 49          0         0         0
## 50          0         0         0
## 51          0         0         0
## 52          0         0         0
## 53          0         0         0
## 54          0         0         0
## 55          0         0         0
## 56          0         0         0
## 57          0         0         0
## 58          0         0         0
## 59          0         0         0
## 60          0         0         0
## 61          0         0         0
## 62          0         0         0
## 63          0         0         0
## 64          0         0         0
## 65          0         0         0
## 66          0         0         0
## 67          0         0         0
## 68          0         0         0
## 69          0         0         0
## 70          0         0         0
## 71          0         0         0
## 72          0         0         0
## 73          0         0         0
## 74          0         0         0
## 75          0         0         0
## 76          0         0         0
## 77          0         0         0
## 78          0         0         0
## 79          0         0         0
## 80          0         0         0
## 81          0         0         0
## 82          0         0         0
## 83          0         0         0
## 84          0         0         0
## 85          0         0         0
## 86          0         0         0
## 87          0         0         0
## 88          0         0         0
## 89          0         0         0
## 90          0         0         0
## 91          0         0         0
## 92          0         0         0
## 93          0         0         0
## 94          0         0         0
## 95          0         0         0
## 96          0         0         0
## 97          0         0         0
## 98          0         0         0
## 99          0         0         0
## 100         0         0         0
## 101         0         0         0
## 102         0         0         0
## 103         0         0         0
## 104         0         0         0
## 105         0         0         0
## 106         0         0         0
## 107         0         0         0
## 108         0         0         0
## 109         0         0         0
## 110         0         0         0
## 111         0         0         0
## 112         0         0         0
## 113         0         0         0
## 114         0         0         0
## 115         0         0         0
## 116         0         0         0
## 117         0         0         0
## 118         0         0         0
## 119         0         0         0
## 120         0         0         0
## 121         0         0         0
## 122         0         0         0
## 123         0         0         0
## 124         0         0         0
## 125         0         0         0
## 126         0         0         0
## 127         0         0         0
## 128         0         0         0
## 129         0         0         0
## 130         0         0         0
## 131         0         0         0
## 132         0         0         0
## 133         0         0         0
## 134         0         0         0
## 135         0         0         0
## 136         0         0         0
## 137         0         0         0
## 138         0         0         0
## 139         0         0         0
## 140         0         0         0
## 141         0         0         0
## 142         0         0         0
## 143         0         0         0
## 144         0         0         0
## 145         0         0         0
## 146         0         0         0
## 147         0         0         0
## 148         0         0         0
## 149         0         0         0
## 150         0         0         0
## 151         0         0         0
## 152         0         0         0
## 153         0         0    113584
## 154         0         0    256480
## 155         0         0    490976
## 156         0         0    743792
## 157         0         0   1022256
## 158         0         0   1417968
## 159         0         0   1828336
## 160         0         0   2260688
## 161         0         0   2773648
## 162         0         0   3293936
## 163         0         0   3876512
## 164         0         0   4719232
## 165         0         0   5704848
## 166         0         0   6888320
## 167         0         0   8211024
## 168         0         0   9390832
## 169         0         0  10618272
## 170         0         0  12006928
## 171         0         0  13391920
## 172         0         0  14634016
## 173         0         0  16117936
## 174         0         0  17686128
## 175         0         0  19514464
## 176         0         0  21837440
## 177         0         0  24248352
## 178         0         0  27153904
## 179         0         0  29905568
## 180         0         0  32397088
## 181         0         0  33954288
## 182         0         0  35115776
## 183         0         0  36398176
## 184         0         0  38105600
## 185         0         0  39948592
## 186         0         0  41817232
## 187         0         0  44550576
## 188         0         0  47320560
## 189         0         0  50288400
## 190         0         0  53714240
## 191         0         0  57458848
## 192         0         0  61599168
## 193         0         0  66318400
## 194         0         0  71114576
## 195         0         0  75577328
## 196         0         0  79889856
## 197         0         0  83927584
## 198         0         0  88463616
## 199         0         0  93593216
## 200     58624         0  93593216
## 201     98928         0  93593216
## 202    157552         0  93593216
## 203    227168         0  93593216
## 204   4682592         0  93593216
## 205   7166784         0  93593216
## 206   9497088         0  93593216
## 207  12453936         0  93593216
## 208  14337232         0  93593216
## 209  16938672   4567766  99826414
## 210  20569696   8922992 105769567
## 211  23233424  12631948 110830845
## 212  27117264  16214629 115719813
## 213  30033808  19659112 120420197
## 214  33664832  22934104 124889266
## 215  37592640  26846365 130098464
## 216  41055120  30344593 136139390
## 217  44107232  35132223 141433870
## 218  55744096  39699864 147811527
## 219  60419360  43970751 154555406
## 220  62929200  47736630 162709538
## 221  64900432  51523304 171442256
## 222  66395344  55584719 179658082
## 223  69124965  60170383 188928932
## 224  71370759  64367544 197975951
## 225  73539609  68443763 206286863
## 226  76103870  72463155 217141793
## 227  79081860  76198060 226426204
## 228  82183982  79668933 235705882
## 229  85402470  83265408 245137537
## 230  88715988  86788670 254751489
## 231  92941426  90146701 264156877
## 232  98875031  93657482 272936734
## 233 105160629  96918248 283361830
## 234 112257610  99722689 293241482
## 235 120830971 102455421 303455191
## 236 129023012 105320993 316523214
## 237 137649663 107994718 331693333
## 238 147199895 111103776 347722794
## 239 157134948 113673781 363836448
## 240 166656317 116079581 379405743
## 241 175784893 118461649 395271089
## 242 185659126 120885757 412188507
## 243 194285134 123352958 428447609
## 244 203267751 125745970 446132072
## 245 213619911 127886982 461161498
## 246 224146784 129723988 476052059
## 247 237368069 132077679 490346270
## 248 249431616 134356917 504485906
## 249 263156275 136135111 520213654
## 250 277630489 137920167 534031835
## 251 293647159 139805056 546541031
## 252 309200692 141765116 558438037
## 253 326283191 143840697 569046377
## 254 344929429 145944995 578474925
## 255 364724273 148187062 589174567
## 256 385809327 150418746 599539437
## 257 406528343 152286353 609373451
## 258 428553318 154391909 617092326
## 259 452800876 156798190 622611834
## 260 475952740 159360768 630292845
## 261 495465754 162153362 639732696
## 262 513704005 165634024 647347296
## 263 538684418 169390168 658883535
## 264 560946988 173645895 670749884
## 265 581331585 178047308 681657488
## 266 600467008 182622452 691590138
## 267 619432763 187368600 701987856
emission_transpose <- read.csv("emission_transpose.csv")
emission_transpose
##     year Afghanistan      Africa   Albania    Algeria Americas..other.
## 1   1751           0           0         0          0                0
## 2   1752           0           0         0          0                0
## 3   1753           0           0         0          0                0
## 4   1754           0           0         0          0                0
## 5   1755           0           0         0          0                0
## 6   1756           0           0         0          0                0
## 7   1757           0           0         0          0                0
## 8   1758           0           0         0          0                0
## 9   1759           0           0         0          0                0
## 10  1760           0           0         0          0                0
## 11  1761           0           0         0          0                0
## 12  1762           0           0         0          0                0
## 13  1763           0           0         0          0                0
## 14  1764           0           0         0          0                0
## 15  1765           0           0         0          0                0
## 16  1766           0           0         0          0                0
## 17  1767           0           0         0          0                0
## 18  1768           0           0         0          0                0
## 19  1769           0           0         0          0                0
## 20  1770           0           0         0          0                0
## 21  1771           0           0         0          0                0
## 22  1772           0           0         0          0                0
## 23  1773           0           0         0          0                0
## 24  1774           0           0         0          0                0
## 25  1775           0           0         0          0                0
## 26  1776           0           0         0          0                0
## 27  1777           0           0         0          0                0
## 28  1778           0           0         0          0                0
## 29  1779           0           0         0          0                0
## 30  1780           0           0         0          0                0
## 31  1781           0           0         0          0                0
## 32  1782           0           0         0          0                0
## 33  1783           0           0         0          0                0
## 34  1784           0           0         0          0                0
## 35  1785           0           0         0          0             3664
## 36  1786           0           0         0          0             7328
## 37  1787           0           0         0          0            10992
## 38  1788           0           0         0          0            14656
## 39  1789           0           0         0          0            18320
## 40  1790           0           0         0          0            21984
## 41  1791           0           0         0          0            25648
## 42  1792           0           0         0          0            29312
## 43  1793           0           0         0          0            32976
## 44  1794           0           0         0          0            36640
## 45  1795           0           0         0          0            40304
## 46  1796           0           0         0          0            43968
## 47  1797           0           0         0          0            47632
## 48  1798           0           0         0          0            51296
## 49  1799           0           0         0          0            54960
## 50  1800           0           0         0          0            58624
## 51  1801           0           0         0          0            62288
## 52  1802           0           0         0          0            65952
## 53  1803           0           0         0          0            69616
## 54  1804           0           0         0          0            73280
## 55  1805           0           0         0          0            76944
## 56  1806           0           0         0          0            80608
## 57  1807           0           0         0          0            84272
## 58  1808           0           0         0          0            87936
## 59  1809           0           0         0          0            91600
## 60  1810           0           0         0          0            95264
## 61  1811           0           0         0          0            98928
## 62  1812           0           0         0          0           102592
## 63  1813           0           0         0          0           106256
## 64  1814           0           0         0          0           109920
## 65  1815           0           0         0          0           113584
## 66  1816           0           0         0          0           117248
## 67  1817           0           0         0          0           120912
## 68  1818           0           0         0          0           124576
## 69  1819           0           0         0          0           128240
## 70  1820           0           0         0          0           131904
## 71  1821           0           0         0          0           135568
## 72  1822           0           0         0          0           139232
## 73  1823           0           0         0          0           142896
## 74  1824           0           0         0          0           146560
## 75  1825           0           0         0          0           150224
## 76  1826           0           0         0          0           153888
## 77  1827           0           0         0          0           157552
## 78  1828           0           0         0          0           161216
## 79  1829           0           0         0          0           164880
## 80  1830           0           0         0          0           168544
## 81  1831           0           0         0          0           172208
## 82  1832           0           0         0          0           175872
## 83  1833           0           0         0          0           179536
## 84  1834           0           0         0          0           183200
## 85  1835           0           0         0          0           186864
## 86  1836           0           0         0          0           190528
## 87  1837           0           0         0          0           194192
## 88  1838           0           0         0          0           197856
## 89  1839           0           0         0          0           201520
## 90  1840           0           0         0          0           205184
## 91  1841           0           0         0          0           208848
## 92  1842           0           0         0          0           212512
## 93  1843           0           0         0          0           216176
## 94  1844           0           0         0          0           219840
## 95  1845           0           0         0          0           223504
## 96  1846           0           0         0          0           252816
## 97  1847           0           0         0          0           285792
## 98  1848           0           0         0          0           322432
## 99  1849           0           0         0          0           370064
## 100 1850           0           0         0          0           428688
## 101 1851           0           0         0          0           498304
## 102 1852           0           0         0          0           582576
## 103 1853           0           0         0          0           688832
## 104 1854           0           0         0          0           813408
## 105 1855           0           0         0          0           959968
## 106 1856           0           0         0          0          1139504
## 107 1857           0           0         0          0          1359344
## 108 1858           0           0         0          0          1623152
## 109 1859           0           0         0          0          1938256
## 110 1860           0           0         0          0          2319312
## 111 1861           0           0         0          0          2777312
## 112 1862           0           0         0          0          3337904
## 113 1863           0           0         0          0          4041392
## 114 1864           0           0         0          0          4884112
## 115 1865           0           0         0          0          5902704
## 116 1866           0           0         0          0          7144800
## 117 1867           0           0         0          0          8738640
## 118 1868           0           0         0          0          9680288
## 119 1869           0           0         0          0         10365456
## 120 1870           0           0         0          0         11589232
## 121 1871           0           0         0          0         13369936
## 122 1872           0           0         0          0         15216592
## 123 1873           0           0         0          0         16828752
## 124 1874           0           0         0          0         18448240
## 125 1875           0           0         0          0         20324208
## 126 1876           0           0         0          0         22181856
## 127 1877           0           0         0          0         24204384
## 128 1878           0           0         0          0         26138976
## 129 1879           0           0         0          0         28322720
## 130 1880           0           0         0          0         33554912
## 131 1881           0           0         0          0         39142512
## 132 1882           0           0         0          0         45756032
## 133 1883           0           0         0          0         53186624
## 134 1884           0       21984         0          0         61789696
## 135 1885           0       58624         0          0         70037360
## 136 1886           0      106256         0          0         78841952
## 137 1887           0      153888         0          0         90083104
## 138 1888           0      234496         0          0        104292096
## 139 1889           0      366400         0          0        117339600
## 140 1890           0      663184         0          0        131138224
## 141 1891           0      959968         0          0        146585648
## 142 1892           0     1439952         0          0        162505728
## 143 1893           0     3238976         0          0        179488368
## 144 1894           0     5671872         0          0        196240176
## 145 1895           0     9009776         0          0        213098240
## 146 1896           0    13267344         0          0        231209392
## 147 1897           0    18045200         0          0        249452448
## 148 1898           0    24094464         0          0        269073168
## 149 1899           0    29612448         0          0        292709632
## 150 1900           0    31942752         0          0        317500256
## 151 1901           0    35852240         0          0        349061952
## 152 1902           0    41678000         0          0        383514544
## 153 1903           0    49573920         0          0        420711472
## 154 1904           0    58488432         0          0        464195824
## 155 1905           0    68747632         0          0        510501456
## 156 1906           0    80465104         0          0        562138208
## 157 1907           0    93395360         0          0        624074464
## 158 1908           0   106798272         0          0        690140048
## 159 1909           0   122183408         0          0        752651552
## 160 1910           0   139594736         0          0        825737360
## 161 1911           0   156460128         0          0        913695344
## 162 1912           0   174413728         0          0       1009787408
## 163 1913           0   194019792         0          0       1122158624
## 164 1914           0   213570896         0          0       1218170080
## 165 1915           0   233176960         0          0       1309018960
## 166 1916           0   256428704         0       3664       1416692928
## 167 1917           0   281772592         0      10992       1539458912
## 168 1918           0   306500928         0      29312       1671381232
## 169 1919           0   331947408         0      47632       1802109088
## 170 1920           0   359998992         0      69616       1978439088
## 171 1921           0   387984624         0      95264       2164643568
## 172 1922           0   411958176         0     120912       2337544064
## 173 1923           0   441006368         0     135568       2523536032
## 174 1924           0   471637408         0     164880       2694773072
## 175 1925           0   503818320         0     197856       2855428480
## 176 1926           0   538256256         0     238160       3025401440
## 177 1927           0   572093296         0     296784       3192402896
## 178 1928           0   606864656         0     370064       3373818528
## 179 1929           0   642672928         0     450672       3569278272
## 180 1930           0   676374400         0     534944       3759960160
## 181 1931           0   705843952         0     633872       3918717616
## 182 1932           0   732473904         0     747456       4074016256
## 183 1933           0   760976160      7328     868368       4236331456
## 184 1934           0   793516144     14656    1007600       4420766224
## 185 1935           0   829430672     32976    1139504       4617493712
## 186 1936           0   868455936    161216    1190800       4824714896
## 187 1937           0   910302480    458000    1260416       5065494656
## 188 1938           0   954325440    806080    1293392       5299587616
## 189 1939           0  1001184336   1238432    1454608       5539345120
## 190 1940           0  1050835200   1930928    1692768       5786925264
## 191 1941           0  1104868208   2557472    2004208       6057456704
## 192 1942           0  1163697392   3301264    2502512       6305538816
## 193 1943           0  1223823632   3762928    2971504       6584739280
## 194 1944           0  1290471792   3916816    3469808       6889162720
## 195 1945           0  1358002976   4037728    4085360       7199415584
## 196 1946           0  1426171696   4521376    4847472       7594306848
## 197 1947           0  1494124240   5448368    5591264       7952649712
## 198 1948           0  1565869024   6151856    6393680       8337267120
## 199 1949       14656  1643223392   7166784    7302352       8596125056
## 200 1950       98928  1738164960   7463568   11087264       8912518784
## 201 1951      190528  1839368304   7866608   15220256       9266490496
## 202 1952      282128  1949793936   8240336   19111424       9625558832
## 203 1953      388384  2061872032   8654368   23112512       9985568816
## 204 1954      494640  2179512080   9156336   27267488      10365954304
## 205 1955      648528  2309041808   9819520   31876800      10774373056
## 206 1956      831728  2444302032  10658576   36874496      11223279008
## 207 1957     1124848  2586054864  12164480   42414464      11684404400
## 208 1958     1454608  2734824256  13366272   47632000      12139568464
## 209 1959     1839179  2882665399  14809888   53289017      12619700279
## 210 1960     2253063  3039232467  16832416   59440258      13110767380
## 211 1961     2743861  3201226721  19111424   65496175      13610105366
## 212 1962     3432455  3367561508  21573632   71157183      14141338876
## 213 1963     4139191  3543896251  23654784   76576337      14676534040
## 214 1964     4977742  3737535480  25669984   82219382      15264001559
## 215 1965     5984658  3951169761  27842736   88807916      15876411904
## 216 1966     7075817  4172251736  30392880   97228778      16513466966
## 217 1967     8357682  4409296748  33071264  105660364      17202440666
## 218 1968     9581072  4666578852  36141696  114710602      17938791516
## 219 1969    10522304  4944494661  39384336  125973568      18716543170
## 220 1970    12192701  5247118415  43125280  141032528      19577194050
## 221 1971    14086633  5578986587  47474448  159682059      20474239932
## 222 1972    15617799  5930864378  53113344  188004699      21425741192
## 223 1973    17255042  6308876953  58400496  226282100      22430167407
## 224 1974    19170720  6697285297  62742336  258158760      23476655535
## 225 1975    21295245  7084592465  67333328  290159967      24538461404
## 226 1976    23279471  7504779055  72279728  329291037      25644500721
## 227 1977    25666216  7937798099  77995568  371135950      26780676071
## 228 1978    27821636  8400306507  84484512  433591216      27977569203
## 229 1979    30056540  8899345945  92065328  479136768      29255379311
## 230 1980    31813562  9435008665  97231568  545553235      30575202005
## 231 1981    33792934  9983549771 104566896  591895222      31872421745
## 232 1982    35888474 10555231206 111869248  631068251      33178160301
## 233 1983    38408565 11149714412 119494032  683572166      34436668651
## 234 1984    41230980 11798923169 127313008  754518696      35726453419
## 235 1985    44732874 12464569744 135186944  827127764      37039541856
## 236 1986    47866946 13154157563 143236752  903208153      38354714082
## 237 1987    50981106 13843743194 150674672  987091655      39741104420
## 238 1988    53838190 14568340496 157995344 1070799688      41175124958
## 239 1989    56603078 15266086644 166972144 1150607954      42676170902
## 240 1990    59205485 15923936796 172482800 1227344595      44139315940
## 241 1991    61631971 16610791075 176766016 1306149946      45610299952
## 242 1992    63013493 17280348214 179279520 1386031717      47114212624
## 243 1993    64347330 17989891459 181613488 1467974158      48656871827
## 244 1994    65629819 18710122956 183537088 1554120833      50253627689
## 245 1995    66860958 19485633617 185621904 1649102794      51873213217
## 246 1996    68026093 20279206383 187637104 1745888914      53561428365
## 247 1997    69110567 21091886368 189179648 1832893260      55328368455
## 248 1998    70140029 21927216344 190931040 1939514090      57177221097
## 249 1999    70949598 22755551690 193913536 2031182001      59067565309
## 250 2000    71717793 23640083267 196932672 2118624684      60974588046
## 251 2001    72529867 24519201998 200153328 2202405358      62905083846
## 252 2002    73593942 25403353837 203901600 2291812079      64857939638
## 253 2003    74781013 26365325805 208192144 2382860272      66861915212
## 254 2004    75722468 27398417645 212354448 2470713375      68873832710
## 255 2005    77042718 28442492860 216604688 2577186565      70950783125
## 256 2006    78685964 29526291008 220499520 2677387726      73065649503
## 257 2007    80954308 30652623962 224423664 2785787700      75233665397
## 258 2008    85152637 31830766884 228794816 2894819537      77460245651
## 259 2009    91912951 33019042498 233169632 3015005401      79617865087
## 260 2010   100365175 34212826270 237764288 3132819477      81871783973
## 261 2011   112591192 35411199285 243000144 3252626365      84166563311
## 262 2012   123333249 36645041459 247906240 3380736316      86541969037
## 263 2013   133333663 37895685023 252966224 3513170946      88948744132
## 264 2014   143122849 39186174236 258678400 3656347996      91391915488
## 265 2015   153230277 40475177493 264626124 3806940494      93827469251
## 266 2016   165488185 41785833882 270898982 3957318519      96242527324
## 267 2017   178502925 43117573841 277278189 4107869896      98641159642
##      Andorra    Angola Anguilla Antarctic.Fisheries Antigua.and.Barbuda
## 1          0         0        0                   0                   0
## 2          0         0        0                   0                   0
## 3          0         0        0                   0                   0
## 4          0         0        0                   0                   0
## 5          0         0        0                   0                   0
## 6          0         0        0                   0                   0
## 7          0         0        0                   0                   0
## 8          0         0        0                   0                   0
## 9          0         0        0                   0                   0
## 10         0         0        0                   0                   0
## 11         0         0        0                   0                   0
## 12         0         0        0                   0                   0
## 13         0         0        0                   0                   0
## 14         0         0        0                   0                   0
## 15         0         0        0                   0                   0
## 16         0         0        0                   0                   0
## 17         0         0        0                   0                   0
## 18         0         0        0                   0                   0
## 19         0         0        0                   0                   0
## 20         0         0        0                   0                   0
## 21         0         0        0                   0                   0
## 22         0         0        0                   0                   0
## 23         0         0        0                   0                   0
## 24         0         0        0                   0                   0
## 25         0         0        0                   0                   0
## 26         0         0        0                   0                   0
## 27         0         0        0                   0                   0
## 28         0         0        0                   0                   0
## 29         0         0        0                   0                   0
## 30         0         0        0                   0                   0
## 31         0         0        0                   0                   0
## 32         0         0        0                   0                   0
## 33         0         0        0                   0                   0
## 34         0         0        0                   0                   0
## 35         0         0        0                   0                   0
## 36         0         0        0                   0                   0
## 37         0         0        0                   0                   0
## 38         0         0        0                   0                   0
## 39         0         0        0                   0                   0
## 40         0         0        0                   0                   0
## 41         0         0        0                   0                   0
## 42         0         0        0                   0                   0
## 43         0         0        0                   0                   0
## 44         0         0        0                   0                   0
## 45         0         0        0                   0                   0
## 46         0         0        0                   0                   0
## 47         0         0        0                   0                   0
## 48         0         0        0                   0                   0
## 49         0         0        0                   0                   0
## 50         0         0        0                   0                   0
## 51         0         0        0                   0                   0
## 52         0         0        0                   0                   0
## 53         0         0        0                   0                   0
## 54         0         0        0                   0                   0
## 55         0         0        0                   0                   0
## 56         0         0        0                   0                   0
## 57         0         0        0                   0                   0
## 58         0         0        0                   0                   0
## 59         0         0        0                   0                   0
## 60         0         0        0                   0                   0
## 61         0         0        0                   0                   0
## 62         0         0        0                   0                   0
## 63         0         0        0                   0                   0
## 64         0         0        0                   0                   0
## 65         0         0        0                   0                   0
## 66         0         0        0                   0                   0
## 67         0         0        0                   0                   0
## 68         0         0        0                   0                   0
## 69         0         0        0                   0                   0
## 70         0         0        0                   0                   0
## 71         0         0        0                   0                   0
## 72         0         0        0                   0                   0
## 73         0         0        0                   0                   0
## 74         0         0        0                   0                   0
## 75         0         0        0                   0                   0
## 76         0         0        0                   0                   0
## 77         0         0        0                   0                   0
## 78         0         0        0                   0                   0
## 79         0         0        0                   0                   0
## 80         0         0        0                   0                   0
## 81         0         0        0                   0                   0
## 82         0         0        0                   0                   0
## 83         0         0        0                   0                   0
## 84         0         0        0                   0                   0
## 85         0         0        0                   0                   0
## 86         0         0        0                   0                   0
## 87         0         0        0                   0                   0
## 88         0         0        0                   0                   0
## 89         0         0        0                   0                   0
## 90         0         0        0                   0                   0
## 91         0         0        0                   0                   0
## 92         0         0        0                   0                   0
## 93         0         0        0                   0                   0
## 94         0         0        0                   0                   0
## 95         0         0        0                   0                   0
## 96         0         0        0                   0                   0
## 97         0         0        0                   0                   0
## 98         0         0        0                   0                   0
## 99         0         0        0                   0                   0
## 100        0         0        0                   0                   0
## 101        0         0        0                   0                   0
## 102        0         0        0                   0                   0
## 103        0         0        0                   0                   0
## 104        0         0        0                   0                   0
## 105        0         0        0                   0                   0
## 106        0         0        0                   0                   0
## 107        0         0        0                   0                   0
## 108        0         0        0                   0                   0
## 109        0         0        0                   0                   0
## 110        0         0        0                   0                   0
## 111        0         0        0                   0                   0
## 112        0         0        0                   0                   0
## 113        0         0        0                   0                   0
## 114        0         0        0                   0                   0
## 115        0         0        0                   0                   0
## 116        0         0        0                   0                   0
## 117        0         0        0                   0                   0
## 118        0         0        0                   0                   0
## 119        0         0        0                   0                   0
## 120        0         0        0                   0                   0
## 121        0         0        0                   0                   0
## 122        0         0        0                   0                   0
## 123        0         0        0                   0                   0
## 124        0         0        0                   0                   0
## 125        0         0        0                   0                   0
## 126        0         0        0                   0                   0
## 127        0         0        0                   0                   0
## 128        0         0        0                   0                   0
## 129        0         0        0                   0                   0
## 130        0         0        0                   0                   0
## 131        0         0        0                   0                   0
## 132        0         0        0                   0                   0
## 133        0         0        0                   0                   0
## 134        0         0        0                   0                   0
## 135        0         0        0                   0                   0
## 136        0         0        0                   0                   0
## 137        0         0        0                   0                   0
## 138        0         0        0                   0                   0
## 139        0         0        0                   0                   0
## 140        0         0        0                   0                   0
## 141        0         0        0                   0                   0
## 142        0         0        0                   0                   0
## 143        0         0        0                   0                   0
## 144        0         0        0                   0                   0
## 145        0         0        0                   0                   0
## 146        0         0        0                   0                   0
## 147        0         0        0                   0                   0
## 148        0         0        0                   0                   0
## 149        0         0        0                   0                   0
## 150        0         0        0                   0                   0
## 151        0         0        0                   0                   0
## 152        0         0        0                   0                   0
## 153        0         0        0                   0                   0
## 154        0         0        0                   0                   0
## 155        0         0        0                   0                   0
## 156        0         0        0                   0                   0
## 157        0         0        0                   0                   0
## 158        0         0        0                   0                   0
## 159        0         0        0                   0                   0
## 160        0         0        0                   0                   0
## 161        0         0        0                   0                   0
## 162        0         0        0                   0                   0
## 163        0         0        0                   0                   0
## 164        0         0        0                   0                   0
## 165        0         0        0                   0                   0
## 166        0         0        0                   0                   0
## 167        0         0        0                   0                   0
## 168        0         0        0                   0                   0
## 169        0         0        0                   0                   0
## 170        0         0        0                   0                   0
## 171        0         0        0                   0                   0
## 172        0         0        0                   0                   0
## 173        0         0        0                   0                   0
## 174        0         0        0                   0                   0
## 175        0         0        0                   0                   0
## 176        0         0        0                   0                   0
## 177        0         0        0                   0                   0
## 178        0         0        0                   0                   0
## 179        0         0        0                   0                   0
## 180        0         0        0                   0                   0
## 181        0         0        0                   0                   0
## 182        0         0        0                   0                   0
## 183        0         0        0                   0                   0
## 184        0         0        0                   0                   0
## 185        0         0        0                   0                   0
## 186        0         0        0                   0                   0
## 187        0         0        0                   0                   0
## 188        0         0        0                   0                   0
## 189        0         0        0                   0                   0
## 190        0         0        0                   0                   0
## 191        0         0        0                   0                   0
## 192        0         0        0                   0                   0
## 193        0         0        0                   0                   0
## 194        0         0        0                   0                   0
## 195        0         0        0                   0                   0
## 196        0         0        0                   0                   0
## 197        0         0        0                   0                   0
## 198        0         0        0                   0                   0
## 199        0         0        0                   0                   0
## 200        0    186864        0                   0                   0
## 201        0    436016        0                   0                   0
## 202        0    747456        0                   0                   0
## 203        0   1022256        0                   0                   0
## 204        0   1370336        0                   0                   0
## 205        0   1784368        0                   0                   0
## 206        0   2286336        0                   0                   0
## 207        0   2905552        0                   0               21984
## 208        0   3499120        0                   0               51296
## 209        0   4117712        0                   0               80608
## 210        0   4666658        0                   0              117248
## 211        0   5120370        0                   0              164880
## 212        0   6299495        0                   0              267472
## 213        0   7449218        0                   0              351744
## 214        0   8672132        0                   0              443344
## 215        0   9858288        0                   0              593568
## 216        0  11410754        0                   0              941648
## 217        0  12402569        0                   0             1505904
## 218        0  14072105        0                   0             2495184
## 219        0  16855199        0                   0             3751936
## 220        0  20433115        0                   0             4213600
## 221        0  23838495        0                   0             4638624
## 222        0  28339025        0                   0             5012352
## 223        0  33212689        0                   0             5342112
## 224        0  38079084        0                   0             5770800
## 225        0  42487896        0                   0             6477952
## 226        0  45767938        0                   0             6880992
## 227        0  49295449        0                   0             7346320
## 228        0  54695257        0                   0             7837296
## 229        0  60184448        0                   0             8244000
## 230        0  65518805        0                   0             8386896
## 231        0  70785579        0                   0             8493152
## 232        0  75420749        0                   0             8786272
## 233        0  80521284        0                   0             8870544
## 234        0  85507145        0                   0             9017104
## 235        0  90183259        0                   0             9266256
## 236        0  94817099        0                   0             9515408
## 237        0 100603128        0                3664             9790208
## 238        0 105652433        0               10992            10076000
## 239        0 110575243        0               18320            10361792
## 240   406704 115663928    51296               29312            10643920
## 241   813408 120726805   102592               43968            10911392
## 242  1220112 125891849   157552               58624            11175200
## 243  1630480 131640232   223504               73280            11446336
## 244  2037184 135505828   289456               87936            11713808
## 245  2462208 146454131   355408               91600            11988608
## 246  2916544 156878956   425024               95264            12281728
## 247  3381872 164226805   494640               98928            12589504
## 248  3872848 171496411   571584              102592            12908272
## 249  4385808 180626189   652192              106256            13238032
## 250  4909760 190141250   740128              109920            13582448
## 251  5433712 199812768   835392              113584            13930528
## 252  5964992 212410314   930656              117248            14300592
## 253  6499936 221398681  1033248              120912            14703632
## 254  7060528 240100613  1154160              128240            15124992
## 255  7635776 259107043  1282400              135568            15553680
## 256  8181712 281209450  1425296              142896            15997024
## 257  8720320 306185554  1575520              153888            16466016
## 258  9258928 331671559  1725744              153888            16946000
## 259  9775552 359237062  1872304              153888            17455296
## 260 10292176 388101534  2022528              153888            17979248
## 261 10783152 418243679  2165424              153888            18492208
## 262 11270464 451429495  2308320              153888            19016160
## 263 11746784 483802609  2443888              153888            19540112
## 264 12208448 518260251  2586784              153888            20071392
## 265 12685687 553021380  2735961              153888            20626024
## 266 13197193 588372383  2888033              153888            21191421
## 267 13717377 623762311  3040078              153888            21756717
##      Argentina   Armenia    Aruba Asia.and.Pacific..other.   Australia
## 1            0         0        0                        0           0
## 2            0         0        0                        0           0
## 3            0         0        0                        0           0
## 4            0         0        0                        0           0
## 5            0         0        0                        0           0
## 6            0         0        0                        0           0
## 7            0         0        0                        0           0
## 8            0         0        0                        0           0
## 9            0         0        0                        0           0
## 10           0         0        0                        0           0
## 11           0         0        0                        0           0
## 12           0         0        0                        0           0
## 13           0         0        0                        0           0
## 14           0         0        0                        0           0
## 15           0         0        0                        0           0
## 16           0         0        0                        0           0
## 17           0         0        0                        0           0
## 18           0         0        0                        0           0
## 19           0         0        0                        0           0
## 20           0         0        0                        0           0
## 21           0         0        0                        0           0
## 22           0         0        0                        0           0
## 23           0         0        0                        0           0
## 24           0         0        0                        0           0
## 25           0         0        0                        0           0
## 26           0         0        0                        0           0
## 27           0         0        0                        0           0
## 28           0         0        0                        0           0
## 29           0         0        0                        0           0
## 30           0         0        0                        0           0
## 31           0         0        0                        0           0
## 32           0         0        0                        0           0
## 33           0         0        0                        0           0
## 34           0         0        0                        0           0
## 35           0         0        0                        0           0
## 36           0         0        0                        0           0
## 37           0         0        0                        0           0
## 38           0         0        0                        0           0
## 39           0         0        0                        0           0
## 40           0         0        0                        0           0
## 41           0         0        0                        0           0
## 42           0         0        0                        0           0
## 43           0         0        0                        0           0
## 44           0         0        0                        0           0
## 45           0         0        0                        0           0
## 46           0         0        0                        0           0
## 47           0         0        0                        0           0
## 48           0         0        0                        0           0
## 49           0         0        0                        0           0
## 50           0         0        0                        0           0
## 51           0         0        0                        0           0
## 52           0         0        0                        0           0
## 53           0         0        0                        0           0
## 54           0         0        0                        0           0
## 55           0         0        0                        0           0
## 56           0         0        0                        0           0
## 57           0         0        0                        0           0
## 58           0         0        0                        0           0
## 59           0         0        0                        0           0
## 60           0         0        0                        0           0
## 61           0         0        0                        0           0
## 62           0         0        0                        0           0
## 63           0         0        0                        0           0
## 64           0         0        0                        0           0
## 65           0         0        0                        0           0
## 66           0         0        0                        0           0
## 67           0         0        0                        0           0
## 68           0         0        0                        0           0
## 69           0         0        0                        0           0
## 70           0         0        0                        0           0
## 71           0         0        0                        0           0
## 72           0         0        0                        0           0
## 73           0         0        0                        0           0
## 74           0         0        0                        0           0
## 75           0         0        0                        0           0
## 76           0         0        0                        0           0
## 77           0         0        0                        0           0
## 78           0         0        0                        0           0
## 79           0         0        0                        0           0
## 80           0         0        0                        0           0
## 81           0         0        0                        0           0
## 82           0         0        0                        0           0
## 83           0         0        0                        0           0
## 84           0         0        0                        0           0
## 85           0         0        0                        0           0
## 86           0         0        0                        0           0
## 87           0         0        0                        0           0
## 88           0         0        0                        0           0
## 89           0         0        0                        0           0
## 90           0         0        0                        0           0
## 91           0         0        0                        0           0
## 92           0         0        0                        0           0
## 93           0         0        0                        0           0
## 94           0         0        0                        0           0
## 95           0         0        0                        0           0
## 96           0         0        0                        0           0
## 97           0         0        0                        0           0
## 98           0         0        0                        0           0
## 99           0         0        0                        0           0
## 100          0         0        0                        0           0
## 101          0         0        0                        0           0
## 102          0         0        0                        0           0
## 103          0         0        0                        0           0
## 104          0         0        0                        0           0
## 105          0         0        0                        0           0
## 106          0         0        0                        0           0
## 107          0         0        0                        0           0
## 108          0         0        0                   436016           0
## 109          0         0        0                  1139504           0
## 110          0         0        0                  2128784      278464
## 111          0         0        0                  3187680      787760
## 112          0         0        0                  4151312     1143168
## 113          0         0        0                  5224864     1542544
## 114          0         0        0                  6129872     1810016
## 115          0         0        0                  7177776     2231376
## 116          0         0        0                  8581088     2927536
## 117          0         0        0                 11428016     3821552
## 118          0         0        0                 14025792     4554352
## 119          0         0        0                 16759136     5195552
## 120          0         0        0                 19400880     5796448
## 121          0         0        0                 22522608     6488944
## 122          0         0        0                 25944784     7196096
## 123          0         0        0                 29839616     8064464
## 124          0         0        0                 34012912     8954816
## 125          0         0        0                 39307392     9782880
## 126          0         0        0                 44993920    10713536
## 127          0         0        0                 51068832    11779760
## 128          0         0        0                 56678416    12747056
## 129          0         0        0                 63955120    14201664
## 130          0         0        0                 72331024    16407392
## 131          0         0        0                 81164928    18173440
## 132          0         0        0                 90544768    20184976
## 133          0         0        0                100591456    22610544
## 134          0         0        0                112752272    25182672
## 135          0         0        0                126745088    28088224
## 136          0         0        0                141639248    30975456
## 137    1084544         0        0                158533952    34009248
## 138    1974896         0        0                177187376    37537680
## 139    3729952         0        0                198229728    40963520
## 140    5100288         0        0                221990768    44510272
## 141    6038272         0        0                248144400    48518688
## 142    7423264         0        0                262313088    52670000
## 143    8976800         0        0                277474720    56634448
## 144   10970016         0        0                295300080    60994608
## 145   13234368         0        0                314792560    65585600
## 146   15539024         0        0                335336608    70088656
## 147   17620176         0        0                357503808    75064368
## 148   19968800         0        0                384577104    80677616
## 149   22889008         0        0                411965504    86463072
## 150   24959168         0        0                445879488    96630672
## 151   27450688         0        0                486297072   108069680
## 152   30264640         0        0                527923776   119464720
## 153   33126224         0        0                571917424   130683888
## 154   36922128         0        0                620370160   142229152
## 155   40904896         0        0                671120224   154276384
## 156   47159344         0        0                727794976   168635600
## 157   53413792         0        0                789024080   184112336
## 158   61031248         0        0                854492432   200867808
## 159   66966928         0        0                919436832   215421216
## 160   75874112         0        0                989694032   232858192
## 161   85818208         0        0               1066583072   252097856
## 162   95296976         0        0               1149547024   272883728
## 163  105442592         0        0               1238977936   295274432
## 164  114115280         0        0               1335777152   319753616
## 165  121054896         0        0               1424955248   341547088
## 166  126041600         0        0               1518944176   360819728
## 167  128272976         0        0               1623133680   381579952
## 168  130793808         0        0               1734325088   404520256
## 169  134520096         0        0               1853119296   426258768
## 170  140411808         0        0               1971832896   451991040
## 171  145951776         0        0               2081555040   475143856
## 172  153250464         0        0               2198312064   499487472
## 173  161695984         0        0               2322803792   524336720
## 174  172655008         0        0               2454715120   551406352
## 175  183892496         0        0               2592976160   579641136
## 176  195151968         0        0               2732237472   607494864
## 177  208525568         0        0               2882175680   636389168
## 178  221265296         0        0               3039126784   662678368
## 179  234397072         0        0               3200350112   686333152
## 180  247166112         0        0               3350215040   708364784
## 181  260012096         0        0               3485478928   727912224
## 182  273114560         0        0               3619988032   748254752
## 183  286348928         0        0               3770955824   769835712
## 184  300590896         0        0               3936099632   792534192
## 185  314591040         0        0               4111396384   817764496
## 186  329690384         0        0               4303595168   844815808
## 187  346405552         0        0               4511831280   873673472
## 188  362757984         0        0               4729399600   901710400
## 189  380140000         0        0               4956838736   933854672
## 190  396008784         0        0               5211277888   962895536
## 191  409953968         0        0               5470729392   997443392
## 192  423437488         0        0               5701085072  1033947824
## 193  437518240         0        0               5942135968  1068939024
## 194  451474416         0        0               6158502496  1103149792
## 195  465144800         0        0               6281979296  1135847328
## 196  478851824         0        0               6383549040  1171270880
## 197  493372256         0        0               6513496464  1209288544
## 198  510768928         0        0               6668516640  1247712912
## 199  526139408         0        0               6856062144  1285364176
## 200  556066960         0        0               7061433008  1340108000
## 201  591036176         0        0               7297387280  1399142368
## 202  627137568         0        0               7552203824  1459349216
## 203  662278992         0        0               7824534288  1518790288
## 204  699036240         0        0               8111601360  1586636576
## 205  738603776         0        0               8415698704  1657318800
## 206  782908864         0        0               8747404288  1730356976
## 207  830526208         0        0               9109176656  1804882736
## 208  874728704         0        0               9478778992  1882500912
## 209  923677503   2395128   719371              10083276580  1966209069
## 210  972442003   4888704  1337932              10751536643  2054327969
## 211 1023568714   7460146  1983484              11492925566  2144831866
## 212 1077208839  10158886  2692427              12272302996  2239655321
## 213 1127241499  13053100  3371514              13120269028  2340589585
## 214 1182911539  16131081  4031790              14041935103  2449465351
## 215 1241716389  19396132  4624177              15038942019  2570318020
## 216 1304789055  22844097  5178121              16104284009  2690537322
## 217 1370265039  26449402  5860480              17290511091  2819681534
## 218 1439274256  30155963  6494991              18593519699  2954178434
## 219 1516523126  34016113  7325396              20032535693  3096302236
## 220 1599171127  38076203  8254157              21667211686  3243782004
## 221 1688015437  42390624  9062478              23405991514  3396411541
## 222 1778076521  46936120  9846261              25232044483  3553747086
## 223 1872044500  51680231 10715723              27185890346  3724574480
## 224 1967513886  56612185 11503800              29162156801  3896763867
## 225 2062345439  61804025 12074512              31145470185  4072477793
## 226 2162011134  67198801 13293639              33227863888  4246552489
## 227 2262662019  72780399 13930399              35416893279  4434157356
## 228 2365138842  78555913 14472687              37642520283  4635977535
## 229 2475649755  84381002 15041559              39965166895  4840847110
## 230 2584169754  90437836 15626993              42333173859  5061378110
## 231 2685989443  96387225 16184618              44678314510  5291510753
## 232 2789196010 102451965 16808087              47028156371  5525399400
## 233 2894174872 108610306 17128511              49408191625  5750184413
## 234 3000457863 114830045 17928653              51889315419  5986545606
## 235 3100824058 121538355 18865185              54443183133  6227533578
## 236 3204757998 128272452 19044721              57037789977  6467255797
## 237 3319369062 135293399 19491729              59717976405  6723106021
## 238 3440498183 142511521 20103617              62611173211  6983984817
## 239 3557300202 149586475 20752145              65602667518  7261470424
## 240 3669190220 156229024 22389953              68637505844  7539894800
## 241 3786035223 162669665 24071729              71745193845  7819767164
## 242 3907051937 168389596 25533665              74900566346  8104679288
## 243 4024616609 170897861 27127505              78104864949  8393914145
## 244 4146626649 173581357 28739665              81381826684  8687928755
## 245 4274225109 176941449 30406785              84738039393  8993338555
## 246 4408868759 179438793 32095889              88203759764  9305699765
## 247 4546426812 182685236 33839953              91761608164  9626494461
## 248 4685781263 186096308 35635313              95142752227  9961178567
## 249 4832291571 189130008 37441665              98637580592 10305241904
## 250 4974008376 192621418 39819601             102000000000 10655436485
## 251 5107318986 196154118 42226849             106000000000 11013105228
## 252 5231701199 199230726 44663409             110000000000 11375314322
## 253 5366321859 202686288 47224545             114000000000 11745040157
## 254 5523355499 206377482 49840641             118000000000 12128245102
## 255 5684780278 210757312 52559329             122000000000 12514760314
## 256 5859397784 215162562 55274353             126000000000 12907442187
## 257 6033630695 220270324 58095633             131000000000 13307857916
## 258 6221671879 225852438 60752033             135000000000 13712906454
## 259 6400539263 230214768 63379121             139000000000 14121579085
## 260 6587225715 234474944 65885297             144000000000 14528331858
## 261 6777473616 239443820 68384145             149000000000 14932578429
## 262 6968518297 245192072 69732497             154000000000 15339724486
## 263 7156946446 250741500 70593537             158000000000 15737888284
## 264 7359617936 256322937 71465569             163000000000 16131352524
## 265 7565985904 262114667 72375930             168000000000 16534347977
## 266 7773049963 268075480 73303961             173000000000 16947717900
## 267 7977373398 273731872 74231827             178000000000 17360810555
##        Austria Azerbaijan   Bahamas   Bahrain Bangladesh Barbados
## 1            0          0         0         0          0        0
## 2            0          0         0         0          0        0
## 3            0          0         0         0          0        0
## 4            0          0         0         0          0        0
## 5            0          0         0         0          0        0
## 6            0          0         0         0          0        0
## 7            0          0         0         0          0        0
## 8            0          0         0         0          0        0
## 9            0          0         0         0          0        0
## 10           0          0         0         0          0        0
## 11           0          0         0         0          0        0
## 12           0          0         0         0          0        0
## 13           0          0         0         0          0        0
## 14           0          0         0         0          0        0
## 15           0          0         0         0          0        0
## 16           0          0         0         0          0        0
## 17           0          0         0         0          0        0
## 18           0          0         0         0          0        0
## 19           0          0         0         0          0        0
## 20           0          0         0         0          0        0
## 21           0          0         0         0          0        0
## 22           0          0         0         0          0        0
## 23           0          0         0         0          0        0
## 24           0          0         0         0          0        0
## 25           0          0         0         0          0        0
## 26           0          0         0         0          0        0
## 27           0          0         0         0          0        0
## 28           0          0         0         0          0        0
## 29           0          0         0         0          0        0
## 30           0          0         0         0          0        0
## 31           0          0         0         0          0        0
## 32           0          0         0         0          0        0
## 33           0          0         0         0          0        0
## 34           0          0         0         0          0        0
## 35           0          0         0         0          0        0
## 36           0          0         0         0          0        0
## 37           0          0         0         0          0        0
## 38           0          0         0         0          0        0
## 39           0          0         0         0          0        0
## 40           0          0         0         0          0        0
## 41           0          0         0         0          0        0
## 42           0          0         0         0          0        0
## 43           0          0         0         0          0        0
## 44           0          0         0         0          0        0
## 45           0          0         0         0          0        0
## 46           0          0         0         0          0        0
## 47           0          0         0         0          0        0
## 48           0          0         0         0          0        0
## 49           0          0         0         0          0        0
## 50           0          0         0         0          0        0
## 51           0          0         0         0          0        0
## 52           0          0         0         0          0        0
## 53           0          0         0         0          0        0
## 54           0          0         0         0          0        0
## 55           0          0         0         0          0        0
## 56           0          0         0         0          0        0
## 57      168544          0         0         0          0        0
## 58      168544          0         0         0          0        0
## 59      168544          0         0         0          0        0
## 60      168544          0         0         0          0        0
## 61      168544          0         0         0          0        0
## 62      168544          0         0         0          0        0
## 63      168544          0         0         0          0        0
## 64      168544          0         0         0          0        0
## 65      168544          0         0         0          0        0
## 66      168544          0         0         0          0        0
## 67      168544          0         0         0          0        0
## 68      168544          0         0         0          0        0
## 69      421360          0         0         0          0        0
## 70      754784          0         0         0          0        0
## 71     1113856          0         0         0          0        0
## 72     1480256          0         0         0          0        0
## 73     1828336          0         0         0          0        0
## 74     2227712          0         0         0          0        0
## 75     2630752          0         0         0          0        0
## 76     3088752          0         0         0          0        0
## 77     3565072          0         0         0          0        0
## 78     4023072          0         0         0          0        0
## 79     4499392          0         0         0          0        0
## 80     4994032          0         0         0          0        0
## 81     5474016          0         0         0          0        0
## 82     5986976          0         0         0          0        0
## 83     6415664          0         0         0          0        0
## 84     7001904          0         0         0          0        0
## 85     7635776          0         0         0          0        0
## 86     8309952          0         0         0          0        0
## 87     9017104          0         0         0          0        0
## 88     9867152          0         0         0          0        0
## 89    10926048          0         0         0          0        0
## 90    12094864          0         0         0          0        0
## 91    13413904          0         0         0          0        0
## 92    14872176          0         0         0          0        0
## 93    16139920          0         0         0          0        0
## 94    17733760          0         0         0          0        0
## 95    19532784          0         0         0          0        0
## 96    21646912          0         0         0          0        0
## 97    23728064          0         0         0          0        0
## 98    26062032          0         0         0          0        0
## 99    28322720          0         0         0          0        0
## 100   30649360          0         0         0          0        0
## 101   32983328          0         0         0          0        0
## 102   35793616          0         0         0          0        0
## 103   39017936          0         0         0          0        0
## 104   42194624          0         0         0          0        0
## 105   45895264          0         0         0          0        0
## 106   50127184          0         0         0          0        0
## 107   55000304          0         0         0          0        0
## 108   62244032          0         0         0          0        0
## 109   68110096          0         0         0          0        0
## 110   74258288          0         0         0          0        0
## 111   80637312          0         0         0          0        0
## 112   86990688          0         0         0          0        0
## 113   92867744          0         0         0          0        0
## 114   97942384          0         0         0          0        0
## 115  103295488          0         0         0          0        0
## 116  106889872          0         0         0          0        0
## 117  111803296          0         0         0          0        0
## 118  117874544          0         0         0          0        0
## 119  124359824          0         0         0          0        0
## 120  131724464          0         0         0          0        0
## 121  141866416          0         0         0          0        0
## 122  151872800          0         0         0          0        0
## 123  162600992          0         0         0          0        0
## 124  171753664          0         0         0          0        0
## 125  179612944          0         0         0          0        0
## 126  187703056          0         0         0          0        0
## 127  194987088          0         0         0          0        0
## 128  202227152          0         0         0          0        0
## 129  211090368          0         0         0          0        0
## 130  234737824          0         0         0          0        0
## 131  245051984          0         0         0          0        0
## 132  255651936          0         0         0          0        0
## 133  267413376          0         0         0          0        0
## 134  278874368          0         0         0          0        0
## 135  290921600          0         0         0          0        0
## 136  302290992          0         0         0          0        0
## 137  314547072          0         0         0          0        0
## 138  326499040          0         0         0          0        0
## 139  339374336          0         0         0          0        0
## 140  352410848          0         0         0          0        0
## 141  367356304          0         0         0          0        0
## 142  381821776          0         0         0          0        0
## 143  399522560          0         0         0          0        0
## 144  417652032          0         0         0          0        0
## 145  438023872          0         0         0          0        0
## 146  459322704          0         0         0          0        0
## 147  482343616          0         0         0          0        0
## 148  506797152          0         0         0          0        0
## 149  531613424          0         0         0          0        0
## 150  559287616          0         0         0          0        0
## 151  587650640          0         0         0          0        0
## 152  613305968          0         0         0          0        0
## 153  638855040          0         0         0          0        0
## 154  665781776          0         0         0          0        0
## 155  693888320          0         0         0          0        0
## 156  727424912          0         0         0          0        0
## 157  769542592          0         0         0          0        0
## 158  828485360          0         0         0          0        0
## 159  870654336          0         0         0          0        0
## 160  928171808          0         0         0          0        0
## 161  976210512          0         0         0          0        0
## 162 1026150832          0         0         0          0        0
## 163 1085778768          0         0         0          0        0
## 164 1134612560          0         0         0          0        0
## 165 1169512160          0         0         0          0        0
## 166 1177543648          0         0         0          0        0
## 167 1180995136          0         0         0          0        0
## 168 1184333040          0         0         0          0        0
## 169 1187348512          0         0         0          0        0
## 170 1201876272          0         0         0          0        0
## 171 1221214864          0         0         0          0        0
## 172 1239802336          0         0         0          0        0
## 173 1257580064          0         0         0          0        0
## 174 1277673440          0         0         0          0        0
## 175 1296663952          0         0         0          0        0
## 176 1315284400          0         0         0          0        0
## 177 1335407088          0         0         0          0        0
## 178 1356599664          0         0         0          0     3664
## 179 1380774736          0         0         0          0     7328
## 180 1399640672          0         0         0          0    14656
## 181 1417744496          0         0         0          0    18320
## 182 1432917120          0         0         0          0    21984
## 183 1447148096          0         0     10992          0    25648
## 184 1460902752          0         0    131904          0    29312
## 185 1474825952          0         0    663184          0    29312
## 186 1488419392          0         0   2612432          0    29312
## 187 1503679952          0         0   5866064          0    29312
## 188 1509469072          0         0   9343200          0    29312
## 189 1515807792          0         0  12527216          0    32976
## 190 1523154112          0         0  15495056          0    32976
## 191 1531130640          0         0  18345648          0    32976
## 192 1539678752          0         0  20961744          0    32976
## 193 1549293088          0         0  23720736          0    32976
## 194 1558683920          0         0  26538352          0    32976
## 195 1563245600          0         0  29601456          0    32976
## 196 1576007312          0         0  32961344          0    32976
## 197 1593638480          0         0  36911136          0    36640
## 198 1618128656          0         0  41487472          0    40304
## 199 1644707312          0         0  46096784          0    43968
## 200 1665606768          0     54960  47478112          0   117248
## 201 1688876832          0    120912  48654256          0   227168
## 202 1710952432          0    197856  49940320          0   315104
## 203 1732672624          0    278464  50936928          0   425024
## 204 1757184784          0    362736  51981168          0   538608
## 205 1786262288          0    490976  53384480          0   666848
## 206 1814475088          0    630208  54439712          0   795088
## 207 1843662512          0    806080  55194496          0   930656
## 208 1871758064          0    985616  56484224          0  1080880
## 209 1899667967   23124155   1245760  57795936    1840006  1231104
## 210 1930452447   47199761   1656128  58371184    4051911  1403312
## 211 1962276492   72027938   2202064  60140896    6342320  1597504
## 212 1996141474   98086038   2927536  61731072    8859076  1857648
## 213 2033090534  126031637   3634688  62925536   11752318  2048176
## 214 2071986970  155751780   4719232  64523040   14726930  2227712
## 215 2110127522  187279024   6034608  65750480   17848235  2432896
## 216 2149336120  220573309   7126480  66399008   21024548  2700368
## 217 2189251691  255387312   8827476  67402944   24395689  3037456
## 218 2231548833  291179353  10455193  68505808   28261352  3477136
## 219 2276187241  328454473  12195958  69777216   32010679  3957120
## 220 2326818943  367660666  14764728  72367664   35813876  4385808
## 221 2378888113  409274337  21488475  75405120   39419942  4869456
## 222 2434959454  453066357  27969773  79083776   42926301  5371424
## 223 2494975235  498717368  35832518  84601760   47476870  5851408
## 224 2552269746  546116800  43212268  90002496   52133457  6342384
## 225 2606483813  595950808  51458387  95751312   56998566  6910304
## 226 2664688093  647702299  57915783 102320864   62562664  7441584
## 227 2720682318  701213153  67624472 109784432   68365280  8031488
## 228 2777909453  756559844  74221516 117544784   74370662  8661696
## 229 2839231463  812362853  81137168 125671536   81004694  9262592
## 230 2891257117  870361083  89109293 133552800   88625647  9936768
## 231 2947090798  927261249  91907733 142071600   96537477 10621936
## 232 3000656901  985237138  94166218 151902112  105115138 11266800
## 233 3052326003 1044042091  96180592 160124128  113328929 11951968
## 234 3106540961 1103374612  98034576 169324432  122429686 12693301
## 235 3160908207 1167363980  99544144 179510352  132640880 13529578
## 236 3214637729 1231524521 100954784 190513344  144074624 14435653
## 237 3272012685 1298386435 102376416 201934032  155904960 15366148
## 238 3324951068 1367083671 103915296 214076594  169415283 16300735
## 239 3378648555 1434338103 105860880 225793340  182831593 17276682
## 240 3440940783 1497391055 107810128 238198721  198321556 18336992
## 241 3506840461 1558191309 109590832 250054050  214224115 19529097
## 242 3567271920 1614367111 111382528 260927894  231932904 20495421
## 243 3628059659 1662775453 113082624 275537676  249300820 21605257
## 244 3689250006 1704722012 114768064 290293317  268228795 22347141
## 245 3753455956 1738033128 116449840 305080404  291000182 23170100
## 246 3821129844 1769274738 118116960 320670029  314949824 24012430
## 247 3888582855 1799078598 119479968 337957760  339897856 24901328
## 248 3955637219 1830743640 121158080 356323302  363808971 26022542
## 249 4021258224 1859313868 122832528 374311415  388826400 27213758
## 250 4087519967 1888820188 124499648 392929330  416331291 28381793
## 251 4157910825 1917612868 126067840 406834667  448275158 29583085
## 252 4230057363 1947254717 127643360 422511845  481460528 30786890
## 253 4307821612 1977881439 129160256 438949048  516601168 32028260
## 254 4385874158 2009959594 130882336 456388154  553763031 33294270
## 255 4465240838 2044246014 132622736 475520663  592678928 34616604
## 256 4541929302 2083354554 134286192 494277583  635634625 35955896
## 257 4615961420 2113812824 135975296 521047635  679401066 37290266
## 258 4689767691 2149263424 137470208 550730082  727708679 38879272
## 259 4757250750 2181120054 139111680 578827612  780001288 40468581
## 260 4829633894 2211752942 140764144 607902442  838283137 41921213
## 261 4899749565 2245149560 142629120 636341272  899880606 43425375
## 262 4967410964 2280646506 144596688 662789496  965483132 44875267
## 263 5035412195 2316226467 147395984 693873386 1033189646 46304794
## 264 5099665521 2353640890 149810560 724962339 1104335325 47558304
## 265 5166369509 2393882319 152327089 757809267 1187836112 48859181
## 266 5233771592 2433570604 154892395 792074360 1273089719 50183850
## 267 5303713347 2471780322 157456745 826530054 1361147180 51506565
##        Belarus     Belgium   Belize    Benin  Bermuda   Bhutan   Bolivia
## 1            0           0        0        0        0        0         0
## 2            0           0        0        0        0        0         0
## 3            0           0        0        0        0        0         0
## 4            0           0        0        0        0        0         0
## 5            0           0        0        0        0        0         0
## 6            0           0        0        0        0        0         0
## 7            0           0        0        0        0        0         0
## 8            0           0        0        0        0        0         0
## 9            0           0        0        0        0        0         0
## 10           0           0        0        0        0        0         0
## 11           0           0        0        0        0        0         0
## 12           0           0        0        0        0        0         0
## 13           0           0        0        0        0        0         0
## 14           0           0        0        0        0        0         0
## 15           0           0        0        0        0        0         0
## 16           0           0        0        0        0        0         0
## 17           0           0        0        0        0        0         0
## 18           0           0        0        0        0        0         0
## 19           0           0        0        0        0        0         0
## 20           0           0        0        0        0        0         0
## 21           0           0        0        0        0        0         0
## 22           0           0        0        0        0        0         0
## 23           0           0        0        0        0        0         0
## 24           0           0        0        0        0        0         0
## 25           0           0        0        0        0        0         0
## 26           0           0        0        0        0        0         0
## 27           0           0        0        0        0        0         0
## 28           0           0        0        0        0        0         0
## 29           0           0        0        0        0        0         0
## 30           0           0        0        0        0        0         0
## 31           0           0        0        0        0        0         0
## 32           0           0        0        0        0        0         0
## 33           0           0        0        0        0        0         0
## 34           0           0        0        0        0        0         0
## 35           0           0        0        0        0        0         0
## 36           0           0        0        0        0        0         0
## 37           0           0        0        0        0        0         0
## 38           0           0        0        0        0        0         0
## 39           0           0        0        0        0        0         0
## 40           0           0        0        0        0        0         0
## 41           0           0        0        0        0        0         0
## 42           0           0        0        0        0        0         0
## 43           0           0        0        0        0        0         0
## 44           0           0        0        0        0        0         0
## 45           0           0        0        0        0        0         0
## 46           0           0        0        0        0        0         0
## 47           0           0        0        0        0        0         0
## 48           0           0        0        0        0        0         0
## 49           0           0        0        0        0        0         0
## 50           0           0        0        0        0        0         0
## 51           0           0        0        0        0        0         0
## 52           0     6397344        0        0        0        0         0
## 53           0     6397344        0        0        0        0         0
## 54           0     6397344        0        0        0        0         0
## 55           0     6397344        0        0        0        0         0
## 56           0     6397344        0        0        0        0         0
## 57           0     6397344        0        0        0        0         0
## 58           0     6397344        0        0        0        0         0
## 59           0     6397344        0        0        0        0         0
## 60           0     6397344        0        0        0        0         0
## 61           0     6397344        0        0        0        0         0
## 62           0     6397344        0        0        0        0         0
## 63           0     6397344        0        0        0        0         0
## 64           0     6397344        0        0        0        0         0
## 65           0     6397344        0        0        0        0         0
## 66           0     6397344        0        0        0        0         0
## 67           0     6397344        0        0        0        0         0
## 68           0     6397344        0        0        0        0         0
## 69           0     6397344        0        0        0        0         0
## 70           0     6397344        0        0        0        0         0
## 71           0     6397344        0        0        0        0         0
## 72           0     6397344        0        0        0        0         0
## 73           0     6397344        0        0        0        0         0
## 74           0     6397344        0        0        0        0         0
## 75           0     6397344        0        0        0        0         0
## 76           0     6397344        0        0        0        0         0
## 77           0     6397344        0        0        0        0         0
## 78           0     6397344        0        0        0        0         0
## 79           0     6397344        0        0        0        0         0
## 80           0    12593168        0        0        0        0         0
## 81           0    17055920        0        0        0        0         0
## 82           0    21771488        0        0        0        0         0
## 83           0    26336832        0        0        0        0         0
## 84           0    30744624        0        0        0        0         0
## 85           0    35504160        0        0        0        0         0
## 86           0    41102752        0        0        0        0         0
## 87           0    47100720        0        0        0        0         0
## 88           0    53223264        0        0        0        0         0
## 89           0    59932048        0        0        0        0         0
## 90           0    67659424        0        0        0        0         0
## 91           0    75049712        0        0        0        0         0
## 92           0    82729456        0        0        0        0         0
## 93           0    89841280        0        0        0        0         0
## 94           0    97641936        0        0        0        0         0
## 95           0   105860288        0        0        0        0         0
## 96           0   114826096        0        0        0        0         0
## 97           0   124143648        0        0        0        0         0
## 98           0   132427952        0        0        0        0         0
## 99           0   141162928        0        0        0        0         0
## 100          0   150495136        0        0        0        0         0
## 101          0   160662736        0        0        0        0         0
## 102          0   172072432        0        0        0        0         0
## 103          0   183859520        0        0        0        0         0
## 104          0   196918016        0        0        0        0         0
## 105          0   210295280        0        0        0        0         0
## 106          0   223507664        0        0        0        0         0
## 107          0   237262320        0        0        0        0         0
## 108          0   251713136        0        0        0        0         0
## 109          0   266610960        0        0        0        0         0
## 110          0   281823888        0        0        0        0         0
## 111          0   298282576        0        0        0        0         0
## 112          0   314627680        0        0        0        0         0
## 113          0   331855808        0        0        0        0         0
## 114          0   349937648        0        0        0        0         0
## 115          0   368997776        0        0        0        0         0
## 116          0   389527168        0        0        0        0         0
## 117          0   411760320        0        0        0        0         0
## 118          0   431861024        0        0        0        0         0
## 119          0   453511600        0        0        0        0         0
## 120          0   478258256        0        0        0        0         0
## 121          0   501975328        0        0        0        0         0
## 122          0   527564704        0        0        0        0         0
## 123          0   555671248        0        0        0        0         0
## 124          0   581586720        0        0        0        0         0
## 125          0   608517120        0        0        0        0         0
## 126          0   634835632        0        0        0        0         0
## 127          0   659886400        0        0        0        0         0
## 128          0   687124576        0        0        0        0         0
## 129          0   714857392        0        0        0        0         0
## 130          0   745283248        0        0        0        0         0
## 131          0   775914288        0        0        0        0         0
## 132          0   808351680        0        0        0        0         0
## 133          0   842734656        0        0        0        0         0
## 134          0   876604672        0        0        0        0         0
## 135          0   909686928        0        0        0        0         0
## 136          0   941790896        0        0        0        0         0
## 137          0   975759840        0        0        0        0         0
## 138          0  1011813600        0        0        0        0         0
## 139          0  1048647792        0        0        0        0         0
## 140          0  1088471808        0        0        0        0         0
## 141          0  1126251312        0        0        0        0         0
## 142          0  1163979520        0        0        0        0         0
## 143          0  1200055264        0        0        0        0         0
## 144          0  1239886608        0        0        0        0         0
## 145          0  1280018400        0        0        0        0         0
## 146          0  1322297296        0        0        0        0         0
## 147          0  1366041792        0        0        0        0         0
## 148          0  1411127312        0        0        0        0         0
## 149          0  1458253680        0        0        0        0         0
## 150          0  1507919200        0        0        0        0         0
## 151          0  1554627872        0        0        0        0         0
## 152          0  1603483648        0        0        0        0         0
## 153          0  1656113344        0        0        0        0         0
## 154          0  1706464032        0        0        0        0         0
## 155          0  1756730448        0        0        0        0         0
## 156          0  1814225936        0        0        0        0         0
## 157          0  1872549488        0        0        0        0         0
## 158          0  1930396720        0        0        0        0         0
## 159          0  1988159680        0        0        0        0         0
## 160          0  2049447408        0        0        0        0         0
## 161          0  2111134512        0        0        0        0         0
## 162          0  2175910368        0        0        0        0         0
## 163          0  2243925200        0        0        0        0         0
## 164          0  2284500336        0        0        0        0         0
## 165          0  2318919952        0        0        0        0         0
## 166          0  2364712624        0        0        0        0         0
## 167          0  2400960576        0        0        0        0         0
## 168          0  2434684032        0        0        0        0         0
## 169          0  2479553376        0        0        0        0         0
## 170          0  2534707568        0        0        0        0         0
## 171          0  2585241456        0        0        0        0         0
## 172          0  2641150432        0        0        0        0         0
## 173          0  2713034448        0        0        0        0         0
## 174          0  2789289616        0        0        0        0         0
## 175          0  2867329152        0        0        0        0         0
## 176          0  2945013280        0        0        0        0         0
## 177          0  3035488432        0        0        0        0         0
## 178          0  3123746864        0        0        0        0      3664
## 179          0  3220714624        0        0        0        0     14656
## 180          0  3314399440        0        0        0        0     25648
## 181          0  3398532208        0        0        0        0     32976
## 182          0  3466253920        0        0        0        0     47632
## 183          0  3538918368        0        0        0        0     91600
## 184          0  3613883808        0        0        0        0    164880
## 185          0  3685533328        0        0        0        0    234496
## 186          0  3760546400        0        0        0        0    278464
## 187          0  3850856672        0        0        0        0    333424
## 188          0  3929988080        0        0        0        0    399376
## 189          0  4003707760        0        0        0        0    483648
## 190          0  4065812560        0        0        0        0    611888
## 191          0  4130998784        0        0        0        0    718144
## 192          0  4192077664        0        0        0        0    853712
## 193          0  4249932224        0        0        0        0   1000272
## 194          0  4283073104        0        0        0        0   1139504
## 195          0  4321830896        0        0        0        0   1308048
## 196          0  4378249168        0        0        0        0   1469264
## 197          0  4460289792        0        0        0        0   1637808
## 198          0  4545360544        0        0        0        0   1842992
## 199          0  4626144416        0        0        0        0   2132448
## 200          0  4702359280    18320        0    43968        0   2627088
## 201          0  4791826832    43968        0   102592        0   3088752
## 202          0  4875307408    69616        0   208848        0   3601712
## 203          0  4957699776    98928        0   300448        0   4140320
## 204          0  5043452032   128240        0   384720        0   4928080
## 205          0  5135488048   157552        0   494640        0   5858736
## 206          0  5232287264   186864        0   630208        0   6965264
## 207          0  5328793360   216176        0   769440        0   7969200
## 208          0  5416494864   256480   124576   916000        0   8885200
## 209   35940692  5504804964   296784   227168  1051568        0   9834057
## 210   73359844  5595713047   340752   388384  1209120        0  10837845
## 211  111948394  5688411341   377392   516624  1384992        0  11878242
## 212  152448239  5786429644   447008   652192  1542544        0  12977234
## 213  195881636  5892106034   509296   773104  1692768        0  14189781
## 214  242072996  5995660026   593568   916000  1894288        0  15669769
## 215  291072694  6100990820   677840  1066224  2073824        0  17179099
## 216  342818442  6206087564   758448  1179808  2275344        0  18867936
## 217  396925983  6313448570   879360  1322704  2487856        0  20758322
## 218  452553483  6431886146   981952  1476592  2711360        0  22934441
## 219  510485978  6555377903  1117520  1678112  2909216        0  25480594
## 220  571419588  6680868360  1238432  1960240  3136384     3664  27964311
## 221  636082550  6802238945  1381328  2253360  3367216     7328  31023246
## 222  704117542  6932876783  1538880  2641744  3620032    10992  34591387
## 223  775026346  7071516174  1685440  3022800  4045056    14656  38045856
## 224  848635203  7206466618  1839328  3429504  4488400    18320  41558800
## 225  926007945  7328290039  2015200  3872848  4946400    21984  45613778
## 226 1006336028  7457968153  2191072  4132992  5415392    25648  50188605
## 227 1089372375  7584168095  2388928  4429776  5869728    32976  54663462
## 228 1175238727  7719619065  2605104  4792512  6294752    43968  59683606
## 229 1261796671  7859406373  2813952  5158912  6756416    65952  64413687
## 230 1351740934  7994243029  3004480  5666371  7192432    87936  69072656
## 231 1439955157  8117817495  3187680  6084017  7580816   113584  73853694
## 232 1529828320  8234920282  3359888  6561357  7976528   146560  78191554
## 233 1620961234  8336122975  3532096  7001008  8427200   175872  82469692
## 234 1712889379  8441090430  3704304  7486607  8870544   227168  86499040
## 235 1812033747  8545095873  3894832  8212347  9321216   289456  90608798
## 236 1911411201  8647463671  4100016  8877780  9742576   344416  94372479
## 237 2014958885  8750053507  4327184  9394970 10314160   447008  98384280
## 238 2121330430  8849797636  4576336  9933021 10959024   556928 102671058
## 239 2225433360  8956591203  4876784 10542675 11739456   619216 107639504
## 240 2329568044  9077075603  5188224 11223359 12241424   747456 113366275
## 241 2426608103  9200620312  5547296 12015488 12780032   923575 119340292
## 242 2516598549  9323278123  5902704 12880431 13241696  1128952 125962278
## 243 2594214128  9444835407  6280096 13967115 13780304  1301980 133754104
## 244 2658587085  9569773596  6653824 15189369 14311584  1503588 142346540
## 245 2716534574  9695856560  7031216 16462928 14842864  1739729 152145509
## 246 2775736848  9825440185  7338992 17694029 15370480  2025040 161920048
## 247 2838282684  9949487009  7727376 18892180 15894432  2401878 172803111
## 248 2897690502 10079772122  8097440 20086545 16414720  2769041 183726961
## 249 2954681709 10204517824  8445520 21628865 16927680  3139802 194103006
## 250 3010139744 10331312613  8841232 23202863 17444304  3521489 205107699
## 251 3065700074 10457441619  9288240 24992635 17971920  3890502 213668303
## 252 3121377231 10583886245  9720592 27045815 18528848  4292212 223996404
## 253 3178489518 10711839430 10152944 29373394 19089440  4653338 235007571
## 254 3239256709 10840880312 10544992 31854460 19672016  4943817 246025897
## 255 3301306104 10966518514 10966352 34221541 20254592  5321940 258096381
## 256 3366167714 11090549403 11409696 37932883 20906784  5694946 273017224
## 257 3430431637 11211160804 11886016 42252514 21635920  6066973 285194073
## 258 3496821696 11331819814 12322032 46507328 22284448  6467797 298234712
## 259 3558759528 11439462181 12908272 51015261 22760768  6835598 311981298
## 260 3622621918 11553044213 13446880 55954206 23368992  7299755 326922681
## 261 3685394664 11657202855 14047776 61075490 23812336  7967219 342773919
## 262 3749069421 11758597830 14524096 66381011 24288656  8721026 361259630
## 263 3813493118 11860568272 15037056 72033650 24746656  9574170 379831255
## 264 3877273104 11956959313 15531696 78191884 25321904 10493774 399861054
## 265 3936238856 12057188803 16053957 84542220 25922436 11481731 419862979
## 266 3996748059 12157432512 16601391 91290139 26534625 12596312 440425242
## 267 4058119852 12257548524 17162217 98792204 27146704 13762670 461310418
##     Bonaire.Sint.Eustatius.and.Saba Bosnia.and.Herzegovina  Botswana
## 1                                 0                      0         0
## 2                                 0                      0         0
## 3                                 0                      0         0
## 4                                 0                      0         0
## 5                                 0                      0         0
## 6                                 0                      0         0
## 7                                 0                      0         0
## 8                                 0                      0         0
## 9                                 0                      0         0
## 10                                0                      0         0
## 11                                0                      0         0
## 12                                0                      0         0
## 13                                0                      0         0
## 14                                0                      0         0
## 15                                0                      0         0
## 16                                0                      0         0
## 17                                0                      0         0
## 18                                0                      0         0
## 19                                0                      0         0
## 20                                0                      0         0
## 21                                0                      0         0
## 22                                0                      0         0
## 23                                0                      0         0
## 24                                0                      0         0
## 25                                0                      0         0
## 26                                0                      0         0
## 27                                0                      0         0
## 28                                0                      0         0
## 29                                0                      0         0
## 30                                0                      0         0
## 31                                0                      0         0
## 32                                0                      0         0
## 33                                0                      0         0
## 34                                0                      0         0
## 35                                0                      0         0
## 36                                0                      0         0
## 37                                0                      0         0
## 38                                0                      0         0
## 39                                0                      0         0
## 40                                0                      0         0
## 41                                0                      0         0
## 42                                0                      0         0
## 43                                0                      0         0
## 44                                0                      0         0
## 45                                0                      0         0
## 46                                0                      0         0
## 47                                0                      0         0
## 48                                0                      0         0
## 49                                0                      0         0
## 50                                0                      0         0
## 51                                0                      0         0
## 52                                0                      0         0
## 53                                0                      0         0
## 54                                0                      0         0
## 55                                0                      0         0
## 56                                0                      0         0
## 57                                0                      0         0
## 58                                0                      0         0
## 59                                0                      0         0
## 60                                0                      0         0
## 61                                0                      0         0
## 62                                0                      0         0
## 63                                0                      0         0
## 64                                0                      0         0
## 65                                0                      0         0
## 66                                0                      0         0
## 67                                0                      0         0
## 68                                0                      0         0
## 69                                0                      0         0
## 70                                0                      0         0
## 71                                0                      0         0
## 72                                0                      0         0
## 73                                0                      0         0
## 74                                0                      0         0
## 75                                0                      0         0
## 76                                0                      0         0
## 77                                0                      0         0
## 78                                0                      0         0
## 79                                0                      0         0
## 80                                0                      0         0
## 81                                0                      0         0
## 82                                0                      0         0
## 83                                0                      0         0
## 84                                0                      0         0
## 85                                0                      0         0
## 86                                0                      0         0
## 87                                0                      0         0
## 88                                0                      0         0
## 89                                0                      0         0
## 90                                0                      0         0
## 91                                0                      0         0
## 92                                0                      0         0
## 93                                0                      0         0
## 94                                0                      0         0
## 95                                0                      0         0
## 96                                0                      0         0
## 97                                0                      0         0
## 98                                0                      0         0
## 99                                0                      0         0
## 100                               0                      0         0
## 101                               0                      0         0
## 102                               0                      0         0
## 103                               0                      0         0
## 104                               0                      0         0
## 105                               0                      0         0
## 106                               0                      0         0
## 107                               0                      0         0
## 108                               0                      0         0
## 109                               0                      0         0
## 110                               0                      0         0
## 111                               0                      0         0
## 112                               0                      0         0
## 113                               0                      0         0
## 114                               0                      0         0
## 115                               0                      0         0
## 116                               0                      0         0
## 117                               0                      0         0
## 118                               0                      0         0
## 119                               0                      0         0
## 120                               0                      0         0
## 121                               0                      0         0
## 122                               0                      0         0
## 123                               0                      0         0
## 124                               0                      0         0
## 125                               0                      0         0
## 126                               0                      0         0
## 127                               0                      0         0
## 128                               0                      0         0
## 129                               0                      0         0
## 130                               0                      0         0
## 131                               0                      0         0
## 132                               0                      0         0
## 133                               0                      0         0
## 134                               0                      0         0
## 135                               0                      0         0
## 136                               0                      0         0
## 137                               0                      0         0
## 138                               0                      0         0
## 139                               0                      0         0
## 140                               0                      0         0
## 141                               0                      0         0
## 142                               0                      0         0
## 143                               0                      0         0
## 144                               0                      0         0
## 145                               0                      0         0
## 146                               0                      0         0
## 147                               0                      0         0
## 148                               0                      0         0
## 149                               0                      0         0
## 150                               0                      0         0
## 151                               0                      0         0
## 152                               0                      0         0
## 153                               0                      0         0
## 154                               0                      0         0
## 155                               0                      0         0
## 156                               0                      0         0
## 157                               0                      0         0
## 158                               0                      0         0
## 159                               0                      0         0
## 160                               0                      0         0
## 161                               0                      0         0
## 162                               0                      0         0
## 163                               0                      0         0
## 164                               0                      0         0
## 165                               0                      0         0
## 166                               0                      0         0
## 167                               0                      0         0
## 168                               0                      0         0
## 169                               0                      0         0
## 170                               0                      0         0
## 171                               0                      0         0
## 172                               0                      0         0
## 173                               0                      0         0
## 174                               0                      0         0
## 175                               0                      0         0
## 176                               0                      0         0
## 177                               0                      0         0
## 178                               0                      0         0
## 179                               0                      0         0
## 180                               0                      0         0
## 181                               0                      0         0
## 182                               0                      0         0
## 183                               0                      0         0
## 184                               0                      0         0
## 185                               0                      0         0
## 186                               0                      0         0
## 187                               0                      0         0
## 188                               0                      0         0
## 189                               0                      0         0
## 190                               0                      0         0
## 191                               0                      0         0
## 192                               0                      0         0
## 193                               0                      0         0
## 194                               0                      0         0
## 195                               0                      0         0
## 196                               0                      0         0
## 197                               0                      0         0
## 198                               0                      0         0
## 199                               0                      0         0
## 200                               0                      0         0
## 201                               0                      0         0
## 202                               0                      0         0
## 203                               0                      0         0
## 204                               0                      0         0
## 205                               0                      0         0
## 206                               0                      0         0
## 207                               0                      0         0
## 208                               0                      0         0
## 209                          541339                4817123         0
## 210                         1006817               10078982         0
## 211                         1492607               15594365         0
## 212                         2026098               21254123         0
## 213                         2537124               27550391         0
## 214                         3033993               34683795         0
## 215                         3479775               42023312         0
## 216                         3896627               49296128         0
## 217                         4410115               56642235         0
## 218                         4887595               64499182         0
## 219                         5512490               72645447         0
## 220                         6211399               83291009         0
## 221                         6819675               94763758         0
## 222                         7409485              105515941     21984
## 223                         8063770              118359842     73280
## 224                         8656812              131259118    161216
## 225                         9086283              144717892    348080
## 226                        10003698              158608109    941648
## 227                        10482871              172114680   1722080
## 228                        10890953              187207493   2553808
## 229                        11319038              203623296   3495456
## 230                        11759588              219763923   4481072
## 231                        12179211              237329243   5488672
## 232                        12648382              253464521   6587872
## 233                        12889507              270839526   7617456
## 234                        13491628              289162970   8661696
## 235                        14196385              307854053   9819520
## 236                        14331489              327373972  10885744
## 237                        14451599              346770318  12124176
## 238                        14569917              366844382  13424896
## 239                        14795145              386874005  14853856
## 240                        15036344              406888111  17554224
## 241                        15228814              421039571  20188640
## 242                        15387386              436067132  22965952
## 243                        15632170              448646569  26160960
## 244                        15866850              451850955  29191088
## 245                        16099086              455253742  32235872
## 246                        16316328              459492203  34991200
## 247                        16543674              467857478  37790496
## 248                        16556223              478408772  41132064
## 249                        16650258              488742720  44290432
## 250                        16899768              502444014  48068016
## 251                        17153842              515707791  51915216
## 252                        17398790              529880393  55890656
## 253                        17643900              544230589  59715872
## 254                        17901070              559693043  63610704
## 255                        18155959              575739027  67703392
## 256                        18421603              593125746  71836384
## 257                        18720658              610600078  76064640
## 258                        19008304              630558726  80567696
## 259                        19302632              651095820  84326960
## 260                        19505369              672241461  88980546
## 261                        19764006              696002750  93118913
## 262                        19764006              718138947  97304533
## 263                        19764006              739939996 102489293
## 264                        19764006              762057602 109476098
## 265                        20100610              786821769 116579065
## 266                        20443748              812823467 123677461
## 267                        20786824              839470358 131552447
##          Brazil British.Virgin.Islands    Brunei   Bulgaria Burkina.Faso
## 1             0                      0         0          0            0
## 2             0                      0         0          0            0
## 3             0                      0         0          0            0
## 4             0                      0         0          0            0
## 5             0                      0         0          0            0
## 6             0                      0         0          0            0
## 7             0                      0         0          0            0
## 8             0                      0         0          0            0
## 9             0                      0         0          0            0
## 10            0                      0         0          0            0
## 11            0                      0         0          0            0
## 12            0                      0         0          0            0
## 13            0                      0         0          0            0
## 14            0                      0         0          0            0
## 15            0                      0         0          0            0
## 16            0                      0         0          0            0
## 17            0                      0         0          0            0
## 18            0                      0         0          0            0
## 19            0                      0         0          0            0
## 20            0                      0         0          0            0
## 21            0                      0         0          0            0
## 22            0                      0         0          0            0
## 23            0                      0         0          0            0
## 24            0                      0         0          0            0
## 25            0                      0         0          0            0
## 26            0                      0         0          0            0
## 27            0                      0         0          0            0
## 28            0                      0         0          0            0
## 29            0                      0         0          0            0
## 30            0                      0         0          0            0
## 31            0                      0         0          0            0
## 32            0                      0         0          0            0
## 33            0                      0         0          0            0
## 34            0                      0         0          0            0
## 35            0                      0         0          0            0
## 36            0                      0         0          0            0
## 37            0                      0         0          0            0
## 38            0                      0         0          0            0
## 39            0                      0         0          0            0
## 40            0                      0         0          0            0
## 41            0                      0         0          0            0
## 42            0                      0         0          0            0
## 43            0                      0         0          0            0
## 44            0                      0         0          0            0
## 45            0                      0         0          0            0
## 46            0                      0         0          0            0
## 47            0                      0         0          0            0
## 48            0                      0         0          0            0
## 49            0                      0         0          0            0
## 50            0                      0         0          0            0
## 51            0                      0         0          0            0
## 52            0                      0         0          0            0
## 53            0                      0         0          0            0
## 54            0                      0         0          0            0
## 55            0                      0         0          0            0
## 56            0                      0         0          0            0
## 57            0                      0         0          0            0
## 58            0                      0         0          0            0
## 59            0                      0         0          0            0
## 60            0                      0         0          0            0
## 61            0                      0         0          0            0
## 62            0                      0         0          0            0
## 63            0                      0         0          0            0
## 64            0                      0         0          0            0
## 65            0                      0         0          0            0
## 66            0                      0         0          0            0
## 67            0                      0         0          0            0
## 68            0                      0         0          0            0
## 69            0                      0         0          0            0
## 70            0                      0         0          0            0
## 71            0                      0         0          0            0
## 72            0                      0         0          0            0
## 73            0                      0         0          0            0
## 74            0                      0         0          0            0
## 75            0                      0         0          0            0
## 76            0                      0         0          0            0
## 77            0                      0         0          0            0
## 78            0                      0         0          0            0
## 79            0                      0         0          0            0
## 80            0                      0         0          0            0
## 81            0                      0         0          0            0
## 82            0                      0         0          0            0
## 83            0                      0         0          0            0
## 84            0                      0         0          0            0
## 85            0                      0         0          0            0
## 86            0                      0         0          0            0
## 87            0                      0         0          0            0
## 88            0                      0         0          0            0
## 89            0                      0         0          0            0
## 90            0                      0         0          0            0
## 91            0                      0         0          0            0
## 92            0                      0         0          0            0
## 93            0                      0         0          0            0
## 94            0                      0         0          0            0
## 95            0                      0         0          0            0
## 96            0                      0         0          0            0
## 97            0                      0         0          0            0
## 98            0                      0         0          0            0
## 99            0                      0         0          0            0
## 100           0                      0         0          0            0
## 101           0                      0         0          0            0
## 102           0                      0         0          0            0
## 103           0                      0         0          0            0
## 104           0                      0         0          0            0
## 105           0                      0         0          0            0
## 106           0                      0         0          0            0
## 107           0                      0         0          0            0
## 108           0                      0         0          0            0
## 109           0                      0         0          0            0
## 110           0                      0         0          0            0
## 111           0                      0         0          0            0
## 112           0                      0         0          0            0
## 113           0                      0         0          0            0
## 114           0                      0         0          0            0
## 115           0                      0         0          0            0
## 116           0                      0         0          0            0
## 117           0                      0         0          0            0
## 118           0                      0         0          0            0
## 119           0                      0         0          0            0
## 120           0                      0         0          0            0
## 121           0                      0         0          0            0
## 122           0                      0         0          0            0
## 123           0                      0         0          0            0
## 124           0                      0         0          0            0
## 125           0                      0         0          0            0
## 126           0                      0         0          0            0
## 127           0                      0         0          0            0
## 128           0                      0         0          0            0
## 129           0                      0         0          0            0
## 130           0                      0         0          0            0
## 131           0                      0         0       3664            0
## 132           0                      0         0       7328            0
## 133           0                      0         0      14656            0
## 134           0                      0         0      25648            0
## 135           0                      0         0      32976            0
## 136           0                      0         0      40304            0
## 137           0                      0         0      51296            0
## 138           0                      0         0      69616            0
## 139           0                      0         0      95264            0
## 140           0                      0         0     128240            0
## 141           0                      0         0     168544            0
## 142           0                      0         0     216176            0
## 143           0                      0         0     278464            0
## 144           0                      0         0     359072            0
## 145           0                      0         0     443344            0
## 146           0                      0         0     549600            0
## 147           0                      0         0     659520            0
## 148           0                      0         0     806080            0
## 149           0                      0         0     952640            0
## 150           0                      0         0    1168816            0
## 151     2103136                      0         0    1439952            0
## 152     4609312                      0         0    1678112            0
## 153     7049536                      0         0    1912608            0
## 154     9669296                      0         0    2213056            0
## 155    12468592                      0         0    2572128            0
## 156    15674592                      0         0    2887232            0
## 157    19126080                      0         0    3341568            0
## 158    22720464                      0         0    3938800            0
## 159    26329504                      0         0    4543360            0
## 160    30528448                      0         0    5177232            0
## 161    35134096                      0         0    6074912            0
## 162    40725360                      0         0    6972592            0
## 163    46759968                      0         0    7760352            0
## 164    50867312                      0         0    8943824            0
## 165    54011024                      0         0    9705936            0
## 166    56890928                      0         0   10629264            0
## 167    59389776                      0         0   11768768            0
## 168    61712752                      0         0   13190400            0
## 169    64783184                      0         0   14025792            0
## 170    68428864                      0         0   15124992            0
## 171    71319760                      0         0   16491664            0
## 172    75101008                      0         0   18001232            0
## 173    79717648                      0         0   19606064            0
## 174    84821600                      0         0   21449056            0
## 175    90196688                      0         0   23259072            0
## 176    95674368                      0         0   25039776            0
## 177   101749280                      0         0   26857120            0
## 178   107677632                      0         0   28996896            0
## 179   114023680                      0         0   31481088            0
## 180   119538000                      0         0   33884672            0
## 181   123707632                      0         0   36160016            0
## 182   127877264                      0         0   38798096            0
## 183   132600160                      0      3664   41146720            0
## 184   137224128                      0     47632   43586944            0
## 185   142734784                      0     73280   46060144            0
## 186   147882704                      0    150224   48573648            0
## 187   153972272                      0    355408   51361952            0
## 188   160069168                      0    571584   54534976            0
## 189   166019504                      0   3198672   58019440            0
## 190   172508448                      0   6159184   62119456            0
## 191   178792208                      0   8126752   66541904            0
## 192   184661936                      0   9372512   71891344            0
## 193   191139888                      0  11244816   77702448            0
## 194   197038928                      0  13740000   82091920            0
## 195   203864960                      0  14659664   87302128            0
## 196   211328528                      0  15604976   92277840            0
## 197   220279680                      0  20958080   98187872            0
## 198   228131632                      0  21038688  104409344            0
## 199   235503600                      0  32507008  111861920            0
## 200   255168288                      0  32921040  119362128            0
## 201   276833520                      0  33221488  127529184            0
## 202   301774368                      0  33543920  136960320            0
## 203   327001008                      0  33888336  147549280            0
## 204   356686736                      0  34247408  158944320            0
## 205   390721632                      0  34547856  171039184            0
## 206   427343312                      0  34844640  184009744            0
## 207   463331120                      0  35137760  198401936            0
## 208   502400352                      0  35456528  214032560         3664
## 209   541417432                      0  35782624  233654813        10992
## 210   588269253                      0  36116048  255925515        54960
## 211   637413757                      0  36420160  281870554       146560
## 212   691045205                   3664  36790224  312574565       230832
## 213   746596143                   7328  37145632  346948627       318768
## 214   803262819                  14656  37486384  389766692       428688
## 215   859592436                  21984  37819808  436035830       531280
## 216   923804071                  32976  38310784  484751836       633872
## 217   989883479                  36640  38750464  539859502       736464
## 218  1067154853                  51296  39179152  599323010       839056
## 219  1151287562                  69616  39666464  665630721       959968
## 220  1244818056                  87936  47870160  726804693      1102864
## 221  1347175998                 109920  55381360  791024376      1253088
## 222  1461190326                 131904  64834480  857099520      1414304
## 223  1593209936                 157552  74807888  925810735      1582848
## 224  1736137249                 183200  82985936  996938970      1788032
## 225  1886650908                 208848  90061120 1069850634      2007872
## 226  2041048983                 234496  96081072 1142802809      2216720
## 227  2203127321                 263808 102471088 1218582913      2465872
## 228  2379058800                 293120 112004816 1299770117      2813952
## 229  2566213859                 322432 119439072 1378674523      3220656
## 230  2751972189                 351744 126316400 1455899204      3653008
## 231  2922440099                 395712 127785664 1535957101      4209936
## 232  3093229445                 432352 129877808 1625768773      4785184
## 233  3258656405                 472656 132581840 1715794616      5378752
## 234  3426261994                 512960 134498112 1802800884      5844080
## 235  3606198798                 560592 137092224 1891983869      6320400
## 236  3803425015                 615552 139389552 1983112120      6800384
## 237  4009213756                 677840 142705472 2074340173      7317008
## 238  4216776724                 743792 148417648 2161205373      7870272
## 239  4428890368                 809744 154760032 2247642579      8691008
## 240  4635811488                 875696 160948528 2326315521      9273584
## 241  4853038960                 941648 166254000 2386373570      9900128
## 242  5071422464                1011264 171464208 2443213566     10530336
## 243  5299755680                1084544 176428928 2500696978     11156880
## 244  5539226400                1165152 181118848 2556633118     11801744
## 245  5794809776                1249424 185904032 2614170105     12425614
## 246  6076004560                1344688 190645248 2672122648     13130074
## 247  6372589816                1443616 195576992 2727304268     13932766
## 248  6680895536                1546208 200735904 2779830528     14790395
## 249  6997177976                1648800 204539136 2825926800     15704568
## 250  7321404016                1751392 209130128 2871140726     16735464
## 251  7654391416                1857648 213519600 2920064041     17727150
## 252  7981826248                1971232 217773504 2966230405     18728226
## 253  8299334696                2092144 222243584 3016644866     19802536
## 254  8633009840                2216720 227116704 3066153506     20902445
## 255  8975096312                2348624 231986160 3116744801     22024292
## 256  9317042680                2491520 236723712 3168570371     23380526
## 257  9673961432                2641744 245033664 3224207405     25022393
## 258 10054306360                2802960 254025120 3278180198     26885164
## 259 10414397136                2967840 261770816 3323887343     28751993
## 260 10825637328                3140048 269831616 3371680146     30645934
## 261 11255832230                3315920 279376336 3424796614     32787172
## 262 11715895322                3491792 288869760 3473066105     35337514
## 263 12209488834                3667664 296498208 3515652108     38329926
## 264 12729015183                3847200 305423712 3560794577     41132032
## 265 13241097065                4034627 315779037 3608927268     43913288
## 266 13714838441                4225692 325743772 3654214655     46883100
## 267 14190905220                4416724 335970645 3703285889     50218081
##      Burundi  Cambodia  Cameroon      Canada Cape.Verde Cayman.Islands
## 1          0         0         0           0          0              0
## 2          0         0         0           0          0              0
## 3          0         0         0           0          0              0
## 4          0         0         0           0          0              0
## 5          0         0         0           0          0              0
## 6          0         0         0           0          0              0
## 7          0         0         0           0          0              0
## 8          0         0         0           0          0              0
## 9          0         0         0           0          0              0
## 10         0         0         0           0          0              0
## 11         0         0         0           0          0              0
## 12         0         0         0           0          0              0
## 13         0         0         0           0          0              0
## 14         0         0         0           0          0              0
## 15         0         0         0           0          0              0
## 16         0         0         0           0          0              0
## 17         0         0         0           0          0              0
## 18         0         0         0           0          0              0
## 19         0         0         0           0          0              0
## 20         0         0         0           0          0              0
## 21         0         0         0           0          0              0
## 22         0         0         0           0          0              0
## 23         0         0         0           0          0              0
## 24         0         0         0           0          0              0
## 25         0         0         0           0          0              0
## 26         0         0         0           0          0              0
## 27         0         0         0           0          0              0
## 28         0         0         0           0          0              0
## 29         0         0         0           0          0              0
## 30         0         0         0           0          0              0
## 31         0         0         0           0          0              0
## 32         0         0         0           0          0              0
## 33         0         0         0           0          0              0
## 34         0         0         0           0          0              0
## 35         0         0         0        3664          0              0
## 36         0         0         0        7328          0              0
## 37         0         0         0       10992          0              0
## 38         0         0         0       14656          0              0
## 39         0         0         0       18320          0              0
## 40         0         0         0       21984          0              0
## 41         0         0         0       25648          0              0
## 42         0         0         0       29312          0              0
## 43         0         0         0       32976          0              0
## 44         0         0         0       36640          0              0
## 45         0         0         0       40304          0              0
## 46         0         0         0       43968          0              0
## 47         0         0         0       47632          0              0
## 48         0         0         0       51296          0              0
## 49         0         0         0       54960          0              0
## 50         0         0         0       58624          0              0
## 51         0         0         0       62288          0              0
## 52         0         0         0       65952          0              0
## 53         0         0         0       69616          0              0
## 54         0         0         0       73280          0              0
## 55         0         0         0       76944          0              0
## 56         0         0         0       80608          0              0
## 57         0         0         0       84272          0              0
## 58         0         0         0       87936          0              0
## 59         0         0         0       91600          0              0
## 60         0         0         0       95264          0              0
## 61         0         0         0       98928          0              0
## 62         0         0         0      102592          0              0
## 63         0         0         0      106256          0              0
## 64         0         0         0      109920          0              0
## 65         0         0         0      113584          0              0
## 66         0         0         0      117248          0              0
## 67         0         0         0      120912          0              0
## 68         0         0         0      124576          0              0
## 69         0         0         0      128240          0              0
## 70         0         0         0      131904          0              0
## 71         0         0         0      135568          0              0
## 72         0         0         0      139232          0              0
## 73         0         0         0      142896          0              0
## 74         0         0         0      146560          0              0
## 75         0         0         0      150224          0              0
## 76         0         0         0      153888          0              0
## 77         0         0         0      157552          0              0
## 78         0         0         0      161216          0              0
## 79         0         0         0      164880          0              0
## 80         0         0         0      168544          0              0
## 81         0         0         0      172208          0              0
## 82         0         0         0      175872          0              0
## 83         0         0         0      179536          0              0
## 84         0         0         0      183200          0              0
## 85         0         0         0      186864          0              0
## 86         0         0         0      190528          0              0
## 87         0         0         0      194192          0              0
## 88         0         0         0      197856          0              0
## 89         0         0         0      201520          0              0
## 90         0         0         0      205184          0              0
## 91         0         0         0      208848          0              0
## 92         0         0         0      212512          0              0
## 93         0         0         0      216176          0              0
## 94         0         0         0      219840          0              0
## 95         0         0         0      223504          0              0
## 96         0         0         0      249152          0              0
## 97         0         0         0      282128          0              0
## 98         0         0         0      322432          0              0
## 99         0         0         0      370064          0              0
## 100        0         0         0      428688          0              0
## 101        0         0         0      498304          0              0
## 102        0         0         0      582576          0              0
## 103        0         0         0      685168          0              0
## 104        0         0         0      809744          0              0
## 105        0         0         0      959968          0              0
## 106        0         0         0     1139504          0              0
## 107        0         0         0     1355680          0              0
## 108        0         0         0     1619488          0              0
## 109        0         0         0     1934592          0              0
## 110        0         0         0     2315648          0              0
## 111        0         0         0     2773648          0              0
## 112        0         0         0     3334240          0              0
## 113        0         0         0     4037728          0              0
## 114        0         0         0     4880448          0              0
## 115        0         0         0     5899040          0              0
## 116        0         0         0     7141136          0              0
## 117        0         0         0     8734976          0              0
## 118        0         0         0     9680288          0              0
## 119        0         0         0    10365456          0              0
## 120        0         0         0    11589232          0              0
## 121        0         0         0    13369936          0              0
## 122        0         0         0    15216592          0              0
## 123        0         0         0    16825088          0              0
## 124        0         0         0    18448240          0              0
## 125        0         0         0    20324208          0              0
## 126        0         0         0    22181856          0              0
## 127        0         0         0    24204384          0              0
## 128        0         0         0    26138976          0              0
## 129        0         0         0    28322720          0              0
## 130        0         0         0    33554912          0              0
## 131        0         0         0    39146176          0              0
## 132        0         0         0    45763360          0              0
## 133        0         0         0    53193952          0              0
## 134        0         0         0    61793360          0              0
## 135        0         0         0    70037360          0              0
## 136        0         0         0    78834624          0              0
## 137        0         0         0    88983904          0              0
## 138        0         0         0   102295216          0              0
## 139        0         0         0   113587664          0              0
## 140        0         0         0   126001296          0              0
## 141        0         0         0   139942816          0              0
## 142        0         0         0   153833040          0              0
## 143        0         0         0   168686896          0              0
## 144        0         0         0   182866576          0              0
## 145        0         0         0   196397728          0              0
## 146        0         0         0   211046400          0              0
## 147        0         0         0   225845296          0              0
## 148        0         0         0   241552864          0              0
## 149        0         0         0   260722912          0              0
## 150        0         0         0   281351232          0              0
## 151        0         0         0   305196544          0              0
## 152        0         0         0   330844544          0              0
## 153        0         0         0   358804528          0              0
## 154        0         0         0   391901440          0              0
## 155        0         0         0   427288352          0              0
## 156        0         0         0   464675808          0              0
## 157        0         0         0   511666608          0              0
## 158        0         0         0   559075104          0              0
## 159        0         0         0   604461072          0              0
## 160        0         0         0   656083168          0              0
## 161        0         0         0   716352304          0              0
## 162        0         0         0   783623344          0              0
## 163        0         0         0   862904976          0              0
## 164        0         0         0   931286208          0              0
## 165        0         0         0   992401728          0              0
## 166        0         0         0  1068858416          0              0
## 167        0         0         0  1154101376          0              0
## 168        0         0         0  1243620224          0              0
## 169        0         0         0  1319710512          0              0
## 170        0         0         0  1404088768          0              0
## 171        0         0         0  1484572192          0              0
## 172        0         0         0  1553781488          0              0
## 173        0         0         0  1646762816          0              0
## 174        0         0         0  1724146496          0              0
## 175        0         0         0  1799394064          0              0
## 176        0         0         0  1884149712          0              0
## 177        0         0         0  1976149088          0              0
## 178        0         0         0  2069932832          0              0
## 179        0         0         0  2168970752          0              0
## 180        0         0         0  2263326080          0              0
## 181        0         0         0  2339181872          0              0
## 182        0         0         0  2409391440          0              0
## 183        0         0         0  2478875536          0              0
## 184        0         0         0  2558791040          0              0
## 185        0         0         0  2637589024          0              0
## 186        0         0         0  2723755312          0              0
## 187        0         0         0  2817242272          0              0
## 188        0         0         0  2902789344          0              0
## 189        0         0         0  2997796864          0              0
## 190        0         0         0  3106423472          0              0
## 191        0         0         0  3226580688          0              0
## 192        0         0         0  3357663952          0              0
## 193        0         0         0  3495730800          0              0
## 194        0         0         0  3636142608          0              0
## 195        0         0         0  3766668944          0              0
## 196        0         0         0  3905098528          0              0
## 197        0         0         0  4048654048          0              0
## 198        0         0         0  4207169680          0              0
## 199        0         0         0  4352201792          0              0
## 200        0         0    139232  4506346272     102592              0
## 201        0         0    322432  4669035200     179536              0
## 202        0         0    604560  4828455840     216176              0
## 203        0         0    806080  4989078272     234496              0
## 204        0         0   1036912  5152060320     256480              0
## 205        0    102592   1271408  5321549632     278464              0
## 206        0    234496   1509568  5511370480     307776           3664
## 207        0    395712   1766048  5694204080     326096           7328
## 208        0    593568   2044512  5876381824     340752          14656
## 209    38943    806080   2322946  6060863178     359042          21984
## 210    75374   1040576   2594082  6253579353     380997          32976
## 211   123110   1326368   2876210  6447580047     402951          43968
## 212   167078   1634144   3165666  6654570818     421241          54960
## 213   214710   2022528   3466114  6865481594     435867          65952
## 214   262342   2363250   3803202  7103059327     465120          76944
## 215   298982   2766082   4114642  7354976322     490709          87936
## 216   346614   3234837   4459058  7614050693     512693         106256
## 217   394246   3652295   4917058  7895687729     531013         120912
## 218   449206   4143033   5422690  8198949069     560295         142896
## 219   522486   5487483   5994274  8506068274     596875         186864
## 220   584774   6659815   6631691  8847245488     633456         223504
## 221   658054   6908729   7440871  9199530572     670066         267472
## 222   731334   7025769   8301227  9580317153     721333         322432
## 223   804614   7153682   9198135  9961581812     783561         381056
## 224   896214   7226754  10171897 10351187027     849513         436016
## 225   973158   7299826  11332434 10747959768     926457         490976
## 226  1061094   7372600  12421404 11146905749     999737         556928
## 227  1160022   7445076  13980453 11554677167    1080345         626544
## 228  1262614   7496215  15973658 11970182552    1288887         718144
## 229  1372534   7525527  17789000 12411829462    1538039         809744
## 230  1519094   7811319  21674945 12854646733    1658951         970960
## 231  1676646   8111767  26994069 13284244984    1691927        1124848
## 232  1834198   8448855  33309956 13698671402    1728567        1286064
## 233  2039382   8815255  39864436 14106981068    1765207        1454608
## 234  2259222   9225623  45917364 14532180413    1849479        1637808
## 235  2490054   9643319  52387988 14953856010    1933751        1828336
## 236  2724550  10075671  54381204 15358516131    1992375        2029856
## 237  2973702  10511687  56224196 15789437857    2072983        2246032
## 238  3200870  10962359  58378083 16245045884    2146263        2469536
## 239  3468342  11413031  65955752 16707863602    2226871        2726016
## 240  3677190  12673447  67633950 17171743393    2322135        2975168
## 241  3915350  13977831  68690653 17626370897    2421063        3246304
## 242  4131526  15326183  72420568 18095235665    2527319        3557744
## 243  4358694  16711175  76260017 18563115240    2637239        3887504
## 244  4593190  18178226  80031088 19046173697    2750823        4250240
## 245  4831350  19718511  84205545 19541838212    2871735        4612976
## 246  5073174  21315757  88637038 20052394999    3014631        4997696
## 247  5322326  22840810  91793445 20577648070    3161191        5404400
## 248  5571478  24776165  94930541 21111884568    3318743        5833088
## 249  5824294  26670453  97928633 21661927718    3501943        6261776
## 250  6095430  28645349 101274481 22234458458    3718119        6727104
## 251  6300614  30895045 104599472 22799093778    3952615        7196096
## 252  6513126  33100773 107923522 23369978876    4227415        7683408
## 253  6674342  35478709 111622013 23957575166    4535191        8178048
## 254  6872198  37922597 115472075 24543407966    4864951        8639712
## 255  7026086  40696245 119063344 25120209594    5304631        9112368
## 256  7212950  43693397 122815790 25690697237    5777287        9596016
## 257  7399814  47145866 128517728 26284837478    6282919       10167600
## 258  7590342  50950853 133944007 26859643349    6751911       10750176
## 259  7780870  55491550 140538914 27400162036    7275863       11307104
## 260  7993382  60408478 147200941 27955621729    7832791       11864032
## 261  8230947  65502758 152831513 28516397630    8448343       12450272
## 262  8504547  70836280 158806534 29080072830    8953975       12985216
## 263  8782774  76312066 165421547 29648965226    9452279       13520160
## 264  9214305  82828485 172275544 30216973614    9943255       14062432
## 265  9690963  89805010 179492954 30782550291   10440465       14062432
## 266 10199110  97286972 187079087 31340739291   10972669       14062432
## 267 10728250 105225247 194766284 31913521876   11572647       14062432
##     Central.African.Republic     Chad      Chile        China
## 1                          0        0          0            0
## 2                          0        0          0            0
## 3                          0        0          0            0
## 4                          0        0          0            0
## 5                          0        0          0            0
## 6                          0        0          0            0
## 7                          0        0          0            0
## 8                          0        0          0            0
## 9                          0        0          0            0
## 10                         0        0          0            0
## 11                         0        0          0            0
## 12                         0        0          0            0
## 13                         0        0          0            0
## 14                         0        0          0            0
## 15                         0        0          0            0
## 16                         0        0          0            0
## 17                         0        0          0            0
## 18                         0        0          0            0
## 19                         0        0          0            0
## 20                         0        0          0            0
## 21                         0        0          0            0
## 22                         0        0          0            0
## 23                         0        0          0            0
## 24                         0        0          0            0
## 25                         0        0          0            0
## 26                         0        0          0            0
## 27                         0        0          0            0
## 28                         0        0          0            0
## 29                         0        0          0            0
## 30                         0        0          0            0
## 31                         0        0          0            0
## 32                         0        0          0            0
## 33                         0        0          0            0
## 34                         0        0          0            0
## 35                         0        0          0            0
## 36                         0        0          0            0
## 37                         0        0          0            0
## 38                         0        0          0            0
## 39                         0        0          0            0
## 40                         0        0          0            0
## 41                         0        0          0            0
## 42                         0        0          0            0
## 43                         0        0          0            0
## 44                         0        0          0            0
## 45                         0        0          0            0
## 46                         0        0          0            0
## 47                         0        0          0            0
## 48                         0        0          0            0
## 49                         0        0          0            0
## 50                         0        0          0            0
## 51                         0        0          0            0
## 52                         0        0          0            0
## 53                         0        0          0            0
## 54                         0        0          0            0
## 55                         0        0          0            0
## 56                         0        0          0            0
## 57                         0        0          0            0
## 58                         0        0          0            0
## 59                         0        0          0            0
## 60                         0        0          0            0
## 61                         0        0          0            0
## 62                         0        0          0            0
## 63                         0        0          0            0
## 64                         0        0          0            0
## 65                         0        0          0            0
## 66                         0        0          0            0
## 67                         0        0          0            0
## 68                         0        0          0            0
## 69                         0        0          0            0
## 70                         0        0          0            0
## 71                         0        0          0            0
## 72                         0        0          0            0
## 73                         0        0          0            0
## 74                         0        0          0            0
## 75                         0        0          0            0
## 76                         0        0          0            0
## 77                         0        0          0            0
## 78                         0        0          0            0
## 79                         0        0          0            0
## 80                         0        0          0            0
## 81                         0        0          0            0
## 82                         0        0          0            0
## 83                         0        0          0            0
## 84                         0        0          0            0
## 85                         0        0          0            0
## 86                         0        0          0            0
## 87                         0        0          0            0
## 88                         0        0          0            0
## 89                         0        0          0            0
## 90                         0        0          0            0
## 91                         0        0          0            0
## 92                         0        0          0            0
## 93                         0        0          0            0
## 94                         0        0          0            0
## 95                         0        0          0            0
## 96                         0        0          0            0
## 97                         0        0          0            0
## 98                         0        0          0            0
## 99                         0        0          0            0
## 100                        0        0          0            0
## 101                        0        0          0            0
## 102                        0        0          0            0
## 103                        0        0          0            0
## 104                        0        0          0            0
## 105                        0        0          0            0
## 106                        0        0          0            0
## 107                        0        0          0            0
## 108                        0        0          0            0
## 109                        0        0          0            0
## 110                        0        0          0            0
## 111                        0        0          0            0
## 112                        0        0          0            0
## 113                        0        0          0            0
## 114                        0        0          0            0
## 115                        0        0          0            0
## 116                        0        0          0            0
## 117                        0        0          0            0
## 118                        0        0          0            0
## 119                        0        0          0            0
## 120                        0        0          0            0
## 121                        0        0          0            0
## 122                        0        0          0            0
## 123                        0        0          0            0
## 124                        0        0          0            0
## 125                        0        0          0            0
## 126                        0        0          0            0
## 127                        0        0          0            0
## 128                        0        0          0            0
## 129                        0        0          0            0
## 130                        0        0          0            0
## 131                        0        0          0            0
## 132                        0        0          0            0
## 133                        0        0          0            0
## 134                        0        0          0            0
## 135                        0        0          0            0
## 136                        0        0          0            0
## 137                        0        0          0            0
## 138                        0        0          0            0
## 139                        0        0          0            0
## 140                        0        0          0            0
## 141                        0        0          0            0
## 142                        0        0          0            0
## 143                        0        0          0            0
## 144                        0        0          0            0
## 145                        0        0     523952            0
## 146                        0        0    1058896            0
## 147                        0        0    1696432            0
## 148                        0        0    2436560            0
## 149                        0        0    3070432        95264
## 150                        0        0    3920480        95264
## 151                        0        0    5488672        95264
## 152                        0        0    7448912       190528
## 153                        0        0    9610672      2154432
## 154                        0        0   11578240      4242912
## 155                        0        0   13655728      6540240
## 156                        0        0   16095952     23651120
## 157                        0        0   18276032     40490864
## 158                        0        0   20734576     63222320
## 159                        0        0   23086864     84059488
## 160                        0        0   25897152    102808176
## 161                        0        0   29004224    130654576
## 162                        0        0   32466704    140441120
## 163                        0        0   35822928    151198624
## 164                        0        0   38666192    166305296
## 165                        0        0   41732960    182393920
## 166                        0        0   45440928    200358512
## 167                        0        0   49467664    220210064
## 168                        0        0   53435776    241252416
## 169                        0        0   57319616    265508096
## 170                        0        0   60100592    292277280
## 171                        0        0   63434832    317566208
## 172                        0        0   66190160    344199824
## 173                        0        0   69234944    376351424
## 174                        0        0   73261680    411445216
## 175                        0        0   77061248    444666704
## 176                        0        0   80963408    474257168
## 177                        0        0   84839920    507782768
## 178                        0        0   88496592    541898272
## 179                        0        0   92512336    577717536
## 180                        0        0   96363200    615639936
## 181                        0        0   99290736    655899968
## 182                        0        0  102185296    694500208
## 183                        0        0  106277984    736716816
## 184                        0        0  111107136    785990288
## 185                        0        0  116218416    843617680
## 186                        0        0  121245424    908657344
## 187                        0        0  126525248    969234256
## 188                        0        0  132054224   1024538672
## 189                        0        0  137062912   1091696128
## 190                        0        0  142324416   1177796464
## 191                        0        0  147893696   1285411808
## 192                        0        0  153701136   1399281600
## 193                        0        0  159812688   1496586448
## 194                        0        0  165953552   1594451888
## 195                        0        0  171596112   1644802576
## 196                        0        0  177029824   1676078480
## 197                        0        0  182738336   1709666368
## 198                        0        0  188948816   1733519008
## 199                        0        0  194825872   1792828176
## 200                        0        0  203278720   1871475936
## 201                        0        0  213263120   1973199568
## 202                        0        0  223870400   2101421248
## 203                        0        0  234276160   2235523648
## 204                        0        0  245359760   2396779952
## 205                        0        0  256959984   2587670688
## 206                        0        0  268794704   2804018896
## 207                        0        0  280523168   3060366992
## 208                        0        0  292977104   3585747952
## 209                    98928    62288  305680468   4305900099
## 210                   186864   117248  319156937   5084879564
## 211                   274800   168544  333615179   5635838102
## 212                   348080   252816  350322552   6075180207
## 213                   421360   344416  367659540   6510697811
## 214                   494640   443344  385164684   6946401541
## 215                   582576   549600  402911980   7421082166
## 216                   666848   633872  421684453   7942541079
## 217                   758448   751120  440922789   8374764636
## 218                   941648   875696  462125028   8842570279
## 219                  1128512  1036912  484656498   9418514950
## 220                  1337360  1161488  509292301  10188682140
## 221                  1520560  1311712  536349342  11062698491
## 222                  1689104  1432624  564490902  11991592449
## 223                  1850320  1593840  592083214  12957239047
## 224                  1963904  1744064  617966485  13942324263
## 225                  2066496  1927264  640917853  15084426169
## 226                  2194736  2110464  664952100  16275390704
## 227                  2322976  2308320  687976312  17579793492
## 228                  2469536  2502512  710827046  19035050998
## 229                  2572128  2704032  735567989  20522164083
## 230                  2678384  2912880  760682560  21981050821
## 231                  2813952  3121728  785048677  23423833119
## 232                  2956848  3326912  805536526  24994301443
## 233                  3103408  3532096  826225746  26650111926
## 234                  3253632  3748272  848248542  28452429021
## 235                  3414848  3927808  869560640  30404202249
## 236                  3576064  4114672  891604388  32456444261
## 237                  3836208  4312528  914039690  34647497268
## 238                  4067040  4378480  940671070  36995260762
## 239                  4316192  4481072  972724248  39382145760
## 240                  4514048  4623968 1005670924  41802447868
## 241                  4719232  4689920 1036613129  44341371836
## 242                  4935408  4774192 1068671026  46998484242
## 243                  5158912  4865792 1102834045  49834279715
## 244                  5393408  4968384 1140476402  52844521924
## 245                  5627904  5078304 1181566517  56109578888
## 246                  5862400  5202880 1229195028  59517925478
## 247                  6107888  5345776 1284645309  62932474765
## 248                  6357040  5496000 1341452535  66198377385
## 249                  6620848  5657216 1402359812  69456512272
## 250                  6888320  5833088 1460473506  72805807048
## 251                  7133808  6005296 1513050063  76231951110
## 252                  7379296  6173840 1567540399  80014390407
## 253                  7613792  6554896 1622424595  84466700703
## 254                  7848288  6932288 1681472103  89592595120
## 255                  8082784  7331664 1742419246  95363763560
## 256                  8331936  7738368 1806390824 102000000000
## 257                  8584752  8200032 1877097754 109000000000
## 258                  8837568  8709328 1947916432 116000000000
## 259                  9090384  9200304 2013836290 124000000000
## 260                  9354192  9716928 2085166076 132000000000
## 261                  9632656 10255536 2163249857 142000000000
## 262                  9925776 10851222 2242953747 151000000000
## 263                 10222560 11531796 2324629717 161000000000
## 264                 10523008 12238929 2405606788 171000000000
## 265                 10826471 12952385 2486768037 181000000000
## 266                 11137328 13681353 2572896035 190000000000
## 267                 11448062 14410061 2657499285 200000000000
##     Christmas.Island   Colombia Comoros    Congo Cook.Islands Costa.Rica
## 1                  0          0       0        0            0          0
## 2                  0          0       0        0            0          0
## 3                  0          0       0        0            0          0
## 4                  0          0       0        0            0          0
## 5                  0          0       0        0            0          0
## 6                  0          0       0        0            0          0
## 7                  0          0       0        0            0          0
## 8                  0          0       0        0            0          0
## 9                  0          0       0        0            0          0
## 10                 0          0       0        0            0          0
## 11                 0          0       0        0            0          0
## 12                 0          0       0        0            0          0
## 13                 0          0       0        0            0          0
## 14                 0          0       0        0            0          0
## 15                 0          0       0        0            0          0
## 16                 0          0       0        0            0          0
## 17                 0          0       0        0            0          0
## 18                 0          0       0        0            0          0
## 19                 0          0       0        0            0          0
## 20                 0          0       0        0            0          0
## 21                 0          0       0        0            0          0
## 22                 0          0       0        0            0          0
## 23                 0          0       0        0            0          0
## 24                 0          0       0        0            0          0
## 25                 0          0       0        0            0          0
## 26                 0          0       0        0            0          0
## 27                 0          0       0        0            0          0
## 28                 0          0       0        0            0          0
## 29                 0          0       0        0            0          0
## 30                 0          0       0        0            0          0
## 31                 0          0       0        0            0          0
## 32                 0          0       0        0            0          0
## 33                 0          0       0        0            0          0
## 34                 0          0       0        0            0          0
## 35                 0          0       0        0            0          0
## 36                 0          0       0        0            0          0
## 37                 0          0       0        0            0          0
## 38                 0          0       0        0            0          0
## 39                 0          0       0        0            0          0
## 40                 0          0       0        0            0          0
## 41                 0          0       0        0            0          0
## 42                 0          0       0        0            0          0
## 43                 0          0       0        0            0          0
## 44                 0          0       0        0            0          0
## 45                 0          0       0        0            0          0
## 46                 0          0       0        0            0          0
## 47                 0          0       0        0            0          0
## 48                 0          0       0        0            0          0
## 49                 0          0       0        0            0          0
## 50                 0          0       0        0            0          0
## 51                 0          0       0        0            0          0
## 52                 0          0       0        0            0          0
## 53                 0          0       0        0            0          0
## 54                 0          0       0        0            0          0
## 55                 0          0       0        0            0          0
## 56                 0          0       0        0            0          0
## 57                 0          0       0        0            0          0
## 58                 0          0       0        0            0          0
## 59                 0          0       0        0            0          0
## 60                 0          0       0        0            0          0
## 61                 0          0       0        0            0          0
## 62                 0          0       0        0            0          0
## 63                 0          0       0        0            0          0
## 64                 0          0       0        0            0          0
## 65                 0          0       0        0            0          0
## 66                 0          0       0        0            0          0
## 67                 0          0       0        0            0          0
## 68                 0          0       0        0            0          0
## 69                 0          0       0        0            0          0
## 70                 0          0       0        0            0          0
## 71                 0          0       0        0            0          0
## 72                 0          0       0        0            0          0
## 73                 0          0       0        0            0          0
## 74                 0          0       0        0            0          0
## 75                 0          0       0        0            0          0
## 76                 0          0       0        0            0          0
## 77                 0          0       0        0            0          0
## 78                 0          0       0        0            0          0
## 79                 0          0       0        0            0          0
## 80                 0          0       0        0            0          0
## 81                 0          0       0        0            0          0
## 82                 0          0       0        0            0          0
## 83                 0          0       0        0            0          0
## 84                 0          0       0        0            0          0
## 85                 0          0       0        0            0          0
## 86                 0          0       0        0            0          0
## 87                 0          0       0        0            0          0
## 88                 0          0       0        0            0          0
## 89                 0          0       0        0            0          0
## 90                 0          0       0        0            0          0
## 91                 0          0       0        0            0          0
## 92                 0          0       0        0            0          0
## 93                 0          0       0        0            0          0
## 94                 0          0       0        0            0          0
## 95                 0          0       0        0            0          0
## 96                 0          0       0        0            0          0
## 97                 0          0       0        0            0          0
## 98                 0          0       0        0            0          0
## 99                 0          0       0        0            0          0
## 100                0          0       0        0            0          0
## 101                0          0       0        0            0          0
## 102                0          0       0        0            0          0
## 103                0          0       0        0            0          0
## 104                0          0       0        0            0          0
## 105                0          0       0        0            0          0
## 106                0          0       0        0            0          0
## 107                0          0       0        0            0          0
## 108                0          0       0        0            0          0
## 109                0          0       0        0            0          0
## 110                0          0       0        0            0          0
## 111                0          0       0        0            0          0
## 112                0          0       0        0            0          0
## 113                0          0       0        0            0          0
## 114                0          0       0        0            0          0
## 115                0          0       0        0            0          0
## 116                0          0       0        0            0          0
## 117                0          0       0        0            0          0
## 118                0          0       0        0            0          0
## 119                0          0       0        0            0          0
## 120                0          0       0        0            0          0
## 121                0          0       0        0            0          0
## 122                0          0       0        0            0          0
## 123                0          0       0        0            0          0
## 124                0          0       0        0            0          0
## 125                0          0       0        0            0          0
## 126                0          0       0        0            0          0
## 127                0          0       0        0            0          0
## 128                0          0       0        0            0          0
## 129                0          0       0        0            0          0
## 130                0          0       0        0            0          0
## 131                0          0       0        0            0          0
## 132                0          0       0        0            0          0
## 133                0          0       0        0            0          0
## 134                0          0       0        0            0          0
## 135                0          0       0        0            0          0
## 136                0          0       0        0            0          0
## 137                0          0       0        0            0          0
## 138                0          0       0        0            0          0
## 139                0          0       0        0            0          0
## 140                0          0       0        0            0          0
## 141                0          0       0        0            0          0
## 142                0          0       0        0            0          0
## 143                0          0       0        0            0          0
## 144                0          0       0        0            0          0
## 145                0          0       0        0            0          0
## 146                0          0       0        0            0          0
## 147                0          0       0        0            0          0
## 148                0          0       0        0            0          0
## 149                0          0       0        0            0          0
## 150                0          0       0        0            0          0
## 151                0          0       0        0            0          0
## 152                0          0       0        0            0          0
## 153                0          0       0        0            0          0
## 154                0          0       0        0            0          0
## 155                0          0       0        0            0          0
## 156                0          0       0        0            0          0
## 157                0          0       0        0            0          0
## 158                0          0       0        0            0          0
## 159                0          0       0        0            0          0
## 160                0          0       0        0            0          0
## 161                0          0       0        0            0          0
## 162                0          0       0        0            0          0
## 163                0          0       0        0            0          0
## 164                0          0       0        0            0          0
## 165                0          0       0        0            0          0
## 166                0          0       0        0            0          0
## 167                0          0       0        0            0          0
## 168                0          0       0        0            0          0
## 169                0          0       0        0            0          0
## 170                0          0       0        0            0          0
## 171                0      29312       0        0            0          0
## 172                0     172208       0        0            0          0
## 173                0     359072       0        0            0          0
## 174                0     556928       0        0            0          0
## 175                0    1000272       0        0            0          0
## 176                0    1846656       0        0            0          0
## 177                0    2671056       0        0            0          0
## 178                0    4019408       0        0            0          0
## 179                0    5309136       0        0            0          0
## 180                0    5961328       0        0            0          0
## 181                0    6291088       0        0            0          0
## 182                0    6371696       0        0            0          0
## 183                0    6906640       0        0            0          0
## 184                0    7643104       0        0            0          0
## 185                0   10046688       0        0            0          0
## 186                0   12831328       0        0            0          0
## 187                0   15615968       0        0            0          0
## 188                0   18620448       0        0            0          0
## 189                0   23259072       0        0            0          0
## 190                0   27425040       0        0            0          0
## 191                0   31158656       0        0            0          0
## 192                0   35324624       0        0            0          0
## 193                0   39058240       0        0            0          0
## 194                0   43799456       0        0            0          0
## 195                0   48280528       0        0            0          0
## 196                0   53241584       0        0            0          0
## 197                0   58305232       0        0            0          0
## 198                0   62789968       0        0            0          0
## 199                0   67926896       0        0            0          0
## 200                0   75427104       0        0            0     285792
## 201                0   83594160       0        0            0     597232
## 202                0   92230208       0        0            0     985616
## 203                0  102995040       0        0            0    1417968
## 204                0  112620368       0        0            0    1824672
## 205                0  124568672       0        0            0    2172752
## 206                0  137172832       0        0            0    2656400
## 207                0  150828560       0        0            0    3118064
## 208                0  164810384       0        0            0    3565072
## 209                0  180897175   10992   186864            0    3949792
## 210                0  197287661   21984   410368            0    4440768
## 211                0  215483965   32976   677840            0    4931744
## 212                0  234903450   43968   916000            0    5481344
## 213                0  256136229   54960  1150496            0    6082240
## 214                0  277819175   65952  1417968            0    6756297
## 215                0  300677908   80608  1663456            0    7602206
## 216                0  324152104   98928  1971232            0    8594674
## 217                0  348838936  117248  2293664            0    9469924
## 218                0  375411687  135568  2744336            0   10506302
## 219                0  403427966  153888  3246304        10992   11652480
## 220            69616  431798018  183200  3817888        21984   12901161
## 221           153888  462079868  212512  4503056        32976   14428187
## 222           238160  493505969  241824  5166240        43968   16189501
## 223           307776  527138189  271136  6386352        54960   18232914
## 224           432352  563534725  300448  8009504        65952   20137005
## 225           567920  599346111  333424  9108704        80608   22172852
## 226           692496  637329123  373728 10343472        95264   24254707
## 227           784096  676573601  414032 10823456       124576   26862126
## 228           875696  718112882  443344 11145888       153888   29774169
## 229           974624  762385589  465328 11493968       179536   32555151
## 230          1073552  806566438  512960 11899497       208848   35003611
## 231          1176144  850834177  560592 12370221       274800   37239825
## 232          1249424  896522610  608224 13713323       326096   39310446
## 233          1330032  945741559  655856 14855775       377392   41399259
## 234          1330032  994454301  703488 15995279       399376   43380208
## 235          1330032 1042546042  751120 17270492       421360   45622663
## 236          1330032 1091314873  795088 18332866       443344   48200197
## 237          1330032 1141454224  842720 19652958       465328   50924059
## 238          1330032 1193490092  894016 21145899       487312   53829980
## 239          1330032 1246301992  945312 22641526       509296   56763325
## 240          1330032 1303218700 1007600 23820915       545936   59675310
## 241          1330032 1359873954 1073552 24815749       582576   62962575
## 242          1330032 1421374301 1139504 26084010       619216   66703795
## 243          1330032 1484711019 1209120 27392501       659520   70594794
## 244          1330032 1551420471 1278736 29531638       699824   75795128
## 245          1330032 1610040728 1352016 31087476       740128   80597013
## 246          1330032 1669499252 1428960 32797516       787760   85283749
## 247          1330032 1733270482 1509568 35136779       835392   90200414
## 248          1330032 1797884205 1597504 35913547       883024   95435874
## 249          1330032 1852911658 1689104 36734283       930656  100874870
## 250          1330032 1909127374 1791696 37780113       978288  106269346
## 251          1330032 1964378849 1894288 38545889      1011264  111935265
## 252          1330032 2019232075 1996880 39121137      1040576  118161701
## 253          1330032 2075960322 2128784 40037137      1073552  124690242
## 254          1330032 2130511733 2271680 40986113      1128512  131488246
## 255          1330032 2190762489 2410912 41957561      1190800  138175406
## 256          1330032 2252959841 2572128 43064195      1256752  145140687
## 257          1330032 2314531348 2674720 44265538      1322704  153032352
## 258          1330032 2381757865 2780976 45561883      1392320  160942812
## 259          1330032 2453609479 2912880 47293460      1461936  168622068
## 260          1330032 2528909899 3074096 49262904      1531552  176050078
## 261          1330032 2604652996 3209664 51511409      1601168  183634515
## 262          1330032 2684003284 3352560 54462194      1670784  191241509
## 263          1330032 2773003336 3528432 57520011      1740400  198672733
## 264          1330032 2856418874 3682320 60561086      1810016  206259796
## 265          1330032 2942441131 3850231 63789505      1885986  214431896
## 266          1330032 3028814117 4031600 67163659      1962827  222997581
## 267          1330032 3110040939 4221082 70573384      2044872  231692589
##     Cote.d.Ivoire   Croatia       Cuba   Curacao    Cyprus Czech.Republic
## 1               0         0          0         0         0              0
## 2               0         0          0         0         0              0
## 3               0         0          0         0         0              0
## 4               0         0          0         0         0              0
## 5               0         0          0         0         0              0
## 6               0         0          0         0         0              0
## 7               0         0          0         0         0              0
## 8               0         0          0         0         0              0
## 9               0         0          0         0         0              0
## 10              0         0          0         0         0              0
## 11              0         0          0         0         0              0
## 12              0         0          0         0         0              0
## 13              0         0          0         0         0              0
## 14              0         0          0         0         0              0
## 15              0         0          0         0         0              0
## 16              0         0          0         0         0              0
## 17              0         0          0         0         0              0
## 18              0         0          0         0         0              0
## 19              0         0          0         0         0              0
## 20              0         0          0         0         0              0
## 21              0         0          0         0         0              0
## 22              0         0          0         0         0              0
## 23              0         0          0         0         0              0
## 24              0         0          0         0         0              0
## 25              0         0          0         0         0              0
## 26              0         0          0         0         0              0
## 27              0         0          0         0         0              0
## 28              0         0          0         0         0              0
## 29              0         0          0         0         0              0
## 30              0         0          0         0         0              0
## 31              0         0          0         0         0              0
## 32              0         0          0         0         0              0
## 33              0         0          0         0         0              0
## 34              0         0          0         0         0              0
## 35              0         0          0         0         0              0
## 36              0         0          0         0         0              0
## 37              0         0          0         0         0              0
## 38              0         0          0         0         0              0
## 39              0         0          0         0         0              0
## 40              0         0          0         0         0              0
## 41              0         0          0         0         0              0
## 42              0         0          0         0         0              0
## 43              0         0          0         0         0              0
## 44              0         0          0         0         0              0
## 45              0         0          0         0         0              0
## 46              0         0          0         0         0              0
## 47              0         0          0         0         0              0
## 48              0         0          0         0         0              0
## 49              0         0          0         0         0              0
## 50              0         0          0         0         0              0
## 51              0         0          0         0         0              0
## 52              0         0          0         0         0              0
## 53              0         0          0         0         0              0
## 54              0         0          0         0         0              0
## 55              0         0          0         0         0              0
## 56              0         0          0         0         0              0
## 57              0         0          0         0         0              0
## 58              0         0          0         0         0              0
## 59              0         0          0         0         0              0
## 60              0         0          0         0         0              0
## 61              0         0          0         0         0              0
## 62              0         0          0         0         0              0
## 63              0         0          0         0         0              0
## 64              0         0          0         0         0              0
## 65              0         0          0         0         0              0
## 66              0         0          0         0         0              0
## 67              0         0          0         0         0              0
## 68              0         0          0         0         0              0
## 69              0         0          0         0         0              0
## 70              0         0          0         0         0              0
## 71              0         0          0         0         0              0
## 72              0         0          0         0         0              0
## 73              0         0          0         0         0              0
## 74              0         0          0         0         0              0
## 75              0         0          0         0         0              0
## 76              0         0          0         0         0              0
## 77              0         0          0         0         0              0
## 78              0         0          0         0         0              0
## 79              0         0          0         0         0              0
## 80              0         0          0         0         0              0
## 81              0         0          0         0         0              0
## 82              0         0          0         0         0              0
## 83              0         0          0         0         0              0
## 84              0         0          0         0         0              0
## 85              0         0          0         0         0              0
## 86              0         0          0         0         0              0
## 87              0         0          0         0         0              0
## 88              0         0          0         0         0              0
## 89              0         0          0         0         0              0
## 90              0         0          0         0         0              0
## 91              0         0          0         0         0              0
## 92              0         0          0         0         0              0
## 93              0         0          0         0         0              0
## 94              0         0          0         0         0              0
## 95              0         0          0         0         0              0
## 96              0         0          0         0         0              0
## 97              0         0          0         0         0              0
## 98              0         0          0         0         0              0
## 99              0         0          0         0         0              0
## 100             0         0          0         0         0              0
## 101             0         0          0         0         0              0
## 102             0         0          0         0         0              0
## 103             0         0          0         0         0              0
## 104             0         0          0         0         0              0
## 105             0         0          0         0         0              0
## 106             0         0          0         0         0              0
## 107             0         0          0         0         0              0
## 108             0         0          0         0         0              0
## 109             0         0          0         0         0              0
## 110             0         0          0         0         0              0
## 111             0         0          0         0         0              0
## 112             0         0          0         0         0              0
## 113             0         0          0         0         0              0
## 114             0         0          0         0         0              0
## 115             0         0          0         0         0              0
## 116             0         0          0         0         0              0
## 117             0         0          0         0         0              0
## 118             0         0          0         0         0              0
## 119             0         0          0         0         0              0
## 120             0         0          0         0         0              0
## 121             0         0          0         0         0              0
## 122             0         0          0         0         0              0
## 123             0         0          0         0         0              0
## 124             0         0          0         0         0              0
## 125             0         0          0         0         0              0
## 126             0         0          0         0         0              0
## 127             0         0          0         0         0              0
## 128             0         0          0         0         0              0
## 129             0         0          0         0         0              0
## 130             0         0          0         0         0              0
## 131             0         0          0         0         0              0
## 132             0         0          0         0         0              0
## 133             0         0          0         0         0              0
## 134             0         0          0         0         0              0
## 135             0         0          0         0         0              0
## 136             0         0          0         0         0              0
## 137             0         0          0         0         0              0
## 138             0         0          0         0         0              0
## 139             0         0          0         0         0              0
## 140             0         0          0         0         0              0
## 141             0         0          0         0         0              0
## 142             0         0          0         0         0              0
## 143             0         0          0         0         0              0
## 144             0         0          0         0         0              0
## 145             0         0          0         0         0              0
## 146             0         0          0         0         0              0
## 147             0         0          0         0         0              0
## 148             0         0          0         0         0              0
## 149             0         0          0         0         0              0
## 150             0         0          0         0         0              0
## 151             0         0          0         0         0              0
## 152             0         0          0         0         0              0
## 153             0         0          0         0         0              0
## 154             0         0          0         0         0              0
## 155             0         0          0         0         0              0
## 156             0         0          0         0         0              0
## 157             0         0          0         0         0              0
## 158             0         0          0         0         0              0
## 159             0         0          0         0         0              0
## 160             0         0          0         0         0              0
## 161             0         0          0         0         0              0
## 162             0         0          0         0         0              0
## 163             0         0          0         0         0              0
## 164             0         0          0         0         0              0
## 165             0         0          0         0         0              0
## 166             0         0          0         0         0              0
## 167             0         0          0         0         0              0
## 168             0         0          0         0         0              0
## 169             0         0          0         0         0              0
## 170             0         0          0         0         0              0
## 171             0         0          0         0         0              0
## 172             0         0          0         0         0              0
## 173             0         0          0         0         0              0
## 174             0         0          0         0         0              0
## 175             0         0          0         0         0              0
## 176             0         0          0         0         0              0
## 177             0         0          0         0         0              0
## 178             0         0          0         0         0              0
## 179             0         0          0         0         0              0
## 180             0         0          0         0         0              0
## 181             0         0          0         0         0              0
## 182             0         0          0         0         0              0
## 183             0         0          0         0         0              0
## 184             0         0          0         0         0              0
## 185             0         0          0         0         0              0
## 186             0         0          0         0         0              0
## 187             0         0          0         0         0              0
## 188             0         0          0         0         0              0
## 189             0         0          0         0         0              0
## 190             0         0          0         0         0              0
## 191             0         0      76944         0         0              0
## 192             0         0     161216         0         0              0
## 193             0         0     245488         0         0              0
## 194             0         0     333424         0         0              0
## 195             0         0     443344         0         0              0
## 196             0         0     611888         0         0              0
## 197             0         0     802416         0         0              0
## 198             0         0     985616         0         0              0
## 199             0         0    1168816         0         0              0
## 200             0         0    6774736         0    267472              0
## 201             0         0   13245360         0    549600              0
## 202             0         0   19529120         0    864704              0
## 203             0         0   25721280         0   1231104              0
## 204             0         0   31671616         0   1674448              0
## 205             0         0   38450016         0   2125120              0
## 206             0         0   44294096         0   2799296              0
## 207             0         0   58162336         0   3616368              0
## 208        498304         0   76159904         0   4382144              0
## 209       1044240   5250921   91824642  10419189   5213545       92871775
## 210       1505904  10986665  105511741  19378270   6099877      191922488
## 211       2059168  16998979  117680043  28728293   6964194      299428837
## 212       2645408  23168534  131834589  38996437   7868816      413994154
## 213       3268288  30031873  144860504  48832175   8854046      534510517
## 214       4030400  37807975  159139508  58395439   9854020      659934399
## 215       5202880  45808786  173733645  66975425  11004130      782145523
## 216       6441312  53736688  188903030  74998616  12245840      903666941
## 217       7800656  61744433  204639910  84881741  13608105     1024934796
## 218       9398160  70308750  220659432  94071833  15230306     1151810583
## 219      11288784  79188358  237902730 106099214  16900109     1286503612
## 220      13531152  90793219  256556816 119551164  18602800     1440931133
## 221      15986032 103292922  276145193 131258684  20486315     1602908444
## 222      18697392 114997043  296921458 142610802  22892202     1766355941
## 223      21573632 128971486  319295108 155203864  25395653     1930449060
## 224      24816272 142996021  342180440 166618178  27324337     2096416687
## 225      28802704 157618565  369216015 174884226  29314981     2270051053
## 226      32763488 172697119  396397004 192541760  31802298     2450427146
## 227      36815872 187342966  425742051 201764431  34501183     2636184015
## 228      41630368 203699874  456361099 209618806  37345672     2823598978
## 229      47049424 221482983  487993204 217858199  40390504     3006096654
## 230      52618704 238950423  519297466 226337488  43650413     3190706863
## 231      56484224 257951848  551924772 234413988  46745384     3373278888
## 232      62038848 275381596  586345409 243444150  49901824     3554053461
## 233      66556560 294152897  617042392 248085102  53052440     3735050133
## 234      71689824 313951204  649479711 259674155  56286282     3922144491
## 235      78673408 334144122  681884818 273238648  59430682     4106673286
## 236      84250016 355226771  715260023 275839003  63035925     4292455488
## 237      91600000 376166333  748993410 278150778  67219952     4476717307
## 238     100404592 397836221  784392082 280428049  71416577     4657926135
## 239     108670576 419453271  819905115 284763019  75845124     4833105698
## 240     113452096 442895236  853021758 289405389  80488180     4997333100
## 241     117760960 460199421  882572988 293109875  85619999     5145845576
## 242     121604496 476831969  913705975 296161920  91127155     5289919795
## 243     126697456 493935684  942990085 300873299  96878525     5427882462
## 244     130830448 510296901  975136843 305390200 102872548     5559414971
## 245     136945664 527336998 1000723041 309860050 108736864     5691387031
## 246     144280992 544966207 1027595529 314041320 114951341     5826035745
## 247     151293888 563659149 1052104632 318417068 121252542     5956885459
## 248     157878096 583057391 1076462057 318658597 127846296     6082011122
## 249     163817440 603299128 1101645008 320468494 134707091     6198452704
## 250     170280736 623114863 1127589248 325270838 141815951     6325349618
## 251     177678352 644081561 1152921436 330161010 148798192     6452015990
## 252     184636288 666135532 1178887032 334875526 155968972     6575614020
## 253     189769552 689521817 1204242143 339593178 163529207     6702662394
## 254     197104880 712566572 1229108093 344542948 171316958     6830421719
## 255     204601424 736056106 1254955740 349448805 179289128     6955716250
## 256     211412800 759781745 1282183908 354561686 187449973     7082096541
## 257     217949376 784837970 1308781347 360317598 195922586     7210277275
## 258     224540912 808623267 1339027394 365853938 204556779     7333211143
## 259     230055232 830618773 1368732563 371518885 212939378     7448466426
## 260     236119152 851863857 1406904738 375420985 220957255     7565961978
## 261     242465200 872665530 1442676586 380398987 228657450     7680985280
## 262     250808128 891908503 1478603454 386393291 235827377     7791899361
## 263     260338192 910496681 1513192442 391603499 242322236     7898300552
## 264     270077104 928347354 1547825532 397480555 249200779     8002360859
## 265     280931213 946343922 1583826337 403615931 256103650     8107145417
## 266     291688755 964565396 1620492822 409870389 263411449     8213688712
## 267     303413163 981746998 1656996984 416123737 270926137     8321584468
##     Czechoslovakia Democratic.Republic.of.Congo    Denmark Djibouti
## 1                0                            0          0        0
## 2                0                            0          0        0
## 3                0                            0          0        0
## 4                0                            0          0        0
## 5                0                            0          0        0
## 6                0                            0          0        0
## 7                0                            0          0        0
## 8                0                            0          0        0
## 9                0                            0          0        0
## 10               0                            0          0        0
## 11               0                            0          0        0
## 12               0                            0          0        0
## 13               0                            0          0        0
## 14               0                            0          0        0
## 15               0                            0          0        0
## 16               0                            0          0        0
## 17               0                            0          0        0
## 18               0                            0          0        0
## 19               0                            0          0        0
## 20               0                            0          0        0
## 21               0                            0          0        0
## 22               0                            0          0        0
## 23               0                            0          0        0
## 24               0                            0          0        0
## 25               0                            0          0        0
## 26               0                            0          0        0
## 27               0                            0          0        0
## 28               0                            0          0        0
## 29               0                            0          0        0
## 30               0                            0          0        0
## 31               0                            0          0        0
## 32               0                            0          0        0
## 33               0                            0          0        0
## 34               0                            0          0        0
## 35               0                            0          0        0
## 36               0                            0          0        0
## 37               0                            0          0        0
## 38               0                            0          0        0
## 39               0                            0          0        0
## 40               0                            0          0        0
## 41               0                            0          0        0
## 42               0                            0          0        0
## 43               0                            0          0        0
## 44               0                            0          0        0
## 45               0                            0          0        0
## 46               0                            0          0        0
## 47               0                            0          0        0
## 48               0                            0          0        0
## 49               0                            0          0        0
## 50               0                            0          0        0
## 51               0                            0          0        0
## 52               0                            0          0        0
## 53               0                            0          0        0
## 54               0                            0          0        0
## 55               0                            0          0        0
## 56               0                            0          0        0
## 57               0                            0          0        0
## 58               0                            0          0        0
## 59               0                            0          0        0
## 60               0                            0          0        0
## 61               0                            0          0        0
## 62               0                            0          0        0
## 63               0                            0          0        0
## 64               0                            0          0        0
## 65               0                            0          0        0
## 66               0                            0          0        0
## 67               0                            0          0        0
## 68               0                            0          0        0
## 69               0                            0          0        0
## 70               0                            0          0        0
## 71               0                            0          0        0
## 72               0                            0          0        0
## 73               0                            0          0        0
## 74               0                            0          0        0
## 75               0                            0          0        0
## 76               0                            0          0        0
## 77               0                            0          0        0
## 78               0                            0          0        0
## 79               0                            0          0        0
## 80               0                            0          0        0
## 81               0                            0          0        0
## 82               0                            0          0        0
## 83               0                            0          0        0
## 84               0                            0          0        0
## 85               0                            0          0        0
## 86               0                            0          0        0
## 87               0                            0          0        0
## 88               0                            0          0        0
## 89               0                            0          0        0
## 90               0                            0          0        0
## 91               0                            0          0        0
## 92               0                            0          0        0
## 93               0                            0     135568        0
## 94               0                            0     293120        0
## 95               0                            0     501968        0
## 96               0                            0     729136        0
## 97               0                            0     901344        0
## 98               0                            0    1212784        0
## 99               0                            0    1483920        0
## 100              0                            0    1824672        0
## 101              0                            0    2136112        0
## 102              0                            0    2469536        0
## 103              0                            0    2828608        0
## 104              0                            0    3286608        0
## 105              0                            0    3740944        0
## 106              0                            0    4389472        0
## 107              0                            0    5052656        0
## 108              0                            0    5543632        0
## 109              0                            0    6170176        0
## 110         267472                            0    6712448        0
## 111        1146832                            0    7496544        0
## 112        2641744                            0    8174384        0
## 113        4752208                            0    8929168        0
## 114        7478224                            0    9577696        0
## 115       10819792                            0   10592624        0
## 116       14776912                            0   11530608        0
## 117       19345920                            0   12446608        0
## 118       24530480                            0   13531152        0
## 119       30330592                            0   14476464        0
## 120       36746256                            0   15619632        0
## 121       43777472                            0   16806768        0
## 122       51420576                            0   17946272        0
## 123       59679232                            0   19096768        0
## 124       68553440                            0   20338864        0
## 125       78043200                            0   21797136        0
## 126       94446928                            0   23339680        0
## 127      111682384                            0   24863904        0
## 128      129749568                            0   26311184        0
## 129      149165104                            0   27945328        0
## 130      169734800                            0   29806640        0
## 131      191458656                            0   31777872        0
## 132      213673488                            0   33892000        0
## 133      237401552                            0   36321232        0
## 134      261910048                            0   38739472        0
## 135      287642320                            0   41274960        0
## 136      314693632                            0   43704192        0
## 137      343107952                            0   46195712        0
## 138      373563120                            0   48998672        0
## 139      405806320                            0   51992160        0
## 140      440288224                            0   54861072        0
## 141      476037872                            0   57946160        0
## 142      512329792                            0   61115520        0
## 143      549427792                            0   64112672        0
## 144      587456448                            0   67512864        0
## 145      626925056                            0   71037632        0
## 146      667364624                            0   75350160        0
## 147      710163808                            0   79974128        0
## 148      753919296                            0   84777632        0
## 149      798810624                            0   90028144        0
## 150      843375856                            0   95176064        0
## 151      889941632                            0  100536496        0
## 152      937130288                            0  106039824        0
## 153      985205632                            0  111766656        0
## 154     1033749968                            0  117944160        0
## 155     1083723264                            0  123953120        0
## 156     1135909616                            0  130497024        0
## 157     1190756032                            0  136330112        0
## 158     1246613712                            0  143566512        0
## 159     1302130640                            0  151572352        0
## 160     1357068656                            0  158922336        0
## 161     1412702832                            0  166752304        0
## 162     1471898416                            0  176036880        0
## 163     1533816352                            0  185563280        0
## 164     1590263936                            0  195327840        0
## 165     1646586944                            0  205781232        0
## 166     1706533648                            0  215996464        0
## 167     1762904288                            0  223430720        0
## 168     1810964976                            0  232107072        0
## 169     1856369264                            0  240343744        0
## 170     1901399824                         3664  247536176        0
## 171     1944646016                        10992  254329232        0
## 172     1983242592                        91600  263980208        0
## 173     2024037568                       252816  274506880        0
## 174     2074109792                       468992  286847232        0
## 175     2121232496                       641200  297568096        0
## 176     2169011056                       879360  308036144        0
## 177     2220285072                      1110192  321362112        0
## 178     2274270448                      1392320  333922304        0
## 179     2334660496                      1696432  349050960        0
## 180     2387898416                      2084816  362860576        0
## 181     2437710496                      2333968  377183152        0
## 182     2481125232                      2385264  390611712        0
## 183     2520832000                      2388928  403985312        0
## 184     2560494800                      2407248  418630320        0
## 185     2601326416                      2440224  433883552        0
## 186     2645690128                      2480528  449664400        0
## 187     2699426352                      2583120  465961872        0
## 188     2760999872                      2704032  480595888        0
## 189     2828648304                      2791968  496900688        0
## 190     2904892480                      2868912  511725232        0
## 191     2981634960                      2971504  529125568        0
## 192     3064404720                      3114400  545598912        0
## 193     3155788544                      3334240  566223568        0
## 194     3242918464                      3506448  586507472        0
## 195     3289158144                      3678656  600551584        0
## 196     3346708592                      3990096  618197408        0
## 197     3412019392                      4316192  639653792        0
## 198     3482606352                      4689920  656728032        0
## 199     3556809680                      5166240  673611744        0
## 200     3633207744                      6646496  695603072    10992
## 201     3714618160                      8394224  717528448    36640
## 202     3801663808                     10479040  740432112    62288
## 203     3891882480                     12769040  763588592    91600
## 204     3988231024                     15586656  789170640   124576
## 205     4088243568                     18975856  816240272   161216
## 206     4195562128                     22152544  842617408   190528
## 207     4307651216                     25483120  867521616   234496
## 208     4430124080                     28410656  894316448   282128
## 209     4552710528                     31109627  920350880   318768
## 210     4683453040                     33428137  950100399   359072
## 211     4825356096                     35783524  981802266   403040
## 212     4976576704                     37955474 1018692150   450672
## 213     5135649264                     40248157 1059360062   516624
## 214     5301199776                     42222132 1102506988   600896
## 215     5462511040                     44690658 1146800359   721808
## 216     5622913632                     47093172 1196878770   861040
## 217     5782982800                     49381984 1245905197   948976
## 218     5950453248                     52748011 1299177873  1069888
## 219     6128241520                     56396047 1358520459  1154160
## 220     6332077168                     59105714 1420559780  1293392
## 221     6545933856                     62064383 1477569255  1454608
## 222     6761787424                     65081588 1537163159  1645136
## 223     6978556992                     68270762 1596384974  1824672
## 224     7197876704                     71635453 1651426497  2018864
## 225     7427389664                     74868239 1707171099  2216720
## 226     7665875760                     78273124 1767273460  2414576
## 227     7911539632                     81750095 1829090844  2612432
## 228     8159486176                     85276071 1890186701  2813952
## 229     8401017056                     89016176 1953164349  3176688
## 230     8645427840                     92501196 2013512280  3524768
## 231     8887229856                     96256620 2065284865  3825216
## 232     9126705232                     99303585 2118968720  4173296
## 233     9366561664                    103301585 2169136056  4521376
## 234     9614541184                    107233226 2219991918  4873120
## 235     9859179136                    110845160 2280056543  5232192
## 236    10105546496                    114190824 2338962824  5609584
## 237    10349986592                    118006687 2397308442  5997968
## 238    10590546512                    121984679 2452419908  6346048
## 239    10823214176                    126336671 2501227716  6734432
## 240    11040793488                    130363040 2554828590  7056864
## 241    11241448784                    133301447 2619049535  7368304
## 242    11241448784                    136099686 2677462910  7679744
## 243    11241448784                    138676947 2738116325  7991184
## 244    11241448784                    140299486 2802831500  8295296
## 245    11241448784                    142399551 2864459996  8599408
## 246    11241448784                    144692988 2939337495  8910848
## 247    11241448784                    146579420 3004807071  9236944
## 248    11241448784                    148234260 3066036486  9552048
## 249    11241448784                    149600479 3124685992  9867152
## 250    11241448784                    150397985 3178993542 10207904
## 251    11241448784                    151214392 3234874295 10574304
## 252    11241448784                    152115646 3290425983 10973680
## 253    11241448784                    153068558 3351061241 11395040
## 254    11241448784                    154226067 3406171375 11801744
## 255    11241448784                    155671371 3457703449 12215776
## 256    11241448784                    157224661 3517142328 12626144
## 257    11241448784                    158920878 3571799435 13087808
## 258    11241448784                    160731713 3623010033 13586112
## 259    11241448784                    162426996 3671833527 14047776
## 260    11241448784                    164390334 3721125802 14564400
## 261    11241448784                    166829035 3765441345 15037056
## 262    11241448784                    169181202 3805322203 15553680
## 263    11241448784                    172719331 3847147257 16145862
## 264    11241448784                    177350595 3884770789 16828554
## 265    11241448784                    182054375 3920085907 17569039
## 266    11241448784                    182054375 3957203249 18357266
## 267    11241448784                    186868045 3991753370 19174274
##     Dominica Dominican.Republic        EU.28    Ecuador      Egypt
## 1          0                  0      9350528          0          0
## 2          0                  0     18704720          0          0
## 3          0                  0     28058912          0          0
## 4          0                  0     37416768          0          0
## 5          0                  0     46778288          0          0
## 6          0                  0     56784672          0          0
## 7          0                  0     66794720          0          0
## 8          0                  0     76808432          0          0
## 9          0                  0     86825808          0          0
## 10         0                  0     96843184          0          0
## 11         0                  0    107816864          0          0
## 12         0                  0    118794208          0          0
## 13         0                  0    129775216          0          0
## 14         0                  0    140759888          0          0
## 15         0                  0    151748224          0          0
## 16         0                  0    164007968          0          0
## 17         0                  0    176271376          0          0
## 18         0                  0    188538448          0          0
## 19         0                  0    200809184          0          0
## 20         0                  0    213083584          0          0
## 21         0                  0    226695344          0          0
## 22         0                  0    240310768          0          0
## 23         0                  0    253929856          0          0
## 24         0                  0    267552608          0          0
## 25         0                  0    281179024          0          0
## 26         0                  0    296216080          0          0
## 27         0                  0    311256800          0          0
## 28         0                  0    326301184          0          0
## 29         0                  0    341349232          0          0
## 30         0                  0    356404608          0          0
## 31         0                  0    373248016          0          0
## 32         0                  0    390095088          0          0
## 33         0                  0    406949488          0          0
## 34         0                  0    423807552          0          0
## 35         0                  0    440672944          0          0
## 36         0                  0    459821008          0          0
## 37         0                  0    478976400          0          0
## 38         0                  0    498135456          0          0
## 39         0                  0    517301840          0          0
## 40         0                  0    536475552          0          0
## 41         0                  0    557891632          0          0
## 42         0                  0    579784032          0          0
## 43         0                  0    601694752          0          0
## 44         0                  0    623572496          0          0
## 45         0                  0    645461232          0          0
## 46         0                  0    668408864          0          0
## 47         0                  0    692499664          0          0
## 48         0                  0    717590736          0          0
## 49         0                  0    744015504          0          0
## 50         0                  0    771850912          0          0
## 51         0                  0    799539760          0          0
## 52         0                  0    836029536          0          0
## 53         0                  0    867217504          0          0
## 54         0                  0    901190112          0          0
## 55         0                  0    934265040          0          0
## 56         0                  0    968974112          0          0
## 57         0                  0   1005467552          0          0
## 58         0                  0   1040136320          0          0
## 59         0                  0   1074819744          0          0
## 60         0                  0   1111778512          0          0
## 61         0                  0   1150910032          0          0
## 62         0                  0   1191430208          0          0
## 63         0                  0   1232126256          0          0
## 64         0                  0   1273690672          0          0
## 65         0                  0   1316574128          0          0
## 66         0                  0   1363572256          0          0
## 67         0                  0   1412281472          0          0
## 68         0                  0   1461140912          0          0
## 69         0                  0   1510322784          0          0
## 70         0                  0   1560215472          0          0
## 71         0                  0   1610818976          0          0
## 72         0                  0   1663415696          0          0
## 73         0                  0   1719060864          0          0
## 74         0                  0   1776567344          0          0
## 75         0                  0   1836184288          0          0
## 76         0                  0   1896284880          0          0
## 77         0                  0   1960749296          0          0
## 78         0                  0   2025788960          0          0
## 79         0                  0   2090374288          0          0
## 80         0                  0   2177379632          0          0
## 81         0                  0   2259614448          0          0
## 82         0                  0   2341684384          0          0
## 83         0                  0   2424941456          0          0
## 84         0                  0   2510041520          0          0
## 85         0                  0   2596152848          0          0
## 86         0                  0   2696176384          0          0
## 87         0                  0   2795533072          0          0
## 88         0                  0   2898491472          0          0
## 89         0                  0   3004542288          0          0
## 90         0                  0   3117551040          0          0
## 91         0                  0   3233894032          0          0
## 92         0                  0   3356403536          0          0
## 93         0                  0   3481426544          0          0
## 94         0                  0   3613473440          0          0
## 95         0                  0   3757377040          0          0
## 96         0                  0   3902335872          0          0
## 97         0                  0   4059532464          0          0
## 98         0                  0   4216391968          0          0
## 99         0                  0   4381528448          0          0
## 100        0                  0   4558320112          0          0
## 101        0                  0   4732272176          0          0
## 102        0                  0   4912797456          0          0
## 103        0                  0   5099577184          0          0
## 104        0                  0   5321197888          0          0
## 105        0                  0   5542452192          0          0
## 106        0                  0   5779223536          0          0
## 107        0                  0   6017537424          0          0
## 108        0                  0   6258504048          0          0
## 109        0                  0   6512499856          0          0
## 110        0                  0   6792817840          0          0
## 111        0                  0   7090814624          0          0
## 112        0                  0   7392845472          0          0
## 113        0                  0   7710426336          0          0
## 114        0                  0   8052482720          0          0
## 115        0                  0   8418428384          0          0
## 116        0                  0   8794457376          0          0
## 117        0                  0   9187666864          0          0
## 118        0                  0   9584983696          0          0
## 119        0                  0  10000140544          0          0
## 120        0                  0  10420240128          0          0
## 121        0                  0  10866683872          0          0
## 122        0                  0  11348976192          0          0
## 123        0                  0  11856938496          0          0
## 124        0                  0  12325307616          0          0
## 125        0                  0  12842030544          0          0
## 126        0                  0  13362754560          0          0
## 127        0                  0  13881060336          0          0
## 128        0                  0  14402161744          0          0
## 129        0                  0  14939326128          0          0
## 130        0                  0  15544358784          0          0
## 131        0                  0  16164681312          0          0
## 132        0                  0  16805965584          0          0
## 133        0                  0  17482138464          0          0
## 134        0                  0  18152584512          0          0
## 135        0                  0  18822590880          0          0
## 136        0                  0  19490197328          0          0
## 137        0                  0  20182612720          0          0
## 138        0                  0  20916097888          0          0
## 139        0                  0  21682789888          0          0
## 140        0                  0  22482216064          0          0
## 141        0                  0  23307429472          0          0
## 142        0                  0  24116876688          0          0
## 143        0                  0  24896847024          0          0
## 144        0                  0  25746993952          0          0
## 145        0                  0  26615094480          0          0
## 146        0                  0  27524609200          0          0
## 147        0                  0  28474863936          0          0
## 148        0                  0  29451781600          0          0
## 149        0                  0  30488810848          0          0
## 150        0                  0  31573838496          0          0
## 151        0                  0  32645302016          0          0
## 152        0                  0  33718905312          0          0
## 153        0                  0  34841507280          0          0
## 154        0                  0  35979355152          0          0
## 155        0                  0  37160053504          0          0
## 156        0                  0  38370327664          0          0
## 157        0                  0  39713092064          0          0
## 158        0                  0  41077107664          0          0
## 159        0                  0  42438034512          0          0
## 160        0                  0  43821275120          0          0
## 161        0                  0  45235307984          0      10992
## 162        0                  0  46690952896          0      95264
## 163        0                  0  48267425536          0     135568
## 164        0                  0  49671158896          0     443344
## 165        0                  0  51000982048          0     534944
## 166        0                  0  52390022768          0     714480
## 167        0                  0  53770277216      25648    1135840
## 168        0                  0  55071304992      51296    2000544
## 169        0                  0  56167060832      76944    2689376
## 170        0                  0  57451333136     102592    3143712
## 171        0                  0  58619746096     128240    3704304
## 172        0                  0  59924364592     153888    4235584
## 173        0                  0  61158462080     190528    4704576
## 174        0                  0  62580874512     234496    5202880
## 175        0                  0  63991258032     304112    5756144
## 176        0                  0  65163291024     395712    6287424
## 177        0                  0  66672683152     630208    6855344
## 178        0                  0  68175886784    1102864    7723712
## 179        0                  0  69805641312    1703760    8647040
## 180        0                  0  71309574080    2381600    9669296
## 181        0                  0  72675806400    3147376   10676896
## 182        0                  0  73914322672    3858192   11629536
## 183        0                  0  75180014832    4583664   12501568
## 184        0                  0  76547221776    5316464   13325968
## 185        0                  0  77964559568    6100560   14073424
## 186        0                  0  79445709584    6976256   14802560
## 187        0                  0  81067374000    7950880   15491392
## 188        0                  0  82674048992    8980464   16370752
## 189        0                  0  84314579344   10050352   18598464
## 190        0                  0  86017789744   11138560   21628592
## 191        0                  0  87700628304   11867696   25582048
## 192        0                  0  89401233600   12919264   29418256
## 193        0                  0  91089773344   13974496   33521936
## 194        0                  0  92576848048   15300864   37882096
## 195        0                  0  93429607408   16528304   42238592
## 196        0                  0  94641665936   17631168   46463184
## 197        0               7328  96010756176   18788992   50878304
## 198        0              29312  97492166336   20075056   57030160
## 199        0              54960  99092634512   21375776   64493728
## 200        0             403040 101000000000   22115904   74730944
## 201     3664             762112 103000000000   22819392   85294256
## 202    10992            1355680 105000000000   23713408   96190992
## 203    14656            1974896 106000000000   24534144  106974144
## 204    18320            2601440 109000000000   25497776  118643984
## 205    21984            3517440 111000000000   26695904  129291568
## 206    25648            4503056 113000000000   27992960  139239328
## 207    29312            5536304 115000000000   29125136  151161984
## 208    36640            6602528 118000000000   30447840  164850688
## 209    47632            7715611 120000000000   31740608  177557547
## 210    58624            8755504 123000000000   33502190  193590278
## 211    69616            9784137 126000000000   35146434  210656198
## 212    80608           11025252 128000000000   36710100  229227308
## 213    95264           12273755 131000000000   38504420  250754167
## 214   109920           14020265 135000000000   40646701  276245414
## 215   124576           15565611 138000000000   42920738  303854870
## 216   139232           17235266 141000000000   45337462  330387020
## 217   161216           18802210 145000000000   47926335  350036930
## 218   183200           21149526 148000000000   51038982  372909556
## 219   201520           23800687 152000000000   54627860  392574309
## 220   227168           26905768 156000000000   58906075  414228318
## 221   252816           30424465 160000000000   63125517  437240719
## 222   278464           35093332 164000000000   67714548  462715715
## 223   304112           41052312 168000000000   72970426  486476791
## 224   333424           47461875 173000000000   79053983  512565933
## 225   362736           53794554 177000000000   86408888  543625845
## 226   392048           60116904 181000000000   94509482  578076297
## 227   417696           65715823 186000000000  101981683  615891361
## 228   443344           71146147 190000000000  112388104  655152367
## 229   476320           77931733 195000000000  124528568  698041873
## 230   512960           84358741 200000000000  137935736  743217901
## 231   549600           90493982 204000000000  154588537  794120585
## 232   589904           96797467 208000000000  173823655  850551753
## 233   630208          104663062 213000000000  193326271  907532229
## 234   674176          112053527 217000000000  214515773  971236546
## 235   721808          119295070 221000000000  233868451 1035043778
## 236   769440          127416152 226000000000  249062533 1109436676
## 237   817072          137103442 230000000000  264084784 1184050197
## 238   872032          146843197 234000000000  281253380 1258359675
## 239   930656          157101100 239000000000  301407090 1330264226
## 240   989280          166252762 243000000000  318117673 1405886202
## 241  1047904          176205385 248000000000  334495299 1484206913
## 242  1106528          187027722 252000000000  356652628 1565033061
## 243  1168816          198694901 256000000000  380740016 1657735668
## 244  1234768          211071695 260000000000  394278518 1742570610
## 245  1315376          226843058 264000000000  416976429 1837737506
## 246  1388656          244040715 269000000000  441001914 1939145971
## 247  1469264          261897651 273000000000  459206971 2046657961
## 248  1546208          280146161 277000000000  481521714 2168123220
## 249  1626816          298530088 281000000000  502886735 2292620637
## 250  1729408          318123762 286000000000  523449352 2432968240
## 251  1839328          337717551 290000000000  546388822 2557261026
## 252  1941920          358791806 294000000000  571141960 2683042476
## 253  2059168          380051732 298000000000  597889813 2829504519
## 254  2172752          398121422 303000000000  626675657 2978648252
## 255  2290000          416501624 307000000000  656645750 3143689945
## 256  2403584          435922026 311000000000  685170351 3319709463
## 257  2557472          456678458 316000000000  716664332 3505614652
## 258  2689376          476947475 320000000000  749989326 3700900028
## 259  2821280          496761133 324000000000  785492543 3903609734
## 260  2960512          517335562 328000000000  821376640 4102417397
## 261  3088752          538116220 331000000000  859350101 4315688402
## 262  3224320          559767516 335000000000  896810627 4527681137
## 263  3356224          580725311 339000000000  937062838 4736131981
## 264  3491792          601716408 342000000000  980259812 4933233481
## 265  3633319          623187518 346000000000 1022134164 5133655640
## 266  3777592          644969862 349000000000 1061888077 5342566978
## 267  3921840          666238638 353000000000 1100685365 5561231356
##     El.Salvador Equatorial.Guinea  Eritrea    Estonia  Ethiopia
## 1             0                 0        0          0         0
## 2             0                 0        0          0         0
## 3             0                 0        0          0         0
## 4             0                 0        0          0         0
## 5             0                 0        0          0         0
## 6             0                 0        0          0         0
## 7             0                 0        0          0         0
## 8             0                 0        0          0         0
## 9             0                 0        0          0         0
## 10            0                 0        0          0         0
## 11            0                 0        0          0         0
## 12            0                 0        0          0         0
## 13            0                 0        0          0         0
## 14            0                 0        0          0         0
## 15            0                 0        0          0         0
## 16            0                 0        0          0         0
## 17            0                 0        0          0         0
## 18            0                 0        0          0         0
## 19            0                 0        0          0         0
## 20            0                 0        0          0         0
## 21            0                 0        0          0         0
## 22            0                 0        0          0         0
## 23            0                 0        0          0         0
## 24            0                 0        0          0         0
## 25            0                 0        0          0         0
## 26            0                 0        0          0         0
## 27            0                 0        0          0         0
## 28            0                 0        0          0         0
## 29            0                 0        0          0         0
## 30            0                 0        0          0         0
## 31            0                 0        0          0         0
## 32            0                 0        0          0         0
## 33            0                 0        0          0         0
## 34            0                 0        0          0         0
## 35            0                 0        0          0         0
## 36            0                 0        0          0         0
## 37            0                 0        0          0         0
## 38            0                 0        0          0         0
## 39            0                 0        0          0         0
## 40            0                 0        0          0         0
## 41            0                 0        0          0         0
## 42            0                 0        0          0         0
## 43            0                 0        0          0         0
## 44            0                 0        0          0         0
## 45            0                 0        0          0         0
## 46            0                 0        0          0         0
## 47            0                 0        0          0         0
## 48            0                 0        0          0         0
## 49            0                 0        0          0         0
## 50            0                 0        0          0         0
## 51            0                 0        0          0         0
## 52            0                 0        0          0         0
## 53            0                 0        0          0         0
## 54            0                 0        0          0         0
## 55            0                 0        0          0         0
## 56            0                 0        0          0         0
## 57            0                 0        0          0         0
## 58            0                 0        0          0         0
## 59            0                 0        0          0         0
## 60            0                 0        0          0         0
## 61            0                 0        0          0         0
## 62            0                 0        0          0         0
## 63            0                 0        0          0         0
## 64            0                 0        0          0         0
## 65            0                 0        0          0         0
## 66            0                 0        0          0         0
## 67            0                 0        0          0         0
## 68            0                 0        0          0         0
## 69            0                 0        0          0         0
## 70            0                 0        0          0         0
## 71            0                 0        0          0         0
## 72            0                 0        0          0         0
## 73            0                 0        0          0         0
## 74            0                 0        0          0         0
## 75            0                 0        0          0         0
## 76            0                 0        0          0         0
## 77            0                 0        0          0         0
## 78            0                 0        0          0         0
## 79            0                 0        0          0         0
## 80            0                 0        0          0         0
## 81            0                 0        0          0         0
## 82            0                 0        0          0         0
## 83            0                 0        0          0         0
## 84            0                 0        0          0         0
## 85            0                 0        0          0         0
## 86            0                 0        0          0         0
## 87            0                 0        0          0         0
## 88            0                 0        0          0         0
## 89            0                 0        0          0         0
## 90            0                 0        0          0         0
## 91            0                 0        0          0         0
## 92            0                 0        0          0         0
## 93            0                 0        0          0         0
## 94            0                 0        0          0         0
## 95            0                 0        0          0         0
## 96            0                 0        0          0         0
## 97            0                 0        0          0         0
## 98            0                 0        0          0         0
## 99            0                 0        0          0         0
## 100           0                 0        0          0         0
## 101           0                 0        0          0         0
## 102           0                 0        0          0         0
## 103           0                 0        0          0         0
## 104           0                 0        0          0         0
## 105           0                 0        0          0         0
## 106           0                 0        0          0         0
## 107           0                 0        0          0         0
## 108           0                 0        0          0         0
## 109           0                 0        0          0         0
## 110           0                 0        0          0         0
## 111           0                 0        0          0         0
## 112           0                 0        0          0         0
## 113           0                 0        0          0         0
## 114           0                 0        0          0         0
## 115           0                 0        0          0         0
## 116           0                 0        0          0         0
## 117           0                 0        0          0         0
## 118           0                 0        0          0         0
## 119           0                 0        0          0         0
## 120           0                 0        0          0         0
## 121           0                 0        0          0         0
## 122           0                 0        0          0         0
## 123           0                 0        0          0         0
## 124           0                 0        0          0         0
## 125           0                 0        0          0         0
## 126           0                 0        0          0         0
## 127           0                 0        0          0         0
## 128           0                 0        0          0         0
## 129           0                 0        0          0         0
## 130           0                 0        0          0         0
## 131           0                 0        0          0         0
## 132           0                 0        0          0         0
## 133           0                 0        0          0         0
## 134           0                 0        0          0         0
## 135           0                 0        0          0         0
## 136           0                 0        0          0         0
## 137           0                 0        0          0         0
## 138           0                 0        0          0         0
## 139           0                 0        0          0         0
## 140           0                 0        0          0         0
## 141           0                 0        0          0         0
## 142           0                 0        0          0         0
## 143           0                 0        0          0         0
## 144           0                 0        0          0         0
## 145           0                 0        0          0         0
## 146           0                 0        0          0         0
## 147           0                 0        0          0         0
## 148           0                 0        0          0         0
## 149           0                 0        0          0         0
## 150           0                 0        0          0         0
## 151           0                 0        0          0         0
## 152           0                 0        0          0         0
## 153           0                 0        0          0         0
## 154           0                 0        0          0         0
## 155           0                 0        0          0         0
## 156           0                 0        0          0         0
## 157           0                 0        0          0         0
## 158           0                 0        0          0         0
## 159           0                 0        0          0         0
## 160           0                 0        0          0         0
## 161           0                 0        0          0         0
## 162           0                 0        0          0         0
## 163           0                 0        0          0         0
## 164           0                 0        0          0         0
## 165           0                 0        0          0         0
## 166           0                 0        0          0         0
## 167           0                 0        0          0         0
## 168           0                 0        0          0         0
## 169           0                 0        0          0         0
## 170           0                 0        0          0         0
## 171           0                 0        0          0         0
## 172           0                 0        0          0         0
## 173           0                 0        0          0         0
## 174           0                 0        0          0         0
## 175           0                 0        0          0         0
## 176           0                 0        0          0         0
## 177           0                 0        0          0         0
## 178           0                 0        0      32976         0
## 179           0                 0        0      62288         0
## 180           0                 0        0      84272         0
## 181           0                 0        0     106256         0
## 182           0                 0        0     120912         0
## 183           0                 0        0     135568         0
## 184           0                 0        0     150224         0
## 185           0                 0        0     168544         0
## 186           0                 0        0     194192         0
## 187           0                 0        0     227168         0
## 188           0                 0        0     267472         0
## 189           0                 0    14656     304112         0
## 190           0                 0    21984     304112         0
## 191           0                 0    25648     304112     10992
## 192           0                 0    36640     304112     21984
## 193           0                 0    51296     304112     32976
## 194           0                 0    69616     304112     32976
## 195           0                 0    69616     304112     32976
## 196           0                 0    69616     304112     32976
## 197           0                 0    69616     304112     32976
## 198           0                 0    69616     304112     36640
## 199           0                 0    69616     304112     40304
## 200      267472             10992    69616     304112    128240
## 201      589904             21984    69616     304112    190528
## 202      978288             32976    69616     304112    289456
## 203     1395984             43968    69616     304112    472656
## 204     1864976             73280    69616     304112    743792
## 205     2326640            109920    69616     304112    970960
## 206     2854256            146560    69616     304112   1212784
## 207     3451488            179536    69616     304112   1535216
## 208     4048720            227168    69616     304112   1853984
## 209     4652953            274800    69616   10121935   2190983
## 210     5271813            296784    69616   20343633   2542608
## 211     5854091            318768    69616   30884780   2883241
## 212     6502352            340752    69616   41948038   3278775
## 213     7626873            366400    69616   53812648   3699986
## 214     8857620            392048    69616   66430647   4106512
## 215     9897870            421360    69616   79815800   4750990
## 216    11201689            447008    69616   93951094   5574974
## 217    12358948            472656    69616  108731558   6647931
## 218    13618740            501968    69616  123927228   8372962
## 219    14808976            545936    69616  139752550  10039399
## 220    16237282            582576    69616  156397685  11691120
## 221    17746107            648528    69616  174069681  13540578
## 222    19423328            736464    69616  192671706  14946781
## 223    21389915            765776    69616  212068765  16697668
## 224    23359958            817072    69616  232214560  18433929
## 225    25465421            879360    69616  253401342  19642454
## 226    27672154            941648    69616  275406605  20817183
## 227    29953842           1003936    69616  298163479  21863969
## 228    32335214           1073552    69616  321703633  23232470
## 229    34711935           1135840    69616  345439945  25076605
## 230    36831369           1194464    69616  370112707  26894088
## 231    38650100           1264080    69616  394325377  28754095
## 232    40402199           1337360    69616  418998556  30228008
## 233    42287563           1399648    69616  444031244  32062762
## 234    43875862           1480256    69616  469294477  33713044
## 235    45841201           1546208    69616  496540894  35511754
## 236    47808697           1626816    69616  523867874  37707000
## 237    50223189           1725744    69616  552348668  40261381
## 238    52656257           1832000    69616  581615610  42901447
## 239    55203503           1949248    69616  610276130  45695561
## 240    57670673           2015200    69616  647345107  48681336
## 241    60794541           2158096    69616  681382812  51638476
## 242    64082047           2315648    69616  705897403  54575808
## 243    67815494           2414576    69616  724963430  57570625
## 244    72347730           2447552   930337  744864405  59767504
## 245    77309300           2575792  1859977  763068398  62273157
## 246    81808268           2689376  2867203  781993828  65067810
## 247    87206540           2978832  3726486  800476149  68047139
## 248    92938207           3143712  4312297  817385738  71194546
## 249    98558341           3609040  4927392  833112807  74289499
## 250   104219229           4063376  5531468  848475014  77753286
## 251   110073672           7155792  6157457  864182882  82016668
## 252   116004516          12131504  6757727  879416204  86447156
## 253   122438798          18144128  7478839  896503453  91318279
## 254   128692461          23358000  8243847  913790043  96476898
## 255   135041730          28066240  9005122  930926365 101432025
## 256   141762293          32818448  9561048  947365554 106748966
## 257   148608161          37610960 10135057  967437201 112577321
## 258   155016809          42110352 10544073  985309852 118942386
## 259   161329459          46726992 11052038  999918919 125375432
## 260   167646504          51402256 11560026 1018933777 131771166
## 261   174146978          57524800 12131444 1038030974 139250121
## 262   180652722          62636080 12761118 1055969033 147399659
## 263   186746324          67794992 13399894 1075664630 157479846
## 264   192915780          73137104 14062641 1094568471 168470915
## 265   199453649          78973561 14779167 1110459539 180852341
## 266   206287957          85431835 15543434 1127953042 193794234
## 267   213279980          92146727 16336483 1147762306 207190474
##     Europe..other. Faeroe.Islands Falkland.Islands     Fiji    Finland
## 1                0              0                0        0          0
## 2                0              0                0        0          0
## 3                0              0                0        0          0
## 4                0              0                0        0          0
## 5                0              0                0        0          0
## 6                0              0                0        0          0
## 7                0              0                0        0          0
## 8                0              0                0        0          0
## 9                0              0                0        0          0
## 10               0              0                0        0          0
## 11               0              0                0        0          0
## 12               0              0                0        0          0
## 13               0              0                0        0          0
## 14               0              0                0        0          0
## 15               0              0                0        0          0
## 16               0              0                0        0          0
## 17               0              0                0        0          0
## 18               0              0                0        0          0
## 19               0              0                0        0          0
## 20               0              0                0        0          0
## 21               0              0                0        0          0
## 22               0              0                0        0          0
## 23               0              0                0        0          0
## 24               0              0                0        0          0
## 25               0              0                0        0          0
## 26               0              0                0        0          0
## 27               0              0                0        0          0
## 28               0              0                0        0          0
## 29               0              0                0        0          0
## 30               0              0                0        0          0
## 31               0              0                0        0          0
## 32               0              0                0        0          0
## 33               0              0                0        0          0
## 34               0              0                0        0          0
## 35               0              0                0        0          0
## 36               0              0                0        0          0
## 37               0              0                0        0          0
## 38               0              0                0        0          0
## 39               0              0                0        0          0
## 40               0              0                0        0          0
## 41               0              0                0        0          0
## 42               0              0                0        0          0
## 43               0              0                0        0          0
## 44               0              0                0        0          0
## 45               0              0                0        0          0
## 46               0              0                0        0          0
## 47               0              0                0        0          0
## 48               0              0                0        0          0
## 49               0              0                0        0          0
## 50               0              0                0        0          0
## 51               0              0                0        0          0
## 52               0              0                0        0          0
## 53               0              0                0        0          0
## 54               0              0                0        0          0
## 55               0              0                0        0          0
## 56               0              0                0        0          0
## 57               0              0                0        0          0
## 58               0              0                0        0          0
## 59               0              0                0        0          0
## 60               0              0                0        0          0
## 61               0              0                0        0          0
## 62               0              0                0        0          0
## 63               0              0                0        0          0
## 64               0              0                0        0          0
## 65               0              0                0        0          0
## 66               0              0                0        0          0
## 67               0              0                0        0          0
## 68               0              0                0        0          0
## 69               0              0                0        0          0
## 70               0              0                0        0          0
## 71               0              0                0        0          0
## 72               0              0                0        0          0
## 73               0              0                0        0          0
## 74               0              0                0        0          0
## 75               0              0                0        0          0
## 76               0              0                0        0          0
## 77               0              0                0        0          0
## 78               0              0                0        0          0
## 79           10992              0                0        0          0
## 80           43968              0                0        0          0
## 81           69616              0                0        0          0
## 82           84272              0                0        0          0
## 83          102592              0                0        0          0
## 84           98928              0                0        0          0
## 85          113584              0                0        0          0
## 86          128240              0                0        0          0
## 87          153888              0                0        0          0
## 88          201520              0                0        0          0
## 89          241824              0                0        0          0
## 90          289456              0                0        0          0
## 91          344416              0                0        0          0
## 92          414032              0                0        0          0
## 93          479984              0                0        0          0
## 94          556928              0                0        0          0
## 95          659520              0                0        0          0
## 96          758448              0                0        0          0
## 97          857376              0                0        0          0
## 98          989280              0                0        0          0
## 99         1095536              0                0        0          0
## 100        1344688              0                0        0          0
## 101        1494912              0                0        0          0
## 102        1652464              0                0        0          0
## 103        1817344              0                0        0          0
## 104        2055504              0                0        0          0
## 105        2649072              0                0        0          0
## 106        2953184              0                0        0          0
## 107        3257296              0                0        0          0
## 108        4151312              0                0        0          0
## 109        5195552              0                0        0          0
## 110        6782064              0                0        0      36640
## 111        9372512              0                0        0     109920
## 112       12486912              0                0        0     183200
## 113       16246176              0                0        0     260144
## 114       20932432              0                0        0     307776
## 115       26322176              0                0        0     370064
## 116       34240080              0                0        0     439680
## 117       43264512              0                0        0     501968
## 118       52486800              0                0        0     589904
## 119       63149040              0                0        0     659520
## 120       74965440              0                0        0     751120
## 121       88954592              0                0        0     864704
## 122      103889056              0                0        0     956304
## 123      119087328              0                0        0    1044240
## 124      136058976              0                0        0    1168816
## 125      154888272              0                0        0    1253088
## 126      182426896              0                0        0    1348352
## 127      211222272              0                0        0    1461936
## 128      243395856              0                0        0    1590176
## 129      277364800              0                0        0    1667120
## 130      314884160              0                0        0    1766048
## 131      354250176              0                0        0    1864976
## 132      395169728              0                0        0    1985888
## 133      440050064              0                0        0    2103136
## 134      486062576              0                0        0    2246032
## 135      535248112              0                0        0    2465872
## 136      586225344              0                0        0    2594112
## 137      639840656              0                0        0    2722352
## 138      696716928              0                0        0    2843264
## 139      757682224              0                0        0    3004480
## 140      824330384              0                0        0    3213328
## 141      895976240              0                0        0    3433168
## 142      969934080              0                0        0    3627360
## 143     1049615088              0                0        0    3821552
## 144     1132245616              0                0        0    4041392
## 145     1222369024              0                0        0    4275888
## 146     1314716480              0                0        0    4572672
## 147     1416722240              0                0        0    5089296
## 148     1526356448              0                0        0    5576608
## 149     1647422336              0                0        0    6313072
## 150     1777835088              0                0        0    6913968
## 151     1911578416              0                0        0    7335328
## 152     2043661952              0                0        0    7734704
## 153     2175500000              0                0        0    8247664
## 154     2316289200              0                0        0    8775280
## 155     2450142448              0                0        0    9361520
## 156     2597325328              0                0        0    9977072
## 157     2758772160              0                0        0   10863760
## 158     2922838752              0                0        0   12270736
## 159     3091884720              0                0        0   13553136
## 160     3258347568              0                0        0   14615696
## 161     3430123216              0                0        0   15931072
## 162     3619727888              0                0        0   17414992
## 163     3825010816              0                0        0   19078448
## 164     4008621184              0                0        0   19767280
## 165     4184236704              0                0        0   19873536
## 166     4369180768              0                0        0   20053072
## 167     4535123328              0                0        0   20173984
## 168     4633245248              0                0        0   20247264
## 169     4725589040              0                0        0   20485424
## 170     4818170992              0                0        0   20760224
## 171     4907162224              0                0        0   21042352
## 172     5005591920              0                0        0   21753168
## 173     5112903152              0                0        0   23229760
## 174     5238845824              0                0        0   24973824
## 175     5361985536              0                0        0   26684912
## 176     5508212112              0                0        0   28282416
## 177     5681002688              0                0        0   31133008
## 178     5868577504              0                0        0   34262064
## 179     6073999664              0                0        0   37614624
## 180     6311500144              0                0        0   40263696
## 181     6576194832              0                0        0   43275504
## 182     6858198256              0                0        0   46298304
## 183     7160624816              0                0        0   49522624
## 184     7513182224              0                0        0   53476080
## 185     7905233888              0                0        0   56993520
## 186     8349438928              0                0        0   61958240
## 187     8814334576              0                0        0   68740304
## 188     9306376800              0                0        0   74437824
## 189     9813360816              0                0        0   79310944
## 190    10401678304              0                0        0   81626592
## 191    10917683088              0                0        0   84872896
## 192    11305634736              0                0        0   87683184
## 193    11784768688              0                0        0   91629312
## 194    12232960160              0                0        0   94355328
## 195    12546221168              0                0        0   94996528
## 196    12773894800              0                0        0   98279472
## 197    13060419600              0                0        0  103731504
## 198    13327070864              0                0        0  112191680
## 199    13616622128              0                0        0  117127088
## 200    13898471664          40304           274800   120912  123674656
## 201    14178210736          80608           630208   252816  131654848
## 202    14480893776         135568           883024   410368  140312880
## 203    14819143264         219840           985616   578912  147882704
## 204    15209586432         296784          1278736   736464  157039040
## 205    15667615744         395712          1579184   908672  167968752
## 206    16197052752         509296          1890624  1102864  180140560
## 207    16829111072         604560          2202064  1267744  192385648
## 208    17574471264         721808          2568464  1443616  202996592
## 209    18787056099         820736          2671056  1641472  216552331
## 210    20054102113         879360          2865248  1835664  231639266
## 211    21361355056         992944          3019136  2004208  246560964
## 212    22735695190        1110192          3066768  2235040  263351242
## 213    24213204104        1234768          3114400  2476864  282687733
## 214    25783784865        1355680          3125392  2901769  305515422
## 215    27448568445        1491248          3136384  3246037  330815509
## 216    29206361930        1630480          3147376  3568290  360304349
## 217    31041554479        1799024          3165696  3923520  388892084
## 218    32933998630        1982224          3165696  4319024  422173551
## 219    34905142267        2194736          3165696  4751168  460070380
## 220    36993513326        2451216          3176688  5271218  500425427
## 221    39207492513        2711360          3187680  5820491  540962210
## 222    41531251071        2945856          3198672  6399047  585068344
## 223    43961820966        3198672          3213328  7028898  634388585
## 224    46471156236        3499120          3227984  7699083  680997067
## 225    49104224953        3847200          3242640  8321666  727022877
## 226    51836710818        4176960          3257296  8804664  778221483
## 227    54658760479        4583664          3271952  9569291  828358622
## 228    57585819225        4983040          3286608 10278375  880183811
## 229    60540363641        5463024          3301264 11114831  934421026
## 230    63605269795        5884384          3315920 11907251  992560540
## 231    66624120587        6324064          3341568 12984424 1043964074
## 232    69688168489        6782064          3363552 13819547 1086940826
## 233    72799278580        7269376          3385536 14528473 1128404511
## 234    75943387057        7767680          3411184 15105682 1170551950
## 235    79322956838        8284304          3440496 15678673 1220101338
## 236    82723642186        8775280          3473472 16276759 1273315992
## 237    86249720024        9273584          3510112 16748754 1330849704
## 238    89872667370        9801200          3550416 17298519 1382908130
## 239    93430142013       10380112          3590720 17923722 1435356438
## 240    97018807852       11090928          3631024 18729778 1492323425
## 241   100000000000       11757776          3671328 19392903 1547548692
## 242   103000000000       12406304          3711632 20132935 1601829167
## 243   106000000000       12988880          3751936 20876595 1658177691
## 244   108000000000       13564128          3792240 21615192 1719889259
## 245   110000000000       14135712          3836208 22369087 1778030819
## 246   113000000000       14736608          3880176 23182254 1842089169
## 247   115000000000       15326512          3927808 23964690 1904807440
## 248   117000000000       15949392          3964448 24725794 1964182505
## 249   119000000000       16579600          4001088 25500817 2023080767
## 250   121000000000       17268432          4037728 26334421 2080122299
## 251   123000000000       18030544          4081696 27380371 2142661573
## 252   125000000000       18756016          4125664 28259824 2207723393
## 253   127000000000       19488816          4173296 29295898 2280381762
## 254   129000000000       20236272          4224592 30635882 2349343358
## 255   131000000000       20958080          4275888 31716888 2406388373
## 256   133000000000       21635920          4334512 32918261 2474768192
## 257   136000000000       22324752          4393136 34059400 2541523854
## 258   138000000000       22954960          4451760 34937158 2600132670
## 259   140000000000       23530208          4510384 35715718 2655950897
## 260   142000000000       24160416          4565344 36916963 2719942650
## 261   144000000000       24728336          4620304 37984864 2776486792
## 262   147000000000       25318240          4675264 39025939 2827598682
## 263   149000000000       25996080          4730224 40155115 2879500252
## 264   151000000000       26593312          4785184 41301618 2927299905
## 265   153000000000       27210692          4785184 42552318 2971645985
## 266   155000000000       27872403          4785184 43816443 3019572364
## 267   158000000000       28545340          4785184 45160830 3065528408
##          France French.Guiana French.Polynesia     Gabon   Gambia
## 1             0             0                0         0        0
## 2             0             0                0         0        0
## 3             0             0                0         0        0
## 4             0             0                0         0        0
## 5             0             0                0         0        0
## 6             0             0                0         0        0
## 7             0             0                0         0        0
## 8             0             0                0         0        0
## 9             0             0                0         0        0
## 10            0             0                0         0        0
## 11            0             0                0         0        0
## 12            0             0                0         0        0
## 13            0             0                0         0        0
## 14            0             0                0         0        0
## 15            0             0                0         0        0
## 16            0             0                0         0        0
## 17            0             0                0         0        0
## 18            0             0                0         0        0
## 19            0             0                0         0        0
## 20            0             0                0         0        0
## 21            0             0                0         0        0
## 22            0             0                0         0        0
## 23            0             0                0         0        0
## 24            0             0                0         0        0
## 25            0             0                0         0        0
## 26            0             0                0         0        0
## 27            0             0                0         0        0
## 28            0             0                0         0        0
## 29            0             0                0         0        0
## 30            0             0                0         0        0
## 31            0             0                0         0        0
## 32            0             0                0         0        0
## 33            0             0                0         0        0
## 34            0             0                0         0        0
## 35            0             0                0         0        0
## 36            0             0                0         0        0
## 37            0             0                0         0        0
## 38            0             0                0         0        0
## 39            0             0                0         0        0
## 40            0             0                0         0        0
## 41            0             0                0         0        0
## 42            0             0                0         0        0
## 43            0             0                0         0        0
## 44            0             0                0         0        0
## 45            0             0                0         0        0
## 46            0             0                0         0        0
## 47            0             0                0         0        0
## 48            0             0                0         0        0
## 49            0             0                0         0        0
## 50            0             0                0         0        0
## 51            0             0                0         0        0
## 52      2238704             0                0         0        0
## 53      2238704             0                0         0        0
## 54      4415120             0                0         0        0
## 55      4415120             0                0         0        0
## 56      4415120             0                0         0        0
## 57      4415120             0                0         0        0
## 58      4415120             0                0         0        0
## 59      4415120             0                0         0        0
## 60      6536576             0                0         0        0
## 61      8588416             0                0         0        0
## 62     10805136             0                0         0        0
## 63     12853312             0                0         0        0
## 64     14945456             0                0         0        0
## 65     17286752             0                0         0        0
## 66     19785600             0                0         0        0
## 67     22445664             0                0         0        0
## 68     24827264             0                0         0        0
## 69     27384736             0                0         0        0
## 70     30286624             0                0         0        0
## 71     33298432             0                0         0        0
## 72     36467792             0                0         0        0
## 73     39637152             0                0         0        0
## 74     43154592             0                0         0        0
## 75     47111712             0                0         0        0
## 76     51200736             0                0         0        0
## 77     57110768             0                0         0        0
## 78     63354224             0                0         0        0
## 79     69429136             0                0         0        0
## 80     75980368             0                0         0        0
## 81     82033296             0                0         0        0
## 82     88712768             0                0         0        0
## 83     95960160             0                0         0        0
## 84    104882000             0                0         0        0
## 85    114140928             0                0         0        0
## 86    124777520             0                0         0        0
## 87    136128592             0                0         0        0
## 88    147996288             0                0         0        0
## 89    159567200             0                0         0        0
## 90    171365280             0                0         0        0
## 91    185185888             0                0         0        0
## 92    199713648             0                0         0        0
## 93    214263392             0                0         0        0
## 94    229523952             0                0         0        0
## 95    247360304             0                0         0        0
## 96    265889152             0                0         0        0
## 97    286729984             0                0         0        0
## 98    303419504             0                0         0        0
## 99    320805184             0                0         0        0
## 100   340422240             0                0         0        0
## 101   360460656             0                0         0        0
## 102   382030624             0                0         0        0
## 103   407370848             0                0         0        0
## 104   436583920             0                0         0        0
## 105   469655184             0                0         0        0
## 106   504287312             0                0         0        0
## 107   539567968             0                0         0        0
## 108   574163456             0                0         0        0
## 109   609154656             0                0         0        0
## 110   647285904             0                0         0        0
## 111   688527888             0                0         0        0
## 112   732052544             0                0         0        0
## 113   776240384             0                0         0        0
## 114   823069968             0                0         0        0
## 115   872372752             0                0         0        0
## 116   925933104             0                0         0        0
## 117   980211600             0                0         0        0
## 118  1035743184             0                0         0        0
## 119  1092685408             0                0         0        0
## 120  1143222960             0                0         0        0
## 121  1193485712             0                0         0        0
## 122  1254410704             0                0         0        0
## 123  1320260112             0                0         0        0
## 124  1382903520             0                0         0        0
## 125  1448163024             0                0         0        0
## 126  1513521456             0                0         0        0
## 127  1577447264             0                0         0        0
## 128  1642670128             0                0         0        0
## 129  1710168336             0                0         0        0
## 130  1786317248             0                0         0        0
## 131  1864301824             0                0         0        0
## 132  1946609920             0                0         0        0
## 133  2032930096             0                0         0        0
## 134  2115842752             0                0         0        0
## 135  2195556736             0                0         0        0
## 136  2274629520             0                0         0        0
## 137  2357919568             0                0         0        0
## 138  2444573168             0                0         0        0
## 139  2533370208             0                0         0        0
## 140  2631188016             0                0         0        0
## 141  2729170704             0                0         0        0
## 142  2827292624             0                0         0        0
## 143  2923622848             0                0         0        0
## 144  3025522352             0                0         0        0
## 145  3128297552             0                0         0        0
## 146  3234579200             0                0         0        0
## 147  3345840224             0                0         0        0
## 148  3460886160             0                0         0        0
## 149  3581186272             0                0         0        0
## 150  3710463184             0                0         0        0
## 151  3835467872             0                0         0        0
## 152  3953129904             0                0         0        0
## 153  4082472768             0                0         0        0
## 154  4208470400             0                0         0        0
## 155  4335896992             0                0         0        0
## 156  4472465264             0                0         0        0
## 157  4618061632             0                0         0        0
## 158  4764775520             0                0         0        0
## 159  4914871280             0                0         0        0
## 160  5065483664             0                0         0        0
## 161  5222390800             0                0         0        0
## 162  5380968720             0                0         0        0
## 163  5552081184             0                0         0        0
## 164  5670432048             0                0         0        0
## 165  5773665248             0                0         0        0
## 166  5883354416             0                0         0        0
## 167  6004958912             0                0         0        0
## 168  6113409648             0                0         0        0
## 169  6229551120             0                0         0        0
## 170  6381328656             0                0         0        0
## 171  6519237952             0                0         0        0
## 172  6682388544             0                0         0        0
## 173  6866577824             0                0         0        0
## 174  7073212768             0                0         0        0
## 175  7287040144             0                0         0        0
## 176  7500772256             0                0         0        0
## 177  7713811872             0                0         0        0
## 178  7925448176             0                0         0        0
## 179  8159753648             0                0         0        0
## 180  8397408016             0                0         0        0
## 181  8614921376             0                0         0        0
## 182  8806717120             0                0         0        0
## 183  9006122992             0                0         0        0
## 184  9207492768             0                0         0        0
## 185  9402882896             0                0         0        0
## 186  9600980720             0                0         0        0
## 187  9818702928             0                0         0        0
## 188 10020501392             0                0         0        0
## 189 10215118416             0                0         0        0
## 190 10352855504             0                0         0        0
## 191 10472778224             0                0         0        0
## 192 10595284064             0                0         0        0
## 193 10720541568             0                0         0        0
## 194 10800534016             0                0         0        0
## 195 10907706016             0                0         0        0
## 196 11072959744             0                0         0        0
## 197 11256599424             0                0         0        0
## 198 11453121728             0                0         0        0
## 199 11682198672             0                0         0        0
## 200 11884506432          7328                0         0    14656
## 201 12113268272         18320                0         0    29312
## 202 12340289712         29312                0         0    40304
## 203 12554875536         40304                0         0    51296
## 204 12781266768         54960                0         0    65952
## 205 13020291472         69616            43968         0    80608
## 206 13288837024         84272            87936         0    98928
## 207 13566385024         98928           139232         0   120912
## 208 13832592944        117248           190528         0   146560
## 209 14094882429        139232           219840     21984   164880
## 210 14366243265        161216           256480    153888   183200
## 211 14647616603        183200           315104    318768   205184
## 212 14946483143        205184           362736    406704   230832
## 213 15280709560        230832           428688    479984   260144
## 214 15626247642        260144           494640    670512   289456
## 215 15978359246        296784           578912    886688   318768
## 216 16325964020        340752           699824   1267744   351744
## 217 16698439323        410368           839056   2279008   384720
## 218 17083540361        494640           992944   4239248   421360
## 219 17497299830        578912          1154160   5671872   468992
## 220 17936924888        681504          1348352   7753024   516624
## 221 18400067619        784096          1575520  10596288   571584
## 222 18881678943        886688          1791696  13333296   637536
## 223 19399257249       1003936          2000544  18642432   699824
## 224 19899276158       1106528          2216720  24090800   762112
## 225 20347082121       1223776          2429232  29454896   861040
## 226 20853765719       1498576          2693040  35158682   959968
## 227 21335752479       1839328          2967840  41465183  1073552
## 228 21842580752       2169088          3279280  49020045  1212784
## 229 22372962840       2715024          3561408  55766806  1359344
## 230 22879160985       3088752          3854528  62391457  1516896
## 231 23334773206       3414848          4184288  68955488  1674448
## 232 23772783900       3777584          4521376  75499109  1835664
## 233 24196736027       4162304          4942736  81007698  1996880
## 234 24604036997       4517712          5400736  86987160  2169088
## 235 25006496276       4884112          5986976  93285702  2341296
## 236 25393917395       5250512          6591536  98236463  2502512
## 237 25773610048       5668208          7199760 102245946  2682048
## 238 26148268467       6184832          7771344 106566651  2865248
## 239 26541209589       6855344          8313616 112324115  3044784
## 240 26944311311       7485552          8749632 116809514  3220656
## 241 27372960765       8152400          9181984 121331479  3400192
## 242 27791405931       8855888          9596016 126249084  3579728
## 243 28190050736       9555712         10021040 131223920  3766592
## 244 28583445652      10171264         10460720 135598442  3953456
## 245 28984009504      10753840         10889408 140204708  4151312
## 246 29400199056      11241152         11321760 144958410  4349168
## 247 29809648935      11710144         11772432 149732626  4547024
## 248 30239437901      12322032         12219440 154689918  4759536
## 249 30665112551      12787360         12714080 159476939  4990368
## 250 31085765260      13252688         13282000 164146809  5235856
## 251 31511647721      13761984         13959840 168919781  5488672
## 252 31932567219      14219984         14666992 173463765  5778128
## 253 32360569979      14820880         15436432 178076954  6067584
## 254 32789497726      15392464         16198544 182733697  6360704
## 255 33222136998      15945728         17019280 187591548  6653824
## 256 33644238253      16418384         17843680 191733966  6961600
## 257 34057136609      16982640         18660752 195823304  7313344
## 258 34463927432      17539568         19503472 199967022  7679744
## 259 34850869522      18129472         20349856 204185294  8060800
## 260 35248769990      18767008         21207232 208967600  8493152
## 261 35621562606      19408208         22038960 213909574  8940160
## 262 35995675228      19998112         22852368 218986839  9394496
## 263 36369933830      20628320         23673104 224244551  9826848
## 264 36713506462      21361120         24475520 229414031 10339808
## 265 37061670133      21361120         25351176 234701099 10856527
## 266 37411774820      21361120         26236867 240177227 11408781
## 267 37768075471      21361120         27182548 245703654 12030971
##       Georgia     Germany     Ghana Gibraltar     Greece Greenland Grenada
## 1           0           0         0         0          0         0       0
## 2           0           0         0         0          0         0       0
## 3           0           0         0         0          0         0       0
## 4           0           0         0         0          0         0       0
## 5           0           0         0         0          0         0       0
## 6           0           0         0         0          0         0       0
## 7           0           0         0         0          0         0       0
## 8           0           0         0         0          0         0       0
## 9           0           0         0         0          0         0       0
## 10          0           0         0         0          0         0       0
## 11          0           0         0         0          0         0       0
## 12          0           0         0         0          0         0       0
## 13          0           0         0         0          0         0       0
## 14          0           0         0         0          0         0       0
## 15          0           0         0         0          0         0       0
## 16          0           0         0         0          0         0       0
## 17          0           0         0         0          0         0       0
## 18          0           0         0         0          0         0       0
## 19          0           0         0         0          0         0       0
## 20          0           0         0         0          0         0       0
## 21          0           0         0         0          0         0       0
## 22          0           0         0         0          0         0       0
## 23          0           0         0         0          0         0       0
## 24          0           0         0         0          0         0       0
## 25          0           0         0         0          0         0       0
## 26          0           0         0         0          0         0       0
## 27          0           0         0         0          0         0       0
## 28          0           0         0         0          0         0       0
## 29          0           0         0         0          0         0       0
## 30          0           0         0         0          0         0       0
## 31          0           0         0         0          0         0       0
## 32          0           0         0         0          0         0       0
## 33          0           0         0         0          0         0       0
## 34          0           0         0         0          0         0       0
## 35          0           0         0         0          0         0       0
## 36          0           0         0         0          0         0       0
## 37          0           0         0         0          0         0       0
## 38          0           0         0         0          0         0       0
## 39          0           0         0         0          0         0       0
## 40          0           0         0         0          0         0       0
## 41          0           0         0         0          0         0       0
## 42          0      468992         0         0          0         0       0
## 43          0      948976         0         0          0         0       0
## 44          0     1392320         0         0          0         0       0
## 45          0     1839328         0         0          0         0       0
## 46          0     2374272         0         0          0         0       0
## 47          0     2923872         0         0          0         0       0
## 48          0     3499120         0         0          0         0       0
## 49          0     4125664         0         0          0         0       0
## 50          0     4920752         0         0          0         0       0
## 51          0     5455696         0         0          0         0       0
## 52          0     6008960         0         0          0         0       0
## 53          0     6543904         0         0          0         0       0
## 54          0     7551504         0         0          0         0       0
## 55          0     8592080         0         0          0         0       0
## 56          0     9530064         0         0          0         0       0
## 57          0    12219440         0         0          0         0       0
## 58          0    13117120         0         0          0         0       0
## 59          0    14047776         0         0          0         0       0
## 60          0    15026064         0         0          0         0       0
## 61          0    15953056         0         0          0         0       0
## 62          0    16865392         0         0          0         0       0
## 63          0    17755744         0         0          0         0       0
## 64          0    18638768         0         0          0         0       0
## 65          0    19668352         0         0          0         0       0
## 66          0    22053616         0         0          0         0       0
## 67          0    25435488         0         0          0         0       0
## 68          0    28967584         0         0          0         0       0
## 69          0    32243200         0         0          0         0       0
## 70          0    35625072         0         0          0         0       0
## 71          0    39157168         0         0          0         0       0
## 72          0    42788192         0         0          0         0       0
## 73          0    46822256         0         0          0         0       0
## 74          0    50053904         0         0          0         0       0
## 75          0    54392080         0         0          0         0       0
## 76          0    58580032         0         0          0         0       0
## 77          0    63119728         0         0          0         0       0
## 78          0    67659424         0         0          0         0       0
## 79          0    71290448         0         0          0         0       0
## 80          0    76082960         0         0          0         0       0
## 81          0    80673952         0         0          0         0       0
## 82          0    84121776         0         0          0         0       0
## 83          0    88500256         0         0          0         0       0
## 84          0    92911712         0         0          0         0       0
## 85          0    97843456         0         0          0         0       0
## 86          0   103035344         0         0          0         0       0
## 87          0   108985680         0         0          0         0       0
## 88          0   115617520         0         0          0         0       0
## 89          0   122637744         0         0          0         0       0
## 90          0   131812400         0         0          0         0       0
## 91          0   141360784         0         0          0         0       0
## 92          0   152242864         0         0          0         0       0
## 93          0   162542368         0         0          0         0       0
## 94          0   173424448         0         0          0         0       0
## 95          0   186035936         0         0          0         0       0
## 96          0   199222672         0         0          0         0       0
## 97          0   213061600         0         0          0         0       0
## 98          0   225889264         0         0          0         0       0
## 99          0   239512016         0         0          0         0       0
## 100         0   254651664         0         0          0         0       0
## 101         0   271520720         0         0          0         0       0
## 102         0   290694432         0         0          0         0       0
## 103         0   311454656         0         0          0         0       0
## 104         0   335820256         0         0          0         0       0
## 105         0   364436096         0         0          0         0       0
## 106         0   395360256         0         0          0         0       0
## 107         0   428299616         0         0          0         0       0
## 108         0   463910032         0         0          0         0       0
## 109         0   497717760         0         0          0         0       0
## 110         0   534112272         0         0          0         0       0
## 111         0   575442192         0         0          0         0       0
## 112         0   620982048         0         0          0         0       0
## 113         0   670365440         0         0          0         0       0
## 114         0   727007216         0         0          0         0       0
## 115         0   790475024         0         0          0         0       0
## 116         0   853382240         0         0          0         0       0
## 117         0   922536576         0         0     168544         0       0
## 118         0   996904784         0         0     252816         0       0
## 119         0  1074497312         0         0     447008         0       0
## 120         0  1151137200         0         0     648528         0       0
## 121         0  1236486416         0         0     945312         0       0
## 122         0  1328595712         0         0    1121184         0       0
## 123         0  1426963120         0         0    1315376         0       0
## 124         0  1498557680         0         0    1465600         0       0
## 125         0  1600076128         0         0    1630480         0       0
## 126         0  1703514512         0         0    1630480         0       0
## 127         0  1804816784         0         0    1630480         0       0
## 128         0  1909361696         0         0    1630480         0       0
## 129         0  2020208688         0         0    1634144         0       0
## 130         0  2144711408         0         0    1634144         0       0
## 131         0  2278975024         0         0    1634144         0       0
## 132         0  2422640464         0         0    1634144         0       0
## 133         0  2575733376         0         0    1637808         0       0
## 134         0  2733259728         0         0    1637808         0       0
## 135         0  2894442752         0         0    1637808         0       0
## 136         0  3057476096         0         0    1637808         0       0
## 137         0  3227866752         0         0    1637808         0       0
## 138         0  3414214128         0         0    1641472         0       0
## 139         0  3613063072         0         0    1641472         0       0
## 140         0  3821295520         0         0    1641472         0       0
## 141         0  4042135792         0         0    1641472         0       0
## 142         0  4257124656         0         0    2011536         0       0
## 143         0  4477836688         0         0    2337632         0       0
## 144         0  4707334992         0         0    2671056         0       0
## 145         0  4945619568         0         0    2982496         0       0
## 146         0  5201879728         0         0    3356224         0       0
## 147         0  5475433968         0         0    3718960         0       0
## 148         0  5760811936         0         0    4180624         0       0
## 149         0  6064095872         0         0    4422448         0       0
## 150         0  6390855056         0         0    4840144         0       0
## 151         0  6716412448         0         0    5257840         0       0
## 152         0  7035601808         0         0    5591264         0       0
## 153         0  7379200736         0         0    5990640         0       0
## 154         0  7735323216         0         0    6346048         0       0
## 155         0  8117646960         0         0    6624512         0       0
## 156         0  8479584208         0         0    6884656         0       0
## 157         0  8921766720         0         0    7313344         0       0
## 158         0  9368408320         0         0    8042480         0       0
## 159         0  9813980032         0         0    8603072         0       0
## 160         0 10259346560         0         0    9321216         0       0
## 161         0 10717932800         0         0   10226224         0       0
## 162         0 11217053872         0         0   10226224         0       0
## 163         0 11752137104         0         0   11563584         0       0
## 164         0 12250063712         0         0   11574576         0       0
## 165         0 12712969808         0         0   11596560         0       0
## 166         0 13213666400         0         0   11662512         0       0
## 167         0 13738244944         0         0   11754112         0       0
## 168         0 14241667552         0         0   11878688         0       0
## 169         0 14629095248         0         0   11984944         0       0
## 170         0 15058303536         0         0   12662784         0       0
## 171         0 15531483488         0         0   13406576         0       0
## 172         0 15986944336         0         0   14084416         0       0
## 173         0 16318873424         0         0   15004080         0       0
## 174         0 16770666608         0         0   16301136         0       0
## 175         0 17228732560         0         0   18279696         0       0
## 176         0 17641969472         0         0   20100704         0       0
## 177         0 18123012368         0         0   22416352         0       0
## 178         0 18627900576         0         0   24790624         0       0
## 179         0 19166871312         0         0   27494656         0       0
## 180         0 19628604928         0         0   30348912         0       0
## 181         0 20014200624         0         0   33078592         0       0
## 182         0 20361518512         0         0   35760640         0       0
## 183         0 20726372304         0         0   38061632         0       0
## 184         0 21135018224         0         0   40893904         0       0
## 185         0 21587386656         0         0   43806784         0       0
## 186         0 22087068320         0         0   47174000         0       0
## 187         0 22650631824         0         0   50761056         0       0
## 188         0 23251967504         0         0   53604320         0       0
## 189         0 23900649392         0         0   53857136         0       0
## 190         0 24555017808         0         0   54095296         0       0
## 191         0 25215856848         0         0   54230864         0       0
## 192         0 25883785728         0         0   54458032         0       0
## 193         0 26563252544         0         0   54670544         0       0
## 194         0 27163525664         0         0   54780464         0       0
## 195         0 27279590192         0         0   54846416         0       0
## 196         0 27551286784         0         0   54970992         0       0
## 197         0 27868959248         0         0   55139536         0       0
## 198         0 28246801920         0         0   56491552         0       0
## 199         0 28678989040         0         0   58133024         0       0
## 200         0 29189721328    637536    117248   62262352     98928    7328
## 201         0 29766640112   1513232    219840   66838688    197856   18320
## 202         0 30377681728   2381600    293120   71638528    304112   29312
## 203         0 31001246896   3400192    359072   76526304    425024   40304
## 204         0 31661056352   4404128    414032   81611936    527616   51296
## 205         0 32384641392   5591264    472656   87569600    736464   62288
## 206         0 33150923024   6668480    523952   93860688    879360   73280
## 207         0 33928922128   7961872    575248  100679392   1040576   84272
## 208         0 34685395232   9324880    630208  108131968   1267744   98928
## 209   6304757 35441300416  10647584    677840  116252896   1502240  113584
## 210  12868837 36255367936  12109520    725472  125644429   1725744  135568
## 211  19638029 37090338576  13454208    776768  135452856   2018864  153888
## 212  26742473 37973644704  14886832    831728  145601678   2282672  179536
## 213  34361516 38919282800  16608912    886688  157841159   2612432  194192
## 214  42464354 39888355840  18257712    941648  171042756   2927536  216176
## 215  51059801 40848620624  19961472    989280  188041722   3271952  238160
## 216  60136930 41800209056  21401424   1044240  206662325   3660336  267472
## 217  69628346 42736591888  22896336   1106528  226166516   4078032  304112
## 218  79386382 43721548368  24657799   1172480  248452792   4620304  344416
## 219  89548755 44773724592  26345268   1238432  273887047   5027008  392048
## 220 100237564 45799934048  28966909   1308048  298013224   5408064  436016
## 221 111584379 46837589840  31258434   1388656  325762716   5877056  483648
## 222 123526881 47879745024  33678674   1461936  357239983   6430320  531280
## 223 135978170 48966362848  36150121   1546208  394371129   6987248  586240
## 224 148908299 50030091664  39082875   1623152  430432786   7544176  622880
## 225 162504645 51033694240  41824507   1711088  469102396   8049808  670512
## 226 176620258 52125965616  44251104   1788032  511757759   8269648  718144
## 227 191211923 53180168032  47242638   1864976  558414661   8991456  765776
## 228 206300426 54261183600  50200082   1934592  606092462   9383504  817072
## 229 221509849 55381235424  52849306   2026192  656910789   9955088  864704
## 230 237314111 56483549824  55397378   2114128  707799044  10519344  912336
## 231 252816354 57534381360  58427254   2165424  757923973  11046960  970960
## 232 268609895 58552500704  61455690   2187408  809432208  11563584 1033248
## 233 284626479 59566706896  65094729   2224048  864220939  11926320 1095536
## 234 300784104 60602622288  67661809   2257024  920505258  12494240 1157824
## 235 318208876 61649368464  70963483   2300992  980276473  13003536 1220112
## 236 335676556 62699727344  73993827   2341296 1038550155  13329632 1286064
## 237 353877338 63735159088  77257442   2388928 1101125709  13564128 1359344
## 238 372575015 64767425136  80668641   2458544 1168176719  14110064 1454608
## 239 390875941 65783774768  83963661   2528160 1241406739  14582720 1557200
## 240 408029119 66796676576  87718493   2671056 1324782103  15135984 1663456
## 241 424568096 67811648862  91583649   2868912 1408133039  15681920 1773376
## 242 439845052 68778354691  95471746   3103408 1493048837  16161904 1890624
## 243 449761343 69735348871  99906978   3341568 1577278291  16660208 2011536
## 244 455830378 70675756860 104735550   3623696 1663670284  17162176 2154432
## 245 458121783 71615843606 109889726   3898496 1750615925  17664144 2304656
## 246 462176902 72576017905 115358344   4180624 1839714476  18180768 2458544
## 247 466602046 73508365264 121562514   4473744 1933518681  18701056 2627088
## 248 471540682 74432769794 127808407   4781520 2032143452  19228672 2802960
## 249 475850416 75329652478 134177866   5100288 2130085102  19767280 2997152
## 250 480349826 76230612569 140278412   5433712 2233067400  20298560 3187680
## 251 484083576 77148089397 147010964   5778128 2338436372  20837168 3381872
## 252 487434960 78049044496 154242443   6126208 2443447770  21375776 3587056
## 253 491170467 78951014361 161679728   6481616 2552530952  21907056 3803232
## 254 495446705 79839010870 168831844   6866336 2662060973  22489632 4008416
## 255 500463704 80706234376 175635265   7265712 2775986085  23097856 4224592
## 256 506559833 81584981507 184795295   7683408 2888450995  23724400 4455424
## 257 512924609 82437077670 194414596   8097440 3003033628  24361936 4693584
## 258 518034989 83291498632 203340477   8522464 3114146156  25021456 4946400
## 259 524169917 84081462154 210838252   8984128 3218486690  25596704 5199216
## 260 530378989 84915147072 220548991   9449456 3315829666  26259888 5459360
## 261 538164409 85725949397 230082523   9900128 3410361369  26967040 5712176
## 262 546411815 86541146806 241602303  10361792 3501779170  27534960 5983312
## 263 554076147 87373789801 255883423  10852768 3583501750  28088224 6287424
## 264 562866955 88167425644 270005409  11380384 3662157566  28593856 6529248
## 265 572330573 88964503810 284452924  11380384 3737120018  29116546 6786481
## 266 582169452 89766256817 299556658  11380384 3808493099  29676768 7056112
## 267 593121176 90565630028 316321491  11380384 3884493460  30246493 7332340
##     Guadeloupe Guatemala   Guinea Guinea.Bissau   Guyana    Haiti
## 1            0         0        0             0        0        0
## 2            0         0        0             0        0        0
## 3            0         0        0             0        0        0
## 4            0         0        0             0        0        0
## 5            0         0        0             0        0        0
## 6            0         0        0             0        0        0
## 7            0         0        0             0        0        0
## 8            0         0        0             0        0        0
## 9            0         0        0             0        0        0
## 10           0         0        0             0        0        0
## 11           0         0        0             0        0        0
## 12           0         0        0             0        0        0
## 13           0         0        0             0        0        0
## 14           0         0        0             0        0        0
## 15           0         0        0             0        0        0
## 16           0         0        0             0        0        0
## 17           0         0        0             0        0        0
## 18           0         0        0             0        0        0
## 19           0         0        0             0        0        0
## 20           0         0        0             0        0        0
## 21           0         0        0             0        0        0
## 22           0         0        0             0        0        0
## 23           0         0        0             0        0        0
## 24           0         0        0             0        0        0
## 25           0         0        0             0        0        0
## 26           0         0        0             0        0        0
## 27           0         0        0             0        0        0
## 28           0         0        0             0        0        0
## 29           0         0        0             0        0        0
## 30           0         0        0             0        0        0
## 31           0         0        0             0        0        0
## 32           0         0        0             0        0        0
## 33           0         0        0             0        0        0
## 34           0         0        0             0        0        0
## 35           0         0        0             0        0        0
## 36           0         0        0             0        0        0
## 37           0         0        0             0        0        0
## 38           0         0        0             0        0        0
## 39           0         0        0             0        0        0
## 40           0         0        0             0        0        0
## 41           0         0        0             0        0        0
## 42           0         0        0             0        0        0
## 43           0         0        0             0        0        0
## 44           0         0        0             0        0        0
## 45           0         0        0             0        0        0
## 46           0         0        0             0        0        0
## 47           0         0        0             0        0        0
## 48           0         0        0             0        0        0
## 49           0         0        0             0        0        0
## 50           0         0        0             0        0        0
## 51           0         0        0             0        0        0
## 52           0         0        0             0        0        0
## 53           0         0        0             0        0        0
## 54           0         0        0             0        0        0
## 55           0         0        0             0        0        0
## 56           0         0        0             0        0        0
## 57           0         0        0             0        0        0
## 58           0         0        0             0        0        0
## 59           0         0        0             0        0        0
## 60           0         0        0             0        0        0
## 61           0         0        0             0        0        0
## 62           0         0        0             0        0        0
## 63           0         0        0             0        0        0
## 64           0         0        0             0        0        0
## 65           0         0        0             0        0        0
## 66           0         0        0             0        0        0
## 67           0         0        0             0        0        0
## 68           0         0        0             0        0        0
## 69           0         0        0             0        0        0
## 70           0         0        0             0        0        0
## 71           0         0        0             0        0        0
## 72           0         0        0             0        0        0
## 73           0         0        0             0        0        0
## 74           0         0        0             0        0        0
## 75           0         0        0             0        0        0
## 76           0         0        0             0        0        0
## 77           0         0        0             0        0        0
## 78           0         0        0             0        0        0
## 79           0         0        0             0        0        0
## 80           0         0        0             0        0        0
## 81           0         0        0             0        0        0
## 82           0         0        0             0        0        0
## 83           0         0        0             0        0        0
## 84           0         0        0             0        0        0
## 85           0         0        0             0        0        0
## 86           0         0        0             0        0        0
## 87           0         0        0             0        0        0
## 88           0         0        0             0        0        0
## 89           0         0        0             0        0        0
## 90           0         0        0             0        0        0
## 91           0         0        0             0        0        0
## 92           0         0        0             0        0        0
## 93           0         0        0             0        0        0
## 94           0         0        0             0        0        0
## 95           0         0        0             0        0        0
## 96           0         0        0             0        0        0
## 97           0         0        0             0        0        0
## 98           0         0        0             0        0        0
## 99           0         0        0             0        0        0
## 100          0         0        0             0        0        0
## 101          0         0        0             0        0        0
## 102          0         0        0             0        0        0
## 103          0         0        0             0        0        0
## 104          0         0        0             0        0        0
## 105          0         0        0             0        0        0
## 106          0         0        0             0        0        0
## 107          0         0        0             0        0        0
## 108          0         0        0             0        0        0
## 109          0         0        0             0        0        0
## 110          0         0        0             0        0        0
## 111          0         0        0             0        0        0
## 112          0         0        0             0        0        0
## 113          0         0        0             0        0        0
## 114          0         0        0             0        0        0
## 115          0         0        0             0        0        0
## 116          0         0        0             0        0        0
## 117          0         0        0             0        0        0
## 118          0         0        0             0        0        0
## 119          0         0        0             0        0        0
## 120          0         0        0             0        0        0
## 121          0         0        0             0        0        0
## 122          0         0        0             0        0        0
## 123          0         0        0             0        0        0
## 124          0         0        0             0        0        0
## 125          0         0        0             0        0        0
## 126          0         0        0             0        0        0
## 127          0         0        0             0        0        0
## 128          0         0        0             0        0        0
## 129          0         0        0             0        0        0
## 130          0         0        0             0        0        0
## 131          0         0        0             0        0        0
## 132          0         0        0             0        0        0
## 133          0         0        0             0        0        0
## 134          0         0        0             0        0        0
## 135          0         0        0             0        0        0
## 136          0         0        0             0        0        0
## 137          0         0        0             0        0        0
## 138          0         0        0             0        0        0
## 139          0         0        0             0        0        0
## 140          0         0        0             0        0        0
## 141          0         0        0             0        0        0
## 142          0         0        0             0        0        0
## 143          0         0        0             0        0        0
## 144          0         0        0             0        0        0
## 145          0         0        0             0        0        0
## 146          0         0        0             0        0        0
## 147          0         0        0             0        0        0
## 148          0         0        0             0        0        0
## 149          0         0        0             0        0        0
## 150          0         0        0             0        0        0
## 151          0         0        0             0        0        0
## 152          0         0        0             0        0        0
## 153          0         0        0             0        0        0
## 154          0         0        0             0        0        0
## 155          0         0        0             0        0        0
## 156          0         0        0             0        0        0
## 157          0         0        0             0        0        0
## 158          0         0        0             0        0        0
## 159          0         0        0             0        0        0
## 160          0         0        0             0        0        0
## 161          0         0        0             0        0        0
## 162          0         0        0             0        0        0
## 163          0         0        0             0        0        0
## 164          0         0        0             0        0        0
## 165          0         0        0             0        0        0
## 166          0         0        0             0        0        0
## 167          0         0        0             0        0        0
## 168          0         0        0             0        0        0
## 169          0         0        0             0        0        0
## 170          0         0        0             0        0        0
## 171          0         0        0             0        0        0
## 172          0         0        0             0        0        0
## 173          0         0        0             0        0        0
## 174          0         0        0             0        0        0
## 175          0         0        0             0        0        0
## 176          0         0        0             0        0        0
## 177          0         0        0             0        0        0
## 178          0         0        0             0        0        0
## 179          0         0        0             0        0        0
## 180          0         0        0             0        0        0
## 181          0         0        0             0        0        0
## 182          0         0        0             0        0        0
## 183          0         0        0             0        0        0
## 184          0         0        0             0        0        0
## 185          0         0        0             0        0        0
## 186          0         0        0             0        0        0
## 187          0         0        0             0        0        0
## 188          0         0        0             0        0        0
## 189          0         0        0             0        0        0
## 190          0         0        0             0        0        0
## 191          0     10992        0             0        0        0
## 192          0     21984        0             0        0        0
## 193          0     32976        0             0        0        0
## 194          0     43968        0             0        0        0
## 195          0     58624        0             0        0        0
## 196          0     73280        0             0        0        0
## 197          0     87936        0             0        0        0
## 198          0    102592        0             0        0        0
## 199          0    120912        0             0        0        0
## 200      62288    740128        0          7328   260144   113584
## 201     128240   1377664        0         10992   545936   245488
## 202     194192   2022528        0         21984   883024   392048
## 203     260144   2704032        0         29312  1333696   549600
## 204     333424   3447824        0         36640  1806352   765776
## 205     414032   4363824        0         47632  2322976  1033248
## 206     505632   5342112        0         58624  2872576  1297056
## 207     615552   6327728        0         69616  3407520  1549872
## 208     725472   7456240   164880         80608  3865520  1824672
## 209     868368   8694197   322432         95264  4418784  2077339
## 210    1025920  10038439   732800        113584  5078304  2362923
## 211    1201792  11444910  1348352        142896  5814768  2659529
## 212    1388656  12825762  2007872        183200  6492608  2963403
## 213    1593840  14345698  2704032        230832  7108160  3212347
## 214    1810016  16114667  3403856        289456  7756688  3512558
## 215    2015200  18088612  4100016        355408  8833904  3816491
## 216    2268016  19828210  4818160        421360 10013712  4120455
## 217    2557472  21809543  5543632        468992 11336416  4380450
## 218    2835936  23948605  6291088        531280 12666448  4644080
## 219    3147376  26226722  7038544        589904 14033120  4958976
## 220    3451488  28523158  7829968        659520 15612304  5343458
## 221    3792240  30962461  8643376        732800 17110880  5746201
## 222    4169632  33669087  9475104        798752 18671744  6137922
## 223    4576336  36602703 10277520        908672 20474432  6558836
## 224    4961056  39668223 11116576       1011264 22027968  7030928
## 225    5364096  43187752 11959296       1124848 23852640  7513952
## 226    5858736  46492658 12845984       1220112 25604032  8186133
## 227    6382688  50297111 13747328       1322704 27501984  8890278
## 228    6910304  54414244 14648672       1425296 29557488  9640918
## 229    7448912  59092263 15593984       1535216 31078048 10390820
## 230    8075456  63584869 16557616       1681776 32866080 11135891
## 231    8863216  67534336 17546896       1824672 34665104 11894818
## 232    9625328  71141146 18528848       1967568 36068416 12712121
## 233   10438736  74301031 19481488       2110464 37314176 13598149
## 234   11314432  77702092 20459776       2271680 38717488 14501300
## 235   12204784  81198941 21452720       2443888 40135456 15430820
## 236   13153760  84863568 22449328       2627088 41179696 16261042
## 237   14165024  88781968 23442272       2821280 42487744 17159835
## 238   15293536  92857203 24468192       3037456 43891056 18167504
## 239   16480672  97045405 25512432       3268288 45074528 19190624
## 240   17763072 102015548 26516368       3440496 46206704 20170326
## 241   19049136 106967623 27542288       3616368 47320560 21150121
## 242   20390160 112885533 28601184       3795904 48364800 22045334
## 243   21764160 118462705 29689392       3979104 49409040 22701483
## 244   23182128 125213503 30916244       4162304 50794032 23001931
## 245   24644064 132292805 32183244       4345504 52255968 23903275
## 246   26193936 138863149 33522695       4528704 53772864 24936523
## 247   27798768 146364728 34916946       4730224 55363040 26303195
## 248   29868928 155004091 36393261       4902432 57019168 27534299
## 249   31759552 163811136 37944974       5096624 58697280 28864331
## 250   33672160 173576922 39558099       5243184 60305776 30231003
## 251   35745984 184044633 41246280       5393408 61899616 31783696
## 252   37856448 194975099 43013935       5547296 63478800 33585886
## 253   40084160 205631855 44857957       5741488 65043328 35295582
## 254   42396144 217056994 46763689       5943008 66670144 37255954
## 255   44616528 229406829 48588361       6155520 68106432 39303322
## 256   46770960 241823961 50478985       6371696 69396160 41387467
## 257   49101264 254195688 52446553       6602528 70957024 43748472
## 258   51387600 265363602 54590492       6829696 72514224 46114247
## 259   53695920 277051106 56817049       7064192 74078752 48351202
## 260   55993248 288412585 59391969       7302352 75797168 50444633
## 261   58422480 299933116 62126685       7547840 77577872 52628927
## 262   60965296 311579674 64669473       7800656 79571088 54907818
## 263   63519104 324876417 66925895       8057136 81505680 57278317
## 264   66083904 342801846 69318032       8328272 83513552 60102882
## 265   66083904 362605102 71763317       8602850 85531426 63046461
## 266   66083904 383542158 74365036       8896754 87584165 66044904
## 267   66083904 404420205 77269714       9228086 89660737 69042835
##      Honduras  Hong.Kong    Hungary   Iceland       India   Indonesia
## 1           0          0          0         0           0           0
## 2           0          0          0         0           0           0
## 3           0          0          0         0           0           0
## 4           0          0          0         0           0           0
## 5           0          0          0         0           0           0
## 6           0          0          0         0           0           0
## 7           0          0          0         0           0           0
## 8           0          0          0         0           0           0
## 9           0          0          0         0           0           0
## 10          0          0          0         0           0           0
## 11          0          0          0         0           0           0
## 12          0          0          0         0           0           0
## 13          0          0          0         0           0           0
## 14          0          0          0         0           0           0
## 15          0          0          0         0           0           0
## 16          0          0          0         0           0           0
## 17          0          0          0         0           0           0
## 18          0          0          0         0           0           0
## 19          0          0          0         0           0           0
## 20          0          0          0         0           0           0
## 21          0          0          0         0           0           0
## 22          0          0          0         0           0           0
## 23          0          0          0         0           0           0
## 24          0          0          0         0           0           0
## 25          0          0          0         0           0           0
## 26          0          0          0         0           0           0
## 27          0          0          0         0           0           0
## 28          0          0          0         0           0           0
## 29          0          0          0         0           0           0
## 30          0          0          0         0           0           0
## 31          0          0          0         0           0           0
## 32          0          0          0         0           0           0
## 33          0          0          0         0           0           0
## 34          0          0          0         0           0           0
## 35          0          0          0         0           0           0
## 36          0          0          0         0           0           0
## 37          0          0          0         0           0           0
## 38          0          0          0         0           0           0
## 39          0          0          0         0           0           0
## 40          0          0          0         0           0           0
## 41          0          0          0         0           0           0
## 42          0          0          0         0           0           0
## 43          0          0          0         0           0           0
## 44          0          0          0         0           0           0
## 45          0          0          0         0           0           0
## 46          0          0          0         0           0           0
## 47          0          0          0         0           0           0
## 48          0          0          0         0           0           0
## 49          0          0          0         0           0           0
## 50          0          0          0         0           0           0
## 51          0          0          0         0           0           0
## 52          0          0          0         0           0           0
## 53          0          0          0         0           0           0
## 54          0          0          0         0           0           0
## 55          0          0          0         0           0           0
## 56          0          0          0         0           0           0
## 57          0          0          0         0           0           0
## 58          0          0          0         0           0           0
## 59          0          0          0         0           0           0
## 60          0          0          0         0           0           0
## 61          0          0          0         0           0           0
## 62          0          0          0         0           0           0
## 63          0          0          0         0           0           0
## 64          0          0          0         0           0           0
## 65          0          0          0         0           0           0
## 66          0          0          0         0           0           0
## 67          0          0          0         0           0           0
## 68          0          0          0         0           0           0
## 69          0          0          0         0           0           0
## 70          0          0          0         0           0           0
## 71          0          0          0         0           0           0
## 72          0          0          0         0           0           0
## 73          0          0          0         0           0           0
## 74          0          0          0         0           0           0
## 75          0          0          0         0           0           0
## 76          0          0          0         0           0           0
## 77          0          0          0         0           0           0
## 78          0          0          0         0           0           0
## 79          0          0          0         0           0           0
## 80          0          0     113584         0           0           0
## 81          0          0     183200         0           0           0
## 82          0          0     271136         0           0           0
## 83          0          0     337088         0           0           0
## 84          0          0     406704         0           0           0
## 85          0          0     458000         0           0           0
## 86          0          0     542272         0           0           0
## 87          0          0     611888         0           0           0
## 88          0          0     674176         0           0           0
## 89          0          0     813408         0           0           0
## 90          0          0     948976         0           0           0
## 91          0          0    1091872         0           0           0
## 92          0          0    1176144         0           0           0
## 93          0          0    1264080         0           0           0
## 94          0          0    1450944         0           0           0
## 95          0          0    1538880         0           0           0
## 96          0          0    1601168         0           0           0
## 97          0          0    1766048         0           0           0
## 98          0          0    1766048         0           0           0
## 99          0          0    1766048         0           0           0
## 100         0          0    1766048         0           0           0
## 101         0          0    2040848         0           0           0
## 102         0          0    2385264         0           0           0
## 103         0          0    2729680         0           0           0
## 104         0          0    3165696         0           0           0
## 105         0          0    3620032         0           0           0
## 106         0          0    4096352         0           0           0
## 107         0          0    4642288         0           0           0
## 108         0          0    5023344         0      436016           0
## 109         0          0    5792784         0     1139504           0
## 110         0          0    6697792         0     1850320           0
## 111         0          0    7657760         0     2399920           0
## 112         0          0    8815584         0     3008144           0
## 113         0          0   10024704         0     3682320           0
## 114         0          0   11233824         0     4319856           0
## 115         0          0   12490576         0     4946400           0
## 116         0          0   13919536         0     5653552           0
## 117         0          0   15608640         0     5653552           0
## 118         0          0   17414992         0     5653552           0
## 119         0          0   19378896         0     5653552           0
## 120         0          0   21500352         0     5653552           0
## 121         0          0   24131104         0     5653552           0
## 122         0          0   26926736         0     5653552           0
## 123         0          0   29843280         0     5653552           0
## 124         0          0   32400752         0     5653552           0
## 125         0          0   35035168         0     5653552           0
## 126         0          0   37797824         0     5653552           0
## 127         0          0   40685056         0     5653552           0
## 128         0          0   43561296         0     7606464           0
## 129         0          0   46430208         0     9460448           0
## 130         0          0   49742464         0    11534272           0
## 131         0          0   53292880         0    13556800           0
## 132         0          0   56876272         0    15960384           0
## 133         0          0   60954304         0    18642432           0
## 134         0          0   65285152         0    21628592           0
## 135         0          0   69663632         0    24325296           0
## 136         0          0   73759984         0    27351760           0
## 137         0          0   77845344         0    30704320           0
## 138         0          0   82275120         0    34426944           0
## 139         0          0   87027328         0    38805424        3664
## 140         0          0   92281504         0    43634576       18320
## 141         0          0   97803152         0    48833792       40304
## 142         0          0  103555632         0    54545968      219840
## 143         0          0  109549936         0    60558592      622880
## 144         0          0  115983920         0    66692128     1102864
## 145         0          0  122846592         0    74375536     1872304
## 146         0          0  130222224         0    82689152     2733344
## 147         0          0  137685792         0    91687936     3839872
## 148         0          0  146219248         0   101657680     5129600
## 149         0          0  154492560         0   112646016     6254448
## 150         0          0  164077584         0   125697184     7463568
## 151         0          0  173695584         0   140093040     9705936
## 152         0          0  182544144         0   155969152    11244816
## 153         0          0  191718800         0   172134720    14245632
## 154         0          0  200996048         0   190201904    17612848
## 155         0          0  210427184         0   208675792    21745840
## 156         0          0  220591120         0   230018592    26197600
## 157         0          0  230795360         0   253834592    31492080
## 158         0          0  241567520         0   281083760    36984416
## 159         0          0  253420560         0   307402272    42971392
## 160         0          0  265097728         0   333097904    49082944
## 161         0          0  277093664         0   360211504    55810048
## 162         0          0  289397376         0   391428784    61650464
## 163         0          0  302422896         0   425866720    67549504
## 164         0          0  314015792         0   460583120    73565792
## 165         0          0  325780896         0   496860384    79596736
## 166         0          0  337615616         0   533540688    86360480
## 167         0          0  349333088         0   571899104    93497952
## 168         0          0  359984336         0   615057360   100628096
## 169         0          0  364740208         0   662180064   108263872
## 170         0          0  370327808         0   700340624   116526192
## 171         0          0  379564752         0   741384752   125283152
## 172         0          0  390575072         0   781773024   133582112
## 173         0          0  402435440         0   823348432   143170800
## 174         0          0  413698576         0   867858704   153756096
## 175         0          0  423829536         0   911775408   164836032
## 176         0          0  435601968         0   955567536   175934288
## 177         0          0  448689776         0  1001499440   188820576
## 178         0          0  462440768         0  1045698272   203652448
## 179         0          0  477554768         0  1091692464   222192288
## 180         0          0  490070992         0  1138448768   240277792
## 181         0          0  501260848         0  1181273600   257172496
## 182         0          0  511472416         0  1221090288   273759424
## 183         0          0  521478800         0  1260177840   291621424
## 184         0          0  532053104         0  1303823408   310857424
## 185         0          0  543133040         0  1349425552   330859200
## 186         0          0  555033712     21984  1394243600   352627024
## 187         0          0  568656464     40304  1443887136   377970912
## 188         0      54960  583429712     40304  1499462688   404703456
## 189         0     109920  597873200     40304  1553865760   433905536
## 190         0     109920  613698016     73280  1611562768   462638624
## 191         0     164880  631552688     98928  1670520192   489125680
## 192         0     164880  650392976     98928  1729418992   498582464
## 193         0     164880  669603328    117248  1780714992   517609616
## 194         0     164880  685461120    135568  1833176144   526381232
## 195         0     164880  693661152    150224  1891371456   530188128
## 196         0     164880  704458960    161216  1948870608   531532816
## 197         0     183200  718297888    164880  2007472624   535588864
## 198         0     208848  734679632    168544  2066092960   551083920
## 199         0     238160  755091776    172208  2127974256   572987312
## 200    300448    1557200  773485056    912336  2194578448   582817824
## 201    648528    3114400  795674240   1557200  2264300704   592208656
## 202   1007600    4649616  822886768   2333968  2337793216   604930064
## 203   1341024    6379024  854657312   3249968  2412670720   618010544
## 204   1718416    8178048  888670224   4030400  2491410080   632758144
## 205   2154432   10057680  924379568   4942736  2576850896   653602640
## 206   2608768   12179136  957546096   5891712  2665307184   675414432
## 207   3184016   14542416  995996112   6855344  2764542960   697827120
## 208   3770256   16916688 1035244880   7947216  2868267136   720034624
## 209   4356466   19620155 1077147917   9185321  2978085889   743896859
## 210   4971870   22572745 1122476230  10397808  3098661931   765282052
## 211   5708155   25942882 1171406136  11489383  3229054857   791283648
## 212   6407742   29624340 1221918355  12687125  3372506700   814258541
## 213   7118320   33870025 1278146147  13991122  3526574861   837021636
## 214   7839831   38090091 1340487312  15298724  3677213853   859395901
## 215   8590564   42892615 1401721444  16694263  3843175215   884064127
## 216   9396228   48054180 1463394365  18188699  4014863609   907439080
## 217  10271479   54106246 1522165189  19631840  4186956736   931979126
## 218  11494720   60304219 1583258395  21225264  4374061348   959541734
## 219  12670329   68055727 1645616633  22488957  4564461726   992903949
## 220  14058361   76448228 1715551190  23877257  4759190682  1028695336
## 221  15387739   85598820 1784760610  25349380  4964520227  1067650706
## 222  16922183   94874404 1854114970  26832024  5181702172  1110957248
## 223  18430800  104160861 1927096649  28581770  5405304467  1160055819
## 224  19987138  114828111 2001106827  30319816  5636489181  1211283047
## 225  21653069  125836113 2076395121  31932722  5887682495  1265216755
## 226  23427994  138326499 2156292288  33633418  6150214250  1327007358
## 227  25425439  152530403 2239367294  35535395  6427862565  1409427813
## 228  27469106  168244498 2327413464  37455496  6709401725  1503372367
## 229  29395304  184082146 2413495277  39437729  7004700735  1598518597
## 230  31439627  200682361 2500204320  41298701  7317185638  1693404171
## 231  33251646  219299029 2586665956  43045738  7654290821  1793717753
## 232  35004730  238921796 2673379563  44638537  8002106455  1899321362
## 233  36987095  259833902 2762354422  46179988  8378782780  2004528396
## 234  38950633  282058690 2853040601  47988582  8764711611  2117015690
## 235  40840079  304940095 2938987630  49609982  9188967638  2238646054
## 236  42668723  330466013 3022228337  51388963  9644034163  2360850309
## 237  44817178  358551658 3106364719  53232449 10130101461  2484772688
## 238  47287084  387836439 3184419598  55071901 10655183128  2617541962
## 239  49972642  417977618 3260336798  56966784 11231587676  2749273898
## 240  52519439  445124673 3333792257  59204204 11848166774  2899619326
## 241  55169662  473587391 3403569528  61321908 12504907667  3080314615
## 242  58199891  506504492 3465978374  63584925 13203664617  3283973989
## 243  60997574  541282716 3529518076  66005948 13926558876  3503830317
## 244  64289266  572361753 3591400804  68367860 14690800843  3726797959
## 245  68115746  603628160 3653013680  70832978 15502261630  3953467902
## 246  72006490  632537742 3716190663  73353113 16381088594  4208674993
## 247  76087831  663035277 3777946563  75968736 17296137907  4489571513
## 248  80670029  701959325 3839294853  78604192 18229687165  4705676429
## 249  85337545  744509348 3901123057  81445466 19224920237  4949778011
## 250  90271699  784793221 3959674718  84379450 20254557996  5215761195
## 251  95880575  822595058 4019846376  87242134 21290198710  5513531755
## 252 101870786  862080065 4079009221  90230035 22337794361  5821109923
## 253 108531433  905283427 4140946004  93209727 23429667371  6137964091
## 254 115774789  946851726 4201352245  96310967 24575212605  6478040611
## 255 123201319  990583053 4261852209  99279872 25785358272  6821620547
## 256 130050030 1032496770 4321691641 102426914 27072507483  7168320267
## 257 138648384 1076069187 4380213949 105920861 28462760974  7545442891
## 258 147133085 1119845539 4437652116 109715811 30010752013  7963234939
## 259 154814089 1161828338 4489433167 113446894 31730872573  8410536027
## 260 162614795 1202302433 4541553704 117067825 33430899968  8838325547
## 261 171388290 1245877054 4591911705 120554232 35248071567  9439650963
## 262 180175410 1289062981 4638720200 124042918 37231830380 10072795995
## 263 189046412 1333826577 4682487899 127524700 39229708958 10558926026
## 264 198322597 1379789889 4726403295 130986544 41437242850 11018941685
## 265 208377780 1422491903 4773068501 134522956 43713650045 11478570441
## 266 218953982 1465727785 4820646684 138012928 46091097909 11943427259
## 267 229623078 1508760365 4870991390 141492956 48557863281 12430271016
##            Iran       Iraq    Ireland     Israel       Italy   Jamaica
## 1             0          0          0          0           0         0
## 2             0          0          0          0           0         0
## 3             0          0          0          0           0         0
## 4             0          0          0          0           0         0
## 5             0          0          0          0           0         0
## 6             0          0          0          0           0         0
## 7             0          0          0          0           0         0
## 8             0          0          0          0           0         0
## 9             0          0          0          0           0         0
## 10            0          0          0          0           0         0
## 11            0          0          0          0           0         0
## 12            0          0          0          0           0         0
## 13            0          0          0          0           0         0
## 14            0          0          0          0           0         0
## 15            0          0          0          0           0         0
## 16            0          0          0          0           0         0
## 17            0          0          0          0           0         0
## 18            0          0          0          0           0         0
## 19            0          0          0          0           0         0
## 20            0          0          0          0           0         0
## 21            0          0          0          0           0         0
## 22            0          0          0          0           0         0
## 23            0          0          0          0           0         0
## 24            0          0          0          0           0         0
## 25            0          0          0          0           0         0
## 26            0          0          0          0           0         0
## 27            0          0          0          0           0         0
## 28            0          0          0          0           0         0
## 29            0          0          0          0           0         0
## 30            0          0          0          0           0         0
## 31            0          0          0          0           0         0
## 32            0          0          0          0           0         0
## 33            0          0          0          0           0         0
## 34            0          0          0          0           0         0
## 35            0          0          0          0           0         0
## 36            0          0          0          0           0         0
## 37            0          0          0          0           0         0
## 38            0          0          0          0           0         0
## 39            0          0          0          0           0         0
## 40            0          0          0          0           0         0
## 41            0          0          0          0           0         0
## 42            0          0          0          0           0         0
## 43            0          0          0          0           0         0
## 44            0          0          0          0           0         0
## 45            0          0          0          0           0         0
## 46            0          0          0          0           0         0
## 47            0          0          0          0           0         0
## 48            0          0          0          0           0         0
## 49            0          0          0          0           0         0
## 50            0          0          0          0           0         0
## 51            0          0          0          0           0         0
## 52            0          0          0          0           0         0
## 53            0          0          0          0           0         0
## 54            0          0          0          0           0         0
## 55            0          0          0          0           0         0
## 56            0          0          0          0           0         0
## 57            0          0          0          0           0         0
## 58            0          0          0          0           0         0
## 59            0          0          0          0           0         0
## 60            0          0          0          0           0         0
## 61            0          0          0          0           0         0
## 62            0          0          0          0           0         0
## 63            0          0          0          0           0         0
## 64            0          0          0          0           0         0
## 65            0          0          0          0           0         0
## 66            0          0          0          0           0         0
## 67            0          0          0          0           0         0
## 68            0          0          0          0           0         0
## 69            0          0          0          0           0         0
## 70            0          0          0          0           0         0
## 71            0          0          0          0           0         0
## 72            0          0          0          0           0         0
## 73            0          0          0          0           0         0
## 74            0          0          0          0           0         0
## 75            0          0          0          0           0         0
## 76            0          0          0          0           0         0
## 77            0          0          0          0           0         0
## 78            0          0          0          0           0         0
## 79            0          0          0          0           0         0
## 80            0          0          0          0           0         0
## 81            0          0          0          0           0         0
## 82            0          0          0          0           0         0
## 83            0          0          0          0           0         0
## 84            0          0          0          0           0         0
## 85            0          0          0          0           0         0
## 86            0          0          0          0           0         0
## 87            0          0          0          0           0         0
## 88            0          0          0          0           0         0
## 89            0          0          0          0           0         0
## 90            0          0          0          0           0         0
## 91            0          0          0          0           0         0
## 92            0          0          0          0           0         0
## 93            0          0          0          0           0         0
## 94            0          0          0          0           0         0
## 95            0          0          0          0           0         0
## 96            0          0          0          0           0         0
## 97            0          0          0          0           0         0
## 98            0          0          0          0           0         0
## 99            0          0          0          0           0         0
## 100           0          0     395712          0           0         0
## 101           0          0     395712          0           0         0
## 102           0          0     395712          0           0         0
## 103           0          0     395712          0           0         0
## 104           0          0     395712          0           0         0
## 105           0          0     395712          0           0         0
## 106           0          0     395712          0           0         0
## 107           0          0     395712          0           0         0
## 108           0          0     395712          0           0         0
## 109           0          0     395712          0           0         0
## 110           0          0     395712          0       29312         0
## 111           0          0     395712          0      699824         0
## 112           0          0     395712          0     1927264         0
## 113           0          0     395712          0     2997152         0
## 114           0          0     395712          0     4601984         0
## 115           0          0     395712          0     5873392         0
## 116           0          0     395712          0     7349984         0
## 117           0          0     395712          0     8819248         0
## 118           0          0     395712          0    10515680         0
## 119           0          0     395712          0    12387984         0
## 120           0          0     395712          0    15066368         0
## 121           0          0     395712          0    17374688         0
## 122           0          0     395712          0    20349856         0
## 123           0          0     395712          0    23119840         0
## 124           0          0     395712          0    26116992         0
## 125           0          0     395712          0    29183760         0
## 126           0          0     395712          0    33291104         0
## 127           0          0     395712          0    37094336         0
## 128           0          0     395712          0    40879248         0
## 129           0          0     395712          0    45235744         0
## 130           0          0     747456          0    50303056         0
## 131           0          0    1099200          0    56260720         0
## 132           0          0    1099200          0    62533488         0
## 133           0          0    1099200          0    69179984         0
## 134           0          0    1099200          0    76540960         0
## 135           0          0    1099200          0    84916864         0
## 136           0          0    1099200          0    93245136         0
## 137           0          0    1099200          0   103394416         0
## 138           0          0    1099200          0   114291152         0
## 139           0          0    1099200          0   125546960         0
## 140           0          0    1099200          0   137755408         0
## 141           0          0    1099200          0   148754736         0
## 142           0          0    1099200          0   159644144         0
## 143           0          0    1099200          0   170167152         0
## 144           0          0    1099200          0   183229312         0
## 145           0          0    1099200          0   195250896         0
## 146           0          0    1099200          0   206675248         0
## 147           0          0    1099200          0   218594240         0
## 148           0          0    1099200          0   230996880         0
## 149           0          0    1099200          0   244586656         0
## 150           0          0    1099200          0   258495200         0
## 151           0          0    1099200          0   272015360         0
## 152           0          0    1099200          0   287030432         0
## 153           0          0    1099200          0   302345952         0
## 154           0          0    1099200          0   318533504         0
## 155           0          0    1099200          0   336377184         0
## 156        3664          0    1099200          0   357467168         0
## 157        3664          0    1099200          0   380275568         0
## 158        3664          0    1099200          0   403538304         0
## 159        3664          0    1099200          0   429241264         0
## 160        3664          0    1315376          0   454977200         0
## 161      139232          0    1315376          0   481515552         0
## 162      392048          0    1315376          0   509365616         0
## 163     1245760          0    1538880          0   539329808         0
## 164     2418240          0    1788032          0   566567984         0
## 165     3821552          0    2015200          0   590347344         0
## 166     5829424          0    2257024          0   613859232         0
## 167     8628720          0    2513504          0   629980832         0
## 168    12076544          0    2758992          0   648960352         0
## 169    16396400          0    3008144          0   667569808         0
## 170    21833776          0    3301264          0   685439136         0
## 171    29088496          0    3539424          0   707320544         0
## 172    38314448          0    3539424          0   733019840         0
## 173    49892688          0    3539424          0   759843984         0
## 174    63398192          0   10226224          0   792024896         0
## 175    77599856          0   16260832          0   822993024         0
## 176    92658896          0   24358272          0   858834272         0
## 177   109359408     139232   31089040          0   899218880         0
## 178   127038208     428688   37574320          0   937379440         0
## 179   144061152     798752   47573376          0   981420720         0
## 180   162575344    1168816   57125424      40304  1020984592         0
## 181   180499632    1535216   66966928      80608  1055169712         0
## 182   200589344    1908944   73393584     131904  1083246944         0
## 183   222675936    2260688   82659840     197856  1113735088         0
## 184   246169504    5125936   92142272     267472  1153412544         0
## 185   269509184   10849104  101676000     359072  1198805840         0
## 186   295061920   16641888  111821616     436016  1230810880         0
## 187   326751856   22885344  122176080     516624  1276002656         0
## 188   358529728   28802704  132142160     564256  1321000240         0
## 189   388581856   40959856  143672768     619216  1367140992         0
## 190   415710112   48650592  155196048     692496  1416190960         0
## 191   436532624   53457760  163645232     751120  1459096400         0
## 192   466064464   61419632  170661792     861040  1500994240         0
## 193   496519632   72378656  177773616     945312  1508113392         0
## 194   538179312   85151360  184130656    1033248  1511696784         0
## 195   591076480   99283408  190964016    1106528  1516053280         0
## 196   651308976  113638960  199160384    1238432  1538227808         0
## 197   714776784  128064128  207972304    1403312  1575025360         0
## 198   792728384  127968864  216417824    1483920  1610566160         0
## 199   876762224  129097376  224764416    1604832  1650353536         0
## 200   871365152  130746176  234492336    3275616  1691804368    271136
## 201   878279120  133175408  245000688    6195824  1740649152    791424
## 202   882371808  135135648  254622352    9856160  1791296624   1355680
## 203   886200688  137663808  264159744   13897552  1847322848   1971232
## 204   887244928  140712256  273253792   18224736  1912296560   2762656
## 205   903058752  144812272  284971264   23042896  1985605872   3748272
## 206   925867152  151209616  295897312   27839072  2069126752   5008688
## 207   947667952  157181936  305617904   33012640  2156253008   6613520
## 208   972898256  163850416  314576384   38552608  2243903216   7969200
## 209   998466964  171164750  326888562   44155378  2337987819   9807726
## 210  1035825563  179420909  338057097   50615405  2447190905  11276128
## 211  1072334322  188130128  350409698   57676180  2571565802  13404050
## 212  1109762745  197150964  363516429   65608541  2717820787  15521040
## 213  1151067679  206534328  376963734   73808106  2882377025  17916493
## 214  1198586758  215598301  391179796   82945359  3058098103  21978740
## 215  1252305146  234891388  404897226   95874197  3247626482  24967316
## 216  1316408508  262567470  419992083  109455585  3461608743  28483330
## 217  1384289454  280940448  436386917  122983498  3695738483  32347483
## 218  1466619017  300636130  454188489  136777664  3944910644  36225995
## 219  1549657762  323237424  472682885  151578599  4214571613  40492891
## 220  1641445217  347121206  492076624  168137956  4510936158  45481476
## 221  1743073048  375953062  514552748  184356895  4821985372  51228716
## 222  1849088240  405473541  536589055  201247765  5150222917  57511073
## 223  1978563549  436086250  559435233  220508921  5503572154  65801491
## 224  2122338954  466995742  582728276  239877854  5861825238  73395889
## 225  2261552925  500116002  604775700  259418259  6202877874  81576668
## 226  2418012029  548851489  627068709  278914939  6568673563  88852651
## 227  2581743970  592481034  650637012  298680781  6923091489  96293701
## 228  2743847907  634674126  674216107  319712359  7294365643 105405696
## 229  2907521167  687497214  701618140  340576666  7679621537 113935277
## 230  3028085637  732855393  727888989  361561184  8066054975 122380713
## 231  3140614204  764756865  753949694  382578668  8441355583 129789284
## 232  3278129175  795131300  779515246  406433417  8808235134 136003453
## 233  3427342606  833596443  805243200  430142264  9166644743 142448559
## 234  3577285268  873367445  830791925  453640621  9531246349 147589366
## 235  3737232378  917563882  857540907  478253434  9900229311 152631311
## 236  3884768420  964793435  886090367  504601511 10263417498 157178700
## 237  4043375772 1016977177  916315775  531670221 10643516763 162558024
## 238  4218483568 1084104603  946198262  561372558 11029479764 167083872
## 239  4408581570 1156346381  976258198  592766573 11434222473 173808416
## 240  4617819914 1203190155 1009136134  628589632 11874166575 181335548
## 241  4843774120 1248375488 1042742880  664738275 12314260997 189086146
## 242  5070731132 1307264829 1076160862  706821295 12753471411 196796915
## 243  5306307736 1370394599 1109810047  751055570 13185072385 204797191
## 244  5569828114 1441483756 1144582239  798530069 13610563020 212988150
## 245  5840975639 1515567942 1180376618  848395231 14062541927 222161556
## 246  6114983401 1584852296 1217787578  900330983 14507103501 231849269
## 247  6382082680 1652931122 1256539935  955194860 14956569121 241917364
## 248  6688088934 1725032598 1297190037 1011204158 15416809449 251611399
## 249  7067715969 1796713926 1339567819 1065958672 15881410902 261569587
## 250  7436979470 1868429338 1384761771 1125478052 16352178649 271883577
## 251  7831910833 1952985261 1432319125 1188500406 16828380518 282460104
## 252  8229709157 2039306138 1478353711 1247800140 17306089856 292662593
## 253  8643702635 2130092780 1523992835 1310214818 17797570580 303329566
## 254  9085792329 2243727783 1570122576 1368893937 18293098366 313903789
## 255  9549322291 2356708165 1618227142 1425417943 18788332381 324254376
## 256 10053112844 2454889215 1665777337 1487567025 19278082351 335677795
## 257 10566426677 2516380971 1713400283 1550366932 19758573936 345294850
## 258 11101336781 2608548021 1760700388 1618347208 20226635996 355433285
## 259 11648221753 2712037114 1802808896 1682208154 20642568389 363187537
## 260 12212256261 2823022461 1844488413 1750495055 21067441551 370447136
## 261 12791296308 2955852535 1882497717 1819089793 21480873056 378244741
## 262 13391976603 3106945114 1920692470 1893874265 21872863421 385662930
## 263 14000939485 3270515514 1957875318 1959871335 22236263323 393700970
## 264 14640050821 3436883561 1994556943 2023421987 22584739563 401116296
## 265 15270412649 3604595459 2033000592 2089517860 22940222777 408813984
## 266 15907974802 3789534193 2072928710 2154686078 23290545792 416625405
## 267 16580287145 3983988823 2112667064 2221239489 23645999964 424398054
##           Japan    Jordan  Kazakhstan     Kenya Kiribati     Kuwait
## 1             0         0           0         0        0          0
## 2             0         0           0         0        0          0
## 3             0         0           0         0        0          0
## 4             0         0           0         0        0          0
## 5             0         0           0         0        0          0
## 6             0         0           0         0        0          0
## 7             0         0           0         0        0          0
## 8             0         0           0         0        0          0
## 9             0         0           0         0        0          0
## 10            0         0           0         0        0          0
## 11            0         0           0         0        0          0
## 12            0         0           0         0        0          0
## 13            0         0           0         0        0          0
## 14            0         0           0         0        0          0
## 15            0         0           0         0        0          0
## 16            0         0           0         0        0          0
## 17            0         0           0         0        0          0
## 18            0         0           0         0        0          0
## 19            0         0           0         0        0          0
## 20            0         0           0         0        0          0
## 21            0         0           0         0        0          0
## 22            0         0           0         0        0          0
## 23            0         0           0         0        0          0
## 24            0         0           0         0        0          0
## 25            0         0           0         0        0          0
## 26            0         0           0         0        0          0
## 27            0         0           0         0        0          0
## 28            0         0           0         0        0          0
## 29            0         0           0         0        0          0
## 30            0         0           0         0        0          0
## 31            0         0           0         0        0          0
## 32            0         0           0         0        0          0
## 33            0         0           0         0        0          0
## 34            0         0           0         0        0          0
## 35            0         0           0         0        0          0
## 36            0         0           0         0        0          0
## 37            0         0           0         0        0          0
## 38            0         0           0         0        0          0
## 39            0         0           0         0        0          0
## 40            0         0           0         0        0          0
## 41            0         0           0         0        0          0
## 42            0         0           0         0        0          0
## 43            0         0           0         0        0          0
## 44            0         0           0         0        0          0
## 45            0         0           0         0        0          0
## 46            0         0           0         0        0          0
## 47            0         0           0         0        0          0
## 48            0         0           0         0        0          0
## 49            0         0           0         0        0          0
## 50            0         0           0         0        0          0
## 51            0         0           0         0        0          0
## 52            0         0           0         0        0          0
## 53            0         0           0         0        0          0
## 54            0         0           0         0        0          0
## 55            0         0           0         0        0          0
## 56            0         0           0         0        0          0
## 57            0         0           0         0        0          0
## 58            0         0           0         0        0          0
## 59            0         0           0         0        0          0
## 60            0         0           0         0        0          0
## 61            0         0           0         0        0          0
## 62            0         0           0         0        0          0
## 63            0         0           0         0        0          0
## 64            0         0           0         0        0          0
## 65            0         0           0         0        0          0
## 66            0         0           0         0        0          0
## 67            0         0           0         0        0          0
## 68            0         0           0         0        0          0
## 69            0         0           0         0        0          0
## 70            0         0           0         0        0          0
## 71            0         0           0         0        0          0
## 72            0         0           0         0        0          0
## 73            0         0           0         0        0          0
## 74            0         0           0         0        0          0
## 75            0         0           0         0        0          0
## 76            0         0           0         0        0          0
## 77            0         0           0         0        0          0
## 78            0         0           0         0        0          0
## 79            0         0           0         0        0          0
## 80            0         0           0         0        0          0
## 81            0         0           0         0        0          0
## 82            0         0           0         0        0          0
## 83            0         0           0         0        0          0
## 84            0         0           0         0        0          0
## 85            0         0           0         0        0          0
## 86            0         0           0         0        0          0
## 87            0         0           0         0        0          0
## 88            0         0           0         0        0          0
## 89            0         0           0         0        0          0
## 90            0         0           0         0        0          0
## 91            0         0           0         0        0          0
## 92            0         0           0         0        0          0
## 93            0         0           0         0        0          0
## 94            0         0           0         0        0          0
## 95            0         0           0         0        0          0
## 96            0         0           0         0        0          0
## 97            0         0           0         0        0          0
## 98            0         0           0         0        0          0
## 99            0         0           0         0        0          0
## 100           0         0           0         0        0          0
## 101           0         0           0         0        0          0
## 102           0         0           0         0        0          0
## 103           0         0           0         0        0          0
## 104           0         0           0         0        0          0
## 105           0         0           0         0        0          0
## 106           0         0           0         0        0          0
## 107           0         0           0         0        0          0
## 108           0         0           0         0        0          0
## 109           0         0           0         0        0          0
## 110           0         0           0         0        0          0
## 111           0         0           0         0        0          0
## 112           0         0           0         0        0          0
## 113           0         0           0         0        0          0
## 114           0         0           0         0        0          0
## 115           0         0           0         0        0          0
## 116           0         0           0         0        0          0
## 117           0         0           0         0        0          0
## 118       10992         0           0         0        0          0
## 119       29312         0           0         0        0          0
## 120       47632         0           0         0        0          0
## 121       73280         0           0         0        0          0
## 122      106256         0           0         0        0          0
## 123      146560         0           0         0        0          0
## 124      732800         0           0         0        0          0
## 125     2172752         0           0         0        0          0
## 126     3576064         0           0         0        0          0
## 127     4865792         0           0         0        0          0
## 128     6723440         0           0         0        0          0
## 129     9039088         0           0         0        0          0
## 130    11387712         0           0         0        0          0
## 131    13802288         0           0         0        0          0
## 132    16315792         0           0         0        0          0
## 133    19027152         0           0         0        0          0
## 134    21984000         0           0         0        0          0
## 135    25332896         0           0         0        0          0
## 136    28938272         0           0         0        0          0
## 137    33412016         0           0         0        0          0
## 138    38581920         0           0         0        0          0
## 139    44836368         0           0         0        0          0
## 140    51592784         0           0         0        0          0
## 141    59715872         0           0         0        0          0
## 142    67791328         0           0         0        0          0
## 143    76365088         0           0         0        0          0
## 144    87390064         0           0         0        0          0
## 145    99616832         0           0         0        0          0
## 146   112532432         0           0         0        0          0
## 147   126074576         0           0         0        0          0
## 148   143321024         0           0         0        0          0
## 149   160593120         0           0         0        0          0
## 150   180004992         0           0         0        0          0
## 151   203278720         0           0         0        0          0
## 152   228223232         0           0         0        0          0
## 153   254010464         0           0         0        0          0
## 154   283062320         0           0         0        0          0
## 155   312993536         0           0         0        0          0
## 156   345848624         0           0         0        0          0
## 157   380920432         0           0         0        0          0
## 158   418553376         0           0         0        0          0
## 159   456809200         0           0         0        0          0
## 160   496193536         0           0         0        0          0
## 161   540403360         0           0         0        0          0
## 162   589684160         0           0         0        0          0
## 163   643999296         0           0         0        0          0
## 164   702015072         0           0         0        0          0
## 165   754857280         0           0         0        0          0
## 166   813455632         0           0         0        0          0
## 167   880939184         0           0         0        0          0
## 168   952482448         0           0         0        0          0
## 169  1031676144         0           0         0        0          0
## 170  1105956416         0           0         0        0          0
## 171  1172765792         0           0         0        0          0
## 172  1244195472         0           0         0        0          0
## 173  1320102560         0           0         0        0          0
## 174  1399450144         0           0         0        0          0
## 175  1481461456         0           0         0        0          0
## 176  1564066336         0           0         0        0          0
## 177  1653548544         0           0         0        0          0
## 178  1745954624         0           0         0        0          0
## 179  1840852224         0           0         0        0          0
## 180  1927033168         0           0         0        0          0
## 181  2004951792         0           0         0        0          0
## 182  2082947360         0           0         0        0          0
## 183  2174309200         0           0         0        0          0
## 184  2275530864         0           0         0        0          0
## 185  2381937088         0           0         0        0          0
## 186  2498811360         0           0         0        0          0
## 187  2624266720         0           0         0        0          0
## 188  2756024160         0           0         0        0          0
## 189  2883791504         0           0         0        0          0
## 190  3037052960         0           0         0        0          0
## 191  3191681088         0           0         0        0          0
## 192  3339490512         0           0         0        0          0
## 193  3490143200         0           0         0        0          0
## 194  3628887888         0           0         0        0          0
## 195  3705527776         0           0         0        0          0
## 196  3758238080         0           0         0        0    2454880
## 197  3828275440         0           0         0        0    9203968
## 198  3916365328         0           0         0        0    9541056
## 199  4014798688         0           0         0        0   10603616
## 200  4117357712    172208           0    908672        0   10988336
## 201  4240841840    333424           0   2300992        0   11105584
## 202  4371276576    527616           0   3891168        0   10669568
## 203  4517081792    740128           0   5404400        0   10618272
## 204  4659659024    992944           0   7104496        0   12021584
## 205  4801576736   1374000           0   9090384        0   13868240
## 206  4962265120   1824672           0  11310768        0   14908816
## 207  5150393200   2319312           0  13593440        0   17107216
## 208  5331614640   2843264           0  15681920        0   20796864
## 209  5524234627   3498674   107737205  17890034        0   24596432
## 210  5756734268   4241813   219906455  20314176        0   32393424
## 211  6039521168   5219209   335581275  22712759     7328   42366832
## 212  6332385598   6266162   456985614  25334786    18320   56645440
## 213  6657221061   7485115   587183724  28187645    36640   73657392
## 214  7016112153   8725963   725649268  31010896    54960   98971968
## 215  7402583332  10146377   872533359  33474806    65952  134362544
## 216  7821828451  11727709  1027649291  36154893    76944  169485648
## 217  8311135879  13140706  1189845135  38853330    98928  194906480
## 218  8873048433  14644678  1356597340  41668747   131904  217330160
## 219  9526263852  16401467  1530259124  44795217   142896  244139648
## 220 10294226962  17957151  1712917285  47873432   164880  269161104
## 221 11090771359  19611585  1906775803  51552543   194192  296278368
## 222 11942941840  21525183  2110765583  55418488   219840  323890272
## 223 12857207513  23724751  2323396071  59332094   256480  348112976
## 224 13771514304  25950056  2544149491  64275047   289456  367424999
## 225 14640025715  28439258  2776219139  69243470   322432  384237936
## 226 15547171084  31383854  3017180196  73839634   355408  402694133
## 227 16480409788  34537787  3266293786  78874845   377392  419895543
## 228 17382001221  38165134  3523920531  84171581   399376  440867123
## 229 18335074143  41942018  3783642021  89183420   425024  458494802
## 230 19279944467  46637833  4053547600  95334924   454336  483110985
## 231 20206781835  52463017  4318301411 101807982   483648  508250606
## 232 21104191561  58718704  4588047941 106441773   509296  529340873
## 233 21985103065  66018650  4861612957 111036395   531280  550882091
## 234 22922175153  74265522  5137598227 115289508   553264  579167333
## 235 23834578150  82687035  5435247598 119005467   575248  608237516
## 236 24746840361  91852087  5733642578 123078428   593568  643467781
## 237 25649373141 101358106  6044578977 128154300   615552  674845639
## 238 26634840205 110535118  6364021225 132844260   637536  707670750
## 239 27656524971 119614872  6676699974 137932739   659520  743442395
## 240 28811788385 129861896  6943216829 143618828   681504  794328626
## 241 29978828902 139537710  7200314032 148329179   703488  804502844
## 242 31155771473 151520745  7433253221 153731263   729136  825524695
## 243 32325968206 163294767  7638497753 159946400   758448  858726710
## 244 33551141627 176544249  7809563752 166366845   787760  897508432
## 245 34788994450 189751978  7972246887 173772300   817072  952097411
## 246 36038870138 203578402  8121249553 182927272   850048 1002011008
## 247 37282237270 217651996  8262018849 191047013   875696 1056681656
## 248 38485947804 231903854  8397112612 200943032   905008 1108242247
## 249 39725787924 246169227  8504435614 210972356   934320 1162064456
## 250 40988522386 261369264  8637974358 221273926   963632 1215448534
## 251 42236609810 276979716  8766193043 230509580   989280 1272933215
## 252 43513846356 293400390  8912975243 238329177  1029584 1330913065
## 253 44799231768 310382428  9077294244 244914749  1069888 1390535999
## 254 46079267890 329051915  9248354323 252352743  1113856 1453643931
## 255 47366124205 349488014  9432673302 260691342  1176144 1524810370
## 256 48628763657 370015456  9635643224 270027893  1245760 1598199461
## 257 49928815630 391452444  9848859622 279568319  1297056 1673074239
## 258 51158061080 412170359 10062240023 289480031  1352016 1755372503
## 259 52318264713 433506619 10271586716 301444111  1392320 1842327430
## 260 53529837581 454120964 10508548791 313190076  1454608 1931599655
## 261 54791236171 475364733 10735628411 326118137  1516896 2022229770
## 262 56093319098 499177823 10969489209 338085293  1579184 2124120095
## 263 57407388670 522917106 11209325921 350855767  1641472 2221934767
## 264 58671561922 548674764 11466182584 364512175  1703760 2316698068
## 265 59895228397 571842514 11729666450 379060790  1771733 2419025081
## 266 61099547020 593472587 12008028378 394295004  1840486 2522481035
## 267 62304608199 614829331 12300616894 410113224  1913895 2626874527
##     Kyrgysztan Kyrgyzstan     Laos    Latvia   Lebanon  Lesotho  Liberia
## 1            0          0        0         0         0        0        0
## 2            0          0        0         0         0        0        0
## 3            0          0        0         0         0        0        0
## 4            0          0        0         0         0        0        0
## 5            0          0        0         0         0        0        0
## 6            0          0        0         0         0        0        0
## 7            0          0        0         0         0        0        0
## 8            0          0        0         0         0        0        0
## 9            0          0        0         0         0        0        0
## 10           0          0        0         0         0        0        0
## 11           0          0        0         0         0        0        0
## 12           0          0        0         0         0        0        0
## 13           0          0        0         0         0        0        0
## 14           0          0        0         0         0        0        0
## 15           0          0        0         0         0        0        0
## 16           0          0        0         0         0        0        0
## 17           0          0        0         0         0        0        0
## 18           0          0        0         0         0        0        0
## 19           0          0        0         0         0        0        0
## 20           0          0        0         0         0        0        0
## 21           0          0        0         0         0        0        0
## 22           0          0        0         0         0        0        0
## 23           0          0        0         0         0        0        0
## 24           0          0        0         0         0        0        0
## 25           0          0        0         0         0        0        0
## 26           0          0        0         0         0        0        0
## 27           0          0        0         0         0        0        0
## 28           0          0        0         0         0        0        0
## 29           0          0        0         0         0        0        0
## 30           0          0        0         0         0        0        0
## 31           0          0        0         0         0        0        0
## 32           0          0        0         0         0        0        0
## 33           0          0        0         0         0        0        0
## 34           0          0        0         0         0        0        0
## 35           0          0        0         0         0        0        0
## 36           0          0        0         0         0        0        0
## 37           0          0        0         0         0        0        0
## 38           0          0        0         0         0        0        0
## 39           0          0        0         0         0        0        0
## 40           0          0        0         0         0        0        0
## 41           0          0        0         0         0        0        0
## 42           0          0        0         0         0        0        0
## 43           0          0        0         0         0        0        0
## 44           0          0        0         0         0        0        0
## 45           0          0        0         0         0        0        0
## 46           0          0        0         0         0        0        0
## 47           0          0        0         0         0        0        0
## 48           0          0        0         0         0        0        0
## 49           0          0        0         0         0        0        0
## 50           0          0        0         0         0        0        0
## 51           0          0        0         0         0        0        0
## 52           0          0        0         0         0        0        0
## 53           0          0        0         0         0        0        0
## 54           0          0        0         0         0        0        0
## 55           0          0        0         0         0        0        0
## 56           0          0        0         0         0        0        0
## 57           0          0        0         0         0        0        0
## 58           0          0        0         0         0        0        0
## 59           0          0        0         0         0        0        0
## 60           0          0        0         0         0        0        0
## 61           0          0        0         0         0        0        0
## 62           0          0        0         0         0        0        0
## 63           0          0        0         0         0        0        0
## 64           0          0        0         0         0        0        0
## 65           0          0        0         0         0        0        0
## 66           0          0        0         0         0        0        0
## 67           0          0        0         0         0        0        0
## 68           0          0        0         0         0        0        0
## 69           0          0        0         0         0        0        0
## 70           0          0        0         0         0        0        0
## 71           0          0        0         0         0        0        0
## 72           0          0        0         0         0        0        0
## 73           0          0        0         0         0        0        0
## 74           0          0        0         0         0        0        0
## 75           0          0        0         0         0        0        0
## 76           0          0        0         0         0        0        0
## 77           0          0        0         0         0        0        0
## 78           0          0        0         0         0        0        0
## 79           0          0        0         0         0        0        0
## 80           0          0        0         0         0        0        0
## 81           0          0        0         0         0        0        0
## 82           0          0        0         0         0        0        0
## 83           0          0        0         0         0        0        0
## 84           0          0        0         0         0        0        0
## 85           0          0        0         0         0        0        0
## 86           0          0        0         0         0        0        0
## 87           0          0        0         0         0        0        0
## 88           0          0        0         0         0        0        0
## 89           0          0        0         0         0        0        0
## 90           0          0        0         0         0        0        0
## 91           0          0        0         0         0        0        0
## 92           0          0        0         0         0        0        0
## 93           0          0        0         0         0        0        0
## 94           0          0        0         0         0        0        0
## 95           0          0        0         0         0        0        0
## 96           0          0        0         0         0        0        0
## 97           0          0        0         0         0        0        0
## 98           0          0        0         0         0        0        0
## 99           0          0        0         0         0        0        0
## 100          0          0        0         0         0        0        0
## 101          0          0        0         0         0        0        0
## 102          0          0        0         0         0        0        0
## 103          0          0        0         0         0        0        0
## 104          0          0        0         0         0        0        0
## 105          0          0        0         0         0        0        0
## 106          0          0        0         0         0        0        0
## 107          0          0        0         0         0        0        0
## 108          0          0        0         0         0        0        0
## 109          0          0        0         0         0        0        0
## 110          0          0        0         0         0        0        0
## 111          0          0        0         0         0        0        0
## 112          0          0        0         0         0        0        0
## 113          0          0        0         0         0        0        0
## 114          0          0        0         0         0        0        0
## 115          0          0        0         0         0        0        0
## 116          0          0        0         0         0        0        0
## 117          0          0        0         0         0        0        0
## 118          0          0        0         0         0        0        0
## 119          0          0        0         0         0        0        0
## 120          0          0        0         0         0        0        0
## 121          0          0        0         0         0        0        0
## 122          0          0        0         0         0        0        0
## 123          0          0        0         0         0        0        0
## 124          0          0        0         0         0        0        0
## 125          0          0        0         0         0        0        0
## 126          0          0        0         0         0        0        0
## 127          0          0        0         0         0        0        0
## 128          0          0        0         0         0        0        0
## 129          0          0        0         0         0        0        0
## 130          0          0        0         0         0        0        0
## 131          0          0        0         0         0        0        0
## 132          0          0        0         0         0        0        0
## 133          0          0        0         0         0        0        0
## 134          0          0        0         0         0        0        0
## 135          0          0        0         0         0        0        0
## 136          0          0        0         0         0        0        0
## 137          0          0        0         0         0        0        0
## 138          0          0        0         0         0        0        0
## 139          0          0        0         0         0        0        0
## 140          0          0        0         0         0        0        0
## 141          0          0        0         0         0        0        0
## 142          0          0        0         0         0        0        0
## 143          0          0        0         0         0        0        0
## 144          0          0        0         0         0        0        0
## 145          0          0        0         0         0        0        0
## 146          0          0        0         0         0        0        0
## 147          0          0        0         0         0        0        0
## 148          0          0        0         0         0        0        0
## 149          0          0        0         0         0        0        0
## 150          0          0        0         0         0        0        0
## 151          0          0        0         0         0        0        0
## 152          0          0        0         0         0        0        0
## 153          0          0        0         0         0        0        0
## 154          0          0        0         0         0        0        0
## 155          0          0        0         0         0        0        0
## 156          0          0        0         0         0        0        0
## 157          0          0        0         0         0        0        0
## 158          0          0        0         0         0        0        0
## 159          0          0        0         0         0        0        0
## 160          0          0        0         0         0        0        0
## 161          0          0        0         0         0        0        0
## 162          0          0        0         0         0        0        0
## 163          0          0        0         0         0        0        0
## 164          0          0        0         0         0        0        0
## 165          0          0        0         0         0        0        0
## 166          0          0        0         0         0        0        0
## 167          0          0        0         0         0        0        0
## 168          0          0        0         0         0        0        0
## 169          0          0        0         0         0        0        0
## 170          0          0        0         0         0        0        0
## 171          0          0        0         0         0        0        0
## 172          0          0        0         0         0        0        0
## 173          0          0        0         0         0        0        0
## 174          0          0        0         0         0        0        0
## 175          0          0        0         0         0        0        0
## 176          0          0        0         0         0        0        0
## 177          0          0        0         0         0        0        0
## 178          0          0        0     10992         0        0        0
## 179          0          0        0     29312         0        0        0
## 180          0          0        0     65952         0        0        0
## 181          0          0        0    102592      3664        0        0
## 182          0          0        0    128240     14656        0        0
## 183          0          0        0    153888     29312        0        0
## 184          0          0        0    190528     29312        0        0
## 185          0          0        0    227168     80608        0        0
## 186          0          0        0    278464    139232        0        0
## 187          0          0        0    337088    201520        0        0
## 188          0          0        0    414032    263808        0        0
## 189          0          0        0    494640    322432        0        0
## 190          0          0        0    494640    344416        0        0
## 191          0          0        0    494640    366400        0        0
## 192          0          0        0    494640    718144        0        0
## 193          0          0        0    494640    754784        0        0
## 194          0          0        0    494640    820736        0        0
## 195          0          0        0    494640    894016        0        0
## 196          0          0        0    494640    967296        0        0
## 197          0          0        0    494640   1051568        0        0
## 198          0          0        0    494640   1154160        0        0
## 199          0          0        0    494640   1271408        0        0
## 200          0          0        0    494640   2784640        0    47632
## 201          0          0        0    494640   4242912        0    91600
## 202          0          0        0    494640   5419056        0   146560
## 203          0          0        0    494640   6668480        0   205184
## 204          0          0        0    494640   7976528        0   307776
## 205          0          0    25648    494640   9599680        0   366400
## 206          0          0    84272    494640  11486640        0   414032
## 207          0          0   142896    494640  13553136        0   498304
## 208          0          0   216176    494640  15535360        0   659520
## 209          0          0   293120   6309565  17983575        0   802416
## 210          0          0   373728  12363686  20559584        0   967296
## 211          0          0   487312  18606999  23238095        0  1128512
## 212          0          0   619216  25159539  26088875        0  1381328
## 213          0          0   765776  32186701  29111713        0  1736736
## 214          0          0   937984  39660078  32372771        0  2220384
## 215          0          0  1117520  47587815  35684769        0  2777312
## 216          0          0  1352016  55959832  39307701        0  3389200
## 217          0          0  1670784  64713964  42872336        0  4001088
## 218          0          0  1839328  73714009  46565657        0  4883904
## 219          0          0  2158096  83086983  50909774        0  6155015
## 220          0          0  2729680  92945508  54850493        0  7605602
## 221          0          0  3151040 103413554  60151133        0  9129470
## 222          0          0  3638352 114433897  65804450        0 10635017
## 223          0          0  4154976 125926753  72871187        0 12114916
## 224          0          0  4448096 137864889  79959054        0 13836640
## 225          0          0  4700912 150421662  86224161        0 15320203
## 226          0          0  4924416 163464700  92148193        0 16795804
## 227          0          0  5155248 176954483  97533711        0 18267167
## 228          0          0  5386080 190909527 103029601        0 19770319
## 229          0          0  5609584 204981652 108814825        0 21712218
## 230          0          0  5796448 219609939 114704597        0 23749776
## 231          0          0  5946672 233967583 120548866        0 25684719
## 232          0          0  6104224 248599104 126268307        0 26282127
## 233          0          0  6283760 263445848 133210524        0 26988645
## 234          0          0  6466960 278431131 139923722        0 27684077
## 235          0          0  6668480 294592829 147688670        0 28400162
## 236          0          0  6877328 310804701 155167131        0 29123040
## 237          0          0  7086176 327702097 162837509        0 29881503
## 238          0          0  7295024 345067267 170183179        0 30690686
## 239          0          0  7529520 362075189 177903965        0 31350280
## 240          0          0  7742032 381881083 185771819  1472928 31818417
## 241          0          0  7976528 399919717 193886686  3000816 32096881
## 242          0   11166356  8232333 414186954 203613622  4587328 32378354
## 243          0   19752213  8488135 426174716 213983236  6221472 32692799
## 244          0   25956673  8762253 436594980 225111936  7895920 33004239
## 245          0   30467721  9109649 445762564 237392114  9603344 33329666
## 246          0   36131920  9578400 455006106 250177716 11340080 33665408
## 247          0   41704965 10179019 463712924 265310083 13109792 34012811
## 248          0   47618102 10856546 472041836 281625605 14912480 34385856
## 249          0   52264947 11775860 479779806 298083837 16737152 34776531
## 250          0   56867430 12704728 486878852 313550101 18587472 35190977
## 251          0   60729730 13567479 494395178 329956334 20463440 35675625
## 252          0   65649012 14693995 501938112 346200719 22368720 36157932
## 253          0   71030631 15768058 509678782 364728188 24299648 36676040
## 254          0   76837452 17134809 517429738 381935876 26281872 37279775
## 255          0   82351073 18512120 525264893 398589355 28293408 37990241
## 256          0   87770042 20019146 533598200 413381387 30330592 38721369
## 257          0   94288317 20882770 542253265 427134202 32404416 39371055
## 258          0  101836588 21781876 550471989 444560260 34529536 39924444
## 259          0  108573965 22921991 557952693 465530770 36746256 40432743
## 260          0  114886823 24420015 566599649 485545942 39021600 41215880
## 261          0  122440330 25886889 574482329 505810070 41351904 42096861
## 262          0  132440156 27401546 582066184 528178903 43755488 43108284
## 263          0  142098611 28803091 589489776 550375263 46188384 44043734
## 264          0  151511687 30476239 596728530 574079083 48654256 44945457
## 265          0  161441127 32221226 604062191 595348268 51139004 45858339
## 266          0  171301052 34119762 611325809 615105675 53600907 46827371
## 267          0  181734180 36077735 618492628 634652476 56424722 47905144
##          Libya Liechtenstein  Lithuania Luxembourg    Macao Macedonia
## 1            0             0          0          0        0         0
## 2            0             0          0          0        0         0
## 3            0             0          0          0        0         0
## 4            0             0          0          0        0         0
## 5            0             0          0          0        0         0
## 6            0             0          0          0        0         0
## 7            0             0          0          0        0         0
## 8            0             0          0          0        0         0
## 9            0             0          0          0        0         0
## 10           0             0          0          0        0         0
## 11           0             0          0          0        0         0
## 12           0             0          0          0        0         0
## 13           0             0          0          0        0         0
## 14           0             0          0          0        0         0
## 15           0             0          0          0        0         0
## 16           0             0          0          0        0         0
## 17           0             0          0          0        0         0
## 18           0             0          0          0        0         0
## 19           0             0          0          0        0         0
## 20           0             0          0          0        0         0
## 21           0             0          0          0        0         0
## 22           0             0          0          0        0         0
## 23           0             0          0          0        0         0
## 24           0             0          0          0        0         0
## 25           0             0          0          0        0         0
## 26           0             0          0          0        0         0
## 27           0             0          0          0        0         0
## 28           0             0          0          0        0         0
## 29           0             0          0          0        0         0
## 30           0             0          0          0        0         0
## 31           0             0          0          0        0         0
## 32           0             0          0          0        0         0
## 33           0             0          0          0        0         0
## 34           0             0          0          0        0         0
## 35           0             0          0          0        0         0
## 36           0             0          0          0        0         0
## 37           0             0          0          0        0         0
## 38           0             0          0          0        0         0
## 39           0             0          0          0        0         0
## 40           0             0          0          0        0         0
## 41           0             0          0          0        0         0
## 42           0             0          0          0        0         0
## 43           0             0          0          0        0         0
## 44           0             0          0          0        0         0
## 45           0             0          0          0        0         0
## 46           0             0          0          0        0         0
## 47           0             0          0          0        0         0
## 48           0             0          0          0        0         0
## 49           0             0          0          0        0         0
## 50           0             0          0          0        0         0
## 51           0             0          0          0        0         0
## 52           0             0          0          0        0         0
## 53           0             0          0          0        0         0
## 54           0             0          0          0        0         0
## 55           0             0          0          0        0         0
## 56           0             0          0          0        0         0
## 57           0             0          0          0        0         0
## 58           0             0          0          0        0         0
## 59           0             0          0          0        0         0
## 60           0             0          0          0        0         0
## 61           0             0          0          0        0         0
## 62           0             0          0          0        0         0
## 63           0             0          0          0        0         0
## 64           0             0          0          0        0         0
## 65           0             0          0          0        0         0
## 66           0             0          0          0        0         0
## 67           0             0          0          0        0         0
## 68           0             0          0          0        0         0
## 69           0             0          0          0        0         0
## 70           0             0          0          0        0         0
## 71           0             0          0          0        0         0
## 72           0             0          0          0        0         0
## 73           0             0          0          0        0         0
## 74           0             0          0          0        0         0
## 75           0             0          0          0        0         0
## 76           0             0          0          0        0         0
## 77           0             0          0          0        0         0
## 78           0             0          0          0        0         0
## 79           0             0          0          0        0         0
## 80           0             0          0          0        0         0
## 81           0             0          0          0        0         0
## 82           0             0          0          0        0         0
## 83           0             0          0          0        0         0
## 84           0             0          0          0        0         0
## 85           0             0          0          0        0         0
## 86           0             0          0          0        0         0
## 87           0             0          0          0        0         0
## 88           0             0          0          0        0         0
## 89           0             0          0          0        0         0
## 90           0             0          0          0        0         0
## 91           0             0          0          0        0         0
## 92           0             0          0          0        0         0
## 93           0             0          0          0        0         0
## 94           0             0          0          0        0         0
## 95           0             0          0          0        0         0
## 96           0             0          0          0        0         0
## 97           0             0          0          0        0         0
## 98           0             0          0          0        0         0
## 99           0             0          0          0        0         0
## 100          0             0          0          0        0         0
## 101          0             0          0          0        0         0
## 102          0             0          0          0        0         0
## 103          0             0          0          0        0         0
## 104          0             0          0          0        0         0
## 105          0             0          0          0        0         0
## 106          0             0          0          0        0         0
## 107          0             0          0          0        0         0
## 108          0             0          0          0        0         0
## 109          0             0          0          0        0         0
## 110          0             0          0          0        0         0
## 111          0             0          0          0        0         0
## 112          0             0          0          0        0         0
## 113          0             0          0          0        0         0
## 114          0             0          0          0        0         0
## 115          0             0          0          0        0         0
## 116          0             0          0          0        0         0
## 117          0             0          0          0        0         0
## 118          0             0          0          0        0         0
## 119          0             0          0          0        0         0
## 120          0             0          0          0        0         0
## 121          0             0          0          0        0         0
## 122          0             0          0          0        0         0
## 123          0             0          0          0        0         0
## 124          0             0          0          0        0         0
## 125          0             0          0          0        0         0
## 126          0             0          0          0        0         0
## 127          0             0          0          0        0         0
## 128          0             0          0          0        0         0
## 129          0             0          0          0        0         0
## 130          0             0          0          0        0         0
## 131          0             0          0          0        0         0
## 132          0             0          0          0        0         0
## 133          0             0          0          0        0         0
## 134          0             0          0          0        0         0
## 135          0             0          0          0        0         0
## 136          0             0          0          0        0         0
## 137          0             0          0          0        0         0
## 138          0             0          0          0        0         0
## 139          0             0          0          0        0         0
## 140          0             0          0          0        0         0
## 141          0             0          0          0        0         0
## 142          0             0          0          0        0         0
## 143          0             0          0          0        0         0
## 144          0             0          0          0        0         0
## 145          0             0          0          0        0         0
## 146          0             0          0          0        0         0
## 147          0             0          0          0        0         0
## 148          0             0          0          0        0         0
## 149          0             0          0          0        0         0
## 150          0             0          0          0        0         0
## 151          0             0          0          0        0         0
## 152          0             0          0          0        0         0
## 153          0             0          0          0        0         0
## 154          0             0          0          0        0         0
## 155          0             0          0          0        0         0
## 156          0             0          0          0        0         0
## 157          0             0          0          0        0         0
## 158          0             0          0          0        0         0
## 159          0             0          0          0        0         0
## 160          0             0          0          0        0         0
## 161          0             0          0          0        0         0
## 162          0             0          0          0        0         0
## 163          0             0          0          0        0         0
## 164          0             0          0          0        0         0
## 165          0             0          0          0        0         0
## 166          0             0          0          0        0         0
## 167          0             0          0          0        0         0
## 168          0             0          0          0        0         0
## 169          0             0          0          0        0         0
## 170          0             0          0          0        0         0
## 171          0             0          0          0        0         0
## 172          0             0          0          0        0         0
## 173          0             0          0          0        0         0
## 174          0             0          0          0        0         0
## 175          0             0          0          0        0         0
## 176          0             0          0          0        0         0
## 177          0             0          0          0        0         0
## 178          0             0          0          0        0         0
## 179          0             0          0          0        0         0
## 180          0             0          0          0        0         0
## 181          0             0          0          0        0         0
## 182          0             0          0          0        0         0
## 183          0             0          0          0        0         0
## 184          0             0          0          0        0         0
## 185          0             0          0          0        0         0
## 186          0             0          0          0        0         0
## 187          0             0          0          0        0         0
## 188          0             0          0          0        0         0
## 189          0             0          0          0        0         0
## 190          0             0          0          0        0         0
## 191          0             0          0          0        0         0
## 192          0             0          0          0        0         0
## 193          0             0          0          0        0         0
## 194          0             0          0          0        0         0
## 195          0             0          0      25648        0         0
## 196          0             0          0      62288        0         0
## 197          0             0          0     106256        0         0
## 198          0             0          0     157552        0         0
## 199          0             0          0     216176        0         0
## 200     142896             0          0    7635776        0         0
## 201     311440             0          0   16645552        0         0
## 202     476320             0          0   26047376        0         0
## 203     725472             0          0   34701744        0         0
## 204    1025920             0          0   43484352    21984         0
## 205    1454608             0          0   53369824    43968         0
## 206    1784368             0          0   63738944    69616         0
## 207    2095808             0          0   74577056    98928         0
## 208    2447552             0          0   84664048   128240         0
## 209    2879904             0    9104218   95083691   164880   3449028
## 210    3572400             0   18582657  106591454   216176   7216482
## 211    4766864             0   28357074  118172436   285792  11165444
## 212    5814768             0   38615374  129713115   381056  15217786
## 213    7276704             0   49616701  141151291   487312  19725868
## 214    7939888             0   61316548  153446843   615552  24833317
## 215    8954816             0   73727480  165639744   747456  30088340
## 216   11581904             0   86833697  177250098   897680  35295619
## 217   30074112             0  100537989  188600427  1062560  40555377
## 218   60188528             0  114627170  200859398  1231104  46180911
## 219   95710741             0  129300165  214041638  1399648  52013599
## 220  128015842             0  144733160  227776994  1604832  59635711
## 221  149644137             0  161143038  240971710  1832000  67850482
## 222  164864155             0  178442363  254466549  2062832  75549931
## 223  179439220             0  196509122  268644782  2286336  84747602
## 224  188776795             0  215303820  283072739  2553808  93985520
## 225  200345211             0  235102357  294941221  2850592 103624727
## 226  218233077             0  255686049  306807863  3103408 113573679
## 227  238284767             0  276994418  317767286  3411184 123248793
## 228  259440149             0  299052448  329654691  3825216 134060692
## 229  285366520             0  321307804  341824497  4239248 145820769
## 230  312147062             0  344458112  352906667  4766864 157384739
## 231  340815025             0  367215500  362402763  5301808 169969884
## 232  371380127             0  390420465  371337972  5785456 181531881
## 233  401526144             0  414000295  379714207  6466960 193982079
## 234  429802355             0  437830014  388731030  7071520 207111745
## 235  460804532             0  463531683  397979608  7804320 220504990
## 236  494700026             0  489352281  407107352  8680016 234492474
## 237  527048288             0  516281367  415942492  9650976 248391966
## 238  563208673             0  543978213  425069406 10614608 262777187
## 239  600277195             0  571147302  434945414 11644192 277130841
## 240  636790190             0  606934508  446757456 12677440 291473053
## 241  679409337             0  644817791  459181483 13769312 301617717
## 242  716434309             0  666004853  471361677 14850192 312386213
## 243  755143289             0  682336994  483682307 16030000 322718693
## 244  798896296             0  698085213  495191257 17301408 333179413
## 245  844587374             0  713089360  504309337 18532512 344010197
## 246  888384177             0  728748180  513474817 19939488 355742325
## 247  933090709             0  743818376  521993579 21427072 366367925
## 248  978249630             0  759706416  529632952 22984272 378983077
## 249 1022552971             0  773113934  537723410 24501168 390696885
## 250 1069345962             0  784901959  546396280 26131648 402751445
## 251 1117119760             0  797398085  555562404 27817088 414740053
## 252 1164591964             0  810000457  565504652 29333984 425666101
## 253 1213372948             0  822592337  575916286 30865536 436965877
## 254 1263328782             0  835759661  587701517 32580288 448148405
## 255 1315025067             0  849848985  599749914 34408624 459418869
## 256 1367691385             0  864251943  611629171 36028112 470348581
## 257 1417031130        200764  880015212  622898005 37563328 479834677
## 258 1472372605        420268  895095057  634030265 38900688 489229173
## 259 1529568214        625620  907923062  644618718 40970848 497920181
## 260 1590689859        816426  921635694  655773007 42377824 506515925
## 261 1629954473        993206  935702333  666823377 43825104 515906757
## 262 1682363217       1178524  949836082  677611458 45136816 524865237
## 263 1738365468       1371064  962942391  687844797 46316624 532706197
## 264 1795093357       1532165  975817059  697602303 47599024 540210069
## 265 1847257937       1691050  988958651  706861962 49013505 547467616
## 266 1898568306       1839412 1002116108  715864917 50435741 554611635
## 267 1951955718       2000665 1015509983  725159607 51947913 561863099
##     Madagascar   Malawi   Malaysia Maldives     Mali    Malta
## 1            0        0          0        0        0        0
## 2            0        0          0        0        0        0
## 3            0        0          0        0        0        0
## 4            0        0          0        0        0        0
## 5            0        0          0        0        0        0
## 6            0        0          0        0        0        0
## 7            0        0          0        0        0        0
## 8            0        0          0        0        0        0
## 9            0        0          0        0        0        0
## 10           0        0          0        0        0        0
## 11           0        0          0        0        0        0
## 12           0        0          0        0        0        0
## 13           0        0          0        0        0        0
## 14           0        0          0        0        0        0
## 15           0        0          0        0        0        0
## 16           0        0          0        0        0        0
## 17           0        0          0        0        0        0
## 18           0        0          0        0        0        0
## 19           0        0          0        0        0        0
## 20           0        0          0        0        0        0
## 21           0        0          0        0        0        0
## 22           0        0          0        0        0        0
## 23           0        0          0        0        0        0
## 24           0        0          0        0        0        0
## 25           0        0          0        0        0        0
## 26           0        0          0        0        0        0
## 27           0        0          0        0        0        0
## 28           0        0          0        0        0        0
## 29           0        0          0        0        0        0
## 30           0        0          0        0        0        0
## 31           0        0          0        0        0        0
## 32           0        0          0        0        0        0
## 33           0        0          0        0        0        0
## 34           0        0          0        0        0        0
## 35           0        0          0        0        0        0
## 36           0        0          0        0        0        0
## 37           0        0          0        0        0        0
## 38           0        0          0        0        0        0
## 39           0        0          0        0        0        0
## 40           0        0          0        0        0        0
## 41           0        0          0        0        0        0
## 42           0        0          0        0        0        0
## 43           0        0          0        0        0        0
## 44           0        0          0        0        0        0
## 45           0        0          0        0        0        0
## 46           0        0          0        0        0        0
## 47           0        0          0        0        0        0
## 48           0        0          0        0        0        0
## 49           0        0          0        0        0        0
## 50           0        0          0        0        0        0
## 51           0        0          0        0        0        0
## 52           0        0          0        0        0        0
## 53           0        0          0        0        0        0
## 54           0        0          0        0        0        0
## 55           0        0          0        0        0        0
## 56           0        0          0        0        0        0
## 57           0        0          0        0        0        0
## 58           0        0          0        0        0        0
## 59           0        0          0        0        0        0
## 60           0        0          0        0        0        0
## 61           0        0          0        0        0        0
## 62           0        0          0        0        0        0
## 63           0        0          0        0        0        0
## 64           0        0          0        0        0        0
## 65           0        0          0        0        0        0
## 66           0        0          0        0        0        0
## 67           0        0          0        0        0        0
## 68           0        0          0        0        0        0
## 69           0        0          0        0        0        0
## 70           0        0          0        0        0        0
## 71           0        0          0        0        0        0
## 72           0        0          0        0        0        0
## 73           0        0          0        0        0        0
## 74           0        0          0        0        0        0
## 75           0        0          0        0        0        0
## 76           0        0          0        0        0        0
## 77           0        0          0        0        0        0
## 78           0        0          0        0        0        0
## 79           0        0          0        0        0        0
## 80           0        0          0        0        0        0
## 81           0        0          0        0        0        0
## 82           0        0          0        0        0        0
## 83           0        0          0        0        0        0
## 84           0        0          0        0        0        0
## 85           0        0          0        0        0        0
## 86           0        0          0        0        0        0
## 87           0        0          0        0        0        0
## 88           0        0          0        0        0        0
## 89           0        0          0        0        0        0
## 90           0        0          0        0        0        0
## 91           0        0          0        0        0        0
## 92           0        0          0        0        0        0
## 93           0        0          0        0        0        0
## 94           0        0          0        0        0        0
## 95           0        0          0        0        0        0
## 96           0        0          0        0        0        0
## 97           0        0          0        0        0        0
## 98           0        0          0        0        0        0
## 99           0        0          0        0        0        0
## 100          0        0          0        0        0        0
## 101          0        0          0        0        0        0
## 102          0        0          0        0        0        0
## 103          0        0          0        0        0        0
## 104          0        0          0        0        0        0
## 105          0        0          0        0        0        0
## 106          0        0          0        0        0        0
## 107          0        0          0        0        0        0
## 108          0        0          0        0        0        0
## 109          0        0          0        0        0        0
## 110          0        0          0        0        0        0
## 111          0        0          0        0        0        0
## 112          0        0          0        0        0        0
## 113          0        0          0        0        0        0
## 114          0        0          0        0        0        0
## 115          0        0          0        0        0        0
## 116          0        0          0        0        0        0
## 117          0        0          0        0        0        0
## 118          0        0          0        0        0        0
## 119          0        0          0        0        0        0
## 120          0        0          0        0        0        0
## 121          0        0          0        0        0        0
## 122          0        0          0        0        0        0
## 123          0        0          0        0        0        0
## 124          0        0          0        0        0        0
## 125          0        0          0        0        0        0
## 126          0        0          0        0        0        0
## 127          0        0          0        0        0        0
## 128          0        0          0        0        0        0
## 129          0        0          0        0        0        0
## 130          0        0          0        0        0        0
## 131          0        0          0        0        0        0
## 132          0        0          0        0        0        0
## 133          0        0          0        0        0        0
## 134          0        0          0        0        0        0
## 135          0        0          0        0        0        0
## 136          0        0          0        0        0        0
## 137          0        0          0        0        0        0
## 138          0        0          0        0        0        0
## 139          0        0          0        0        0        0
## 140          0        0       7328        0        0        0
## 141          0        0      25648        0        0        0
## 142          0        0      73280        0        0        0
## 143          0        0      84272        0        0        0
## 144          0        0     131904        0        0        0
## 145          0        0     241824        0        0        0
## 146          0        0     366400        0        0        0
## 147          0        0     458000        0        0        0
## 148          0        0     586240        0        0        0
## 149          0        0     707152        0        0        0
## 150          0        0     765776        0        0        0
## 151          0        0     813408        0        0        0
## 152          0        0     864704        0        0        0
## 153          0        0     916000        0        0        0
## 154          0        0     948976        0        0        0
## 155          0        0     989280        0        0        0
## 156          0        0    1025920        0        0        0
## 157          0        0    1113856        0        0        0
## 158          0        0    1205456        0        0        0
## 159          0        0    1374000        0        0        0
## 160          0        0    1608496        0        0        0
## 161          0        0    1608496        0        0        0
## 162          0        0    1626816        0        0        0
## 163          0        0    1689104        0        0        0
## 164          0        0    1835664        0        0        0
## 165          0        0    2040848        0        0        0
## 166          0        0    2590448        0        0        0
## 167          0        0    3242640        0        0        0
## 168          0        0    3913152        0        0        0
## 169          0        0    4682592        0        0        0
## 170          0        0    5792784        0        0        0
## 171          0        0    7207088        0        0        0
## 172          0        0    9211296        0        0        0
## 173          0        0   11794416        0        0        0
## 174          0        0   14630352        0        0        0
## 175          0        0   17594528        0        0        0
## 176          0        0   20994720        0        0        0
## 177          0        0   24372928        0        0        0
## 178          0        0   28179824        0        0        0
## 179          0        0   32294496        0        0        0
## 180          0        0   35965824        0        0        0
## 181          0        0   38673520        0        0        0
## 182          0        0   40468880        0        0        0
## 183       3664        0   42059056        0        0        0
## 184      10992        0   43792128        0        0        0
## 185      14656        0   45598480        0        0        0
## 186      14656        0   47646656        0        0        0
## 187      14656        0   49991616        0        0        0
## 188      14656        0   51904224        0        0        0
## 189      14656        0   53607984        0        0        0
## 190      14656        0   56176448        0        0        0
## 191      14656        0   58360192        0        0        0
## 192      14656        0   59019712        0        0        0
## 193      14656        0   60338752        0        0        0
## 194      14656        0   61441616        0        0        0
## 195      21984        0   62053504        0        0        0
## 196      21984        0   62658064        0        0        0
## 197      25648        0   63343232        0        0        0
## 198      29312        0   64497392        0        0        0
## 199      32976        0   65717504        0        0        0
## 200     337088        0   65717504        0        0   245488
## 201     582576        0   65717504        0        0   501968
## 202     890352        0   65717504        0        0   743792
## 203    1143168        0   65717504        0        0   974624
## 204    1432624        0   65717504        0        0  1282400
## 205    1736736        0   65717504        0        0  1623152
## 206    2055504        0   65717504        0        0  1919936
## 207    2370608        0   68692672        0        0  2231376
## 208    2744336        0   71931648        0        0  2561136
## 209    3118064   459765   74555072        0    47632  2949520
## 210    3517440   898133   78120144        0   168544  3290272
## 211    3872848  1271461   82117568        0   285792  3583392
## 212    4268501  1632081   86188272        0   425024  3913152
## 213    4729986  1978791   91152992        0   600896  4323520
## 214    5213456  2308432   97572320        0   776768  4821824
## 215    5770235  2656393  104053936        0   974624  5294480
## 216    6348939  3084903  111741008        0  1165152  5708512
## 217    7191422  3451125  120212176        0  1388656  6228800
## 218    8103490  3839271  128716320        0  1586512  6866336
## 219    8953241  4220030  138235392        0  1747728  7518528
## 220    9923904  4674098  152821280        0  1949248  8181712
## 221   10949527  5175799  169480724     3664  2176416  8841232
## 222   12235323  5721438  187374669     7328  2421904  9680288
## 223   13308578  6292665  204868762    10992  2689198 10486368
## 224   14495476  6841908  223897715    14656  2993131 11230160
## 225   16188007  7420404  243322053    21984  3333675 11897008
## 226   17180243  8002131  267179545    32976  3673932 12659120
## 227   18025844  8638213  289743973    47632  4087405 13461536
## 228   19043060  9306585  312915669    69616  4482352 14395856
## 229   20173297  9941406  340110564    98928  4910265 15300864
## 230   21787241 10649402  368007822   142896  5301608 16323120
## 231   22811780 11250925  398697625   190528  5696491 17466288
## 232   23825123 11842273  429105112   238160  6061623 18778000
## 233   24475524 12413940  466883274   289456  6478244 19774608
## 234   25341896 12966875  501357171   348080  6913063 21137616
## 235   26394926 13520281  537371259   414032  7318446 22335744
## 236   27532024 14068731  577081982   494640  7698058 23819664
## 237   28814431 14609443  617567205   575248  8055563 25673648
## 238   30100215 15146644  659957313   670512  8438592 27685184
## 239   31026035 15704855  709390735   795088  8854475 29854272
## 240   31969846 16443919  765402611   967296  9273898 31797593
## 241   32997893 17228604  833257411  1121184  9707964 33908168
## 242   33996591 18013871  907725968  1352016 10149343 36227621
## 243   35020900 18893015  998562496  1549872 10601701 38561534
## 244   36285325 19797729 1091576471  1747728 11062038 41064065
## 245   37546063 20704692 1211611670  1996880 11529693 43562366
## 246   38905032 21608951 1335728565  2286336 12015659 46032334
## 247   40550444 22556320 1459256243  2616096 12536900 48547381
## 248   42283087 23478360 1572367292  2916544 13299012 51063432
## 249   44195238 24402838 1679254480  3337904 14094100 53633719
## 250   46062702 25256688 1803793866  3788576 14914836 56204587
## 251   47798180 26103813 1937961023  4250240 15742900 58672701
## 252   49030089 26943136 2070177475  4843808 16589284 61116620
## 253   50710563 27843148 2226570969  5349440 17432004 63778977
## 254   52499928 28761988 2388658984  6016288 18307700 66336254
## 255   54225322 29620426 2561145555  6617184 19205380 69002273
## 256   55891547 30512546 2726726109  7375632 20147028 71681716
## 257   57674990 31378804 2909181850  8156064 21154628 74437761
## 258   59543559 32407285 3110762165  8998784 22224516 77261505
## 259   61297455 33325959 3307206260  9881808 23030596 79845824
## 260   63235798 34447579 3523198564 10816128 23994228 82436041
## 261   65550428 35603534 3740877812 11801744 25038468 85091310
## 262   68228026 36679457 3956773030 12911936 26031412 87901830
## 263   71317561 37867941 4190601522 14003808 27057332 90375764
## 264   74364764 39093302 4430656619 15337504 28467972 92838760
## 265   77412192 40368520 4675754241 16792933 29896521 94596514
## 266   80456539 41684057 4926843845 18265039 31425616 96016791
## 267   83638600 43051513 5181419717 19836857 33149434 97461275
##     Marshall.Islands Martinique Mauritania Mauritius      Mexico
## 1                  0          0          0         0           0
## 2                  0          0          0         0           0
## 3                  0          0          0         0           0
## 4                  0          0          0         0           0
## 5                  0          0          0         0           0
## 6                  0          0          0         0           0
## 7                  0          0          0         0           0
## 8                  0          0          0         0           0
## 9                  0          0          0         0           0
## 10                 0          0          0         0           0
## 11                 0          0          0         0           0
## 12                 0          0          0         0           0
## 13                 0          0          0         0           0
## 14                 0          0          0         0           0
## 15                 0          0          0         0           0
## 16                 0          0          0         0           0
## 17                 0          0          0         0           0
## 18                 0          0          0         0           0
## 19                 0          0          0         0           0
## 20                 0          0          0         0           0
## 21                 0          0          0         0           0
## 22                 0          0          0         0           0
## 23                 0          0          0         0           0
## 24                 0          0          0         0           0
## 25                 0          0          0         0           0
## 26                 0          0          0         0           0
## 27                 0          0          0         0           0
## 28                 0          0          0         0           0
## 29                 0          0          0         0           0
## 30                 0          0          0         0           0
## 31                 0          0          0         0           0
## 32                 0          0          0         0           0
## 33                 0          0          0         0           0
## 34                 0          0          0         0           0
## 35                 0          0          0         0           0
## 36                 0          0          0         0           0
## 37                 0          0          0         0           0
## 38                 0          0          0         0           0
## 39                 0          0          0         0           0
## 40                 0          0          0         0           0
## 41                 0          0          0         0           0
## 42                 0          0          0         0           0
## 43                 0          0          0         0           0
## 44                 0          0          0         0           0
## 45                 0          0          0         0           0
## 46                 0          0          0         0           0
## 47                 0          0          0         0           0
## 48                 0          0          0         0           0
## 49                 0          0          0         0           0
## 50                 0          0          0         0           0
## 51                 0          0          0         0           0
## 52                 0          0          0         0           0
## 53                 0          0          0         0           0
## 54                 0          0          0         0           0
## 55                 0          0          0         0           0
## 56                 0          0          0         0           0
## 57                 0          0          0         0           0
## 58                 0          0          0         0           0
## 59                 0          0          0         0           0
## 60                 0          0          0         0           0
## 61                 0          0          0         0           0
## 62                 0          0          0         0           0
## 63                 0          0          0         0           0
## 64                 0          0          0         0           0
## 65                 0          0          0         0           0
## 66                 0          0          0         0           0
## 67                 0          0          0         0           0
## 68                 0          0          0         0           0
## 69                 0          0          0         0           0
## 70                 0          0          0         0           0
## 71                 0          0          0         0           0
## 72                 0          0          0         0           0
## 73                 0          0          0         0           0
## 74                 0          0          0         0           0
## 75                 0          0          0         0           0
## 76                 0          0          0         0           0
## 77                 0          0          0         0           0
## 78                 0          0          0         0           0
## 79                 0          0          0         0           0
## 80                 0          0          0         0           0
## 81                 0          0          0         0           0
## 82                 0          0          0         0           0
## 83                 0          0          0         0           0
## 84                 0          0          0         0           0
## 85                 0          0          0         0           0
## 86                 0          0          0         0           0
## 87                 0          0          0         0           0
## 88                 0          0          0         0           0
## 89                 0          0          0         0           0
## 90                 0          0          0         0           0
## 91                 0          0          0         0           0
## 92                 0          0          0         0           0
## 93                 0          0          0         0           0
## 94                 0          0          0         0           0
## 95                 0          0          0         0           0
## 96                 0          0          0         0           0
## 97                 0          0          0         0           0
## 98                 0          0          0         0           0
## 99                 0          0          0         0           0
## 100                0          0          0         0           0
## 101                0          0          0         0           0
## 102                0          0          0         0           0
## 103                0          0          0         0           0
## 104                0          0          0         0           0
## 105                0          0          0         0           0
## 106                0          0          0         0           0
## 107                0          0          0         0           0
## 108                0          0          0         0           0
## 109                0          0          0         0           0
## 110                0          0          0         0           0
## 111                0          0          0         0           0
## 112                0          0          0         0           0
## 113                0          0          0         0           0
## 114                0          0          0         0           0
## 115                0          0          0         0           0
## 116                0          0          0         0           0
## 117                0          0          0         0           0
## 118                0          0          0         0           0
## 119                0          0          0         0           0
## 120                0          0          0         0           0
## 121                0          0          0         0           0
## 122                0          0          0         0           0
## 123                0          0          0         0           0
## 124                0          0          0         0           0
## 125                0          0          0         0           0
## 126                0          0          0         0           0
## 127                0          0          0         0           0
## 128                0          0          0         0           0
## 129                0          0          0         0           0
## 130                0          0          0         0           0
## 131                0          0          0         0           0
## 132                0          0          0         0           0
## 133                0          0          0         0           0
## 134                0          0          0         0           0
## 135                0          0          0         0           0
## 136                0          0          0         0           0
## 137                0          0          0         0           0
## 138                0          0          0         0           0
## 139                0          0          0         0           0
## 140                0          0          0         0           0
## 141                0          0          0         0      520288
## 142                0          0          0         0     1099200
## 143                0          0          0         0     1630480
## 144                0          0          0         0     2169088
## 145                0          0          0         0     2663728
## 146                0          0          0         0     3242640
## 147                0          0          0         0     3931472
## 148                0          0          0         0     4667936
## 149                0          0          0         0     5422720
## 150                0          0          0         0     6422992
## 151                0          0          0         0     7734704
## 152                0          0          0         0     9160000
## 153                0          0          0         0    10717200
## 154                0          0          0         0    12435616
## 155                0          0          0         0    14143040
## 156                0          0          0         0    16062976
## 157                0          0          0         0    18327328
## 158                0          0          0         0    22097584
## 159                0          0          0         0    25790896
## 160                0          0          0         0    29945872
## 161                0          0          0         0    38347424
## 162                0          0          0         0    46979808
## 163                0          0          0         0    58722928
## 164                0          0          0         0    68864880
## 165                0          0          0         0    83180128
## 166                0          0          0         0   100364288
## 167                0          0          0         0   126495936
## 168                0          0          0         0   157137968
## 169                0          0          0         0   198222400
## 170                0          0          0         0   274459248
## 171                0          0          0         0   364747536
## 172                0          0          0         0   450298272
## 173                0          0          0         0   522336176
## 174                0          0          0         0   590208112
## 175                0          0          0         0   647293232
## 176                0          0          0         0   691979376
## 177                0          0          0         0   723775568
## 178                0          0          0         0   747859040
## 179                0          0          0         0   770007920
## 180                0          0          0         0   790387088
## 181                0          0          0         0   807138896
## 182                0          0          0         0   823333776
## 183                0          0          0         0   840074592
## 184                0          0          0         0   858966176
## 185                0          0          0         0   880393248
## 186                0          0          0         0   902355264
## 187                0          0          0         0   927259472
## 188                0          0          0         0   951526144
## 189                0          0          0         0   974191648
## 190                0          0          0         0   997403088
## 191                0          0          0         0  1019951344
## 192                0          0          0         0  1038930864
## 193                0          0          0         0  1057990992
## 194                0          0          0         0  1078117344
## 195                0          0          0         0  1100735216
## 196                0          0          0         0  1126361232
## 197                0          0          0         0  1155717200
## 198                0          0          0         0  1186230992
## 199                0          0          0         0  1215194912
## 200                0      54960          0    201520  1245708704
## 201                0     135568          0    340752  1280604640
## 202                0     227168          0    516624  1317823552
## 203                0     318768          0    703488  1354536832
## 204                0     410368          0    890352  1390814096
## 205                0     523952          0   1018592  1430484224
## 206                0     641200          0   1238432  1472627552
## 207                0     802416          0   1458272  1521915680
## 208                0     945312          0   1667120  1575934032
## 209                0    1110192      32976   1890624  1634221001
## 210                0    1278736      69616   2070160  1697273288
## 211                0    1450944     117248   2257024  1762513191
## 212                0    1623152     179536   2509840  1826256905
## 213                0    1832000     267472   2718688  1892549098
## 214                0    2066496     384720   3026464  1966749223
## 215                0    2311984     545936   3330576  2041917119
## 216                0    2583120     725472   3605376  2122761689
## 217                0    2879904     923328   4103680  2212767220
## 218                0    3187680    1157824   4741216  2306654450
## 219                0    3517440    1432624   5312800  2408830639
## 220                0    3880176    1861312   5811104  2522781318
## 221                0    4415120    2260688   6206816  2648992682
## 222                0    5199216    2707696   6895648  2781321352
## 223                0    6148192    3176688   7573488  2925477746
## 224                0    7188768    3660336   8265984  3080346488
## 225                0    8090112    4169632   8855888  3244679232
## 226                0    8940160    4686256   9475104  3428670680
## 227                0    9793872    5243184  10116304  3621373874
## 228                0   10523008    5825760  10746512  3843865396
## 229                0   11233824    6430320  11406032  4084579904
## 230                0   12014256    7060528  11995936  4352865713
## 231                0   12802016    7694400  12538208  4637233009
## 232                0   13703360    8577424  13040176  4941910616
## 233                0   14729280    9515408  13637408  5220216769
## 234                0   16209536   10387440  14263952  5497726485
## 235                0   17418656   11043296  14971104  5786132229
## 236                0   18788992   11417024  15769856  6080598825
## 237                0   20430464   14659664  16700512  6387888435
## 238                0   22159872   17843680  17554224  6694906247
## 239                0   23680432   20646640  18605792  7056708554
## 240                0   25288928   21500352  20067728  7375123360
## 241                0   26688576   22368720  21588288  7706497689
## 242            54960   28282416   23273728  23295712  8040705685
## 243           117248   29865264   24200720  25069088  8380178592
## 244           183200   31499408   25157024  26692240  8733416746
## 245           249152   33137216   26171952  28520576  9066426520
## 246           315104   34775024   27234512  30469824  9413848515
## 247           381056   36405504   28311728  32466704  9784254901
## 248           450672   38032320   29381616  34635792 10174434246
## 249           516624   39662800   30477152  37061360 10566758700
## 250           593568   41403200   31591008  39750736 10964658366
## 251           674176   43220544   32763488  42612320 11377285768
## 252           758448   45004912   34012912  45495888 11791258343
## 253           842720   47001792   35302640  48555328 12231044393
## 254           930656   49071952   36687632  51644080 12671844029
## 255          1014928   51274016   38123920  54938016 13137757657
## 256          1106528   53399136   39545552  58565376 13616561294
## 257          1205456   55330064   41183360  62251360 14098886754
## 258          1304384   57202368   42956736  66017952 14594191769
## 259          1406976   59228560   44916976  69725920 15072580769
## 260          1509568   61236432   46877216  73639072 15538671421
## 261          1612160   63453152   48987680  77555888 16025174631
## 262          1714752   65666208   51317984  81520336 16523833153
## 263          1817344   67875600   53640960  85587376 17016392882
## 264          1919936   70172928   55963936  89811968 17498920775
## 265          2031892   70172928   58316404  93973881 17976194427
## 266          2145131   70172928   60834446  98060513 18481174375
## 267          2266040   70172928   63673149 102339737 18971469004
##     Micronesia..country. Middle.East   Moldova  Mongolia Montenegro
## 1                      0           0         0         0          0
## 2                      0           0         0         0          0
## 3                      0           0         0         0          0
## 4                      0           0         0         0          0
## 5                      0           0         0         0          0
## 6                      0           0         0         0          0
## 7                      0           0         0         0          0
## 8                      0           0         0         0          0
## 9                      0           0         0         0          0
## 10                     0           0         0         0          0
## 11                     0           0         0         0          0
## 12                     0           0         0         0          0
## 13                     0           0         0         0          0
## 14                     0           0         0         0          0
## 15                     0           0         0         0          0
## 16                     0           0         0         0          0
## 17                     0           0         0         0          0
## 18                     0           0         0         0          0
## 19                     0           0         0         0          0
## 20                     0           0         0         0          0
## 21                     0           0         0         0          0
## 22                     0           0         0         0          0
## 23                     0           0         0         0          0
## 24                     0           0         0         0          0
## 25                     0           0         0         0          0
## 26                     0           0         0         0          0
## 27                     0           0         0         0          0
## 28                     0           0         0         0          0
## 29                     0           0         0         0          0
## 30                     0           0         0         0          0
## 31                     0           0         0         0          0
## 32                     0           0         0         0          0
## 33                     0           0         0         0          0
## 34                     0           0         0         0          0
## 35                     0           0         0         0          0
## 36                     0           0         0         0          0
## 37                     0           0         0         0          0
## 38                     0           0         0         0          0
## 39                     0           0         0         0          0
## 40                     0           0         0         0          0
## 41                     0           0         0         0          0
## 42                     0           0         0         0          0
## 43                     0           0         0         0          0
## 44                     0           0         0         0          0
## 45                     0           0         0         0          0
## 46                     0           0         0         0          0
## 47                     0           0         0         0          0
## 48                     0           0         0         0          0
## 49                     0           0         0         0          0
## 50                     0           0         0         0          0
## 51                     0           0         0         0          0
## 52                     0           0         0         0          0
## 53                     0           0         0         0          0
## 54                     0           0         0         0          0
## 55                     0           0         0         0          0
## 56                     0           0         0         0          0
## 57                     0           0         0         0          0
## 58                     0           0         0         0          0
## 59                     0           0         0         0          0
## 60                     0           0         0         0          0
## 61                     0           0         0         0          0
## 62                     0           0         0         0          0
## 63                     0           0         0         0          0
## 64                     0           0         0         0          0
## 65                     0           0         0         0          0
## 66                     0           0         0         0          0
## 67                     0           0         0         0          0
## 68                     0           0         0         0          0
## 69                     0           0         0         0          0
## 70                     0           0         0         0          0
## 71                     0           0         0         0          0
## 72                     0           0         0         0          0
## 73                     0           0         0         0          0
## 74                     0           0         0         0          0
## 75                     0           0         0         0          0
## 76                     0           0         0         0          0
## 77                     0           0         0         0          0
## 78                     0           0         0         0          0
## 79                     0           0         0         0          0
## 80                     0           0         0         0          0
## 81                     0           0         0         0          0
## 82                     0           0         0         0          0
## 83                     0           0         0         0          0
## 84                     0           0         0         0          0
## 85                     0           0         0         0          0
## 86                     0           0         0         0          0
## 87                     0           0         0         0          0
## 88                     0           0         0         0          0
## 89                     0           0         0         0          0
## 90                     0           0         0         0          0
## 91                     0           0         0         0          0
## 92                     0           0         0         0          0
## 93                     0           0         0         0          0
## 94                     0           0         0         0          0
## 95                     0           0         0         0          0
## 96                     0           0         0         0          0
## 97                     0           0         0         0          0
## 98                     0           0         0         0          0
## 99                     0           0         0         0          0
## 100                    0           0         0         0          0
## 101                    0           0         0         0          0
## 102                    0           0         0         0          0
## 103                    0           0         0         0          0
## 104                    0           0         0         0          0
## 105                    0           0         0         0          0
## 106                    0           0         0         0          0
## 107                    0           0         0         0          0
## 108                    0           0         0         0          0
## 109                    0           0         0         0          0
## 110                    0           0         0         0          0
## 111                    0           0         0         0          0
## 112                    0           0         0         0          0
## 113                    0           0         0         0          0
## 114                    0           0         0         0          0
## 115                    0      150224         0         0          0
## 116                    0      359072         0         0          0
## 117                    0      586240         0         0          0
## 118                    0      762112         0         0          0
## 119                    0     1029584         0         0          0
## 120                    0     1187136         0         0          0
## 121                    0     1384992         0         0          0
## 122                    0     1630480         0         0          0
## 123                    0     1868640         0         0          0
## 124                    0     2125120         0         0          0
## 125                    0     2476864         0         0          0
## 126                    0     2751664         0         0          0
## 127                    0     3198672         0         0          0
## 128                    0     3524768         0         0          0
## 129                    0     3649344         0         0          0
## 130                    0     3788576         0         0          0
## 131                    0     3971776         0         0          0
## 132                    0     4125664         0         0          0
## 133                    0     4286880         0         0          0
## 134                    0     4462752         0         0          0
## 135                    0     4656944         0         0          0
## 136                    0     4792512         0         0          0
## 137                    0     5038000         0         0          0
## 138                    0     5305472         0         0          0
## 139                    0     5708512         0         0          0
## 140                    0     6074912         0         0          0
## 141                    0     6477952         0         0          0
## 142                    0     6888320         0         0          0
## 143                    0     7313344         0         0          0
## 144                    0     7705392         0         0          0
## 145                    0     8079120         0         0          0
## 146                    0     8522464         0         0          0
## 147                    0     8837568         0         0          0
## 148                    0     9361520         0         0          0
## 149                    0    10032032         0         0          0
## 150                    0    11068944         0         0          0
## 151                    0    12017920         0         0          0
## 152                    0    13065824         0         0          0
## 153                    0    14271280         0         0          0
## 154                    0    15637952         0         0          0
## 155                    0    17169504         0         0          0
## 156                    0    18752352         0         0          0
## 157                    0    20631984         0         0          0
## 158                    0    22354064         0         0          0
## 159                    0    24310640         0         0          0
## 160                    0    26193936         0         0          0
## 161                    0    28557216         0         0          0
## 162                    0    30806912         0         0          0
## 163                    0    33697808         0         0          0
## 164                    0    36533744         0         0          0
## 165                    0    38970304         0         0          0
## 166                    0    41487472         0         0          0
## 167                    0    44678816         0         0          0
## 168                    0    48584640         0         0          0
## 169                    0    53842480         0         0          0
## 170                    0    60679504         0         0          0
## 171                    0    68776944         0         0          0
## 172                    0    79014160         0         0          0
## 173                    0    92061664         0         0          0
## 174                    0   108018384         0         0          0
## 175                    0   124586992         0         0          0
## 176                    0   142654176         0         0          0
## 177                    0   162769536         0         0          0
## 178                    0   183863184         0         0          0
## 179                    0   204806608         0         0          0
## 180                    0   227702944         0         0          0
## 181                    0   249983728         0         0          0
## 182                    0   274521536         0         0          0
## 183                    0   301734064         0         0          0
## 184                    0   334083520         0         0          0
## 185                    0   369770880         0         0          0
## 186                    0   409103920         0         0          0
## 187                    0   454768352         0         0          0
## 188                    0   500949408         0         0          0
## 189                    0   553073472         0         0          0
## 190                    0   598595008         0         0          0
## 191                    0   634601136         0         0          0
## 192                    0   682071920         0         0          0
## 193                    0   734511088         0         0          0
## 194                    0   802218144         0         0          0
## 195                    0   888377104         0         0          0
## 196                    0  1001184336         0         0          0
## 197                    0  1135253760         0         0          0
## 198                    0  1243880368         0         0          0
## 199                    0  1361597360         0         0          0
## 200                    0  1378693584         0    285792          0
## 201                    0  1404806912         0    578912          0
## 202                    0  1428087968         0    879360          0
## 203                    0  1455648576         0   1183472          0
## 204                    0  1488837088         0   1670784          0
## 205                    0  1539557840         0   2260688          0
## 206                    0  1599504544         0   2949520          0
## 207                    0  1662100320         0   3711632          0
## 208                    0  1731412208         0   4847472          0
## 209                    0  1802179946         0   6192160     613444
## 210                    0  1892455602         0   7485552    1283524
## 211                    0  1986939411         0   8877872    1985886
## 212                    0  2096234692         0  10849104    2706635
## 213                    0  2219827860         0  12450272    3508443
## 214                    0  2364596988         0  14494784    4416854
## 215                    0  2537392060         0  16451360    5351512
## 216                    0  2736343011         0  18404272    6277679
## 217                    0  2941881864         0  20529392    7213179
## 218                    0  3177839025         0  23009623    8213737
## 219                    0  3446301815         0  25691374    9251139
## 220                    0  3731661912         0  28537915   10606807
## 221                    0  4066093934         0  31570357   12067886
## 222                    0  4426931504         0  34846255   13437310
## 223                    0  4855439043         0  38318349   15073208
## 224                    0  5299163557         0  42059116   16716264
## 225                    0  5733617953         0  46113683   18430693
## 226                    0  6241636793         0  50503707   20200214
## 227                    0  6775937801         0  55464410   21921030
## 228                    0  7312205641         0  61228212   23844034
## 229                    0  7882233496         0  67505540   25935681
## 230                    0  8436663128         0  74360698   27992449
## 231                    0  8988308410         0  80975354   30230843
## 232                    0  9552166418         0  87687639   32287259
## 233                    0 10146255270         0  94656693   34501652
## 234                    0 10768782500         0 101081384   36836894
## 235                    0 11439674228         0 110079316   39219016
## 236                    0 12153270686         0 119674423   41706830
## 237                    0 12882883871         0 130156925   44178994
## 238                    0 13660026606         0 141649726   46737549
## 239                    0 14481709509         0 152108689   49290490
## 240                    0 15309183264         0 161998675   51841396
## 241                    0 16215423788         0 174119685   53645725
## 242                98928 17190925124  21080650 185113573   55561010
## 243               197856 18248802383  37051038 194376197   57228812
## 244               300448 19354139144  49441362 202303257   58851236
## 245               406704 20427119742  60846768 210202607   60565034
## 246               512960 21509962999  72533858 218225933   62571073
## 247               622880 22573316451  79835202 225914341   64726407
## 248               740128 23715831384  86279059 233601809   66995571
## 249               850048 24950588135  90963615 241137033   68560383
## 250               974624 26310847287  94536567 248623879   70298806
## 251              1143168 27690296821  98323156 256493803   72166390
## 252              1286064 29088200125 102374891 264756323   74162982
## 253              1428960 30577391247 106779159 272764199   76298183
## 254              1571856 32198107889 111392583 281334915   78631773
## 255              1692768 33882410934 116330337 289908645   80840692
## 256              1813680 35687146925 121360084 299314397   83222292
## 257              1952912 37489084913 126338638 311393141   85471988
## 258              2070160 39428477552 131529018 323409825   88219988
## 259              2231376 41444882020 136068530 336483839   90044660
## 260              2344960 43547146140 140899435 350303789   92624116
## 261              2465872 45704106288 145862730 371730279   95192580
## 262              2601440 48012211196 150628411 397919969   97526548
## 263              2744336 50289408635 155527770 436609311   99772580
## 264              2894560 52724475683 160271930 457409029  101981972
## 265              3058496 55234106667 165220672 477765393  104421155
## 266              3224310 57801288093 170421028 506446358  106994645
## 267              3401355 60473230861 175514617 536837014  109622459
##     Montserrat    Morocco Mozambique   Myanmar  Namibia   Nauru     Nepal
## 1            0          0          0         0        0       0         0
## 2            0          0          0         0        0       0         0
## 3            0          0          0         0        0       0         0
## 4            0          0          0         0        0       0         0
## 5            0          0          0         0        0       0         0
## 6            0          0          0         0        0       0         0
## 7            0          0          0         0        0       0         0
## 8            0          0          0         0        0       0         0
## 9            0          0          0         0        0       0         0
## 10           0          0          0         0        0       0         0
## 11           0          0          0         0        0       0         0
## 12           0          0          0         0        0       0         0
## 13           0          0          0         0        0       0         0
## 14           0          0          0         0        0       0         0
## 15           0          0          0         0        0       0         0
## 16           0          0          0         0        0       0         0
## 17           0          0          0         0        0       0         0
## 18           0          0          0         0        0       0         0
## 19           0          0          0         0        0       0         0
## 20           0          0          0         0        0       0         0
## 21           0          0          0         0        0       0         0
## 22           0          0          0         0        0       0         0
## 23           0          0          0         0        0       0         0
## 24           0          0          0         0        0       0         0
## 25           0          0          0         0        0       0         0
## 26           0          0          0         0        0       0         0
## 27           0          0          0         0        0       0         0
## 28           0          0          0         0        0       0         0
## 29           0          0          0         0        0       0         0
## 30           0          0          0         0        0       0         0
## 31           0          0          0         0        0       0         0
## 32           0          0          0         0        0       0         0
## 33           0          0          0         0        0       0         0
## 34           0          0          0         0        0       0         0
## 35           0          0          0         0        0       0         0
## 36           0          0          0         0        0       0         0
## 37           0          0          0         0        0       0         0
## 38           0          0          0         0        0       0         0
## 39           0          0          0         0        0       0         0
## 40           0          0          0         0        0       0         0
## 41           0          0          0         0        0       0         0
## 42           0          0          0         0        0       0         0
## 43           0          0          0         0        0       0         0
## 44           0          0          0         0        0       0         0
## 45           0          0          0         0        0       0         0
## 46           0          0          0         0        0       0         0
## 47           0          0          0         0        0       0         0
## 48           0          0          0         0        0       0         0
## 49           0          0          0         0        0       0         0
## 50           0          0          0         0        0       0         0
## 51           0          0          0         0        0       0         0
## 52           0          0          0         0        0       0         0
## 53           0          0          0         0        0       0         0
## 54           0          0          0         0        0       0         0
## 55           0          0          0         0        0       0         0
## 56           0          0          0         0        0       0         0
## 57           0          0          0         0        0       0         0
## 58           0          0          0         0        0       0         0
## 59           0          0          0         0        0       0         0
## 60           0          0          0         0        0       0         0
## 61           0          0          0         0        0       0         0
## 62           0          0          0         0        0       0         0
## 63           0          0          0         0        0       0         0
## 64           0          0          0         0        0       0         0
## 65           0          0          0         0        0       0         0
## 66           0          0          0         0        0       0         0
## 67           0          0          0         0        0       0         0
## 68           0          0          0         0        0       0         0
## 69           0          0          0         0        0       0         0
## 70           0          0          0         0        0       0         0
## 71           0          0          0         0        0       0         0
## 72           0          0          0         0        0       0         0
## 73           0          0          0         0        0       0         0
## 74           0          0          0         0        0       0         0
## 75           0          0          0         0        0       0         0
## 76           0          0          0         0        0       0         0
## 77           0          0          0         0        0       0         0
## 78           0          0          0         0        0       0         0
## 79           0          0          0         0        0       0         0
## 80           0          0          0         0        0       0         0
## 81           0          0          0         0        0       0         0
## 82           0          0          0         0        0       0         0
## 83           0          0          0         0        0       0         0
## 84           0          0          0         0        0       0         0
## 85           0          0          0         0        0       0         0
## 86           0          0          0         0        0       0         0
## 87           0          0          0         0        0       0         0
## 88           0          0          0         0        0       0         0
## 89           0          0          0         0        0       0         0
## 90           0          0          0         0        0       0         0
## 91           0          0          0         0        0       0         0
## 92           0          0          0         0        0       0         0
## 93           0          0          0         0        0       0         0
## 94           0          0          0         0        0       0         0
## 95           0          0          0         0        0       0         0
## 96           0          0          0         0        0       0         0
## 97           0          0          0         0        0       0         0
## 98           0          0          0         0        0       0         0
## 99           0          0          0         0        0       0         0
## 100          0          0          0         0        0       0         0
## 101          0          0          0         0        0       0         0
## 102          0          0          0         0        0       0         0
## 103          0          0          0         0        0       0         0
## 104          0          0          0         0        0       0         0
## 105          0          0          0         0        0       0         0
## 106          0          0          0         0        0       0         0
## 107          0          0          0         0        0       0         0
## 108          0          0          0         0        0       0         0
## 109          0          0          0         0        0       0         0
## 110          0          0          0         0        0       0         0
## 111          0          0          0         0        0       0         0
## 112          0          0          0         0        0       0         0
## 113          0          0          0         0        0       0         0
## 114          0          0          0         0        0       0         0
## 115          0          0          0         0        0       0         0
## 116          0          0          0         0        0       0         0
## 117          0          0          0         0        0       0         0
## 118          0          0          0         0        0       0         0
## 119          0          0          0         0        0       0         0
## 120          0          0          0         0        0       0         0
## 121          0          0          0         0        0       0         0
## 122          0          0          0         0        0       0         0
## 123          0          0          0         0        0       0         0
## 124          0          0          0         0        0       0         0
## 125          0          0          0         0        0       0         0
## 126          0          0          0         0        0       0         0
## 127          0          0          0         0        0       0         0
## 128          0          0          0         0        0       0         0
## 129          0          0          0         0        0       0         0
## 130          0          0          0         0        0       0         0
## 131          0          0          0         0        0       0         0
## 132          0          0          0         0        0       0         0
## 133          0          0          0         0        0       0         0
## 134          0          0          0         0        0       0         0
## 135          0          0          0         0        0       0         0
## 136          0          0          0         0        0       0         0
## 137          0          0          0         0        0       0         0
## 138          0          0          0         0        0       0         0
## 139          0          0          0         0        0       0         0
## 140          0          0          0         0        0       0         0
## 141          0          0          0         0        0       0         0
## 142          0          0          0         0        0       0         0
## 143          0          0          0         0        0       0         0
## 144          0          0          0         0        0       0         0
## 145          0          0          0         0        0       0         0
## 146          0          0          0         0        0       0         0
## 147          0          0          0         0        0       0         0
## 148          0          0          0         0        0       0         0
## 149          0          0          0         0        0       0         0
## 150          0          0          0         0        0       0         0
## 151          0          0          0         0        0       0         0
## 152          0          0          0         0        0       0         0
## 153          0          0          0         0        0       0         0
## 154          0          0          0         0        0       0         0
## 155          0          0          0         0        0       0         0
## 156          0          0          0         0        0       0         0
## 157          0          0          0         0        0       0         0
## 158          0          0          0         0        0       0         0
## 159          0          0          0         0        0       0         0
## 160          0          0          0         0        0       0         0
## 161          0          0          0         0        0       0         0
## 162          0          0          0         0        0       0         0
## 163          0          0          0         0        0       0         0
## 164          0          0          0         0        0       0         0
## 165          0          0          0         0        0       0         0
## 166          0          0          0         0        0       0         0
## 167          0          0          0         0        0       0         0
## 168          0          0          0         0        0       0         0
## 169          0          0          0         0        0       0         0
## 170          0          0          0         0        0       0         0
## 171          0          0          0         0        0       0         0
## 172          0          0          0         0        0       0         0
## 173          0          0          0         0        0       0         0
## 174          0          0          0         0        0       0         0
## 175          0          0          0         0        0       0         0
## 176          0          0          0         0        0       0         0
## 177          0          0      43968         0        0       0         0
## 178          0      29312      65952   3158368        0       0         0
## 179          0      62288      76944   6206816        0       0         0
## 180          0     102592      87936   9291904        0       0         0
## 181          0     194192      98928  12226768        0       0         0
## 182          0     344416     161216  15205600        0       0         0
## 183          0     520288     212512  18202752        0       0         0
## 184          0     710816     278464  21265856        0       0         0
## 185          0     945312     326096  24292320        0       0         0
## 186          0    1157824     377392  27403056        0       0         0
## 187          0    1527888     436016  30620048        0       0         0
## 188          0    1993216     476320  33708800        0       0         0
## 189          0    2311984     542272  36940448        0       0         0
## 190          0    2707696     608224  40113472        0       0         0
## 191          0    3096080     666848  43297488        0       0         0
## 192          0    3425840     696160  44323408        0       0         0
## 193          0    3781248     747456  44733776        0       0         0
## 194          0    4202608     802416  45041552        0       0         0
## 195          0    4726560     850048  45338336        0       0         0
## 196          0    5411728     905008  45345664        0       0         0
## 197          0    6243456     963632  45371312        0       0         0
## 198          0    7185104    1007600  45525200        0       0         0
## 199          0    8273312    1066224  45627792        0       0         0
## 200          0   10834448    1967568  46430208        0       0     25648
## 201          0   13761984    2898224  47346208        0       0     54960
## 202          0   17327056    3971776  48478384        0       0     84272
## 203          0   21500352    5052656  49782768        0       0    120912
## 204          0   25087408    6195824  51244704        0       0    161216
## 205          0   28645152    7569824  52666336        0       0    205184
## 206          0   32166256    9123360  54322464        0       0    252816
## 207          0   35222032   10893072  56421936        0       0    307776
## 208          0   38490320   12710416  58832848        0       0    366400
## 209          0   41859179   14504914  61610011        0       0    432352
## 210          0   45495184   16387319  64324857        0       0    512960
## 211          0   49266548   19017209  66915157        0       0    593568
## 212       3664   52341485   21002384  69794853        0       0    681504
## 213       7328   56295544   22661492  72428763        0       0    780432
## 214      14656   60710584   24800525  75286148        0   29312    930656
## 215      18320   64964973   26803842  78011630        0   62288   1110192
## 216      25648   70424520   28928041  80817689        0   95264   1300720
## 217      32976   75832771   30799334  84433522        0  142896   1513232
## 218      40304   81452999   33575488  87360345        0  190528   1766048
## 219      47632   87270400   36813245  90572930        0  256480   2165424
## 220      62288   94552421   39794137  95185223        0  322432   2392592
## 221      76944  102742748   43405147 100284708        0  410368   2590448
## 222      91600  110778845   46700845 105179010        0  487312   2857920
## 223     106256  120404740   50259786 109285581        0  571584   3279280
## 224     120912  131524230   53405290 113956498        0  670512   3704155
## 225     131904  142617481   56287729 118539419        0  773104   4055870
## 226     142896  154145385   58843149 123432210        0  875696   4337709
## 227     168544  166824967   61549588 128597864        0  989280   4674107
## 228     194192  179878372   64415437 133743938        0 1102864   5003080
## 229     219840  195809488   67050005 138829962        0 1216448   5515440
## 230     234496  211724572   70248485 144338753        0 1341024   6056742
## 231     252816  227551322   72727507 149961724        0 1465600   6509937
## 232     271136  244579056   75251438 155541249        0 1590176   6952298
## 233     293120  262342604   77205918 161295016        0 1714752   7444716
## 234     315104  280125502   78716781 167843563        0 1839328   8146140
## 235     340752  297959043   79851725 174519080        0 1963904   8822158
## 236     370064  316807096   80828864 181275426        0 2125120   9519172
## 237     399376  336889425   81805592 186218823        0 2282672  10379852
## 238     428688  358028469   82811785 190305504        0 2440224  11355885
## 239     458000  380907828   83846316 194730803        0 2597776  12249449
## 240     487312  404409873   84861470 198965602        0 2722352  12873297
## 241     516624  429336468   85876575 203102267  1055232 2846928  13821176
## 242     545936  455322496   86877892 207943861  2205728 2967840  15129612
## 243     575248  483484572   87953130 213245688  3594384 3081424  16570119
## 244     608224  513067988   89010379 219441865  5166240 3191344  18237248
## 245     641200  543349857   90118887 226348203  6785728 3297600  20240638
## 246     677840  574415478   91143310 233551782  8507808 3400192  22695931
## 247     710816  606099226   92247829 240996267 10277520 3502784  25455475
## 248     740128  637915678   93360220 249033326 12109520 3601712  27678774
## 249     769440  670802807   94527439 257963364 13772976 3693312  30868545
## 250     795088  704379723   95850211 268005862 15414448 3777584  33906562
## 251     820736  741805585   97404081 276686107 17429648 3858192  37143342
## 252     857376  779879541   98942691 285839905 19188368 3935136  39738427
## 253     894016  817374951  100799371 295620077 21060672 4001088  42548453
## 254     930656  860737111  102663917 307991306 23020912 4067040  45186516
## 255     967296  906262215  104434654 319523948 25329232 4129328  48238115
## 256    1003936  953653011  106349455 332300716 27659536 4173296  50767514
## 257    1044240 1003883432  108536593 345095780 30019152 4217264  53345743
## 258    1091872 1056744456  110716515 354810930 33342400 4261232  56730028
## 259    1139504 1109334804  113156434 364955446 36409168 4301536  60921083
## 260    1205456 1165534788  115790329 377398075 39505248 4345504  65815088
## 261    1245760 1223232213  118897679 391619558 42270064 4385808  71091548
## 262    1289728 1285715529  121878453 402569792 45634184 4426112  76613265
## 263    1341024 1344545965  125752229 415289812 48235339 4470080  82898009
## 264    1388656 1404170789  134005854 436750135 51958750 4517712  90560020
## 265    1438382 1465214016  143024297 460190802 55877223 4569692  98145451
## 266    1489072 1526499744  152830723 484208427 59876068 4622267 106671407
## 267    1539754 1589225046  163105098 484208427 63941325 4678403 115699603
##     Netherlands New.Caledonia New.Zealand Nicaragua    Niger    Nigeria
## 1             0             0           0         0        0          0
## 2             0             0           0         0        0          0
## 3             0             0           0         0        0          0
## 4             0             0           0         0        0          0
## 5             0             0           0         0        0          0
## 6             0             0           0         0        0          0
## 7             0             0           0         0        0          0
## 8             0             0           0         0        0          0
## 9             0             0           0         0        0          0
## 10            0             0           0         0        0          0
## 11            0             0           0         0        0          0
## 12            0             0           0         0        0          0
## 13            0             0           0         0        0          0
## 14            0             0           0         0        0          0
## 15            0             0           0         0        0          0
## 16            0             0           0         0        0          0
## 17            0             0           0         0        0          0
## 18            0             0           0         0        0          0
## 19            0             0           0         0        0          0
## 20            0             0           0         0        0          0
## 21            0             0           0         0        0          0
## 22            0             0           0         0        0          0
## 23            0             0           0         0        0          0
## 24            0             0           0         0        0          0
## 25            0             0           0         0        0          0
## 26            0             0           0         0        0          0
## 27            0             0           0         0        0          0
## 28            0             0           0         0        0          0
## 29            0             0           0         0        0          0
## 30            0             0           0         0        0          0
## 31            0             0           0         0        0          0
## 32            0             0           0         0        0          0
## 33            0             0           0         0        0          0
## 34            0             0           0         0        0          0
## 35            0             0           0         0        0          0
## 36            0             0           0         0        0          0
## 37            0             0           0         0        0          0
## 38            0             0           0         0        0          0
## 39            0             0           0         0        0          0
## 40            0             0           0         0        0          0
## 41            0             0           0         0        0          0
## 42            0             0           0         0        0          0
## 43            0             0           0         0        0          0
## 44            0             0           0         0        0          0
## 45            0             0           0         0        0          0
## 46            0             0           0         0        0          0
## 47            0             0           0         0        0          0
## 48            0             0           0         0        0          0
## 49            0             0           0         0        0          0
## 50            0             0           0         0        0          0
## 51            0             0           0         0        0          0
## 52            0             0           0         0        0          0
## 53            0             0           0         0        0          0
## 54            0             0           0         0        0          0
## 55            0             0           0         0        0          0
## 56            0             0           0         0        0          0
## 57            0             0           0         0        0          0
## 58            0             0           0         0        0          0
## 59            0             0           0         0        0          0
## 60            0             0           0         0        0          0
## 61            0             0           0         0        0          0
## 62            0             0           0         0        0          0
## 63            0             0           0         0        0          0
## 64            0             0           0         0        0          0
## 65            0             0           0         0        0          0
## 66            0             0           0         0        0          0
## 67            0             0           0         0        0          0
## 68            0             0           0         0        0          0
## 69            0             0           0         0        0          0
## 70            0             0           0         0        0          0
## 71            0             0           0         0        0          0
## 72            0             0           0         0        0          0
## 73            0             0           0         0        0          0
## 74            0             0           0         0        0          0
## 75            0             0           0         0        0          0
## 76            0             0           0         0        0          0
## 77            0             0           0         0        0          0
## 78            0             0           0         0        0          0
## 79            0             0           0         0        0          0
## 80            0             0           0         0        0          0
## 81            0             0           0         0        0          0
## 82            0             0           0         0        0          0
## 83            0             0           0         0        0          0
## 84            0             0           0         0        0          0
## 85            0             0           0         0        0          0
## 86            0             0           0         0        0          0
## 87            0             0           0         0        0          0
## 88            0             0           0         0        0          0
## 89            0             0           0         0        0          0
## 90            0             0           0         0        0          0
## 91            0             0           0         0        0          0
## 92            0             0           0         0        0          0
## 93            0             0           0         0        0          0
## 94            0             0           0         0        0          0
## 95            0             0           0         0        0          0
## 96      2868912             0           0         0        0          0
## 97      6738096             0           0         0        0          0
## 98     10387440             0           0         0        0          0
## 99     13718016             0           0         0        0          0
## 100    16854400             0           0         0        0          0
## 101    19972464             0           0         0        0          0
## 102    23735392             0           0         0        0          0
## 103    27905024             0           0         0        0          0
## 104    33851696             0           0         0        0          0
## 105    38501312             0           0         0        0          0
## 106    43224208             0           0         0        0          0
## 107    47441472             0           0         0        0          0
## 108    51149440             0           0         0        0          0
## 109    54674208             0           0         0        0          0
## 110    59470384             0           0         0        0          0
## 111    63874512             0           0         0        0          0
## 112    69546384             0           0         0        0          0
## 113    73631744             0           0         0        0          0
## 114    77035600             0           0         0        0          0
## 115    80882800             0           0         0        0          0
## 116    85100064             0           0         0        0          0
## 117    89141456             0           0         0        0          0
## 118    93380704             0           0         0        0          0
## 119    97751856             0           0         0        0          0
## 120   102694592             0           0         0        0          0
## 121   107673968             0           0         0        0          0
## 122   113005088             0           0         0        0          0
## 123   118145680             0           0         0        0          0
## 124   122886896             0           0         0        0          0
## 125   128305952             0           0         0        0          0
## 126   134516432             0           0         0        0          0
## 127   140825840             0           0         0        0          0
## 128   147512640             0      355408         0        0          0
## 129   154723392             0      861040         0        0          0
## 130   162696256             0     1516896         0        0          0
## 131   170724080             0     2253360         0        0          0
## 132   178854496             0     3081424         0        0          0
## 133   187864272             0     4008416         0        0          0
## 134   196881376             0     5067312         0        0          0
## 135   206301520             0     6195824         0        0          0
## 136   215919520             0     7375632         0        0          0
## 137   225706064             0     8614064         0        0          0
## 138   236566160             0     9977072         0        0          0
## 139   247177104             0    11288784         0        0          0
## 140   257461952             0    12710416         0        0          0
## 141   269369952             0    14201664         0        0          0
## 142   280691712             0    15703904         0        0          0
## 143   292152704             0    17246448         0        0          0
## 144   303771248             0    18854944         0        0          0
## 145   315397120             0    20478096         0        0          0
## 146   327891360             0    22247808         0        0          0
## 147   340993824             0    24123776         0        0          0
## 148   353927744             0    26146304         0        0          0
## 149   367206080             0    28322720         0        0          0
## 150   381840096             0    30762944         0        0          0
## 151   396151680             0    33503616         0        0          0
## 152   410452272             0    36544736         0        0          0
## 153   425749472             0    39714096         0        0          0
## 154   441915040             0    43147264         0        0          0
## 155   458509296             0    46686688         0        0          0
## 156   476565488             0    50548544         0        0          0
## 157   495141968             0    54633904         0        0          0
## 158   514062864             0    58785216         0        0          0
## 159   533980368             0    63050112         0        0          0
## 160   554813872             0    67952544         0        0          0
## 161   576893136             0    72561856         0        0          0
## 162   601815664             0    77423984         0        0          0
## 163   629365280             0    81637584         0        0          0
## 164   655189152             0    86719552         0        0          0
## 165   679723296             0    91651296         0        0      18320
## 166   702121328             0    96689296         0        0      84272
## 167   710775696             0   101305936         0        0     307776
## 168   725303456             0   105849296         0        0     707152
## 169   747283792             0   109978624         0        0    1077216
## 170   769454656             0   113536368         0        0    1564528
## 171   792688080             0   117035488         0        0    2136112
## 172   819959232             0   120596896         0        0    2440224
## 173   847157104             0   124433104         0        0    2912880
## 174   877751504             0   128423200         0        0    3455152
## 175   911343056             0   132512224         0        0    4100016
## 176   945671072             0   136784448         0        0    4975712
## 177   983637440             0   141280176         0        0    5943008
## 178  1021644112             0   145995744         0        0    6910304
## 179  1062911744             0   150890848         0        0    7840960
## 180  1103692064             0   155756640         0        0    8778944
## 181  1148649344             0   159995888         0        0    9661968
## 182  1190067200             0   163535312         0        0   10339808
## 183  1228638128             0   167082064         0        0   10973680
## 184  1267267680             0   171064832         0        0   11673504
## 185  1304534224             0   175216144         0        0   12369664
## 186  1344427856             0   179393104         0        0   13157424
## 187  1388428832             0   183775248         0        0   14135712
## 188  1431737312             0   188021824         0        0   15110336
## 189  1472440688             0   192484576         0        0   15931072
## 190  1505878352             0   197244112         0        0   16766464
## 191  1543005664             0   202245472         0        0   17755744
## 192  1577601152             0   207342096         0        0   18997840
## 193  1612530064             0   212713520      7328        0   20360848
## 194  1635866080             0   218183872     10992        0   22016976
## 195  1650518416             0   223804448     18320        0   23398304
## 196  1681622112             0   229337088     21984        0   25036112
## 197  1726227648             0   234789120     29312        0   26596976
## 198  1773493248             0   240292448     36640        0   28234784
## 199  1823994160             0   245902032     43968        0   29718704
## 200  1875282832        219840   254472128    234496        0   31975728
## 201  1930253824        501968   262642848    436016        0   33661168
## 202  1984972000        974624   271964064    710816        0   35841248
## 203  2040239776       1374000   280515840    996608        0   38277808
## 204  2098636608       1894288   289584240   1311712        0   40849936
## 205  2159627552       2594112   298978736   1703760        0   43546640
## 206  2224711184       3759264   308655360   2081152        0   46558448
## 207  2289124304       4825488   318962192   2498848        0   49742464
## 208  2355820096       5565616   329144448   3099744    25648   53465088
## 209  2422938098       6155520   339463678   3579579    47632   57029655
## 210  2496375698       7016560   350995453   4110741    76944   60432827
## 211  2572194481       7903248   362750585   4671184   131904   64542379
## 212  2655476387       8467504   373948877   5330526   197856   68717378
## 213  2746620969       9086720   386165405   6173038   285792   74061014
## 214  2843397574      10185920   399257361   7121776   381056   81327716
## 215  2943801153      11417024   412942648   7901941   472656   93077846
## 216  3047358663      12926592   426942920   8861582   608165  105971085
## 217  3154040823      14399520   440569701   9942075   739979  118795569
## 218  3267486369      16238848   454042803  11172763   901106  125421427
## 219  3383288433      17796048   468299852  12458382  1091545  137521331
## 220  3525091735      20188640   482479838  13861188  1307602  159041290
## 221  3665757889      22606880   497528843  15366617  1538315  191292807
## 222  3823253284      24310640   513718441  16970973  1791013  232680410
## 223  3988513172      26908208   531918786  18798537  2120475  282212757
## 224  4148498371      29688917   550678768  20746834  2409842  344448251
## 225  4301023865      32216839   568949080  22673385  2743207  391799924
## 226  4470154751      34605261   588197603  24895559  3076277  446989504
## 227  4633760510      36744233   608511032  27728670  3442118  497494146
## 228  4803553667      38285517   626535059  30356131  3858896  545717072
## 229  4990560822      39925389   643029503  32065388  4337911  615902660
## 230  5167192739      41923993   660508390  34087731  4908085  683937843
## 231  5331302660      43314317   677069366  36222585  5591872  749748351
## 232  5464789893      44576103   695339619  38333287  6337743  815141925
## 233  5602147360      45727300   713337725  40329974  7299584  874847172
## 234  5746220367      46929453   732674356  42176008  8290532  944253054
## 235  5893200536      48380418   754532333  44160844  9284938 1013889004
## 236  6037215086      49781240   777478326  46416385 10183876 1087081178
## 237  6188695611      51235728   801643610  48847369 11181536 1146105609
## 238  6334298560      52736967   827092961  51087395 12168562 1216526955
## 239  6495963023      54376471   852546178  52555711 13206720 1258646342
## 240  6658403859      55953305   877999747  54599657 13937583 1297503546
## 241  6829223684      57711293   904117819  56587548 14657441 1339432665
## 242  6999878571      59286043   932230388  58961197 15354646 1385697781
## 243  7170674797      61113569   959937357  61244601 16132440 1430511156
## 244  7342073196      63083951   987826114  63762480 16902889 1465444882
## 245  7515105903      65148188  1015979550  66517328 17709959 1501020179
## 246  7697579101      67333291  1045354778  69364692 18608611 1540420791
## 247  7872871483      69151948  1076710867  72478293 19514572 1582481915
## 248  8049273644      70961964  1106645300  75870154 20468147 1620069670
## 249  8220264921      73017468  1138173867  79468574 21418040 1660088865
## 250  8392200722      75239027  1170533025  83189635 22110743 1735848822
## 251  8569280156      77116705  1205115692  87111672 22762380 1821283911
## 252  8745655055      79510116  1239884410  91102501 23457200 1914679979
## 253  8925479254      82236774  1276377502  95437766 24210561 2015985614
## 254  9106932569      84752901  1312442420  99816028 25018799 2119973271
## 255  9284463451      87561945  1350089994 104085761 25727276 2225679106
## 256  9457200153      90267938  1387610074 108499923 26413552 2324140740
## 257  9629800614      93195948  1424252121 113050358 27130457 2418596745
## 258  9805319833      96044939  1461907852 117415614 27933513 2513529935
## 259  9975500246      99000148  1496714551 121853133 28895814 2589070654
## 260 10157679881     102520705  1531725250 126322122 30064979 2679386011
## 261 10326798581     106148727  1566054066 131123773 31382828 2773611423
## 262 10491747325     109760939  1602023329 135672613 33239277 2870178239
## 263 10656504601     113986542  1637237794 140148625 35174325 2966052554
## 264 10813851663     118261407  1672848198 144929803 37297000 3060037913
## 265 10978881540     122710478  1708685306 149998381 39386385 3163862456
## 266 11144403609     127943317  1743148237 155298212 41620891 3265434282
## 267 11308449554     133507792  1779162164 160721077 44106013 3372735176
##       Niue North.Korea     Norway       Oman   Pakistan    Palau Palestine
## 1        0           0          0          0          0        0         0
## 2        0           0          0          0          0        0         0
## 3        0           0          0          0          0        0         0
## 4        0           0          0          0          0        0         0
## 5        0           0          0          0          0        0         0
## 6        0           0          0          0          0        0         0
## 7        0           0          0          0          0        0         0
## 8        0           0          0          0          0        0         0
## 9        0           0          0          0          0        0         0
## 10       0           0          0          0          0        0         0
## 11       0           0          0          0          0        0         0
## 12       0           0          0          0          0        0         0
## 13       0           0          0          0          0        0         0
## 14       0           0          0          0          0        0         0
## 15       0           0          0          0          0        0         0
## 16       0           0          0          0          0        0         0
## 17       0           0          0          0          0        0         0
## 18       0           0          0          0          0        0         0
## 19       0           0          0          0          0        0         0
## 20       0           0          0          0          0        0         0
## 21       0           0          0          0          0        0         0
## 22       0           0          0          0          0        0         0
## 23       0           0          0          0          0        0         0
## 24       0           0          0          0          0        0         0
## 25       0           0          0          0          0        0         0
## 26       0           0          0          0          0        0         0
## 27       0           0          0          0          0        0         0
## 28       0           0          0          0          0        0         0
## 29       0           0          0          0          0        0         0
## 30       0           0          0          0          0        0         0
## 31       0           0          0          0          0        0         0
## 32       0           0          0          0          0        0         0
## 33       0           0          0          0          0        0         0
## 34       0           0          0          0          0        0         0
## 35       0           0          0          0          0        0         0
## 36       0           0          0          0          0        0         0
## 37       0           0          0          0          0        0         0
## 38       0           0          0          0          0        0         0
## 39       0           0          0          0          0        0         0
## 40       0           0          0          0          0        0         0
## 41       0           0          0          0          0        0         0
## 42       0           0          0          0          0        0         0
## 43       0           0          0          0          0        0         0
## 44       0           0          0          0          0        0         0
## 45       0           0          0          0          0        0         0
## 46       0           0          0          0          0        0         0
## 47       0           0          0          0          0        0         0
## 48       0           0          0          0          0        0         0
## 49       0           0          0          0          0        0         0
## 50       0           0          0          0          0        0         0
## 51       0           0          0          0          0        0         0
## 52       0           0          0          0          0        0         0
## 53       0           0          0          0          0        0         0
## 54       0           0          0          0          0        0         0
## 55       0           0          0          0          0        0         0
## 56       0           0          0          0          0        0         0
## 57       0           0          0          0          0        0         0
## 58       0           0          0          0          0        0         0
## 59       0           0          0          0          0        0         0
## 60       0           0          0          0          0        0         0
## 61       0           0          0          0          0        0         0
## 62       0           0          0          0          0        0         0
## 63       0           0          0          0          0        0         0
## 64       0           0          0          0          0        0         0
## 65       0           0          0          0          0        0         0
## 66       0           0          0          0          0        0         0
## 67       0           0          0          0          0        0         0
## 68       0           0          0          0          0        0         0
## 69       0           0          0          0          0        0         0
## 70       0           0          0          0          0        0         0
## 71       0           0          0          0          0        0         0
## 72       0           0          0          0          0        0         0
## 73       0           0          0          0          0        0         0
## 74       0           0          0          0          0        0         0
## 75       0           0          0          0          0        0         0
## 76       0           0          0          0          0        0         0
## 77       0           0          0          0          0        0         0
## 78       0           0          0          0          0        0         0
## 79       0           0      10992          0          0        0         0
## 80       0           0      18320          0          0        0         0
## 81       0           0      21984          0          0        0         0
## 82       0           0      21984          0          0        0         0
## 83       0           0      21984          0          0        0         0
## 84       0           0      21984          0          0        0         0
## 85       0           0      36640          0          0        0         0
## 86       0           0      54960          0          0        0         0
## 87       0           0      80608          0          0        0         0
## 88       0           0     131904          0          0        0         0
## 89       0           0     172208          0          0        0         0
## 90       0           0     216176          0          0        0         0
## 91       0           0     274800          0          0        0         0
## 92       0           0     348080          0          0        0         0
## 93       0           0     410368          0          0        0         0
## 94       0           0     476320          0          0        0         0
## 95       0           0     575248          0          0        0         0
## 96       0           0     674176          0          0        0         0
## 97       0           0     776768          0          0        0         0
## 98       0           0     908672          0          0        0         0
## 99       0           0    1014928          0          0        0         0
## 100      0           0    1154160          0          0        0         0
## 101      0           0    1304384          0          0        0         0
## 102      0           0    1454608          0          0        0         0
## 103      0           0    1619488          0          0        0         0
## 104      0           0    1853984          0          0        0         0
## 105      0           0    2110464          0          0        0         0
## 106      0           0    2414576          0          0        0         0
## 107      0           0    2718688          0          0        0         0
## 108      0           0    2986160          0          0        0         0
## 109      0           0    3312256          0          0        0         0
## 110      0           0    3645680          0          0        0         0
## 111      0           0    4074368          0          0        0         0
## 112      0           0    4444432          0          0        0         0
## 113      0           0    4807168          0          0        0         0
## 114      0           0    5287152          0          0        0         0
## 115      0           0    5759808          0          0        0         0
## 116      0           0    6280096          0          0        0         0
## 117      0           0    6899312          0          0        0         0
## 118      0           0    7533184          0          0        0         0
## 119      0           0    8086448          0          0        0         0
## 120      0           0    8716656          0          0        0         0
## 121      0           0    9328544          0          0        0         0
## 122      0           0    9984400          0          0        0         0
## 123      0           0   10643920          0          0        0         0
## 124      0           0   11460992          0          0        0         0
## 125      0           0   12486912          0          0        0         0
## 126      0           0   13391920          0          0        0         0
## 127      0           0   14612032          0          0        0         0
## 128      0           0   15700240          0          0        0         0
## 129      0           0   16843408          0          0        0         0
## 130      0           0   18092832          0          0        0         0
## 131      0           0   19386224          0          0        0         0
## 132      0           0   20800528          0          0        0         0
## 133      0           0   22324752          0          0        0         0
## 134      0           0   23885616          0          0        0         0
## 135      0           0   25669984          0          0        0         0
## 136      0           0   27414048          0          0        0         0
## 137      0           0   29095824          0          0        0         0
## 138      0           0   31041408          0          0        0         0
## 139      0           0   33261792          0          0        0         0
## 140      0           0   35339280          0          0        0         0
## 141      0           0   37753856          0          0        0         0
## 142      0           0   40219728          0          0        0         0
## 143      0           0   42681936          0          0        0         0
## 144      0           0   45587488          0          0        0         0
## 145      0           0   48646928          0          0        0         0
## 146      0           0   51772320          0          0        0         0
## 147      0           0   55157856          0          0        0         0
## 148      0           0   58543392          0          0        0         0
## 149      0           0   62592112          0          0        0         0
## 150      0           0   66747088          0          0        0         0
## 151      0           0   70641920          0          0        0         0
## 152      0           0   74884832          0          0        0         0
## 153      0           0   79124080          0          0        0         0
## 154      0           0   83282720          0          0        0         0
## 155      0           0   87430368          0          0        0         0
## 156      0           0   91654960          0          0        0         0
## 157      0           0   96436480          0          0        0         0
## 158      0           0  102152320          0          0        0         0
## 159      0           0  107915792          0          0        0         0
## 160      0           0  113855136          0          0        0         0
## 161      0           0  119933712          0          0        0         0
## 162      0           0  126811040          0          0        0         0
## 163      0           0  133728672          0          0        0         0
## 164      0           0  141437728          0          0        0         0
## 165      0           0  149886912          0          0        0         0
## 166      0           0  157782832          0          0        0         0
## 167      0           0  161278288          0          0        0         0
## 168      0           0  165730048          0          0        0         0
## 169      0           0  171020864          0          0        0         0
## 170      0           0  176322672          0          0        0         0
## 171      0           0  179697216          0          0        0         0
## 172      0           0  186178832          0          0        0         0
## 173      0           0  192971888          0          0        0         0
## 174      0           0  200699264          0          0        0         0
## 175      0           0  208294736          0          0        0         0
## 176      0           0  214655440          0          0        0         0
## 177      0           0  223188896          0          0        0         0
## 178      0           0  231641744          0          0        0         0
## 179      0           0  241160816          0          0        0         0
## 180      0           0  249888464          0          0        0         0
## 181      0           0  257974912          0          0        0         0
## 182      0           0  266618288          0          0        0         0
## 183      0           0  275796608          0          0        0         0
## 184      0           0  285282704          0          0        0         0
## 185      0           0  295065584          0          0        0         0
## 186      0           0  305507984          0          0        0         0
## 187      0           0  317269424          0          0        0         0
## 188      0           0  327748464          0          0        0         0
## 189      0           0  340264688          0          0        0         0
## 190      0           0  346775616          0          0        0         0
## 191      0           0  351590112          0          0        0         0
## 192      0           0  356217744          0          0        0         0
## 193      0           0  361662448          0          0        0         0
## 194      0           0  366542896          0          0        0         0
## 195      0       65952  370554976          0          0        0         0
## 196      0      139232  377630160          0          0        0         0
## 197      0      212512  388259424          0          0        0         0
## 198      0     1615824  399244096          0          0        0         0
## 199      0     3396528  409653520          0          0        0         0
## 200      0     4176960  418088048          0          0        0         0
## 201      0     5173568  427566816          0          0        0         0
## 202      0     6063920  437254432          0          0        0         0
## 203      0     7800656  447040976          0          0        0         0
## 204      0    12589504  456926448          0          0        0         0
## 205      0    19935824  468343472          0          0    10992         0
## 206      0    28901632  480299104          0          0    21984         0
## 207      0    40194080  491661168          0          0    36640         0
## 208      0    55832032  502851024          0          0    51296         0
## 209      0    75697782  514659184          0    9921057    65952         0
## 210      0    99486221  527745990          0   21847496    80608         0
## 211      0   125912828  541081474          0   34197073   131904         0
## 212      0   156600222  555141864          0   47766959   183200         0
## 213      0   189426768  570107144          0   63367192   238160         0
## 214      0   225044955  586277463      10992   79406163   296784         0
## 215      0   269267075  602667385      36640   96235772   362736         0
## 216      0   316866988  622207456      65952  113361552   428688         0
## 217      0   369259026  641511693     201520  131537492   501968         0
## 218      0   428528006  662625382     362736  152379337   578912         0
## 219      0   492607372  684819148     597232  172592746   710816         0
## 220   3664   566083689  712797895     831728  193097116   846384         0
## 221   7328   673536703  739964095    2923872  212537756  1011264         0
## 222  10992   763041602  769359448    5012352  231440804  1183472         0
## 223  14656   860366943  799851725    7122816  251449281  1359344         0
## 224  18320   961978450  827520624    9456784  272836679  1553536         0
## 225  21984  1069602204  857165652   16707840  296024528  1747728         0
## 226  25648  1179633067  886456683   25028784  318813053  1861312         0
## 227  29312  1293298248  917500647   33529264  343132927  2044512         0
## 228  32976  1401511173  952264748   41318928  369183483  2154432         0
## 229  36640  1511774162  986480368   49035312  397317938  2279008         0
## 230  40304  1625856352 1024504010   55077248  429249488  2436560         0
## 231  43968  1740251296 1064803546   61089872  463482321  2594112         0
## 232  47632  1857143393 1105825719   66820368  500671958  2751664         0
## 233  51296  1982306537 1143298083   74346224  540694147  2909216         0
## 234  54960  2116968168 1183727759   82399696  583251495  3066768         0
## 235  58624  2261252862 1224414912   91018242  630065041  3227984         0
## 236  62288  2418088155 1271460524  100843138  679123663  3389200         0
## 237  65952  2593706813 1312142151  110244913  732112201  3550416         0
## 238  69616  2794514943 1354596897  120761489  789719543  3733616         0
## 239  73280  3007586463 1403944062  130747186  850036159  3960784         0
## 240  80608  3129986447 1439648450  142042885  917864640  4195280    861040
## 241  87936  3247213020 1473717784  153720848  985342481  4429776   1744064
## 242  95264  3350175613 1508549677  165705459 1057357503  4664272   2660064
## 243 102592  3445044140 1545081240  179062095 1134534074  4898768   3594384
## 244 109920  3531763639 1583527197  194243788 1218553391  5133264   4561680
## 245 117248  3613023486 1622004417  210013826 1302168474  5367760   5506992
## 246 124576  3684632067 1663598251  224980779 1395705897  5602256   6543904
## 247 131904  3749764673 1705297161  240324168 1489493461  5840416   7408608
## 248 139232  3808533505 1747253824  256730232 1586235541  6078576   8870544
## 249 146560  3872632890 1789963312  277288177 1685626013  6320400  10237216
## 250 153888  3941798916 1832179197  299027862 1791044388  6569552  11897008
## 251 161216  4013463870 1875739041  319133825 1898170580  6822368  13245360
## 252 168544  4082106771 1918406088  344368220 2011074225  7071520  14399520
## 253 172208  4152243264 1962327870  376395705 2128564942  7324336  15678256
## 254 175872  4223965251 2006664881  403986913 2258524417  7577152  17872992
## 255 179536  4298883957 2050225589  433453509 2393280653  7837296  20613664
## 256 183200  4375056808 2094148937  472499886 2537007353  8101104  22878016
## 257 186864  4438536025 2140000827  515631210 2692851519  8361248  25200992
## 258 194192  4508864151 2184903849  557741912 2848207764  8614064  27252832
## 259 197856  4578737952 2228109253  598256519 3003426812  8859552  29341312
## 260 201520  4644425175 2273932530  645006604 3161191553  9112368  31374832
## 261 208848  4691663245 2318915087  698269713 3319533522  9365184  33620864
## 262 216176  4739892544 2363475907  756612679 3479261119  9618000  35819264
## 263 223504  4775049204 2407778561  817269908 3639856816  9874480  38255824
## 264 234496  4814703580 2451731224  877643787 3802284444 10134624  41091760
## 265 246491  4853107486 2496394959  941864909 3974374439 10418513  43645821
## 266 258624  4908032713 2540426581 1006307031 4161779858 10705654  45986350
## 267 271579  4966052271 2585216441 1071493410 4360589827 11012245  48304340
##        Panama Papua.New.Guinea  Paraguay       Peru Philippines
## 1           0                0         0          0           0
## 2           0                0         0          0           0
## 3           0                0         0          0           0
## 4           0                0         0          0           0
## 5           0                0         0          0           0
## 6           0                0         0          0           0
## 7           0                0         0          0           0
## 8           0                0         0          0           0
## 9           0                0         0          0           0
## 10          0                0         0          0           0
## 11          0                0         0          0           0
## 12          0                0         0          0           0
## 13          0                0         0          0           0
## 14          0                0         0          0           0
## 15          0                0         0          0           0
## 16          0                0         0          0           0
## 17          0                0         0          0           0
## 18          0                0         0          0           0
## 19          0                0         0          0           0
## 20          0                0         0          0           0
## 21          0                0         0          0           0
## 22          0                0         0          0           0
## 23          0                0         0          0           0
## 24          0                0         0          0           0
## 25          0                0         0          0           0
## 26          0                0         0          0           0
## 27          0                0         0          0           0
## 28          0                0         0          0           0
## 29          0                0         0          0           0
## 30          0                0         0          0           0
## 31          0                0         0          0           0
## 32          0                0         0          0           0
## 33          0                0         0          0           0
## 34          0                0         0          0           0
## 35          0                0         0          0           0
## 36          0                0         0          0           0
## 37          0                0         0          0           0
## 38          0                0         0          0           0
## 39          0                0         0          0           0
## 40          0                0         0          0           0
## 41          0                0         0          0           0
## 42          0                0         0          0           0
## 43          0                0         0          0           0
## 44          0                0         0          0           0
## 45          0                0         0          0           0
## 46          0                0         0          0           0
## 47          0                0         0          0           0
## 48          0                0         0          0           0
## 49          0                0         0          0           0
## 50          0                0         0          0           0
## 51          0                0         0          0           0
## 52          0                0         0          0           0
## 53          0                0         0          0           0
## 54          0                0         0          0           0
## 55          0                0         0          0           0
## 56          0                0         0          0           0
## 57          0                0         0          0           0
## 58          0                0         0          0           0
## 59          0                0         0          0           0
## 60          0                0         0          0           0
## 61          0                0         0          0           0
## 62          0                0         0          0           0
## 63          0                0         0          0           0
## 64          0                0         0          0           0
## 65          0                0         0          0           0
## 66          0                0         0          0           0
## 67          0                0         0          0           0
## 68          0                0         0          0           0
## 69          0                0         0          0           0
## 70          0                0         0          0           0
## 71          0                0         0          0           0
## 72          0                0         0          0           0
## 73          0                0         0          0           0
## 74          0                0         0          0           0
## 75          0                0         0          0           0
## 76          0                0         0          0           0
## 77          0                0         0          0           0
## 78          0                0         0          0           0
## 79          0                0         0          0           0
## 80          0                0         0          0           0
## 81          0                0         0          0           0
## 82          0                0         0          0           0
## 83          0                0         0          0           0
## 84          0                0         0          0           0
## 85          0                0         0          0           0
## 86          0                0         0          0           0
## 87          0                0         0          0           0
## 88          0                0         0          0           0
## 89          0                0         0          0           0
## 90          0                0         0          0           0
## 91          0                0         0          0           0
## 92          0                0         0          0           0
## 93          0                0         0          0           0
## 94          0                0         0          0           0
## 95          0                0         0          0           0
## 96          0                0         0          0           0
## 97          0                0         0          0           0
## 98          0                0         0          0           0
## 99          0                0         0          0           0
## 100         0                0         0          0           0
## 101         0                0         0          0           0
## 102         0                0         0          0           0
## 103         0                0         0          0           0
## 104         0                0         0          0           0
## 105         0                0         0          0           0
## 106         0                0         0          0           0
## 107         0                0         0          0           0
## 108         0                0         0          0           0
## 109         0                0         0          0           0
## 110         0                0         0          0           0
## 111         0                0         0          0           0
## 112         0                0         0          0           0
## 113         0                0         0          0           0
## 114         0                0         0          0           0
## 115         0                0         0          0           0
## 116         0                0         0          0           0
## 117         0                0         0          0           0
## 118         0                0         0          0           0
## 119         0                0         0          0           0
## 120         0                0         0          0           0
## 121         0                0         0          0           0
## 122         0                0         0          0           0
## 123         0                0         0          0           0
## 124         0                0         0          0           0
## 125         0                0         0          0           0
## 126         0                0         0          0           0
## 127         0                0         0          0           0
## 128         0                0         0          0           0
## 129         0                0         0          0           0
## 130         0                0         0          0           0
## 131         0                0         0          0           0
## 132         0                0         0          0           0
## 133         0                0         0          0           0
## 134         0                0         0       3664           0
## 135         0                0         0       7328           0
## 136         0                0         0      14656           0
## 137         0                0         0      21984           0
## 138         0                0         0      29312           0
## 139         0                0         0      36640           0
## 140         0                0         0      47632           0
## 141         0                0         0      95264           0
## 142         0                0         0     161216           0
## 143         0                0         0     208848           0
## 144         0                0         0     249152           0
## 145         0                0         0     289456           0
## 146         0                0         0     329760           0
## 147         0                0         0     370064           0
## 148         0                0         0     458000           0
## 149         0                0         0     619216           0
## 150         0                0         0     864704           0
## 151         0                0         0    1102864           0
## 152         0                0         0    1201792           0
## 153         0                0         0    1414304           0
## 154         0                0         0    1692768           0
## 155         0                0         0    2044512           0
## 156         0                0         0    2473200           0
## 157         0                0         0    3271952        7328
## 158         0                0         0    4484736       25648
## 159         0                0         0    5994304       80608
## 160         0                0         0    7324336      131904
## 161         0                0         0    8830240      168544
## 162         0                0         0   10288512      172208
## 163         0                0         0   11860368      179536
## 164         0                0         0   13402912      197856
## 165         0                0         0   15289872      252816
## 166         0                0         0   17253776      304112
## 167         0                0         0   19257984      315104
## 168         0                0         0   21203568      344416
## 169         0                0         0   23185792      403040
## 170         0                0         0   25332896      505632
## 171         0                0         0   27780448      575248
## 172         0                0         0   30733632      652192
## 173         0                0         0   33712464      729136
## 174         0                0         0   37328832      813408
## 175         0                0         0   42114016      897680
## 176         0                0         0   46847904      948976
## 177         0                0         0   51530496      989280
## 178         0                0         0   56909248     1069888
## 179         0                0         0   63991760     1139504
## 180         0                0         0   69616000     1227440
## 181         0                0         0   74115392     1308048
## 182         0                0         0   78222736     1395984
## 183         0                0         0   84883888     1472928
## 184         0                0         0   91632976     1560864
## 185         0                0         0   98799760     1659792
## 186         0                0         0  106204704     1780704
## 187         0                0         0  115005632     1901616
## 188         0                0         0  123011472     2059168
## 189         0                0         0  128862880     2143440
## 190         0                0         0  134161024     2257024
## 191         0                0         0  139411536     2348624
## 192         0                0         0  145453472     2348624
## 193         0                0         0  152030352     2348624
## 194         0                0         0  158486320     2348624
## 195         0                0         0  164755424     2363280
## 196         0                0         0  170522560     2476864
## 197         0                0         0  176432592     2674720
## 198     21984                0         0  182818944     2890896
## 199     47632                0         0  189450784     3209664
## 200    564256            54960     62288  193994144     6815040
## 201   1117520           117248    109920  198768336    10369120
## 202   1835664           201520    212512  203956560    14421504
## 203   2550144           296784    333424  209470880    18455568
## 204   3184016           392048    516624  215707008    23786688
## 205   3894832           520288    707152  221833216    30403872
## 206   4528704           648528    905008  228146288    36658320
## 207   5290816           795088   1117520  234822096    43389088
## 208   6217808           941648   1359344  242197728    50951584
## 209   7210366          1102864   1663397  249413460    58177714
## 210   8206528          1282400   1967449  257578080    66502777
## 211   9308946          1483920   2330126  266211721    75215302
## 212  10499241          1681776   2722114  276171314    85551218
## 213  11682148          1938256   3132423  286394477    97023032
## 214  12923739          2205728   3564686  298647259   109845852
## 215  14450944          2509840   4114167  310598790   123810504
## 216  16106477          2850592   4627008  323839841   139914604
## 217  17802167          3286608   5114261  337480179   158123483
## 218  19820377          3788576   5704075  351966812   180346264
## 219  21871504          4345504   6224215  367252078   203175724
## 220  24072587          5038000   6967650  385017902   227927141
## 221  26672898          5862400   7601284  403610512   255478813
## 222  29471094          7130144   8315467  421762728   281888180
## 223  32708317          8474832   9183538  441494822   313389504
## 224  35725848         10061344  10135762  462829925   343881824
## 225  39385055         11592896  10974254  484769589   376364268
## 226  42991799         13164752  12006446  507179842   411430500
## 227  46447242         14743936  13162356  530482638   448106637
## 228  49281846         16418384  14618526  552899495   485486879
## 229  52462662         18213744  15946206  575118119   523517899
## 230  55570276         20042080  17434272  599180803   560386459
## 231  58892985         21973008  18819712  623200109   594914684
## 232  62171510         23918592  20183778  646790083   629753212
## 233  65651182         25926464  21594002  667172338   664992287
## 234  68518533         27970976  23085692  687791354   695823571
## 235  71131809         30096096  24634151  707231231   723722704
## 236  73866564         32158928  26291463  728984545   752747441
## 237  77046117         34492896  28172131  754648778   785243212
## 238  79960782         36691296  30320817  779634566   822727937
## 239  82471039         38724816  32549206  801366486   861634457
## 240  85217250         40864592  34696082  822319023   902983940
## 241  88439617         42927424  36813529  842493662   946455127
## 242  92665580         44979264  39326571  862804565   994748931
## 243  96565185         46972480  42168622  886283007  1043678122
## 244 100857150         49152560  45566727  909402355  1097801467
## 245 103796761         51211728  49497279  933084598  1157750204
## 246 108371785         53399136  53216154  957268625  1219003885
## 247 113965082         55974928  57374942  984514231  1289066495
## 248 119854788         58836512  61838745 1012086248  1357319454
## 249 125465094         61280400  66302286 1041233010  1425496093
## 250 131182102         63944128  69956169 1071311278  1497842528
## 251 138122011         67150128  73738949 1098239950  1568147091
## 252 143929276         70634592  77607359 1125170521  1638302233
## 253 150004940         74577056  81641221 1151275122  1708516918
## 254 155716681         79061792  85694486 1182830667  1781287671
## 255 162457769         83443936  89483192 1219563714  1854558964
## 256 169725904         87749136  93420327 1253974615  1921080878
## 257 176815954         93864352  97503087 1296375853  1991844953
## 258 183997651         98656864 101875933 1336708050  2069144944
## 259 192417005        103746160 106373086 1387552517  2144912016
## 260 201416441        108482542 111399091 1444230405  2227844946
## 261 211317286        113782495 116646970 1492921687  2311379786
## 262 221169154        118833076 121840454 1546859280  2400306922
## 263 231619187        124991218 127167766 1602843347  2496029859
## 264 240170353        131281119 132761279 1663427348  2599054891
## 265 249778151        138158059 138459551 1726176861  2712878046
## 266 259974130        145094663 144248102 1792518047  2832151729
## 267 270033082        152482152 150098368 1857299524  2959759692
##          Poland   Portugal      Qatar  Reunion    Romania       Russia
## 1             0          0          0        0          0            0
## 2             0          0          0        0          0            0
## 3             0          0          0        0          0            0
## 4             0          0          0        0          0            0
## 5             0          0          0        0          0            0
## 6             0          0          0        0          0            0
## 7             0          0          0        0          0            0
## 8             0          0          0        0          0            0
## 9             0          0          0        0          0            0
## 10            0          0          0        0          0            0
## 11            0          0          0        0          0            0
## 12            0          0          0        0          0            0
## 13            0          0          0        0          0            0
## 14            0          0          0        0          0            0
## 15            0          0          0        0          0            0
## 16            0          0          0        0          0            0
## 17            0          0          0        0          0            0
## 18            0          0          0        0          0            0
## 19            0          0          0        0          0            0
## 20            0          0          0        0          0            0
## 21            0          0          0        0          0            0
## 22            0          0          0        0          0            0
## 23            0          0          0        0          0            0
## 24            0          0          0        0          0            0
## 25            0          0          0        0          0            0
## 26            0          0          0        0          0            0
## 27            0          0          0        0          0            0
## 28            0          0          0        0          0            0
## 29            0          0          0        0          0            0
## 30            0          0          0        0          0            0
## 31            0          0          0        0          0            0
## 32            0          0          0        0          0            0
## 33            0          0          0        0          0            0
## 34            0          0          0        0          0            0
## 35            0          0          0        0          0            0
## 36            0          0          0        0          0            0
## 37            0          0          0        0          0            0
## 38            0          0          0        0          0            0
## 39            0          0          0        0          0            0
## 40            0          0          0        0          0            0
## 41            0          0          0        0          0            0
## 42            0          0          0        0          0            0
## 43            0          0          0        0          0            0
## 44            0          0          0        0          0            0
## 45            0          0          0        0          0            0
## 46            0          0          0        0          0            0
## 47            0          0          0        0          0            0
## 48            0          0          0        0          0            0
## 49            0          0          0        0          0            0
## 50       406704          0          0        0          0            0
## 51       850048          0          0        0          0            0
## 52      1300720          0          0        0          0            0
## 53      1762384          0          0        0          0            0
## 54      2220384          0          0        0          0            0
## 55      2791968          0          0        0          0            0
## 56      3312256          0          0        0          0            0
## 57      3689648          0          0        0          0            0
## 58      4191616          0          0        0          0            0
## 59      4664272          0          0        0          0            0
## 60      5232192          0          0        0          0            0
## 61      5822096          0          0        0          0            0
## 62      6276432          0          0        0          0            0
## 63      6657488          0          0        0          0            0
## 64      7159456          0          0        0          0            0
## 65      7749360          0          0        0          0            0
## 66      8427200          0          0        0          0            0
## 67      9170992          0          0        0          0            0
## 68     10094320          0          0        0          0            0
## 69     10852768          0          0        0          0            0
## 70     11600224          0          0        0          0            0
## 71     12428288          0          0        0          0            0
## 72     13336960          0          0        0          0            0
## 73     14557072          0          0        0          0            0
## 74     15832144          0          0        0          0            0
## 75     17158512          0          0        0          0            0
## 76     18378624          0          0        0          0            0
## 77     19686672          0          0        0          0            0
## 78     20895792          0          0        0          0            0
## 79     21962016          0          0        0          0            0
## 80     22951296          0          0        0          0            0
## 81     23761040          0          0        0          0            0
## 82     24794288          0          0        0          0            0
## 83     25867840          0          0        0          0            0
## 84     26996352          0          0        0          0            0
## 85     28205472          0          0        0          0            0
## 86     29575808          0          0        0          0            0
## 87     31048736          0          0        0          0            0
## 88     32635248          0          0        0          0            0
## 89     34317024          0          0        0          0            0
## 90     36284592          0          0        0          0            0
## 91     38424368          0          0        0          0            0
## 92     40707040          0          0        0          0            0
## 93     42953072          0          0        0          0            0
## 94     45345664          0          0        0          0            0
## 95     48137632          0          0        0          0            0
## 96     51087152          0          0        0          0            0
## 97     54109952          0          0        0          0            0
## 98     57154736          0          0        0          0            0
## 99     60159216          0          0        0          0            0
## 100    63361552          0          0        0          0            0
## 101    66820368          0          0        0          0            0
## 102    70949696          0          0        0          0            0
## 103    75265888          0          0        0          0            0
## 104    80043744          0          0        0          0            0
## 105    85664320          0          0        0          0            0
## 106    91981056          0          0        0          0            0
## 107    98697168          0          0        0          0            0
## 108   106402560          0          0        0       3664            0
## 109   113514384          0          0        0       7328            0
## 110   120999936          0          0        0      10992            0
## 111   128668688          0          0        0      18320            0
## 112   137473280          0          0        0      29312            0
## 113   147527296          0          0        0      40304            0
## 114   158746464          0          0        0      54960            0
## 115   171167424          0          0        0      69616            0
## 116   183320912          0          0        0      87936            0
## 117   196613904          0          0        0     109920            0
## 118   211731568          0          0        0     135568            0
## 119   227343872          0          0        0     161216            0
## 120   244007744      21984          0        0     197856            0
## 121   262979936      58624          0        0     238160            0
## 122   283611920     578912          0        0     278464            0
## 123   305962320    1304384          0        0     322432            0
## 124   330459824    1835664          0        0     366400            0
## 125   354517648    3004480          0        0     414032            0
## 126   379106752    4151312          0        0     461664            0
## 127   402241248    4821824          0        0     509296            0
## 128   426573872    5463024          0        0     556928            0
## 129   453060928    6170176          0        0     604560            0
## 130   479408752    7049536          0        0     652192            0
## 131   505639328    7939888          0        0     703488            0
## 132   532884832    9024432          0        0     926992            0
## 133   562812384   10163936          0        0    1333696            0
## 134   594015008   11365728          0        0    1806352            0
## 135   626613616   12479584          0        0    2257024            0
## 136   660043952   13710688          0        0    2740672            0
## 137   693719776   14978432          0        0    3268288            0
## 138   731220816   16345104          0        0    3898496            0
## 139   771737328   17916960          0        0    4543360            0
## 140   813602192   19595072          0        0    5349440            0
## 141   858944192   21335472          0        0    6466960            0
## 142   902040160   23028240          0        0    7518528            0
## 143   947374832   24541472          0        0    8654368            0
## 144   993467952   26318512          0        0    9694944            0
## 145  1042459296   28014944          0        0   10772160            0
## 146  1095184256   29744352          0        0   11889680            0
## 147  1150276160   31561696          0        0   13186736            0
## 148  1210120272   33642848          0        0   14897824            0
## 149  1272038208   35786288          0        0   16509984            0
## 150  1335344800   38252160          0        0   17748416            0
## 151  1402242112   40641088          0        0   19342256            0
## 152  1467732448   43260848          0        0   20932432            0
## 153  1536219936   45781680          0        0   22779088            0
## 154  1605601440   48361136          0        0   24966496            0
## 155  1680486272   50881968          0        0   27626560            0
## 156  1759178000   53780192          0        0   31224608            0
## 157  1846373872   56942224          0        0   35782624            0
## 158  1939395504   60085936          0        0   40168432            0
## 159  2034930640   63280944          0        0   45026896            0
## 160  2129476496   66530912          0        0   49845056            0
## 161  2229078672   69674624          0        0   55619520            0
## 162  2340013600   73327632          0        0   61632144            0
## 163  2456221024   77185824          0        0   68623056            0
## 164  2553225424   80560368          0        0   74408512            0
## 165  2647969136   83645456          0        0   79552768            0
## 166  2756745968   86635280          0        0   82549920            0
## 167  2877628656   88291408          0        0   85063424            0
## 168  2979154432   89386944          0        0   88251104            0
## 169  2981884112   91545040          0        0   92915376            0
## 170  3058263856   93648176          0        0   98400384            0
## 171  3133210976   95795280          0        0  104317744            0
## 172  3204981408   98755792          0        0  111458880            0
## 173  3257530496  101434176          0        0  119933712            0
## 174  3305367680  104464304          0        0  129940096            0
## 175  3353443024  107586032          0        0  141650240            0
## 176  3401573328  110722416          0        0  156152352            0
## 177  3462241840  114353440          0        0  172277616            0
## 178  3525134400  118347200          0        0  190549984            0
## 179  3597828160  122315312          0        0  211042736            0
## 180  3654396656  126638832          0        0  234287152            0
## 181  3709224752  130559312          0        0  260136672            0
## 182  3751203200  133948512          0        0  287495760            0
## 183  3794409088  137945936          0        0  314807216            0
## 184  3839626512  142042288          0        0  346467840            0
## 185  3885778256  146420768          0        0  378000224            0
## 186  3935678272  150550096          0        0  411155760            0
## 187  3992019600  155481840          0        0  439621376            0
## 188  4051962640  159600176          0        0  466335600            0
## 189  4103863200  164352384          0        0  491525600            0
## 190  4271110144  168250880          0        0  515473504            0
## 191  4435913200  172032128          0        0  538021760            0
## 192  4617526688  175058592          0        0  561694864            0
## 193  4815313072  178000784          0        0  583803440            0
## 194  5004353488  181247088          0        0  598862480            0
## 195  5063812880  184584992          0        0  617768720            0
## 196  5168412752  188476160          0        0  635235008            0
## 197  5259965120  194019792          0        0  651583776            0
## 198  5348897728  199273968          0        0  674960096            0
## 199  5454332992  204795616     260144        0  698076272            0
## 200  5566466048  210416192     611888    25648  717495472            0
## 201  5688609152  215813264    1000272    54960  740003424            0
## 202  5816662288  221166368    1194464    87936  766640704            0
## 203  5955868640  227098384    1560864   109920  797275408            0
## 204  6103450896  232891168    2169088   146560  830786352            0
## 205  6257668656  239354464    2586784   186864  867576576            0
## 206  6424102192  246521248    3092416   234496  908364224            0
## 207  6602802800  254307248    3403856   293120  954303456            0
## 208  6779557824  261866080    3572400   355408 1004108208            0
## 209  6969217955  269845776    3755600   425024 1054751478    854787568
## 210  7168795028  278059284    3931472   498304 1108145610   1744770541
## 211  7376030435  287137318    4092688   582576 1163861678   2662596301
## 212  7592637610  296427210    4283216   674176 1227674473   3625914210
## 213  7823636443  306438792   10416752   787760 1297129925   4659020500
## 214  8066516923  317446209   16685856   912336 1369166953   5757742864
## 215  8313497785  329028665   22973280  1062560 1447803864   6923301202
## 216  8565928777  340863760   29246048  1242096 1531894539   8154218692
## 217  8824954235  353255366   35929184  1454608 1623923290   9441344235
## 218  9100755247  366247720   43004368  1670784 1724002689  10764649486
## 219  9394120555  380840529   50170944  1894288 1835530128  12142799638
## 220  9698263953  396077013   57732400  2213056 1955511611  13592370257
## 221 10011144763  412452712   66876704  2542816 2081193064  15130612383
## 222 10340651135  430760040   77652112  2890896 2213447272  16749027260
## 223 10676241085  450705138   90109296  3275616 2358212318  18435781559
## 224 11022477657  471350114  100587831  3700640 2508932627  20186753204
## 225 11397257725  492625385  111535209  4184288 2670939057  22027253983
## 226 11795376436  514951226  121910106  4814496 2845411035  23938580067
## 227 12213331370  537556305  131826134  5463024 3023487720  25914876832
## 228 12644201396  560141201  142345140  6181168 3217027113  27959001748
## 229 13085509991  584996950  156687583  7097168 3412703533  30020011303
## 230 13548839033  611770591  169769277  7910576 3608902579  32162101998
## 231 13957835960  638771253  182609960  8694672 3806632801  34263323294
## 232 14378806354  667771339  194944866  9559376 4001962001  36404102346
## 233 14799830082  697673194  206187427 10460720 4202078393  38575191454
## 234 15232297391  726467229  218485452 11457328 4390895000  40765480515
## 235 15676805217  753597133  230863260 12450272 4584801883  43127612594
## 236 16128653839  783818527  244130243 13527488 4786443166  45495762561
## 237 16592386426  815017160  255600763 14699968 4998074776  47963487045
## 238 17036616325  847585023  267498424 16044656 5210296408  50498774641
## 239 17458791423  888407575  281790793 17433312 5423895841  52980491869
## 240 17834830129  933986661  293534451 18536176 5595127629  55551702520
## 241 18208208329  981192874  311179722 19899184 5736094387  57988740602
## 242 18571927257 1032651394  337912467 21438064 5866380435  59981958231
## 243 18936492601 1082721444  368560356 22878016 5988007624  61872893233
## 244 19296103678 1133541807  398715130 24501168 6107678372  63542530377
## 245 19657407529 1188332743  430432277 26263552 6232515303  65182793595
## 246 20032712173 1240430820  462636041 28205472 6360792934  66789742610
## 247 20399282289 1295539597  500029568 30436848 6480058826  68291880035
## 248 20736623820 1355137213  532300611 32954016 6584814485  69776732259
## 249 21064276269 1422360718  563571686 35522480 6673496783  71289716964
## 250 21381373530 1488405064  598137836 38380400 6767035165  72789333174
## 251 21694919199 1554109239  639352370 41417856 6865912229  74327577573
## 252 22000649742 1623665968  680054306 44433328 6965064107  75856539320
## 253 22319065301 1688103156  721353663 47408496 7068640800  77419011671
## 254 22641604250 1755323682  764063993 50412976 7171515230  78989875869
## 255 22963273096 1824821054  814754072 53857136 7272481847  80578538733
## 256 23297895918 1889591231  877950240 57477168 7376612407  82227197467
## 257 23632261611 1951861359  940849667 61335360 7485172100  83874926408
## 258 23959709823 2011784885 1005106764 65277824 7590537497  85554720858
## 259 24273854403 2068862008 1073703655 69377840 7677742920  87127159867
## 260 24605985114 2121743807 1145623567 73543808 7761294178  88784720546
## 261 24937679753 2173445608 1225271140 77812368 7850637396  90497145315
## 262 25261896375 2223323507 1318490560 82058944 7936958321  92223244815
## 263 25581807633 2271405450 1402643073 86155296 8013787519  93889233389
## 264 25889362760 2319361228 1509514275 90324928 8090948006  95556344096
## 265 26199977903 2371556428 1630061485 90324928 8168736227  97228239175
## 266 26522211857 2421831220 1748751275 90324928 8243787884  98896309108
## 267 26848816401 2476694776 1878554596 90324928 8323783409 101000000000
##       Rwanda Saint.Helena Saint.Kitts.and.Nevis Saint.Lucia
## 1          0            0                     0           0
## 2          0            0                     0           0
## 3          0            0                     0           0
## 4          0            0                     0           0
## 5          0            0                     0           0
## 6          0            0                     0           0
## 7          0            0                     0           0
## 8          0            0                     0           0
## 9          0            0                     0           0
## 10         0            0                     0           0
## 11         0            0                     0           0
## 12         0            0                     0           0
## 13         0            0                     0           0
## 14         0            0                     0           0
## 15         0            0                     0           0
## 16         0            0                     0           0
## 17         0            0                     0           0
## 18         0            0                     0           0
## 19         0            0                     0           0
## 20         0            0                     0           0
## 21         0            0                     0           0
## 22         0            0                     0           0
## 23         0            0                     0           0
## 24         0            0                     0           0
## 25         0            0                     0           0
## 26         0            0                     0           0
## 27         0            0                     0           0
## 28         0            0                     0           0
## 29         0            0                     0           0
## 30         0            0                     0           0
## 31         0            0                     0           0
## 32         0            0                     0           0
## 33         0            0                     0           0
## 34         0            0                     0           0
## 35         0            0                     0           0
## 36         0            0                     0           0
## 37         0            0                     0           0
## 38         0            0                     0           0
## 39         0            0                     0           0
## 40         0            0                     0           0
## 41         0            0                     0           0
## 42         0            0                     0           0
## 43         0            0                     0           0
## 44         0            0                     0           0
## 45         0            0                     0           0
## 46         0            0                     0           0
## 47         0            0                     0           0
## 48         0            0                     0           0
## 49         0            0                     0           0
## 50         0            0                     0           0
## 51         0            0                     0           0
## 52         0            0                     0           0
## 53         0            0                     0           0
## 54         0            0                     0           0
## 55         0            0                     0           0
## 56         0            0                     0           0
## 57         0            0                     0           0
## 58         0            0                     0           0
## 59         0            0                     0           0
## 60         0            0                     0           0
## 61         0            0                     0           0
## 62         0            0                     0           0
## 63         0            0                     0           0
## 64         0            0                     0           0
## 65         0            0                     0           0
## 66         0            0                     0           0
## 67         0            0                     0           0
## 68         0            0                     0           0
## 69         0            0                     0           0
## 70         0            0                     0           0
## 71         0            0                     0           0
## 72         0            0                     0           0
## 73         0            0                     0           0
## 74         0            0                     0           0
## 75         0            0                     0           0
## 76         0            0                     0           0
## 77         0            0                     0           0
## 78         0            0                     0           0
## 79         0            0                     0           0
## 80         0            0                     0           0
## 81         0            0                     0           0
## 82         0            0                     0           0
## 83         0            0                     0           0
## 84         0            0                     0           0
## 85         0            0                     0           0
## 86         0            0                     0           0
## 87         0            0                     0           0
## 88         0            0                     0           0
## 89         0            0                     0           0
## 90         0            0                     0           0
## 91         0            0                     0           0
## 92         0            0                     0           0
## 93         0            0                     0           0
## 94         0            0                     0           0
## 95         0            0                     0           0
## 96         0            0                     0           0
## 97         0            0                     0           0
## 98         0            0                     0           0
## 99         0            0                     0           0
## 100        0            0                     0           0
## 101        0            0                     0           0
## 102        0            0                     0           0
## 103        0            0                     0           0
## 104        0            0                     0           0
## 105        0            0                     0           0
## 106        0            0                     0           0
## 107        0            0                     0           0
## 108        0            0                     0           0
## 109        0            0                     0           0
## 110        0            0                     0           0
## 111        0            0                     0           0
## 112        0            0                     0           0
## 113        0            0                     0           0
## 114        0            0                     0           0
## 115        0            0                     0           0
## 116        0            0                     0           0
## 117        0            0                     0           0
## 118        0            0                     0           0
## 119        0            0                     0           0
## 120        0            0                     0           0
## 121        0            0                     0           0
## 122        0            0                     0           0
## 123        0            0                     0           0
## 124        0            0                     0           0
## 125        0            0                     0           0
## 126        0            0                     0           0
## 127        0            0                     0           0
## 128        0            0                     0           0
## 129        0            0                     0           0
## 130        0            0                     0           0
## 131        0            0                     0           0
## 132        0            0                     0           0
## 133        0            0                     0           0
## 134        0            0                     0           0
## 135        0            0                     0           0
## 136        0            0                     0           0
## 137        0            0                     0           0
## 138        0            0                     0           0
## 139        0            0                     0           0
## 140        0            0                     0           0
## 141        0            0                     0           0
## 142        0            0                     0           0
## 143        0            0                     0           0
## 144        0            0                     0           0
## 145        0            0                     0           0
## 146        0            0                     0           0
## 147        0            0                     0           0
## 148        0            0                     0           0
## 149        0            0                     0           0
## 150        0            0                     0           0
## 151        0            0                     0           0
## 152        0            0                     0           0
## 153        0            0                     0           0
## 154        0            0                     0           0
## 155        0            0                     0           0
## 156        0            0                     0           0
## 157        0            0                     0           0
## 158        0            0                     0           0
## 159        0            0                     0           0
## 160        0            0                     0           0
## 161        0            0                     0           0
## 162        0            0                     0           0
## 163        0            0                     0           0
## 164        0            0                     0           0
## 165        0            0                     0           0
## 166        0            0                     0           0
## 167        0            0                     0           0
## 168        0            0                     0           0
## 169        0            0                     0           0
## 170        0            0                     0           0
## 171        0            0                     0           0
## 172        0            0                     0           0
## 173        0            0                     0           0
## 174        0            0                     0           0
## 175        0            0                     0           0
## 176        0            0                     0           0
## 177        0            0                     0           0
## 178        0            0                     0           0
## 179        0            0                     0           0
## 180        0            0                     0           0
## 181        0            0                     0           0
## 182        0            0                     0           0
## 183        0            0                     0           0
## 184        0            0                     0           0
## 185        0            0                     0           0
## 186        0            0                     0           0
## 187        0            0                     0           0
## 188        0            0                     0           0
## 189        0            0                     0           0
## 190        0            0                     0           0
## 191        0            0                     0           0
## 192        0            0                     0           0
## 193        0            0                     0           0
## 194        0            0                     0           0
## 195        0            0                     0           0
## 196        0            0                     0           0
## 197        0            0                     0           0
## 198        0            0                     0           0
## 199        0            0                     0           0
## 200        0            0                     0        3664
## 201        0            0                     0       14656
## 202        0            0                     0       21984
## 203        0            0                     0       32976
## 204        0            0                     0       40304
## 205        0            0                     0       51296
## 206        0            0                     0       62288
## 207        0            0                     0       73280
## 208        0            0                     0       84272
## 209    74641            0                     0       95264
## 210   144466            0                     0      109920
## 211   235962            0                     0      128240
## 212   320234            0                     0      146560
## 213   404506            0                     0      168544
## 214   441146            0                     0      190528
## 215   488778            0                     0      216176
## 216   532746            0                     0      245488
## 217   573050            0                     0      278464
## 218   628010         3664                     0      315104
## 219   686634         3664                     0      377392
## 220   745258         3664                     0      443344
## 221   807546         3664                     0      512960
## 222   873498         3664                     0      589904
## 223   943114         3664                     0      670512
## 224  1016394         3664                     0      743792
## 225  1192266         3664                     0      820736
## 226  1459738         3664                     0      905008
## 227  1727210         3664                     0      974624
## 228  2016666         3664                     0     1073552
## 229  2313450         3664                     0     1223776
## 230  2808090         3664                     0     1337360
## 231  3408986        10992                 54960     1432624
## 232  4017210        14656                120912     1546208
## 233  4713370        18320                172208     1648800
## 234  5347242        21984                223504     1762384
## 235  5962794        25648                274800     1890624
## 236  6560026        29312                333424     2022528
## 237  7170876        32976                388384     2169088
## 238  7862528        40304                454336     2333968
## 239  8545920        47632                520288     2498848
## 240  9083027        54960                626544     2660064
## 241  9565138        62288                732800     2828608
## 242 10047212        69616                842720     3030128
## 243 10536578        80608                956304     3253632
## 244 11008570        91600               1077216     3513776
## 245 11469565       102592               1205456     3825216
## 246 11945511       113584               1337360     4151312
## 247 12438394       124576               1480256     4459088
## 248 12920248       135568               1630480     4766864
## 249 13423363       146560               1791696     5085632
## 250 13944065       157552               1963904     5415392
## 251 14466907       168544               2139776     5778128
## 252 14988178       179536               2337632     6104224
## 253 15498292       190528               2535488     6463296
## 254 16015568       201520               2748000     6818704
## 255 16532680       212512               2945856     7185104
## 256 17049410       223504               3147376     7551504
## 257 17594897       234496               3363552     7936224
## 258 18125466       245488               3579728     8331936
## 259 18689892       256480               3803232     8716656
## 260 19269022       267472               4023072     9119696
## 261 19921131       278464               4253904     9526400
## 262 20645657       289456               4473744     9933104
## 263 21436042       300448               4697248    10339808
## 264 22259614       311440               4928080    10746512
## 265 23176503       322915               5169058    11171092
## 266 24160679       334613               5414713    11603913
## 267 25185419       346309               5660325    12036657
##     Saint.Pierre.and.Miquelon Saint.Vincent.and.the.Grenadines   Samoa
## 1                           0                                0       0
## 2                           0                                0       0
## 3                           0                                0       0
## 4                           0                                0       0
## 5                           0                                0       0
## 6                           0                                0       0
## 7                           0                                0       0
## 8                           0                                0       0
## 9                           0                                0       0
## 10                          0                                0       0
## 11                          0                                0       0
## 12                          0                                0       0
## 13                          0                                0       0
## 14                          0                                0       0
## 15                          0                                0       0
## 16                          0                                0       0
## 17                          0                                0       0
## 18                          0                                0       0
## 19                          0                                0       0
## 20                          0                                0       0
## 21                          0                                0       0
## 22                          0                                0       0
## 23                          0                                0       0
## 24                          0                                0       0
## 25                          0                                0       0
## 26                          0                                0       0
## 27                          0                                0       0
## 28                          0                                0       0
## 29                          0                                0       0
## 30                          0                                0       0
## 31                          0                                0       0
## 32                          0                                0       0
## 33                          0                                0       0
## 34                          0                                0       0
## 35                          0                                0       0
## 36                          0                                0       0
## 37                          0                                0       0
## 38                          0                                0       0
## 39                          0                                0       0
## 40                          0                                0       0
## 41                          0                                0       0
## 42                          0                                0       0
## 43                          0                                0       0
## 44                          0                                0       0
## 45                          0                                0       0
## 46                          0                                0       0
## 47                          0                                0       0
## 48                          0                                0       0
## 49                          0                                0       0
## 50                          0                                0       0
## 51                          0                                0       0
## 52                          0                                0       0
## 53                          0                                0       0
## 54                          0                                0       0
## 55                          0                                0       0
## 56                          0                                0       0
## 57                          0                                0       0
## 58                          0                                0       0
## 59                          0                                0       0
## 60                          0                                0       0
## 61                          0                                0       0
## 62                          0                                0       0
## 63                          0                                0       0
## 64                          0                                0       0
## 65                          0                                0       0
## 66                          0                                0       0
## 67                          0                                0       0
## 68                          0                                0       0
## 69                          0                                0       0
## 70                          0                                0       0
## 71                          0                                0       0
## 72                          0                                0       0
## 73                          0                                0       0
## 74                          0                                0       0
## 75                          0                                0       0
## 76                          0                                0       0
## 77                          0                                0       0
## 78                          0                                0       0
## 79                          0                                0       0
## 80                          0                                0       0
## 81                          0                                0       0
## 82                          0                                0       0
## 83                          0                                0       0
## 84                          0                                0       0
## 85                          0                                0       0
## 86                          0                                0       0
## 87                          0                                0       0
## 88                          0                                0       0
## 89                          0                                0       0
## 90                          0                                0       0
## 91                          0                                0       0
## 92                          0                                0       0
## 93                          0                                0       0
## 94                          0                                0       0
## 95                          0                                0       0
## 96                          0                                0       0
## 97                          0                                0       0
## 98                          0                                0       0
## 99                          0                                0       0
## 100                         0                                0       0
## 101                         0                                0       0
## 102                         0                                0       0
## 103                         0                                0       0
## 104                         0                                0       0
## 105                         0                                0       0
## 106                         0                                0       0
## 107                         0                                0       0
## 108                         0                                0       0
## 109                         0                                0       0
## 110                         0                                0       0
## 111                         0                                0       0
## 112                         0                                0       0
## 113                         0                                0       0
## 114                         0                                0       0
## 115                         0                                0       0
## 116                         0                                0       0
## 117                         0                                0       0
## 118                         0                                0       0
## 119                         0                                0       0
## 120                         0                                0       0
## 121                         0                                0       0
## 122                         0                                0       0
## 123                         0                                0       0
## 124                         0                                0       0
## 125                         0                                0       0
## 126                         0                                0       0
## 127                         0                                0       0
## 128                         0                                0       0
## 129                         0                                0       0
## 130                         0                                0       0
## 131                         0                                0       0
## 132                         0                                0       0
## 133                         0                                0       0
## 134                         0                                0       0
## 135                         0                                0       0
## 136                         0                                0       0
## 137                         0                                0       0
## 138                         0                                0       0
## 139                         0                                0       0
## 140                         0                                0       0
## 141                         0                                0       0
## 142                         0                                0       0
## 143                         0                                0       0
## 144                         0                                0       0
## 145                         0                                0       0
## 146                         0                                0       0
## 147                         0                                0       0
## 148                         0                                0       0
## 149                         0                                0       0
## 150                         0                                0       0
## 151                         0                                0       0
## 152                         0                                0       0
## 153                         0                                0       0
## 154                         0                                0       0
## 155                         0                                0       0
## 156                         0                                0       0
## 157                         0                                0       0
## 158                         0                                0       0
## 159                         0                                0       0
## 160                         0                                0       0
## 161                         0                                0       0
## 162                         0                                0       0
## 163                         0                                0       0
## 164                         0                                0       0
## 165                         0                                0       0
## 166                         0                                0       0
## 167                         0                                0       0
## 168                         0                                0       0
## 169                         0                                0       0
## 170                         0                                0       0
## 171                         0                                0       0
## 172                         0                                0       0
## 173                         0                                0       0
## 174                         0                                0       0
## 175                         0                                0       0
## 176                         0                                0       0
## 177                         0                                0       0
## 178                         0                                0       0
## 179                         0                                0       0
## 180                         0                                0       0
## 181                         0                                0       0
## 182                         0                                0       0
## 183                         0                                0       0
## 184                         0                                0       0
## 185                         0                                0       0
## 186                         0                                0       0
## 187                         0                                0       0
## 188                         0                                0       0
## 189                         0                                0       0
## 190                         0                                0       0
## 191                         0                                0       0
## 192                         0                                0       0
## 193                         0                                0       0
## 194                         0                                0       0
## 195                         0                                0       0
## 196                         0                                0       0
## 197                         0                                0       0
## 198                         0                                0       0
## 199                         0                                0       0
## 200                     14656                             3664    3664
## 201                     36640                             7328    7328
## 202                     69616                            18320   14656
## 203                     98928                            25648   21984
## 204                    131904                            32976   32976
## 205                    168544                            40304   43968
## 206                    201520                            47632   54960
## 207                    241824                            54960   69616
## 208                    282128                            65952   80608
## 209                    315104                            76944   95264
## 210                    351744                            87936  109920
## 211                    399376                            98928  128240
## 212                    432352                           109920  146560
## 213                    468992                           124576  168544
## 214                    516624                           142896  194192
## 215                    556928                           157552  223504
## 216                    600896                           175872  249152
## 217                    652192                           194192  274800
## 218                    692496                           216176  304112
## 219                    725472                           245488  333424
## 220                    762112                           274800  362736
## 221                    809744                           304112  399376
## 222                    879360                           340752  436016
## 223                    919664                           381056  472656
## 224                    963632                           414032  505632
## 225                    996608                           447008  564256
## 226                   1044240                           479984  611888
## 227                   1080880                           512960  692496
## 228                   1113856                           549600  798752
## 229                   1150496                           578912  894016
## 230                   1187136                           615552  992944
## 231                   1227440                           652192 1095536
## 232                   1267744                           692496 1209120
## 233                   1300720                           740128 1322704
## 234                   1337360                           806080 1436288
## 235                   1370336                           872032 1549872
## 236                   1417968                           937984 1663456
## 237                   1469264                          1014928 1777040
## 238                   1535216                          1080880 1890624
## 239                   1637808                          1157824 2011536
## 240                   1729408                          1238432 2114128
## 241                   1832000                          1315376 2220384
## 242                   1927264                          1399648 2330304
## 243                   2000544                          1502240 2440224
## 244                   2070160                          1623152 2553808
## 245                   2139776                          1751392 2671056
## 246                   2209392                          1883296 2795632
## 247                   2257024                          2015200 2923872
## 248                   2311984                          2176416 3055776
## 249                   2366944                          2341296 3191344
## 250                   2421904                          2487856 3334240
## 251                   2476864                          2667392 3480800
## 252                   2535488                          2854256 3627360
## 253                   2601440                          3052112 3781248
## 254                   2663728                          3271952 3931472
## 255                   2729680                          3491792 4092688
## 256                   2795632                          3711632 4257568
## 257                   2861584                          3938800 4429776
## 258                   2927536                          4165968 4609312
## 259                   2993488                          4477408 4796176
## 260                   3063104                          4697248 4983040
## 261                   3132720                          4895104 5184560
## 262                   3202336                          5147920 5382416
## 263                   3275616                          5356768 5580272
## 264                   3352560                          5565616 5778128
## 265                   3432886                          5783644 5994043
## 266                   3514771                          6005903 6212433
## 267                   3596642                          6228123 6445614
##     Sao.Tome.and.Principe Saudi.Arabia   Senegal     Serbia Seychelles
## 1                       0            0         0          0          0
## 2                       0            0         0          0          0
## 3                       0            0         0          0          0
## 4                       0            0         0          0          0
## 5                       0            0         0          0          0
## 6                       0            0         0          0          0
## 7                       0            0         0          0          0
## 8                       0            0         0          0          0
## 9                       0            0         0          0          0
## 10                      0            0         0          0          0
## 11                      0            0         0          0          0
## 12                      0            0         0          0          0
## 13                      0            0         0          0          0
## 14                      0            0         0          0          0
## 15                      0            0         0          0          0
## 16                      0            0         0          0          0
## 17                      0            0         0          0          0
## 18                      0            0         0          0          0
## 19                      0            0         0          0          0
## 20                      0            0         0          0          0
## 21                      0            0         0          0          0
## 22                      0            0         0          0          0
## 23                      0            0         0          0          0
## 24                      0            0         0          0          0
## 25                      0            0         0          0          0
## 26                      0            0         0          0          0
## 27                      0            0         0          0          0
## 28                      0            0         0          0          0
## 29                      0            0         0          0          0
## 30                      0            0         0          0          0
## 31                      0            0         0          0          0
## 32                      0            0         0          0          0
## 33                      0            0         0          0          0
## 34                      0            0         0          0          0
## 35                      0            0         0          0          0
## 36                      0            0         0          0          0
## 37                      0            0         0          0          0
## 38                      0            0         0          0          0
## 39                      0            0         0          0          0
## 40                      0            0         0          0          0
## 41                      0            0         0          0          0
## 42                      0            0         0          0          0
## 43                      0            0         0          0          0
## 44                      0            0         0          0          0
## 45                      0            0         0          0          0
## 46                      0            0         0          0          0
## 47                      0            0         0          0          0
## 48                      0            0         0          0          0
## 49                      0            0         0          0          0
## 50                      0            0         0          0          0
## 51                      0            0         0          0          0
## 52                      0            0         0          0          0
## 53                      0            0         0          0          0
## 54                      0            0         0          0          0
## 55                      0            0         0          0          0
## 56                      0            0         0          0          0
## 57                      0            0         0          0          0
## 58                      0            0         0          0          0
## 59                      0            0         0          0          0
## 60                      0            0         0          0          0
## 61                      0            0         0          0          0
## 62                      0            0         0          0          0
## 63                      0            0         0          0          0
## 64                      0            0         0          0          0
## 65                      0            0         0          0          0
## 66                      0            0         0          0          0
## 67                      0            0         0          0          0
## 68                      0            0         0          0          0
## 69                      0            0         0          0          0
## 70                      0            0         0          0          0
## 71                      0            0         0          0          0
## 72                      0            0         0          0          0
## 73                      0            0         0          0          0
## 74                      0            0         0          0          0
## 75                      0            0         0          0          0
## 76                      0            0         0          0          0
## 77                      0            0         0          0          0
## 78                      0            0         0          0          0
## 79                      0            0         0          0          0
## 80                      0            0         0          0          0
## 81                      0            0         0          0          0
## 82                      0            0         0          0          0
## 83                      0            0         0          0          0
## 84                      0            0         0          0          0
## 85                      0            0         0          0          0
## 86                      0            0         0          0          0
## 87                      0            0         0          0          0
## 88                      0            0         0          0          0
## 89                      0            0         0          0          0
## 90                      0            0         0          0          0
## 91                      0            0         0          0          0
## 92                      0            0         0          0          0
## 93                      0            0         0          0          0
## 94                      0            0         0          0          0
## 95                      0            0         0          0          0
## 96                      0            0         0          0          0
## 97                      0            0         0          0          0
## 98                      0            0         0          0          0
## 99                      0            0         0          0          0
## 100                     0            0         0          0          0
## 101                     0            0         0          0          0
## 102                     0            0         0          0          0
## 103                     0            0         0          0          0
## 104                     0            0         0          0          0
## 105                     0            0         0          0          0
## 106                     0            0         0          0          0
## 107                     0            0         0          0          0
## 108                     0            0         0          0          0
## 109                     0            0         0          0          0
## 110                     0            0         0          0          0
## 111                     0            0         0          0          0
## 112                     0            0         0          0          0
## 113                     0            0         0          0          0
## 114                     0            0         0          0          0
## 115                     0            0         0          0          0
## 116                     0            0         0          0          0
## 117                     0            0         0          0          0
## 118                     0            0         0          0          0
## 119                     0            0         0          0          0
## 120                     0            0         0          0          0
## 121                     0            0         0          0          0
## 122                     0            0         0          0          0
## 123                     0            0         0          0          0
## 124                     0            0         0          0          0
## 125                     0            0         0          0          0
## 126                     0            0         0          0          0
## 127                     0            0         0          0          0
## 128                     0            0         0          0          0
## 129                     0            0         0          0          0
## 130                     0            0         0          0          0
## 131                     0            0         0          0          0
## 132                     0            0         0          0          0
## 133                     0            0         0          0          0
## 134                     0            0         0          0          0
## 135                     0            0         0          0          0
## 136                     0            0         0          0          0
## 137                     0            0         0          0          0
## 138                     0            0         0          0          0
## 139                     0            0         0          0          0
## 140                     0            0         0          0          0
## 141                     0            0         0          0          0
## 142                     0            0         0          0          0
## 143                     0            0         0          0          0
## 144                     0            0         0          0          0
## 145                     0            0         0          0          0
## 146                     0            0         0          0          0
## 147                     0            0         0          0          0
## 148                     0            0         0          0          0
## 149                     0            0         0          0          0
## 150                     0            0         0          0          0
## 151                     0            0         0          0          0
## 152                     0            0         0          0          0
## 153                     0            0         0          0          0
## 154                     0            0         0          0          0
## 155                     0            0         0          0          0
## 156                     0            0         0          0          0
## 157                     0            0         0          0          0
## 158                     0            0         0          0          0
## 159                     0            0         0          0          0
## 160                     0            0         0          0          0
## 161                     0            0         0          0          0
## 162                     0            0         0          0          0
## 163                     0            0         0          0          0
## 164                     0            0         0          0          0
## 165                     0            0         0          0          0
## 166                     0            0         0          0          0
## 167                     0            0         0          0          0
## 168                     0            0         0          0          0
## 169                     0            0         0          0          0
## 170                     0            0         0          0          0
## 171                     0            0         0          0          0
## 172                     0            0         0          0          0
## 173                     0            0         0          0          0
## 174                     0            0         0          0          0
## 175                     0            0         0          0          0
## 176                     0            0         0          0          0
## 177                     0            0         0          0          0
## 178                     0            0         0          0          0
## 179                     0            0         0          0          0
## 180                     0            0         0          0          0
## 181                     0            0         0          0          0
## 182                     0            0         0          0          0
## 183                     0            0         0          0          0
## 184                     0            0         0          0          0
## 185                     0            0         0          0          0
## 186                     0         7328         0          0          0
## 187                     0        32976         0          0          0
## 188                     0       238160         0          0          0
## 189                     0      1890624         0          0          0
## 190                     0      4037728         0          0          0
## 191                     0      5847744         0          0          0
## 192                     0      7749360         0          0          0
## 193                     0      9742576         0          0          0
## 194                     0     13003536         0          0          0
## 195                     0     21815456         0          0          0
## 196                     0     46968816         0          0          0
## 197                     0     84700688         0          0          0
## 198                     0    102643296         0          0          0
## 199                     0    121029248         0          0          0
## 200                     0    126169840         0          0          0
## 201                  3664    125821760         0          0          0
## 202                  7328    125649552         0          0          0
## 203                 10992    126125872         0          0          0
## 204                 14656    127364304         0          0          0
## 205                 18320    129478432         0          0          0
## 206                 25648    131108912         0          0          0
## 207                 36640    133208384         0          0          0
## 208                 43968    136568272    355408          0          0
## 209                 51296    138421959    743109   13896228          0
## 210                 62288    141096322   1570489   29075449          0
## 211                 73280    144664642   2383154   44986242          0
## 212                 84272    150914683   3195819   61313384          0
## 213                 91600    157853497   4056087   79476658       7328
## 214                102592    164894665   4978583  100055105      14656
## 215                113584    169110919   6670608  121228174      21984
## 216                124576    175518244   8388251  142208625      29312
## 217                135568    201003721   9087392  163400454      36640
## 218                150224    230082838   9006784  186065660      43968
## 219                164880    265353789   9496928  209565397      51296
## 220                179536    310605119  10803995  240275888      80608
## 221                190528    370361761  12155030  273368345     113584
## 222                201520    440643437  13608271  304375401     157552
## 223                216176    535696947  15156955  341410749     205184
## 224                234496    634398755  17005938  378599437     260144
## 225                252816    717659519  19583937  417394797     318768
## 226                282128    819118975  21353633  457425856     399376
## 227                311440    937189260  23590969  496341037     483648
## 228                344416   1052213534  26210565  539821129     560592
## 229                377392   1190217846  29098704  587108091     681504
## 230                417696   1359457637  32435145  633591449     776768
## 231                461664   1534761056  35715002  684173166     875696
## 232                509296   1692652495  38751576  730621405     959968
## 233                564256   1853487183  41362986  780640290    1058896
## 234                615552   2008997428  44647154  833391347    1157824
## 235                670512   2181415972  47297659  887199422    1308048
## 236                721808   2386016543  49934137  943390216    1472928
## 237                773104   2576460277  52358710  999219451    1674448
## 238                820736   2778707953  55069519 1056998799    1872304
## 239                868368   2982127170  58731396 1114647382    2106800
## 240                916000   3167612437  61870432 1172254925    2257024
## 241                963632   3434998613  65248397 1212973878    2429232
## 242               1011264   3720072727  68671845 1256267701    2601440
## 243               1058896   4033400112  72209820 1294008485    2784640
## 244               1106528   4340873360  76046574 1330706913    2986160
## 245               1154160   4575585309  79475530 1369482115    3184016
## 246               1201792   4833848956  83138774 1414874866    3418512
## 247               1249424   5049645698  86321129 1463667550    3759264
## 248               1297056   5256876214  89654188 1515047192    4191616
## 249               1344688   5482852694  93257760 1550487300    4700912
## 250               1392320   5779206015  97067066 1589867846    5272496
## 251               1443616   6075780906 101247289 1632145403    5906368
## 252               1502240   6401462082 105593145 1677318420    6444976
## 253               1568192   6727979197 110398044 1725616885    6994576
## 254               1641472   7122563990 115386550 1778354711    7731040
## 255               1718416   7518418750 120926128 1828233940    8419872
## 256               1802688   7949710718 125347890 1881993525    9152672
## 257               1886960   8336217865 130174535 1934179367    9793872
## 258               1971232   8768554275 134913569 1985969107   10486368
## 259               2062832   9234398584 139117297 2031895107   11010320
## 260               2161760   9752114531 146397370 2077591467   11453664
## 261               2264352  10249773541 154216797 2126548547   11794416
## 262               2377936  10812953034 161579664 2170273023   12234096
## 263               2491520  11353758266 169429605 2214818851   12637136
## 264               2605104  11955654331 177735418 2252007973   13131776
## 265               2719828  12576537288 185850325 2293345455   13671491
## 266               2837347  13208086495 194391925 2336696451   14254463
## 267               2954820  13843097583 203710385 2381789224   14863511
##     Sierra.Leone  Singapore Sint.Maarten..Dutch.part.   Slovakia  Slovenia
## 1              0          0                         0          0         0
## 2              0          0                         0          0         0
## 3              0          0                         0          0         0
## 4              0          0                         0          0         0
## 5              0          0                         0          0         0
## 6              0          0                         0          0         0
## 7              0          0                         0          0         0
## 8              0          0                         0          0         0
## 9              0          0                         0          0         0
## 10             0          0                         0          0         0
## 11             0          0                         0          0         0
## 12             0          0                         0          0         0
## 13             0          0                         0          0         0
## 14             0          0                         0          0         0
## 15             0          0                         0          0         0
## 16             0          0                         0          0         0
## 17             0          0                         0          0         0
## 18             0          0                         0          0         0
## 19             0          0                         0          0         0
## 20             0          0                         0          0         0
## 21             0          0                         0          0         0
## 22             0          0                         0          0         0
## 23             0          0                         0          0         0
## 24             0          0                         0          0         0
## 25             0          0                         0          0         0
## 26             0          0                         0          0         0
## 27             0          0                         0          0         0
## 28             0          0                         0          0         0
## 29             0          0                         0          0         0
## 30             0          0                         0          0         0
## 31             0          0                         0          0         0
## 32             0          0                         0          0         0
## 33             0          0                         0          0         0
## 34             0          0                         0          0         0
## 35             0          0                         0          0         0
## 36             0          0                         0          0         0
## 37             0          0                         0          0         0
## 38             0          0                         0          0         0
## 39             0          0                         0          0         0
## 40             0          0                         0          0         0
## 41             0          0                         0          0         0
## 42             0          0                         0          0         0
## 43             0          0                         0          0         0
## 44             0          0                         0          0         0
## 45             0          0                         0          0         0
## 46             0          0                         0          0         0
## 47             0          0                         0          0         0
## 48             0          0                         0          0         0
## 49             0          0                         0          0         0
## 50             0          0                         0          0         0
## 51             0          0                         0          0         0
## 52             0          0                         0          0         0
## 53             0          0                         0          0         0
## 54             0          0                         0          0         0
## 55             0          0                         0          0         0
## 56             0          0                         0          0         0
## 57             0          0                         0          0         0
## 58             0          0                         0          0         0
## 59             0          0                         0          0         0
## 60             0          0                         0          0         0
## 61             0          0                         0          0         0
## 62             0          0                         0          0         0
## 63             0          0                         0          0         0
## 64             0          0                         0          0         0
## 65             0          0                         0          0         0
## 66             0          0                         0          0         0
## 67             0          0                         0          0         0
## 68             0          0                         0          0         0
## 69             0          0                         0          0         0
## 70             0          0                         0          0         0
## 71             0          0                         0          0         0
## 72             0          0                         0          0         0
## 73             0          0                         0          0         0
## 74             0          0                         0          0         0
## 75             0          0                         0          0         0
## 76             0          0                         0          0         0
## 77             0          0                         0          0         0
## 78             0          0                         0          0         0
## 79             0          0                         0          0         0
## 80             0          0                         0          0         0
## 81             0          0                         0          0         0
## 82             0          0                         0          0         0
## 83             0          0                         0          0         0
## 84             0          0                         0          0         0
## 85             0          0                         0          0         0
## 86             0          0                         0          0         0
## 87             0          0                         0          0         0
## 88             0          0                         0          0         0
## 89             0          0                         0          0         0
## 90             0          0                         0          0         0
## 91             0          0                         0          0         0
## 92             0          0                         0          0         0
## 93             0          0                         0          0         0
## 94             0          0                         0          0         0
## 95             0          0                         0          0         0
## 96             0          0                         0          0         0
## 97             0          0                         0          0         0
## 98             0          0                         0          0         0
## 99             0          0                         0          0         0
## 100            0          0                         0          0         0
## 101            0          0                         0          0         0
## 102            0          0                         0          0         0
## 103            0          0                         0          0         0
## 104            0          0                         0          0         0
## 105            0          0                         0          0         0
## 106            0          0                         0          0         0
## 107            0          0                         0          0         0
## 108            0          0                         0          0         0
## 109            0          0                         0          0         0
## 110            0          0                         0          0         0
## 111            0          0                         0          0         0
## 112            0          0                         0          0         0
## 113            0          0                         0          0         0
## 114            0          0                         0          0         0
## 115            0          0                         0          0         0
## 116            0          0                         0          0         0
## 117            0          0                         0          0         0
## 118            0          0                         0          0         0
## 119            0          0                         0          0         0
## 120            0          0                         0          0         0
## 121            0          0                         0          0         0
## 122            0          0                         0          0         0
## 123            0          0                         0          0         0
## 124            0          0                         0          0         0
## 125            0          0                         0          0         0
## 126            0          0                         0          0         0
## 127            0          0                         0          0         0
## 128            0          0                         0          0         0
## 129            0          0                         0          0         0
## 130            0          0                         0          0         0
## 131            0          0                         0          0         0
## 132            0          0                         0          0         0
## 133            0          0                         0          0         0
## 134            0          0                         0          0         0
## 135            0          0                         0          0         0
## 136            0          0                         0          0         0
## 137            0          0                         0          0         0
## 138            0          0                         0          0         0
## 139            0          0                         0          0         0
## 140            0          0                         0          0         0
## 141            0          0                         0          0         0
## 142            0          0                         0          0         0
## 143            0          0                         0          0         0
## 144            0          0                         0          0         0
## 145            0          0                         0          0         0
## 146            0          0                         0          0         0
## 147            0          0                         0          0         0
## 148            0          0                         0          0         0
## 149            0          0                         0          0         0
## 150            0          0                         0          0         0
## 151            0          0                         0          0         0
## 152            0          0                         0          0         0
## 153            0          0                         0          0         0
## 154            0          0                         0          0         0
## 155            0          0                         0          0         0
## 156            0          0                         0          0         0
## 157            0          0                         0          0         0
## 158            0          0                         0          0         0
## 159            0          0                         0          0         0
## 160            0          0                         0          0         0
## 161            0          0                         0          0         0
## 162            0          0                         0          0         0
## 163            0          0                         0          0         0
## 164            0          0                         0          0         0
## 165            0          0                         0          0         0
## 166            0          0                         0          0         0
## 167            0          0                         0          0         0
## 168            0          0                         0          0         0
## 169            0          0                         0          0         0
## 170            0          0                         0          0         0
## 171            0          0                         0          0         0
## 172            0          0                         0          0         0
## 173            0          0                         0          0         0
## 174            0          0                         0          0         0
## 175            0          0                         0          0         0
## 176            0          0                         0          0         0
## 177            0          0                         0          0         0
## 178            0          0                         0          0         0
## 179            0          0                         0          0         0
## 180            0          0                         0          0         0
## 181            0          0                         0          0         0
## 182            0          0                         0          0         0
## 183            0          0                         0          0         0
## 184            0          0                         0          0         0
## 185            0          0                         0          0         0
## 186            0          0                         0          0         0
## 187            0          0                         0          0         0
## 188            0          0                         0          0         0
## 189            0          0                         0          0         0
## 190            0          0                         0          0         0
## 191            0          0                         0          0         0
## 192            0          0                         0          0         0
## 193            0          0                         0          0         0
## 194            0          0                         0          0         0
## 195            0          0                         0          0         0
## 196            0          0                         0          0         0
## 197            0          0                         0          0         0
## 198            0          0                         0          0         0
## 199            0          0                         0          0         0
## 200       157552          0                         0          0         0
## 201       252816          0                         0          0         0
## 202       432352          0                         0          0         0
## 203       600896          0                         0          0         0
## 204       725472          0                         0          0         0
## 205       908672          0                         0          0         0
## 206      1088208          0                         0          0         0
## 207      1476592    1729408                         0          0         0
## 208      1685440    4026736                         0          0         0
## 209      1919936    5825760                   1210053   29695684   3992183
## 210      2634416    7218080                   2250533   61367068   8352957
## 211      2923872    9310224                   3336415   95742173  12923929
## 212      3249968   11885511                   4528926  132374374  17614495
## 213      3620032   15281266                   5671218  170909651  22832548
## 214      3924144   18981104                   6781866  211014083  28744477
## 215      4206272   21508432                   7778320  250091134  34827237
## 216      4506720   22181033                   8710108  288947525  40854634
## 217      4759536   25234907                   9857904  327722747  46942750
## 218      5122272   30648011                  10925213  368291169  53454109
## 219      6206816   37845245                  12322036  411359192  60205206
## 220      7064192   56037727                  13884304  460737395  69027967
## 221      7866608   72614861                  15243979  512542219  78530352
## 222      8544448   94832950                  16562379  564830038  87427305
## 223      9083056  116032358                  18024899  617338588  98049000
## 224      9603344  137979132                  19350522  670463369 108707704
## 225     10127296  162496935                  20310515  726056510 119819752
## 226     10577968  192495458                  22361207  783822482 131277005
## 227     11090928  220760404                  23432299  843326340 142403882
## 228     11801744  253868653                  24344482  903381533 154829496
## 229     12479584  289925916                  25301380  961881280 168337416
## 230     13087808  321269199                  26286139 1021077289 181603685
## 231     13780304  348009752                  27224118 1079640067 196033862
## 232     14333568  377615511                  28272854 1137638912 209267938
## 233     15022400  412425872                  28811839 1195728755 223520419
## 234     15637952  445642709                  30157756 1255785726 238552508
## 235     16301136  478909318                  31733095 1315032806 253883634
## 236     16975312  513785835                  32035092 1374697897 269889421
## 237     17473616  546246354                  32303574 1433894942 285777330
## 238     17931616  582195555                  32568050 1492149269 302285059
## 239     18305344  623904259                  33071500 1548490654 318732759
## 240     18792656  668194825                  33610650 1610486381 333807189
## 241     19338592  713244233                  34040878 1664103451 347802223
## 242     19785600  761456896                  34395333 1713259401 361798235
## 243     20232608  812328009                  34942498 1759918374 376090905
## 244     20694272  873672570                  35467077 1803746247 390724686
## 245     21042352  915514359                  35986192 1848612763 405969139
## 246     21434400  964863608                  36471791 1893778298 421874959
## 247     21797136 1022935362                  36979977 1938982611 438107955
## 248     22159872 1071291773                  37008028 1983157762 454056179
## 249     22504288 1121162291                  37218224 2026498544 469379621
## 250     22892672 1170018593                  37775953 2068031698 484809715
## 251     23405632 1219460689                  38343883 2111868256 501173012
## 252     23940576 1266633390                  38891412 2153919747 517681216
## 253     24508496 1297725963                  39439305 2196346522 533951350
## 254     25061760 1326176923                  40014157 2239337686 550582014
## 255     25523424 1356511179                  40583908 2282245173 567510820
## 256     26138976 1387285115                  41177702 2324848892 584634826
## 257     26655600 1407195291                  41846176 2365797961 601894787
## 258     27190544 1443300347                  42489149 2407282551 620092178
## 259     27725488 1499187339                  43147059 2444921977 636402188
## 260     28300736 1554784875                  43600237 2483548496 652754816
## 261     29044528 1599969323                  44178366 2521481341 669095388
## 262     29905568 1636312539                  44178366 2557590394 684896143
## 263     30938816 1691943051                  44178366 2593224329 700063220
## 264     32078320 1748269723                  44178366 2626789000 713575796
## 265     33232291 1808990287                  44943376 2660686477 727174938
## 266     34467482 1871819432                  45723234 2694683249 741574727
## 267     35859969 1936584508                  46502953 2730069466 756184328
##     Solomon.Islands  Somalia South.Africa South.Korea South.Sudan
## 1                 0        0            0           0           0
## 2                 0        0            0           0           0
## 3                 0        0            0           0           0
## 4                 0        0            0           0           0
## 5                 0        0            0           0           0
## 6                 0        0            0           0           0
## 7                 0        0            0           0           0
## 8                 0        0            0           0           0
## 9                 0        0            0           0           0
## 10                0        0            0           0           0
## 11                0        0            0           0           0
## 12                0        0            0           0           0
## 13                0        0            0           0           0
## 14                0        0            0           0           0
## 15                0        0            0           0           0
## 16                0        0            0           0           0
## 17                0        0            0           0           0
## 18                0        0            0           0           0
## 19                0        0            0           0           0
## 20                0        0            0           0           0
## 21                0        0            0           0           0
## 22                0        0            0           0           0
## 23                0        0            0           0           0
## 24                0        0            0           0           0
## 25                0        0            0           0           0
## 26                0        0            0           0           0
## 27                0        0            0           0           0
## 28                0        0            0           0           0
## 29                0        0            0           0           0
## 30                0        0            0           0           0
## 31                0        0            0           0           0
## 32                0        0            0           0           0
## 33                0        0            0           0           0
## 34                0        0            0           0           0
## 35                0        0            0           0           0
## 36                0        0            0           0           0
## 37                0        0            0           0           0
## 38                0        0            0           0           0
## 39                0        0            0           0           0
## 40                0        0            0           0           0
## 41                0        0            0           0           0
## 42                0        0            0           0           0
## 43                0        0            0           0           0
## 44                0        0            0           0           0
## 45                0        0            0           0           0
## 46                0        0            0           0           0
## 47                0        0            0           0           0
## 48                0        0            0           0           0
## 49                0        0            0           0           0
## 50                0        0            0           0           0
## 51                0        0            0           0           0
## 52                0        0            0           0           0
## 53                0        0            0           0           0
## 54                0        0            0           0           0
## 55                0        0            0           0           0
## 56                0        0            0           0           0
## 57                0        0            0           0           0
## 58                0        0            0           0           0
## 59                0        0            0           0           0
## 60                0        0            0           0           0
## 61                0        0            0           0           0
## 62                0        0            0           0           0
## 63                0        0            0           0           0
## 64                0        0            0           0           0
## 65                0        0            0           0           0
## 66                0        0            0           0           0
## 67                0        0            0           0           0
## 68                0        0            0           0           0
## 69                0        0            0           0           0
## 70                0        0            0           0           0
## 71                0        0            0           0           0
## 72                0        0            0           0           0
## 73                0        0            0           0           0
## 74                0        0            0           0           0
## 75                0        0            0           0           0
## 76                0        0            0           0           0
## 77                0        0            0           0           0
## 78                0        0            0           0           0
## 79                0        0            0           0           0
## 80                0        0            0           0           0
## 81                0        0            0           0           0
## 82                0        0            0           0           0
## 83                0        0            0           0           0
## 84                0        0            0           0           0
## 85                0        0            0           0           0
## 86                0        0            0           0           0
## 87                0        0            0           0           0
## 88                0        0            0           0           0
## 89                0        0            0           0           0
## 90                0        0            0           0           0
## 91                0        0            0           0           0
## 92                0        0            0           0           0
## 93                0        0            0           0           0
## 94                0        0            0           0           0
## 95                0        0            0           0           0
## 96                0        0            0           0           0
## 97                0        0            0           0           0
## 98                0        0            0           0           0
## 99                0        0            0           0           0
## 100               0        0            0           0           0
## 101               0        0            0           0           0
## 102               0        0            0           0           0
## 103               0        0            0           0           0
## 104               0        0            0           0           0
## 105               0        0            0           0           0
## 106               0        0            0           0           0
## 107               0        0            0           0           0
## 108               0        0            0           0           0
## 109               0        0            0           0           0
## 110               0        0            0           0           0
## 111               0        0            0           0           0
## 112               0        0            0           0           0
## 113               0        0            0           0           0
## 114               0        0            0           0           0
## 115               0        0            0           0           0
## 116               0        0            0           0           0
## 117               0        0            0           0           0
## 118               0        0            0           0           0
## 119               0        0            0           0           0
## 120               0        0            0           0           0
## 121               0        0            0           0           0
## 122               0        0            0           0           0
## 123               0        0            0           0           0
## 124               0        0            0           0           0
## 125               0        0            0           0           0
## 126               0        0            0           0           0
## 127               0        0            0           0           0
## 128               0        0            0           0           0
## 129               0        0            0           0           0
## 130               0        0            0           0           0
## 131               0        0            0           0           0
## 132               0        0            0           0           0
## 133               0        0            0           0           0
## 134               0        0        21984           0           0
## 135               0        0        58624           0           0
## 136               0        0       106256           0           0
## 137               0        0       153888           0           0
## 138               0        0       234496           0           0
## 139               0        0       366400           0           0
## 140               0        0       663184           0           0
## 141               0        0       959968           0           0
## 142               0        0      1439952           0           0
## 143               0        0      3238976           0           0
## 144               0        0      5671872           0           0
## 145               0        0      9009776           0           0
## 146               0        0     13267344           0           0
## 147               0        0     18045200           0           0
## 148               0        0     24094464           0           0
## 149               0        0     29612448           0           0
## 150               0        0     31942752           0           0
## 151               0        0     35852240           0           0
## 152               0        0     41678000           0           0
## 153               0        0     49460336           0           0
## 154               0        0     58228288           0           0
## 155               0        0     68256656           0           0
## 156               0        0     79721312           0           0
## 157               0        0     92373104           0           0
## 158               0        0    105380304           0           0
## 159               0        0    120355072           0           0
## 160               0        0    137334048           0           0
## 161               0        0    153675488           0           0
## 162               0        0    171024528           0           0
## 163               0        0    190007712           0           0
## 164               0        0    208408320           0           0
## 165               0        0    226918848           0           0
## 166               0        0    248730640           0           0
## 167               0        0    272070320           0           0
## 168               0        0    294292480           0           0
## 169               0        0    317430640           0           0
## 170               0        0    343096960           0           0
## 171               0        0    368510464           0           0
## 172               0        0    390296608           0           0
## 173               0        0    416739696           0           0
## 174               0        0    444516480           0           0
## 175               0        0    473469408           0           0
## 176               0        0    503898928           0           0
## 177               0        0    533460080           0           0
## 178               0        0    563083520           0           0
## 179               0        0    593853792           0           0
## 180               0        0    622575888           0           0
## 181               0        0    648143280           0           0
## 182               0        0    671600208           0           0
## 183               0        0    696933104           0           0
## 184               0        0    725805424           0           0
## 185               0        0    757964352           0           0
## 186               0        0    793219360           0           0
## 187               0        0    830038896           0           0
## 188               0        0    868741728           0           0
## 189               0        0    908902832           0           0
## 190               0        0    950423280           0           0
## 191               0        0    994754016           0           0
## 192               0        0   1043181104           0           0
## 193               0        0   1091948944           0           0
## 194               0        0   1146520560           0           0
## 195               0        0   1202392896        3664           0
## 196               0        0   1258441104      490976           0
## 197               0        0   1314280464     1388656           0
## 198               0        0   1371383904     3059440           0
## 199               0        0   1431975472     5235856           0
## 200               0    47632   1493014048     7419600           0
## 201               0    95264   1558163632    10343472           0
## 202            3664   142896   1629054704    13805952           0
## 203            7328   190528   1700059360    18499536           0
## 204           10992   238160   1773965904    23658448           0
## 205           21984   304112   1856911536    30103424           0
## 206           32976   373728   1944184352    37658592           0
## 207           43968   447008   2033846096    45873280           0
## 208           54960   531280   2130110368    54883056           0
## 209           65952   619216   2224583238    66104432      113889
## 210           76944   703488   2322426751    78644551      227168
## 211           91600   791424   2424546597    93093257      342584
## 212          106256   897680   2530216592   110354845      466244
## 213          120912  1000272   2639941743   131438015      606087
## 214          139232  1135840   2759487761   153633169      760891
## 215          164880  1267744   2887627799   178611478      963021
## 216          190528  1406976   3015862685   208593710     1183167
## 217          223504  1634144   3149622794   243706949     1448501
## 218          260144  1788032   3287576548   280904091     1707119
## 219          296784  1949248   3430719397   323372311     2055504
## 220          337088  2165424   3580337583   377088664     2459765
## 221          384720  2352288   3748729842   435638440     2874713
## 222          439680  2586784   3920259987   495915762     3322637
## 223          505632  2850592   4093572736   568947630     3774531
## 224          571584  3180352   4270061003   644580693     4247797
## 225          630208  3682320   4454993406   726364692     4600763
## 226          692496  4162304   4647817303   819635483     4913424
## 227          773104  4961056   4847463644   925327072     5230360
## 228          835392  5517984   5049234835  1038728814     5516763
## 229          945312  6005296   5267782956  1171947674     5814157
## 230         1047904  6818704   5495842691  1306836308     6126208
## 231         1183472  7093504   5752747151  1446613815     6429404
## 232         1304384  7811648   6032996196  1588597045     6748172
## 233         1447280  8745968   6324701381  1739634818     7073657
## 234         1590176  9460448   6640074644  1903683622     7365556
## 235         1740400 10317824   6963733554  2082168450     7704781
## 236         1894288 11241152   7294024665  2264840281     8058663
## 237         2055504 12234096   7622469788  2457780131     8337737
## 238         2213056 13237752   7964831558  2680087990     8741388
## 239         2374272 14189824   8305250024  2916336177     9054355
## 240         2520832 14919396   8617879970  3163774374     9489149
## 241         2667392 15625898   8943607143  3425812690     9896464
## 242         2810288 16305438   9244636475  3708006733    10261032
## 243         2953184 16944660   9564974564  4029844509    10512627
## 244         3092416 17572876   9903363232  4374108263    10857959
## 245         3235312 18160775  10264727372  4748100693    11215809
## 246         3378208 18728695  10628213838  5149630567    11584957
## 247         3521104 19267303  11013334529  5577416635    12036240
## 248         3664000 19780263  11390110805  5940964895    12427372
## 249         3814224 20271239  11764428366  6339290153    12851480
## 250         3964448 20751223  12142159272  6784731036    13312228
## 251         4122000 21253191  12513299848  7233281612    13842592
## 252         4279552 21839431  12868753906  7696909627    14518600
## 253         4440768 22432999  13271989174  8159316945    15273995
## 254         4601984 23026567  13720528242  8637922725    16228467
## 255         4763200 23620135  14135579092  9097268389    17142940
## 256         4928080 24213703  14581287756  9562874298    18143212
## 257         5107616 24821927  15045262756 10056227516    19319356
## 258         5294480 25422823  15539389912 10562010071    20561147
## 259         5488672 26020055  16040766850 11068774611    21856981
## 260         5686528 26631943  16513249430 11634735536    23184265
## 261         5884384 27236503  16982176670 12223170623    24488039
## 262         6082240 27844727  17449257316 12806802599    24488039
## 263         6283760 28452951  17913876373 13398342333    24488039
## 264         6485280 29061175  18401882557 13984890342    24488039
## 265         6705194 29724825  18862999143 14575447863    26119178
## 266         6927627 30441664  19331044546 15170521542    27881048
## 267         7165127 31190568  19787369762 15786618228    29721727
##           Spain Sri.Lanka     Sudan  Suriname Swaziland     Sweden
## 1             0         0         0         0         0          0
## 2             0         0         0         0         0          0
## 3             0         0         0         0         0          0
## 4             0         0         0         0         0          0
## 5             0         0         0         0         0          0
## 6             0         0         0         0         0          0
## 7             0         0         0         0         0          0
## 8             0         0         0         0         0          0
## 9             0         0         0         0         0          0
## 10            0         0         0         0         0          0
## 11            0         0         0         0         0          0
## 12            0         0         0         0         0          0
## 13            0         0         0         0         0          0
## 14            0         0         0         0         0          0
## 15            0         0         0         0         0          0
## 16            0         0         0         0         0          0
## 17            0         0         0         0         0          0
## 18            0         0         0         0         0          0
## 19            0         0         0         0         0          0
## 20            0         0         0         0         0          0
## 21            0         0         0         0         0          0
## 22            0         0         0         0         0          0
## 23            0         0         0         0         0          0
## 24            0         0         0         0         0          0
## 25            0         0         0         0         0          0
## 26            0         0         0         0         0          0
## 27            0         0         0         0         0          0
## 28            0         0         0         0         0          0
## 29            0         0         0         0         0          0
## 30            0         0         0         0         0          0
## 31            0         0         0         0         0          0
## 32            0         0         0         0         0          0
## 33            0         0         0         0         0          0
## 34            0         0         0         0         0          0
## 35            0         0         0         0         0          0
## 36            0         0         0         0         0          0
## 37            0         0         0         0         0          0
## 38            0         0         0         0         0          0
## 39            0         0         0         0         0          0
## 40            0         0         0         0         0          0
## 41            0         0         0         0         0          0
## 42            0         0         0         0         0          0
## 43            0         0         0         0         0          0
## 44            0         0         0         0         0          0
## 45            0         0         0         0         0          0
## 46            0         0         0         0         0          0
## 47            0         0         0         0         0          0
## 48            0         0         0         0         0          0
## 49            0         0         0         0         0          0
## 50            0         0         0         0         0          0
## 51            0         0         0         0         0          0
## 52            0         0         0         0         0          0
## 53            0         0         0         0         0          0
## 54            0         0         0         0         0          0
## 55            0         0         0         0         0          0
## 56            0         0         0         0         0          0
## 57            0         0         0         0         0          0
## 58            0         0         0         0         0          0
## 59            0         0         0         0         0          0
## 60            0         0         0         0         0          0
## 61            0         0         0         0         0          0
## 62            0         0         0         0         0          0
## 63            0         0         0         0         0          0
## 64            0         0         0         0         0          0
## 65            0         0         0         0         0          0
## 66            0         0         0         0         0          0
## 67            0         0         0         0         0          0
## 68            0         0         0         0         0          0
## 69            0         0         0         0         0          0
## 70            0         0         0         0         0          0
## 71            0         0         0         0         0          0
## 72            0         0         0         0         0          0
## 73            0         0         0         0         0          0
## 74            0         0         0         0         0          0
## 75            0         0         0         0         0          0
## 76            0         0         0         0         0          0
## 77            0         0         0         0         0          0
## 78            0         0         0         0         0          0
## 79            0         0         0         0         0          0
## 80         3664         0         0         0         0          0
## 81         7328         0         0         0         0          0
## 82        10992         0         0         0         0          0
## 83        14656         0         0         0         0          0
## 84        18320         0         0         0         0      32976
## 85        21984         0         0         0         0      32976
## 86        43968         0         0         0         0      32976
## 87        80608         0         0         0         0      32976
## 88       106256         0         0         0         0      32976
## 89       153888         0         0         0         0      76944
## 90       190528         0         0         0         0     117248
## 91       293120         0         0         0         0     157552
## 92       436016         0         0         0         0     238160
## 93       608224         0         0         0         0     296784
## 94       809744         0         0         0         0     395712
## 95      1084544         0         0         0         0     483648
## 96      1366672         0         0         0         0     564256
## 97      1626816         0         0         0         0     644864
## 98      1919936         0         0         0         0     784096
## 99      2246032         0         0         0         0     978288
## 100     2740672         0         0         0         0    1179808
## 101     3249968         0         0         0         0    1395984
## 102     3784912         0         0         0         0    1612160
## 103     4437104         0         0         0         0    1839328
## 104     4986704         0         0         0         0    2176416
## 105     5539968         0         0         0         0    2491520
## 106     6294752         0         0         0         0    2967840
## 107     7144800         0         0         0         0    3579728
## 108     8295296         0         0         0         0    4092688
## 109     9925776         0         0         0         0    4847472
## 110    11856704         0         0         0         0    5598592
## 111    13860912         0         0         0         0    6565888
## 112    16048320         0         0         0         0    7551504
## 113    18481216         0         0         0         0    8537120
## 114    20815184         0         0         0         0    9574032
## 115    23119840         0         0         0         0   10654912
## 116    25409840         0         0         0         0   11768768
## 117    27967312         0         0         0         0   12805680
## 118    30627376         0         0         0         0   14029456
## 119    33265456         0         0         0         0   15117664
## 120    36339552         0         0         0         0   16458688
## 121    39278080         0         0         0         0   17891312
## 122    42539040         0         0         0         0   19602400
## 123    45675424         0         0         0         0   21339136
## 124    48793488         0         0         0         0   23211440
## 125    52083760         0         0         0         0   25486784
## 126    55652496         0         0         0         0   27916016
## 127    59433744         0         0         0         0   30488144
## 128    63189344         0         0         0         0   32668224
## 129    67161120         0         0         0         0   34881280
## 130    71576240         0         0         0         0   37709888
## 131    76507984         0         0         0         0   40461552
## 132    81890400         0         0         0         0   43608928
## 133    87793104         0         0         0         0   46825920
## 134    93662832         0         0         0         0   50376336
## 135    99422640         0         0         0         0   54205216
## 136   105515872         0         0         0         0   57957152
## 137   111656736         0         0         0         0   61760384
## 138   118090720         0         0         0         0   66006960
## 139   124913088         0         0         0         0   70964352
## 140   132252080         0         0         0         0   75910752
## 141   140191968         0         0         0         0   81190576
## 142   148490928         0         0         0         0   86441088
## 143   156610352         0         0         0         0   91720912
## 144   165345328         0         0         0         0   97612624
## 145   173948400         0         0         0         0  103566624
## 146   183251296         0         0         0         0  109722144
## 147   192796016         0         0         0         0  116577488
## 148   202168528         0         0         0         0  123876176
## 149   212794128         0         0         0         0  133010528
## 150   224013296         0         0         0         0  142181520
## 151   235818704         0         0         0         0  150703984
## 152   248155392         0         0         0         0  159629488
## 153   260330864         0         0         0         0  169434352
## 154   273323408         0         0         0         0  179759504
## 155   286894864         0         0         0         0  189923440
## 156   300755776         0         0         0         0  201215888
## 157   314851184         0         0         0         0  213988592
## 158   329635424         0         0         0         0  227633328
## 159   344800720         0         0         0         0  240193520
## 160   359694880         0         0         0         0  253182400
## 161   374424160         0         0         0         0  265834192
## 162   390406528         0         0         0         0  279852656
## 163   407825184         0         0         0         0  295611520
## 164   425126592         0         0         0         0  310458048
## 165   440438448         0         0         0         0  325407168
## 166   458304112         0         0         0         0  341166032
## 167   474154576         0         0         0         0  347929776
## 168   490888064         0         0         0         0  355931952
## 169   506815472         0         0         0         0  363611696
## 170   520870576         0         0         0         0  374013792
## 171   535717104         0         0         0         0  380026416
## 172   550658896         0         0         0         0  389970512
## 173   567872368         0         0         0         0  402069040
## 174   586261984         0         0         0         0  416508864
## 175   605314784         0         0         0         0  429406144
## 176   623693408         0         0         0         0  441940688
## 177   645138800         0         0         0         0  459568192
## 178   666653808         0         0         0         0  475814368
## 179   690631024         0         0         0         0  495185936
## 180   714274816         0         0         0         0  514117824
## 181   736812080         0         0         0         0  533060704
## 182   757993664         0         0         0         0  551798400
## 183   776705712         0         0         0         0  571316528
## 184   796956640         0         0         0         0  593051376
## 185   819416960         0         0         0         0  615918400
## 186   827474096         0         0         0         0  640969168
## 187   832720944         0         0         0         0  669914768
## 188   845944320         0         0         0         0  696053744
## 189   861662880         0         0         0         0  725358416
## 190   883287808         0         0         0         0  743835968
## 191   904802816         0         0         0         0  758880352
## 192   927867696         0         0         0         0  771905872
## 193   951724000         0         0         0         0  787745344
## 194   977522224         0         0         0         0  800191952
## 195  1005797312         0         0         0         0  804746304
## 196  1033892864         0         0         0         0  822128320
## 197  1065073504         0         0         0         0  847226720
## 198  1097796688         0         0         0         0  878033632
## 199  1133560992         0         0         0         0  904872432
## 200  1166606608   1626816    549600    212512      3664  933535904
## 201  1199732832   3173024   1271408    447008      7328  966980896
## 202  1237347456   5111280   2029856    714480     10992 1001510432
## 203  1276292112   7177776   2861584   1025920     14656 1034068736
## 204  1316031856   8962144   3678656   1363008     18320 1068572624
## 205  1356321200  10625600   4605648   1674448     21984 1107678496
## 206  1398673376  12043568   5503328   2015200     25648 1151063920
## 207  1448906816  14362880   6657488   2388928     29312 1189916976
## 208  1504801136  16312128   7947216   2707696     32976 1231998016
## 209  1556880067  18367246   9313888   3074096     36640 1274386413
## 210  1605745641  20623913  10673232   3506448     69616 1323556934
## 211  1659352499  22957554  12058224   3935136     73280 1372356439
## 212  1719328349  25518334  13542144   4429776     73280 1423629026
## 213  1778071252  28049860  15220256   4961056     73280 1478942084
## 214  1842395061  30321243  17077904   5565616     84272 1539310154
## 215  1913415511  32977287  19503472   6360704    164880 1601872365
## 216  1991032525  35637024  22145216   7456240    366400 1674389725
## 217  2077426502  38582107  25329232   8789936    593568 1743319463
## 218  2174443740  41820192  28432640  10240880    872032 1820925494
## 219  2271180680  46135255  32613264  11761440   1176144 1907306627
## 220  2387947163  49728331  37464400  13369936   1542544 1999593652
## 221  2516405698  52921794  42443776  15084480   1941920 2084102608
## 222  2661121909  56459673  47818864  16828306   2322976 2168806008
## 223  2816079168  60143963  53241584  18934869   2693040 2256095819
## 224  2988744760  63073261  58920784  20535858   3004480 2335918957
## 225  3169798252  65966246  63156368  22554603   3341568 2416679427
## 226  3367544027  68765013  66908304  24551131   3674992 2504920673
## 227  3562372894  71676044  70711536  26448658   4015744 2590661482
## 228  3761886509  75111588  74148368  28840519   4455424 2670138396
## 229  3964632755  78920604  77717104  31133287   4902432 2755007463
## 230  4178544341  82309203  81461712  33502702   5367760 2826721703
## 231  4384640165  86314795  85100064  35531026   5803776 2896110784
## 232  4593238293  90781684  88925280  37401593   6239792 2958368154
## 233  4796672984  95636582  92831104  38773650   6510928 3016637130
## 234  4994339778  99488683  96333888  40325682   6844352 3073945976
## 235  5194270778 103405249 100404592  41921538   7284032 3136310706
## 236  5383382980 107065551 104651168  43678466   7742032 3198321228
## 237  5572890583 111092468 108000064  45435250   8178048 3258016805
## 238  5770347980 114549106 112843872  47309139   8614064 3315442844
## 239  5995232826 117996117 116599472  49160899   9050080 3370964666
## 240  6227127874 121825549 121817008  50928243   9475104 3428471009
## 241  6468592871 125962579 126704784  52977696   9801200 3486184502
## 242  6718919795 131068563 131079600  55041787  10065008 3543631594
## 243  6960737621 136044170 134098736  57080212  10196912 3601027308
## 244  7214971669 141479952 138242720  59121932  10680560 3660872800
## 245  7482803856 147295450 142536928  61181952  11134896 3720148927
## 246  7738251852 154265618 146966704  63263935  11475648 3783342950
## 247  8006310574 161785177 152382096  65367880  12677440 3841475660
## 248  8282946544 169521489 157075680  67471804  13890224 3900192735
## 249  8583123105 178039061 162164976  69594027  15128656 3956049709
## 250  8895049164 188172878 167693952  71785845  16315792 4010774690
## 251  9208941158 198500144 174058320  74149198  17458960 4066456980
## 252  9542948274 209446827 182170416  75709828  18583808 4123098293
## 253  9880927507 220398955 191235152  77248166  19624384 4180322647
## 254 10235213162 232545124 202688816  78804517  20653968 4236765987
## 255 10604177295 244480318 213662496  80393536  21672560 4290609298
## 256 10964456534 256273974 225665760  82132592  22687488 4344282049
## 257 11332590137 268425285 239779488  83889462  23750048 4397098526
## 258 11669080256 280413101 254680976  85825169  24845584 4447821622
## 259 11966328397 293356585 270230992  87820517  25889824 4494974861
## 260 12250205887 306406886 286158400  90215872  26926736 4547902135
## 261 12534800636 321293489 301803680  92175647  27974640 4596872092
## 262 12814071919 337069239 301803680  94419997  29180096 4643275658
## 263 13066754630 352322537 301803680  96322152  30268304 4688044655
## 264 13321950369 370481468 301803680  98297939  31470096 4731270361
## 265 13593677569 391194906 318100566 100295158  32703337 4774655918
## 266 13854663465 413145633 335588441 102325938  33944549 4817223936
## 267 14136085452 436284059 353794293 104379605  35288300 4858725461
##     Switzerland      Syria     Taiwan Tajikistan  Tanzania   Thailand
## 1             0          0          0          0         0          0
## 2             0          0          0          0         0          0
## 3             0          0          0          0         0          0
## 4             0          0          0          0         0          0
## 5             0          0          0          0         0          0
## 6             0          0          0          0         0          0
## 7             0          0          0          0         0          0
## 8             0          0          0          0         0          0
## 9             0          0          0          0         0          0
## 10            0          0          0          0         0          0
## 11            0          0          0          0         0          0
## 12            0          0          0          0         0          0
## 13            0          0          0          0         0          0
## 14            0          0          0          0         0          0
## 15            0          0          0          0         0          0
## 16            0          0          0          0         0          0
## 17            0          0          0          0         0          0
## 18            0          0          0          0         0          0
## 19            0          0          0          0         0          0
## 20            0          0          0          0         0          0
## 21            0          0          0          0         0          0
## 22            0          0          0          0         0          0
## 23            0          0          0          0         0          0
## 24            0          0          0          0         0          0
## 25            0          0          0          0         0          0
## 26            0          0          0          0         0          0
## 27            0          0          0          0         0          0
## 28            0          0          0          0         0          0
## 29            0          0          0          0         0          0
## 30            0          0          0          0         0          0
## 31            0          0          0          0         0          0
## 32            0          0          0          0         0          0
## 33            0          0          0          0         0          0
## 34            0          0          0          0         0          0
## 35            0          0          0          0         0          0
## 36            0          0          0          0         0          0
## 37            0          0          0          0         0          0
## 38            0          0          0          0         0          0
## 39            0          0          0          0         0          0
## 40            0          0          0          0         0          0
## 41            0          0          0          0         0          0
## 42            0          0          0          0         0          0
## 43            0          0          0          0         0          0
## 44            0          0          0          0         0          0
## 45            0          0          0          0         0          0
## 46            0          0          0          0         0          0
## 47            0          0          0          0         0          0
## 48            0          0          0          0         0          0
## 49            0          0          0          0         0          0
## 50            0          0          0          0         0          0
## 51            0          0          0          0         0          0
## 52            0          0          0          0         0          0
## 53            0          0          0          0         0          0
## 54            0          0          0          0         0          0
## 55            0          0          0          0         0          0
## 56            0          0          0          0         0          0
## 57            0          0          0          0         0          0
## 58            0          0          0          0         0          0
## 59            0          0          0          0         0          0
## 60            0          0          0          0         0          0
## 61            0          0          0          0         0          0
## 62            0          0          0          0         0          0
## 63            0          0          0          0         0          0
## 64            0          0          0          0         0          0
## 65            0          0          0          0         0          0
## 66            0          0          0          0         0          0
## 67            0          0          0          0         0          0
## 68            0          0          0          0         0          0
## 69            0          0          0          0         0          0
## 70            0          0          0          0         0          0
## 71            0          0          0          0         0          0
## 72            0          0          0          0         0          0
## 73            0          0          0          0         0          0
## 74            0          0          0          0         0          0
## 75            0          0          0          0         0          0
## 76            0          0          0          0         0          0
## 77            0          0          0          0         0          0
## 78            0          0          0          0         0          0
## 79            0          0          0          0         0          0
## 80            0          0          0          0         0          0
## 81            0          0          0          0         0          0
## 82            0          0          0          0         0          0
## 83            0          0          0          0         0          0
## 84            0          0          0          0         0          0
## 85            0          0          0          0         0          0
## 86            0          0          0          0         0          0
## 87            0          0          0          0         0          0
## 88            0          0          0          0         0          0
## 89            0          0          0          0         0          0
## 90            0          0          0          0         0          0
## 91            0          0          0          0         0          0
## 92            0          0          0          0         0          0
## 93            0          0          0          0         0          0
## 94            0          0          0          0         0          0
## 95            0          0          0          0         0          0
## 96            0          0          0          0         0          0
## 97            0          0          0          0         0          0
## 98            0          0          0          0         0          0
## 99            0          0          0          0         0          0
## 100           0          0          0          0         0          0
## 101           0          0          0          0         0          0
## 102           0          0          0          0         0          0
## 103           0          0          0          0         0          0
## 104           0          0          0          0         0          0
## 105           0          0          0          0         0          0
## 106           0          0          0          0         0          0
## 107           0          0          0          0         0          0
## 108      146560          0          0          0         0          0
## 109      351744          0          0          0         0          0
## 110      655856          0          0          0         0          0
## 111     1080880          0          0          0         0          0
## 112     1549872          0          0          0         0          0
## 113     2018864          0          0          0         0          0
## 114     2590448          0          0          0         0          0
## 115     3286608          0          0          0         0          0
## 116     3975440          0          0          0         0          0
## 117     4649616          0          0          0         0          0
## 118     5419056          0          0          0         0          0
## 119     6162848          0          0          0         0          0
## 120     7060528          0          0          0         0          0
## 121     8170720          0          0          0         0          0
## 122     9445792          0          0          0         0          0
## 123    10684224          0          0          0         0          0
## 124    11853040          0          0          0         0          0
## 125    13131776          0          0          0         0          0
## 126    14626688          0          0          0         0          0
## 127    16044656          0          0          0         0          0
## 128    17400336          0          0          0         0          0
## 129    18847616          0          0          0         0          0
## 130    20518400          0          0          0         0          0
## 131    22082928          0          0          0         0          0
## 132    23812336          0          0          0         0          0
## 133    25724944          0          0          0         0          0
## 134    27688848          0          0          0         0          0
## 135    29733360          0          0          0         0          0
## 136    31818176          0          0          0         0          0
## 137    34075200          0          0          0         0          0
## 138    36379856          0          0          0         0          0
## 139    38922672          0          0          0         0          0
## 140    41798912          0          0          0         0          0
## 141    45320016          0          0          0         0          0
## 142    48789824          0          0          0         0          0
## 143    51666064          0          0          0         0          0
## 144    55249456          0          0          0         0          0
## 145    59096656          0          0          0         0          0
## 146    63306592          0       3664          0         0          0
## 147    67747360          0      54960          0         0          0
## 148    72495904          0     168544          0         0          0
## 149    77618176          0     249152          0         0          0
## 150    83293712          0     359072          0         0          0
## 151    88478272          0     534944          0         0          0
## 152    93714128          0     791424          0         0          0
## 153    99386000          0    1007600          0         0          0
## 154   105347328          0    1227440          0         0          0
## 155   111587120          0    1480256          0         0          0
## 156   118482768          0    1755056          0         0          0
## 157   126481280          0    2114128          0         0          0
## 158   134487120          0    2524496          0         0          0
## 159   142555248          0    3011808          0         0          0
## 160   150344912          0    3627360          0         0          0
## 161   158955312          0    4305200          0         0          0
## 162   167715936          0    5045328          0         0          0
## 163   176967536          0    5899040          0         0          0
## 164   185394736          0    6818704          0         0          0
## 165   194320240          0    7833632          0         0          0
## 166   202802400          0    9218624          0         0          0
## 167   208910288          0   11017648          0         0          0
## 168   214655440          0   13161088          0         0          0
## 169   219261088          0   16070304          0         0          0
## 170   226493824          0   19115088          0         0          0
## 171   230960240          0   21870416          0         0          0
## 172   237112096          0   25442816          0         0          0
## 173   244777184          0   29275360          0         0          0
## 174   252009920          0   33269120          0         0          0
## 175   259546768          0   37757520          0         0          0
## 176   267003008          0   42509728          0         0          0
## 177   275598752          0   47437808          0         0          0
## 178   284564560          0   51640416          0         0          0
## 179   294831088          0   55832032          0         0          0
## 180   304390464          0   60074944          0         0          0
## 181   314488448       3664   63848864          0         0      29312
## 182   324714672      14656   67443248          0         0      54960
## 183   334281376      29312   71638528          0         0      76944
## 184   343837088      40304   75811824          0         0     102592
## 185   353312192      54960   80175648          0         0     128240
## 186   363234304      84272   84909536          0         0     157552
## 187   373698688     146560   90160048          0         0     194192
## 188   384159408     208848   96059088          0         0     234496
## 189   396019776     267472  103240528          0         0     282128
## 190   404333392     289456  111008208          0         0     340752
## 191   410961568     311440  118944432          0         0     399376
## 192   416801984     366400  125363760          0         0     399376
## 193   422975824     403040  131790416          0         0     432352
## 194   427427584     421360  136421712          0         0     447008
## 195   429050736     439680  138609120          0         0     447008
## 196   434817872     461664  141470704          0         0     447008
## 197   444267328     487312  145090736          0         0     476320
## 198   454482560     512960  149630432          0         0     516624
## 199   463016016     542272  154104176          0         0     578912
## 200   473253232     956304  157889088          0         0    1535216
## 201   485556944    1337360  162798848          0         0    2627088
## 202   496787104    1813680  169192528          0         0    3905824
## 203   507126912    2326640  175666816          0         0    5550960
## 204   519727408    2905552  182155760          0         0    7602800
## 205   533350160    4550688  189355520          0         0    9977072
## 206   550417072    6554896  197042592          0         0   12596832
## 207   568117856    8537120  205227968          0         0   15520704
## 208   584408000   10706208  214802000          0         0   18539840
## 209   601006066   12932107  225793355    3007314         0   21861038
## 210   620500929   16150802  237667259    6138271         0   25570530
## 211   640858208   19211737  250195711    9367023         0   29711245
## 212   664977910   22411606  264360515   12755641         0   34738025
## 213   694044607   26017883  279469116   16389705         0   40299629
## 214   722170318   30379151  296376295   20254515         0   47769910
## 215   752499252   34051409  314221101   24354244         0   55210106
## 216   783984851   38962337  333682691   28683675         0   64675543
## 217   816504292   43565549  355652606   33210684         0   76825683
## 218   852485619   49519498  379793222   37864844         0   93901346
## 219   890532580   56752124  406084220   42711858         0  108441373
## 220   930776902   63402055  434818244   47809939   1765365  123793916
## 221   972664840   72276243  466293603   53222473   4226859  143015020
## 222  1015580614   80032524  502166098   58919790   6391332  164820500
## 223  1061783046   87917698  542412488   64860493   9574071  189240739
## 224  1103209819   97572109  581724260   71030364  11877538  213451269
## 225  1142260910  108743298  625181154   77518885  14159140  237822776
## 226  1182697979  122480441  681234868   84255436  16945109  266538963
## 227  1223735696  137112791  742251183   91219420  18952731  298603851
## 228  1265905539  152294186  813087347   98420680  21150055  333550819
## 229  1305770003  174778777  888586558  105679767  23212845  370137297
## 230  1346260011  195505465  971705922  113222921  25086506  410093530
## 231  1385071729  222040081 1046272877  120623095  27193331  447910303
## 232  1421656771  246404540 1121126886  128163103  29341631  485545886
## 233  1461678831  274179063 1203594224  135810769  31537935  527663190
## 234  1500806728  307028048 1287733770  143526894  33884918  573218937
## 235  1540586727  336417425 1371651271  151848619  36222818  621449307
## 236  1582832312  367490643 1465062237  160192015  38500411  670672678
## 237  1623036452  403433484 1562185652  168886216  40867920  726978844
## 238  1663697619  440112601 1674003537  177818555  43139606  793181716
## 239  1703115236  474383853 1795695663  186562638  45301205  870965960
## 240  1747277176  511429112 1917600955  194759764  47518430  960356063
## 241  1793417340  553629851 2050605878  202663479  49867225 1058721657
## 242  1839432832  596190910 2193951576  209958103  52142406 1166798371
## 243  1883037512  641412607 2348787075  215119498  54688388 1289664316
## 244  1925716081  687602423 2510608674  217466944  57063424 1426508530
## 245  1969130142  728802573 2682720206  219909832  60559694 1584965599
## 246  2013228608  771124850 2863062137  222732317  63951878 1762230010
## 247  2056263623  811555618 3057366630  224881238  66774861 1945275945
## 248  2100875970  861302148 3255219793  227375647  69256354 2107827592
## 249  2145317680  913073571 3460442055  229891193  71714234 2281958609
## 250  2188929597  963555066 3677627781  232123267  74285181 2461222599
## 251  2234005394 1011695758 3903838319  234408756  77324788 2653599878
## 252  2277463921 1050134339 4139572106  236281690  80811751 2859375911
## 253  2322108023 1103715711 4384078578  238343882  84497978 3081292353
## 254  2367336307 1154100337 4642534191  240891157  88729634 3321534057
## 255  2413116145 1203981165 4899642287  243312326  94089739 3565837997
## 256  2458481773 1256821551 5164449755  245946465  99968732 3814457992
## 257  2501841600 1322540031 5439986357  249150758 105679021 4063624102
## 258  2546548288 1389417427 5699348306  252036071 111616430 4313215121
## 259  2590076356 1450979644 5945804488  254470762 117310356 4577965420
## 260  2635121458 1511696046 6213679908  256988525 124150963 4857393934
## 261  2676101148 1567835396 6480615828  259308560 131957981 5133229900
## 262  2718352048 1611625452 6736620011  262214852 141196063 5426894330
## 263  2761535958 1647434427 6994924930  265651911 152108072 5723797325
## 264  2800773709 1677546449 7257077088  270712598 163349359 6036983816
## 265  2839512256 1706471690 7515964663  276172800 175802862 6357557824
## 266  2878717170 1734471087 7779440605  281751836 189407554 6682391958
## 267  2918791195 1762385573 8050965637  287463210 203638082 7013231542
##       Timor     Togo   Tonga Trinidad.and.Tobago   Tunisia     Turkey
## 1         0        0       0                   0         0          0
## 2         0        0       0                   0         0          0
## 3         0        0       0                   0         0          0
## 4         0        0       0                   0         0          0
## 5         0        0       0                   0         0          0
## 6         0        0       0                   0         0          0
## 7         0        0       0                   0         0          0
## 8         0        0       0                   0         0          0
## 9         0        0       0                   0         0          0
## 10        0        0       0                   0         0          0
## 11        0        0       0                   0         0          0
## 12        0        0       0                   0         0          0
## 13        0        0       0                   0         0          0
## 14        0        0       0                   0         0          0
## 15        0        0       0                   0         0          0
## 16        0        0       0                   0         0          0
## 17        0        0       0                   0         0          0
## 18        0        0       0                   0         0          0
## 19        0        0       0                   0         0          0
## 20        0        0       0                   0         0          0
## 21        0        0       0                   0         0          0
## 22        0        0       0                   0         0          0
## 23        0        0       0                   0         0          0
## 24        0        0       0                   0         0          0
## 25        0        0       0                   0         0          0
## 26        0        0       0                   0         0          0
## 27        0        0       0                   0         0          0
## 28        0        0       0                   0         0          0
## 29        0        0       0                   0         0          0
## 30        0        0       0                   0         0          0
## 31        0        0       0                   0         0          0
## 32        0        0       0                   0         0          0
## 33        0        0       0                   0         0          0
## 34        0        0       0                   0         0          0
## 35        0        0       0                   0         0          0
## 36        0        0       0                   0         0          0
## 37        0        0       0                   0         0          0
## 38        0        0       0                   0         0          0
## 39        0        0       0                   0         0          0
## 40        0        0       0                   0         0          0
## 41        0        0       0                   0         0          0
## 42        0        0       0                   0         0          0
## 43        0        0       0                   0         0          0
## 44        0        0       0                   0         0          0
## 45        0        0       0                   0         0          0
## 46        0        0       0                   0         0          0
## 47        0        0       0                   0         0          0
## 48        0        0       0                   0         0          0
## 49        0        0       0                   0         0          0
## 50        0        0       0                   0         0          0
## 51        0        0       0                   0         0          0
## 52        0        0       0                   0         0          0
## 53        0        0       0                   0         0          0
## 54        0        0       0                   0         0          0
## 55        0        0       0                   0         0          0
## 56        0        0       0                   0         0          0
## 57        0        0       0                   0         0          0
## 58        0        0       0                   0         0          0
## 59        0        0       0                   0         0          0
## 60        0        0       0                   0         0          0
## 61        0        0       0                   0         0          0
## 62        0        0       0                   0         0          0
## 63        0        0       0                   0         0          0
## 64        0        0       0                   0         0          0
## 65        0        0       0                   0         0          0
## 66        0        0       0                   0         0          0
## 67        0        0       0                   0         0          0
## 68        0        0       0                   0         0          0
## 69        0        0       0                   0         0          0
## 70        0        0       0                   0         0          0
## 71        0        0       0                   0         0          0
## 72        0        0       0                   0         0          0
## 73        0        0       0                   0         0          0
## 74        0        0       0                   0         0          0
## 75        0        0       0                   0         0          0
## 76        0        0       0                   0         0          0
## 77        0        0       0                   0         0          0
## 78        0        0       0                   0         0          0
## 79        0        0       0                   0         0          0
## 80        0        0       0                   0         0          0
## 81        0        0       0                   0         0          0
## 82        0        0       0                   0         0          0
## 83        0        0       0                   0         0          0
## 84        0        0       0                   0         0          0
## 85        0        0       0                   0         0          0
## 86        0        0       0                   0         0          0
## 87        0        0       0                   0         0          0
## 88        0        0       0                   0         0          0
## 89        0        0       0                   0         0          0
## 90        0        0       0                   0         0          0
## 91        0        0       0                   0         0          0
## 92        0        0       0                   0         0          0
## 93        0        0       0                   0         0          0
## 94        0        0       0                   0         0          0
## 95        0        0       0                   0         0          0
## 96        0        0       0                   0         0          0
## 97        0        0       0                   0         0          0
## 98        0        0       0                   0         0          0
## 99        0        0       0                   0         0          0
## 100       0        0       0                   0         0          0
## 101       0        0       0                   0         0          0
## 102       0        0       0                   0         0          0
## 103       0        0       0                   0         0          0
## 104       0        0       0                   0         0          0
## 105       0        0       0                   0         0          0
## 106       0        0       0                   0         0          0
## 107       0        0       0                   0         0          0
## 108       0        0       0                   0         0          0
## 109       0        0       0                   0         0          0
## 110       0        0       0                   0         0          0
## 111       0        0       0                   0         0          0
## 112       0        0       0                   0         0          0
## 113       0        0       0                   0         0          0
## 114       0        0       0                   0         0          0
## 115       0        0       0                   0         0     150224
## 116       0        0       0                   0         0     359072
## 117       0        0       0                   0         0     586240
## 118       0        0       0                   0         0     762112
## 119       0        0       0                   0         0    1029584
## 120       0        0       0                   0         0    1187136
## 121       0        0       0                   0         0    1384992
## 122       0        0       0                   0         0    1630480
## 123       0        0       0                   0         0    1868640
## 124       0        0       0                   0         0    2125120
## 125       0        0       0                   0         0    2476864
## 126       0        0       0                   0         0    2751664
## 127       0        0       0                   0         0    3198672
## 128       0        0       0                   0         0    3524768
## 129       0        0       0                   0         0    3649344
## 130       0        0       0                   0         0    3788576
## 131       0        0       0                   0         0    3971776
## 132       0        0       0                   0         0    4125664
## 133       0        0       0                   0         0    4286880
## 134       0        0       0                   0         0    4462752
## 135       0        0       0                   0         0    4656944
## 136       0        0       0                   0         0    4792512
## 137       0        0       0                   0         0    5038000
## 138       0        0       0                   0         0    5305472
## 139       0        0       0                   0         0    5708512
## 140       0        0       0                   0         0    6074912
## 141       0        0       0                   0         0    6477952
## 142       0        0       0                   0         0    6888320
## 143       0        0       0                   0         0    7313344
## 144       0        0       0                   0         0    7705392
## 145       0        0       0                   0         0    8079120
## 146       0        0       0                   0         0    8522464
## 147       0        0       0                   0         0    8837568
## 148       0        0       0                   0         0    9361520
## 149       0        0       0                   0         0   10032032
## 150       0        0       0                   0         0   11068944
## 151       0        0       0                   0         0   12017920
## 152       0        0       0                   0         0   13065824
## 153       0        0       0                   0         0   14271280
## 154       0        0       0                   0         0   15637952
## 155       0        0       0                   0         0   17169504
## 156       0        0       0                   0         0   18748688
## 157       0        0       0                   0         0   20628320
## 158       0        0       0                   0         0   22350400
## 159       0        0       0               25648         0   24306976
## 160       0        0       0               91600         0   26190272
## 161       0        0       0              216176         0   28417984
## 162       0        0       0              414032         0   30414864
## 163       0        0       0              637536         0   32452048
## 164       0        0       0              926992         0   34115504
## 165       0        0       0             1260416         0   35152416
## 166       0        0       0             1674448     10992   35665376
## 167       0        0       0             2202064     40304   36057424
## 168       0        0       0             2971504     80608   36515424
## 169       0        0       0             3620032     80608   37453408
## 170       0        0       0             4488400    109920   38856720
## 171       0        0       0             5488672    131904   39699440
## 172       0        0       0             6470624    131904   40710704
## 173       0        0       0             7679744    131904   42183632
## 174       0        0       0             9335872    131904   44634848
## 175       0        0       0            11281456    131904   47001792
## 176       0        0       0            13241696    131904   50009936
## 177       0        0       0            15341168    131904   53289216
## 178       0        0       0            18572816    131904   56414608
## 179       0        0       0            22167200    131904   59965024
## 180       0        0       0            25812880    131904   63936800
## 181       0        0       0            28886976    131904   67875600
## 182       0        0       0            32140608    131904   71876688
## 183       0        0       0            36207648    150224   76540960
## 184       0        0       0            40985504    168544   82333744
## 185       0        0       0            46074800    186864   88269424
## 186       0        0       0            51816288    212512   94135488
## 187       0        0       0            59063680    241824   98382064
## 188       0        0       0            67402944    274800  103017024
## 189       0        0       0            76856064    307776  107923120
## 190       0        0       0            87591584    366400  113393472
## 191       0        0       0            97491712    501968  119014048
## 192       0        0       0           108157616    663184  123960448
## 193       0        0       0           118431472    714480  130079328
## 194       0        0       0           129203632    806080  137103216
## 195       0        0       0           140224944    901344  144193056
## 196       0        0       0           151161984   1033248  151216944
## 197       0        0       0           163165248   1161488  158695168
## 198       0        0       0           175806048   1308048  166396896
## 199       0        0       0           189557040   1436288  174366096
## 200       0    25648    7328           191909328   2656400  183855856
## 201       0    51296   14656           194422832   4034064  194041776
## 202       0    95264   21984           197218464   5477680  204517152
## 203       0   124576   29312           200153328   6855344  217484048
## 204       0   157552   36640           202989264   8262320  230919936
## 205       0   197856   43968           205711616   9859824  244542688
## 206       0   238160   51296           208591520  11420688  258905568
## 207       0   285792   58624           211156320  12996208  274880608
## 208       0   333424   65952           214633456  14443488  290921600
## 209       0   388384   73280           217725159  16031881  308113403
## 210       0   454336   84272           220303902  17755991  324911940
## 211       0   545936   95264           224901835  19520701  342252778
## 212       0   633872  106256           232133918  21314605  363857324
## 213       0   740128  117248           233441312  23258733  386497266
## 214       0   872032  128240           237232839  26012219  412800228
## 215       0  1003936  139232           242423954  28472585  440153183
## 216       0  1183472  150224           246475476  31354221  471658944
## 217       0  1381328  164880           251109664  34437407  505138056
## 218       0  1575520  179536           255146530  38029741  541403541
## 219       0  1817344  190528           259047709  41881832  580156237
## 220       0  2092144  216176           268038066  45620577  622735465
## 221       0  2407248  234496           276134466  49828166  670373632
## 222       0  2812109  256480           284369979  54559528  724095483
## 223       0  3223615  282128           293759800  59382906  783405513
## 224       0  3613884  304112           303801844  64774145  844334197
## 225       0  3925324  337088           313415140  70315280  909753585
## 226       0  4247756  366400           329325958  76156699  983113066
## 227       0  4709420  395712           345485219  82905383 1064233895
## 228       0  5064828  432352           360797083  90383329 1140947908
## 229       0  6446156  472656           377504162  99133591 1215985891
## 230       0  7239453  512960           394423595 108598917 1291198305
## 231       0  7944749  560592           411665977 118399076 1370384479
## 232       0  8761360  604560           430071214 127891946 1456594746
## 233       0  9383835  652192           446346759 139141695 1546407100
## 234       0 10077136  699824           463851168 150630220 1641313343
## 235       0 10734547  747456           484574249 162501157 1746975993
## 236       0 11580380  795088           501929098 174493533 1862594227
## 237       0 12503002  850048           519418165 186156880 1991036792
## 238       0 13463909  919664           535251270 198533724 2115764753
## 239       0 14485302  989280           551356291 211674149 2253335205
## 240       0 15457976 1066224           568338816 224841576 2399842404
## 241       0 16506443 1161488           585307140 240204429 2553380422
## 242       0 17537113 1231104           604411312 255096229 2712446269
## 243       0 18606036 1315376           622332395 271450148 2879748135
## 244       0 19610956 1406976           639718365 287226261 3043531307
## 245       0 20785697 1502240           656687852 302778742 3221841559
## 246       0 22050868 1579184           677217991 319359587 3417592262
## 247       0 22929854 1678112           695550463 336125735 3625615262
## 248       0 24219821 1766048           714609101 353934272 3833657566
## 249       0 26070255 1875968           737085874 372054505 4037606593
## 250       0 27401627 1971232           760851948 391724829 4263636436
## 251       0 28560540 2059168           787132530 412270103 4473165581
## 252  161216 29883011 2161760           815671827 432828731 4690818493
## 253  322432 31687742 2279008           847570562 453754178 4923781512
## 254  498304 33431671 2388928           880910528 475680759 5165690733
## 255  674176 35153262 2502512           918970774 497949443 5426588688
## 256  853712 36653768 2630752           961531423 520551936 5708130407
## 257 1036912 38170520 2744336          1006880624 544236285 6020992905
## 258 1238432 39693298 2865248          1051133031 568569703 6331389600
## 259 1465600 42434136 2997152          1095901990 592891310 6648160632
## 260 1700096 45033498 3114400          1143714324 619993841 6967689032
## 261 1945584 47541082 3216992          1190521282 645518173 7312434527
## 262 2238704 49833655 3323248          1235831750 671824580 7666569292
## 263 2678384 52069775 3436832          1282247280 698690081 8013350257
## 264 3147376 54289513 3557744          1328390553 726582118 8370910218
## 265 3659175 56929815 3689692          1374075573 752986787 8751768314
## 266 4176839 59681972 3823152          1415099191 779894477 9154589098
## 267 4729566 62673116 3965652          1455796378 808028626 9602486274
##     Turkmenistan Turks.and.Caicos.Islands Tuvalu   Uganda     Ukraine
## 1              0                        0      0        0           0
## 2              0                        0      0        0           0
## 3              0                        0      0        0           0
## 4              0                        0      0        0           0
## 5              0                        0      0        0           0
## 6              0                        0      0        0           0
## 7              0                        0      0        0           0
## 8              0                        0      0        0           0
## 9              0                        0      0        0           0
## 10             0                        0      0        0           0
## 11             0                        0      0        0           0
## 12             0                        0      0        0           0
## 13             0                        0      0        0           0
## 14             0                        0      0        0           0
## 15             0                        0      0        0           0
## 16             0                        0      0        0           0
## 17             0                        0      0        0           0
## 18             0                        0      0        0           0
## 19             0                        0      0        0           0
## 20             0                        0      0        0           0
## 21             0                        0      0        0           0
## 22             0                        0      0        0           0
## 23             0                        0      0        0           0
## 24             0                        0      0        0           0
## 25             0                        0      0        0           0
## 26             0                        0      0        0           0
## 27             0                        0      0        0           0
## 28             0                        0      0        0           0
## 29             0                        0      0        0           0
## 30             0                        0      0        0           0
## 31             0                        0      0        0           0
## 32             0                        0      0        0           0
## 33             0                        0      0        0           0
## 34             0                        0      0        0           0
## 35             0                        0      0        0           0
## 36             0                        0      0        0           0
## 37             0                        0      0        0           0
## 38             0                        0      0        0           0
## 39             0                        0      0        0           0
## 40             0                        0      0        0           0
## 41             0                        0      0        0           0
## 42             0                        0      0        0           0
## 43             0                        0      0        0           0
## 44             0                        0      0        0           0
## 45             0                        0      0        0           0
## 46             0                        0      0        0           0
## 47             0                        0      0        0           0
## 48             0                        0      0        0           0
## 49             0                        0      0        0           0
## 50             0                        0      0        0           0
## 51             0                        0      0        0           0
## 52             0                        0      0        0           0
## 53             0                        0      0        0           0
## 54             0                        0      0        0           0
## 55             0                        0      0        0           0
## 56             0                        0      0        0           0
## 57             0                        0      0        0           0
## 58             0                        0      0        0           0
## 59             0                        0      0        0           0
## 60             0                        0      0        0           0
## 61             0                        0      0        0           0
## 62             0                        0      0        0           0
## 63             0                        0      0        0           0
## 64             0                        0      0        0           0
## 65             0                        0      0        0           0
## 66             0                        0      0        0           0
## 67             0                        0      0        0           0
## 68             0                        0      0        0           0
## 69             0                        0      0        0           0
## 70             0                        0      0        0           0
## 71             0                        0      0        0           0
## 72             0                        0      0        0           0
## 73             0                        0      0        0           0
## 74             0                        0      0        0           0
## 75             0                        0      0        0           0
## 76             0                        0      0        0           0
## 77             0                        0      0        0           0
## 78             0                        0      0        0           0
## 79             0                        0      0        0           0
## 80             0                        0      0        0           0
## 81             0                        0      0        0           0
## 82             0                        0      0        0           0
## 83             0                        0      0        0           0
## 84             0                        0      0        0           0
## 85             0                        0      0        0           0
## 86             0                        0      0        0           0
## 87             0                        0      0        0           0
## 88             0                        0      0        0           0
## 89             0                        0      0        0           0
## 90             0                        0      0        0           0
## 91             0                        0      0        0           0
## 92             0                        0      0        0           0
## 93             0                        0      0        0           0
## 94             0                        0      0        0           0
## 95             0                        0      0        0           0
## 96             0                        0      0        0           0
## 97             0                        0      0        0           0
## 98             0                        0      0        0           0
## 99             0                        0      0        0           0
## 100            0                        0      0        0           0
## 101            0                        0      0        0           0
## 102            0                        0      0        0           0
## 103            0                        0      0        0           0
## 104            0                        0      0        0           0
## 105            0                        0      0        0           0
## 106            0                        0      0        0           0
## 107            0                        0      0        0           0
## 108            0                        0      0        0           0
## 109            0                        0      0        0           0
## 110            0                        0      0        0           0
## 111            0                        0      0        0           0
## 112            0                        0      0        0           0
## 113            0                        0      0        0           0
## 114            0                        0      0        0           0
## 115            0                        0      0        0           0
## 116            0                        0      0        0           0
## 117            0                        0      0        0           0
## 118            0                        0      0        0           0
## 119            0                        0      0        0           0
## 120            0                        0      0        0           0
## 121            0                        0      0        0           0
## 122            0                        0      0        0           0
## 123            0                        0      0        0           0
## 124            0                        0      0        0           0
## 125            0                        0      0        0           0
## 126            0                        0      0        0           0
## 127            0                        0      0        0           0
## 128            0                        0      0        0           0
## 129            0                        0      0        0           0
## 130            0                        0      0        0           0
## 131            0                        0      0        0           0
## 132            0                        0      0        0           0
## 133            0                        0      0        0           0
## 134            0                        0      0        0           0
## 135            0                        0      0        0           0
## 136            0                        0      0        0           0
## 137            0                        0      0        0           0
## 138            0                        0      0        0           0
## 139            0                        0      0        0           0
## 140            0                        0      0        0           0
## 141            0                        0      0        0           0
## 142            0                        0      0        0           0
## 143            0                        0      0        0           0
## 144            0                        0      0        0           0
## 145            0                        0      0        0           0
## 146            0                        0      0        0           0
## 147            0                        0      0        0           0
## 148            0                        0      0        0           0
## 149            0                        0      0        0           0
## 150            0                        0      0        0           0
## 151            0                        0      0        0           0
## 152            0                        0      0        0           0
## 153            0                        0      0        0           0
## 154            0                        0      0        0           0
## 155            0                        0      0        0           0
## 156            0                        0      0        0           0
## 157            0                        0      0        0           0
## 158            0                        0      0        0           0
## 159            0                        0      0        0           0
## 160            0                        0      0        0           0
## 161            0                        0      0        0           0
## 162            0                        0      0        0           0
## 163            0                        0      0        0           0
## 164            0                        0      0        0           0
## 165            0                        0      0        0           0
## 166            0                        0      0        0           0
## 167            0                        0      0        0           0
## 168            0                        0      0        0           0
## 169            0                        0      0        0           0
## 170            0                        0      0        0           0
## 171            0                        0      0        0           0
## 172            0                        0      0        0           0
## 173            0                        0      0        0           0
## 174            0                        0      0        0           0
## 175            0                        0      0        0           0
## 176            0                        0      0        0           0
## 177            0                        0      0        0           0
## 178            0                        0      0        0           0
## 179            0                        0      0        0           0
## 180            0                        0      0        0           0
## 181            0                        0      0        0           0
## 182            0                        0      0        0           0
## 183            0                        0      0        0           0
## 184            0                        0      0        0           0
## 185            0                        0      0        0           0
## 186            0                        0      0        0           0
## 187            0                        0      0        0           0
## 188            0                        0      0        0           0
## 189            0                        0      0        0           0
## 190            0                        0      0        0           0
## 191            0                        0      0        0           0
## 192            0                        0      0        0           0
## 193            0                        0      0        0           0
## 194            0                        0      0        0           0
## 195            0                        0      0        0           0
## 196            0                        0      0        0           0
## 197            0                        0      0        0           0
## 198            0                        0      0        0           0
## 199            0                        0      0        0           0
## 200            0                        0      0   106256           0
## 201            0                        0      0   245488           0
## 202            0                        0      0   388384           0
## 203            0                        0      0   597232           0
## 204            0                        0      0   817072           0
## 205            0                        0      0  1080880           0
## 206            0                        0      0  1344688           0
## 207            0                        0      0  1623152           0
## 208            0                        0      0  1916272           0
## 209     13578842                        0      0  2329977   259196536
## 210     27716191                        0      0  2751040   529017008
## 211     42295291                        0      0  3157477   807235379
## 212     57596433                        0      0  3585927  1099196777
## 213     74005887                        0      0  4018071  1412293257
## 214     91457307                        0      0  4508750  1745254162
## 215    109969676                        0      0  5134759  2098417232
## 216    129519455                        0      0  5867083  2471328084
## 217    149961499                        0      0  6676263  2861230105
## 218    170977767                        0      0  7657591  3262060063
## 219    192864874                        0      0  8833021  3679486138
## 220    215885784                        0      0 10275865  4118506023
## 221    240323968                        0      0 11714985  4584381460
## 222    266045218                        0      0 13095629  5074543640
## 223    292862379                        0      0 14274873  5585387757
## 224    320710965                        0      0 15468713  6115657428
## 225    349994557                        0      0 16600502  6673021608
## 226    380396263                        0      0 17588933  7251803993
## 227    411823002                        0      0 18393783  7850219369
## 228    444319542                        0      0 19091925  8469167939
## 229    477076269                        0      0 19764744  9093234885
## 230    511113862                        0      0 20391053  9741834445
## 231    544500818                        0      0 20918393 10377977853
## 232    578515043                        0      0 21463694 11026149437
## 233    613009457                        0      0 22078172 11683439031
## 234    647807464                        0      0 22659550 12346506551
## 235    685334432                        0      0 23277445 13061701934
## 236    722953565                        0      0 23979971 13778633334
## 237    762151391                        0      0 24748888 14525725832
## 238    802419175                        0      0 25612465 15293265517
## 239    841832240                        0      0 26413672 16044501812
## 240    878773207                    29312   7328 27169538 16750334043
## 241    914391735                    58624  14656 27945419 17382872801
## 242    947292151                    91600  21984 28728596 17971935047
## 243    975483831                   131904  29312 29504413 18482136420
## 244   1008926371                   175872  36640 30208245 18901404055
## 245   1042858578                   223504  43968 31138207 19291269845
## 246   1073462302                   271136  51296 32174220 19642679712
## 247   1104018192                   326096  58624 33254320 19982923509
## 248   1136043146                   384720  65952 34488383 20303990728
## 249   1173648171                   450672  73280 35767815 20596302009
## 250   1211113763                   520288  80608 37162207 20875839852
## 251   1249113524                   593568  87936 38630288 21177140585
## 252   1289003135                   692496  98928 40138157 21471340564
## 253   1333523267                   795088 109920 41685516 21776524009
## 254   1379970352                   897680 120912 43366124 22082779438
## 255   1428201904                  1018592 131904 45470684 22396313137
## 256   1477574053                  1161488 139232 47939304 22729077849
## 257   1533464184                  1326368 150224 50754620 23065678945
## 258   1590129918                  1505904 161216 53806877 23391411721
## 259   1640300666                  1685440 172208 57053556 23668581623
## 260   1697409557                  1875968 179536 60818712 23962100434
## 261   1759591822                  2066496 186864 64886558 24269171598
## 262   1824124726                  2264352 197856 68747236 24572876666
## 263   1890498848                  2462208 208848 73392457 24868950727
## 264   1958527304                  2667392 219840 78380175 25125534326
## 265   2033906302                  2881595 231835 83704938 25349114024
## 266   2110469600                  3099955 243968 89276331 25584270039
## 267   2183172085                  3318276 256923 95059160 25796386297
##     United.Arab.Emirates United.Kingdom United.States   Uruguay Uzbekistan
## 1                      0        9350528             0         0          0
## 2                      0       18704720             0         0          0
## 3                      0       28058912             0         0          0
## 4                      0       37416768             0         0          0
## 5                      0       46778288             0         0          0
## 6                      0       56784672             0         0          0
## 7                      0       66794720             0         0          0
## 8                      0       76808432             0         0          0
## 9                      0       86825808             0         0          0
## 10                     0       96843184             0         0          0
## 11                     0      107816864             0         0          0
## 12                     0      118794208             0         0          0
## 13                     0      129775216             0         0          0
## 14                     0      140759888             0         0          0
## 15                     0      151748224             0         0          0
## 16                     0      164007968             0         0          0
## 17                     0      176271376             0         0          0
## 18                     0      188538448             0         0          0
## 19                     0      200809184             0         0          0
## 20                     0      213083584             0         0          0
## 21                     0      226695344             0         0          0
## 22                     0      240310768             0         0          0
## 23                     0      253929856             0         0          0
## 24                     0      267552608             0         0          0
## 25                     0      281179024             0         0          0
## 26                     0      296216080             0         0          0
## 27                     0      311256800             0         0          0
## 28                     0      326301184             0         0          0
## 29                     0      341349232             0         0          0
## 30                     0      356404608             0         0          0
## 31                     0      373248016             0         0          0
## 32                     0      390095088             0         0          0
## 33                     0      406949488             0         0          0
## 34                     0      423807552             0         0          0
## 35                     0      440672944             0         0          0
## 36                     0      459821008             0         0          0
## 37                     0      478976400             0         0          0
## 38                     0      498135456             0         0          0
## 39                     0      517301840             0         0          0
## 40                     0      536475552             0         0          0
## 41                     0      557891632             0         0          0
## 42                     0      579315040             0         0          0
## 43                     0      600745776             0         0          0
## 44                     0      622180176             0         0          0
## 45                     0      643621904             0         0          0
## 46                     0      666034592             0         0          0
## 47                     0      689575792             0         0          0
## 48                     0      714091616             0         0          0
## 49                     0      739889840             0         0          0
## 50                     0      766523456        252816         0          0
## 51                     0      793234016        520288         0          0
## 52                     0      820083808        809744         0          0
## 53                     0      850275168       1106528         0          0
## 54                     0      880605760       1439952         0          0
## 55                     0      912068528       1780704         0          0
## 56                     0      945319328       2114128         0          0
## 57                     0      978577456       2491520         0          0
## 58                     0     1011846576       2883568         0          0
## 59                     0     1045126688       3286608         0          0
## 60                     0     1078417792       3704304         0          0
## 61                     0     1113980576       4151312         0          0
## 62                     0     1150917360       4634960         0          0
## 63                     0     1188293824       5155248         0          0
## 64                     0     1226381104       5715840         0          0
## 65                     0     1265303776       6316736         0          0
## 66                     0     1306739952       6979920         0          0
## 67                     0     1348663440       7698064         0          0
## 68                     0     1390685856       8478496         0          0
## 69                     0     1433023376       9240608         0          0
## 70                     0     1475551424      10032032         0          0
## 71                     0     1518423888      10860096         0          0
## 72                     0     1562945152      11724800         0          0
## 73                     0     1609818704      12626144         0          0
## 74                     0     1658901648      13641072         0          0
## 75                     0     1708493888      14776912         0          0
## 76                     0     1758639392      16092288         0          0
## 77                     0     1810869712      17539568         0          0
## 78                     0     1863459104      19133408         0          0
## 79                     0     1916795952      20928768         0          0
## 80                     0     1984660560      23017248         0          0
## 81                     0     2050425696      25281600         0          0
## 82                     0     2116014960      28304400         0          0
## 83                     0     2181508960      31832832         0          0
## 84                     0     2247046928      35214704         0          0
## 85                     0     2312310096      39530896         0          0
## 86                     0     2388755792      44261120         0          0
## 87                     0     2462526768      49566592         0          0
## 88                     0     2538338592      54597264         0          0
## 89                     0     2616117984      60115248         0          0
## 90                     0     2697077728      65988640         0          0
## 91                     0     2778916832      72202784         0          0
## 92                     0     2864288032      79120416         0          0
## 93                     0     2953381856      86884432         0          0
## 94                     0     3046854160      96190992         0          0
## 95                     0     3146841056     107395504         0          0
## 96                     0     3242533744     120105920         0          0
## 97                     0     3346082048     135175952         0          0
## 98                     0     3455368176     151960736         0          0
## 99                     0     3571374080     170181808         0          0
## 100                    0     3693978848     189974736         0          0
## 101                    0     3810633280     214607808         0          0
## 102                    0     3926873680     241398976         0          0
## 103                    0     4042472880     271561024         0          0
## 104                    0     4181774496     304720224         0          0
## 105                    0     4312216560     342880784         0          0
## 106                    0     4452591728     382917312         0          0
## 107                    0     4590453392     423972432         0          0
## 108                    0     4725567056     465621120         0          0
## 109                    0     4875578544     510941136         0          0
## 110                    0     5043528976     558378944         0          0
## 111                    0     5218576576     604058032         0          0
## 112                    0     5388047568     651506832         0          0
## 113                    0     5568272400     706316608         0          0
## 114                    0     5762182272     764973584         0          0
## 115                    0     5967670384     823795440         0          0
## 116                    0     6179401952     883027664         0          0
## 117                    0     6396776080     955893632         0          0
## 118                    0     6609995232    1038245696         0          0
## 119                    0     6833700752    1131941504         0          0
## 120                    0     7062195120    1230561728         0          0
## 121                    0     7304231632    1333582416         0          0
## 122                    0     7559220384    1459887824         0          0
## 123                    0     7823878432    1599394624         0          0
## 124                    0     8081065584    1733691216         0          0
## 125                    0     8352553328    1869438752         0          0
## 126                    0     8623572080    2002258752         0          0
## 127                    0     8899471280    2149434304         0          0
## 128                    0     9170446064    2293337904         0          0
## 129                    0     9443091632    2468806864         0          0
## 130                    0     9740216384    2667490928         0          0
## 131                    0    10052528416    2877683616         0          0
## 132                    0    10367493184    3113077296         0          0
## 133                    0    10695223328    3366959520         0          0
## 134                    0    11014321088    3634548768         0          0
## 135                    0    11329611952    3906710688         0          0
## 136                    0    11642041232    4194173472         0          0
## 137                    0    11962483680    4501553760         0          0
## 138                    0    12295651200    4875428320         0          0
## 139                    0    12640675424    5210970112         0          0
## 140                    0    12993698160    5612716720         0          0
## 141                    0    13354169808    6040140640         0          0
## 142                    0    13707177888    6490589136         0          0
## 143                    0    14023388416    6944683312         0          0
## 144                    0    14385490544    7369732960         0          0
## 145                    0    14751040496    7849680320         0          0
## 146                    0    15127021856    8330562000         0          0
## 147                    0    15512991280    8830848224         0          0
## 148                    0    15899869376    9376168672         0          0
## 149                    0    16314421664   10001701408         0          0
## 150                    0    16734162176   10664438400         0          0
## 151                    0    17144863600   11385964272         0          0
## 152                    0    17571503424   12150457872         0          0
## 153                    0    18001488480   13044862256         0          0
## 154                    0    18433481408   13925083296         0          0
## 155                    0    18871153536   14909581776         0          0
## 156                    0    19324503920   15942921376         0          0
## 157                    0    19798072256   17144724368         0          0
## 158                    0    20260036704   18195698800         0          0
## 159                    0    20726123152   19359051776         0          0
## 160                    0    21195855280   20628279696         0          0
## 161                    0    21677205952   21884665296         0          0
## 162                    0    22133091824   23225876160         0          0
## 163                    0    22631414144   24665989376         0          0
## 164                    0    23114596816   25981687808         0          0
## 165                    0    23604077904   27346956496         0          0
## 166                    0    24111149856   28863214960         0          0
## 167                    0    24612319104   30531683312         0          0
## 168                    0    25079167664   32277267872         0          0
## 169                    0    25535299024   33754218944         0          0
## 170                    0    26005313280   35490108560         0          0
## 171                    0    26325118192   36912081312         0          0
## 172                    0    26753340864   38345408800         0          0
## 173                    0    27208233792   40239418336         0          0
## 174                    0    27684216704   41935011280         0          0
## 175                    0    28133873776   43675909584         0          0
## 176                    0    28380244800   45564445104         0          0
## 177                    0    28846979776   47409283760         0          0
## 178                    0    29284637248   49237070160         0          0
## 179                    0    29745330288   51197409088         0          0
## 180                    0    30186424592   52939619104         0          0
## 181                    0    30598661232   54422700048         0          0
## 182                    0    30994578416   55679100304     76944          0
## 183                    0    31386750992   57026283488    142896          0
## 184                    0    31809975968   58460673536    194192          0
## 185                    0    32239107312   59950935920    245488          0
## 186                    0    32692930352   61661631872    300448          0
## 187                    0    33161090624   63451195424    373728          0
## 188                    0    33610062528   64964614288    450672          0
## 189                    0    34062518896   66632478080    538608          0
## 190                    0    34537662752   68503968672    622880          0
## 191                    0    35007343584   70543182528    710816          0
## 192                    0    35476273296   72737079472    784096          0
## 193                    0    35931122256   75004263744    850048          0
## 194                    0    36373165536   77444641632    945312          0
## 195                    0    36790806576   79799981744   1055232          0
## 196                    0    37226961808   82053015648   1198128          0
## 197                    0    37688259408   84533778144   1344688          0
## 198                    0    38163857600   87110830560   1491248          0
## 199                    0    38649004176   89270820848   1637808          0
## 200                    0    39149444288   91806763184   4092688          0
## 201                    0    39694281088   94419132896   6716112          0
## 202                    0    40222706832   96964213248   9870816          0
## 203                    0    40762795088   99569958448  13377264          0
## 204                    0    41315505824  102000000000  17114544          0
## 205                    0    41892149808  105000000000  21035024          0
## 206                    0    42466159376  108000000000  25058096          0
## 207                    0    43036556240  110000000000  29491536          0
## 208                    0    43592491296  113000000000  33470640          0
## 209                10992    44139097428  116000000000  37858418   45961762
## 210                21984    44723117446  119000000000  42172946   93813275
## 211                32976    45311732247  122000000000  46289707  143159453
## 212                51296    45904663746  125000000000  50296608  194948964
## 213                73280    46508049409  128000000000  54611433  250489714
## 214                91600    47115915398  131000000000  59164150  309557069
## 215               113584    47738027020  135000000000  64680441  372214820
## 216               139232    48356101686  138000000000  70079275  438383239
## 217              1055232    48948158713  142000000000  74958029  507571342
## 218              2297328    49554647017  146000000000  79836397  578702766
## 219             22804736    50183029564  150000000000  85425789  652781644
## 220             38039648    50835606959  154000000000  91161592  730697710
## 221             59206576    51495995243  158000000000  96963526  813370349
## 222             82641520    52144021692  163000000000 103032902  900341391
## 223            113246912    52803599014  168000000000 108801621  990971510
## 224            144548464    53420782903  172000000000 114478622 1085036372
## 225            175593536    54024030270  177000000000 120441029 1183893588
## 226            215210547    54622556620  181000000000 126328115 1286490595
## 227            253961835    55226918759  186000000000 131967749 1392509425
## 228            298715425    55831632748  191000000000 137697070 1502109501
## 229            335261884    56476146060  196000000000 143959422 1612564038
## 230            372085276    57055182034  200000000000 149777928 1727308206
## 231            408852206    57615737041  205000000000 155133884 1839808542
## 232            445604980    58163977997  209000000000 159987706 1954413999
## 233            480825434    58709463791  214000000000 163791245 2070591649
## 234            526981076    59238572677  218000000000 167229401 2187753253
## 235            576633593    59798200759  223000000000 170513213 2314115007
## 236            623663666    60366755544  227000000000 173678126 2440728456
## 237            671114020    60938424061  232000000000 177220659 2572635248
## 238            719209618    61508718917  237000000000 182006632 2708113054
## 239            773395753    62090296227  242000000000 186859270 2840652619
## 240            825098351    62691363779  247000000000 190826363 2964806880
## 241            881770699    63300384201  252000000000 195353868 3084682130
## 242            939528384    63893888327  257000000000 200496745 3195952332
## 243           1005093763    64473291109  262000000000 204935953 3311818726
## 244           1077698328    65048948495  268000000000 208965837 3420102816
## 245           1147711072    65615782597  273000000000 213524339 3523305106
## 246           1188140086    66204276059  279000000000 218928776 3629177162
## 247           1229213801    66766760794  284000000000 224441912 3736180468
## 248           1309896251    67334246973  290000000000 230081998 3855126434
## 249           1387438915    67894752319  296000000000 236763026 3977330960
## 250           1499226982    68461813771  302000000000 242030179 4098786596
## 251           1599829926    69037741271  308000000000 247060755 4221827284
## 252           1683575514    69597782225  314000000000 251618489 4349770672
## 253           1789252612    70169383194  320000000000 256146320 4476208668
## 254           1901120073    70742586958  326000000000 261710116 4601927718
## 255           2015674509    71312588008  332000000000 267435921 4718822658
## 256           2137558304    71880240253  338000000000 274032007 4838521020
## 257           2270895296    72439562234  344000000000 279978518 4957938290
## 258           2425050706    72984410472  350000000000 288179183 5081273920
## 259           2590235842    73479015204  356000000000 296126516 5187807822
## 260           2748400504    73991229457  361000000000 302423228 5291389310
## 261           2911105368    74461040920  367000000000 310077038 5404434674
## 262           3085029107    74948711673  372000000000 318670121 5519556616
## 263           3253240102    75426444245  378000000000 326159965 5622211473
## 264           3462051750    75865135422  383000000000 332816072 5726692290
## 265           3689528971    76287797976  389000000000 339467178 5837361615
## 266           3922955515    76686348860  394000000000 346231602 5935286883
## 267           4154728973    77071055648  399000000000 353071942 6034285830
##     Vanuatu  Venezuela    Vietnam Wallis.and.Futuna.Islands        World
## 1         0          0          0                         0 9.350528e+06
## 2         0          0          0                         0 1.870472e+07
## 3         0          0          0                         0 2.805891e+07
## 4         0          0          0                         0 3.741677e+07
## 5         0          0          0                         0 4.677829e+07
## 6         0          0          0                         0 5.678467e+07
## 7         0          0          0                         0 6.679472e+07
## 8         0          0          0                         0 7.680843e+07
## 9         0          0          0                         0 8.682581e+07
## 10        0          0          0                         0 9.684318e+07
## 11        0          0          0                         0 1.078169e+08
## 12        0          0          0                         0 1.187942e+08
## 13        0          0          0                         0 1.297752e+08
## 14        0          0          0                         0 1.407599e+08
## 15        0          0          0                         0 1.517482e+08
## 16        0          0          0                         0 1.640080e+08
## 17        0          0          0                         0 1.762714e+08
## 18        0          0          0                         0 1.885384e+08
## 19        0          0          0                         0 2.008092e+08
## 20        0          0          0                         0 2.130836e+08
## 21        0          0          0                         0 2.266953e+08
## 22        0          0          0                         0 2.403108e+08
## 23        0          0          0                         0 2.539299e+08
## 24        0          0          0                         0 2.675526e+08
## 25        0          0          0                         0 2.811790e+08
## 26        0          0          0                         0 2.962161e+08
## 27        0          0          0                         0 3.112568e+08
## 28        0          0          0                         0 3.263012e+08
## 29        0          0          0                         0 3.413492e+08
## 30        0          0          0                         0 3.564046e+08
## 31        0          0          0                         0 3.732480e+08
## 32        0          0          0                         0 3.900951e+08
## 33        0          0          0                         0 4.069495e+08
## 34        0          0          0                         0 4.238076e+08
## 35        0          0          0                         0 4.406766e+08
## 36        0          0          0                         0 4.598283e+08
## 37        0          0          0                         0 4.789874e+08
## 38        0          0          0                         0 4.981501e+08
## 39        0          0          0                         0 5.173202e+08
## 40        0          0          0                         0 5.364975e+08
## 41        0          0          0                         0 5.579173e+08
## 42        0          0          0                         0 5.798133e+08
## 43        0          0          0                         0 6.017277e+08
## 44        0          0          0                         0 6.236091e+08
## 45        0          0          0                         0 6.455015e+08
## 46        0          0          0                         0 6.684528e+08
## 47        0          0          0                         0 6.925473e+08
## 48        0          0          0                         0 7.176420e+08
## 49        0          0          0                         0 7.440705e+08
## 50        0          0          0                         0 7.721624e+08
## 51        0          0          0                         0 8.001223e+08
## 52        0          0          0                         0 8.369052e+08
## 53        0          0          0                         0 8.683936e+08
## 54        0          0          0                         0 9.027033e+08
## 55        0          0          0                         0 9.361227e+08
## 56        0          0          0                         0 9.711688e+08
## 57        0          0          0                         0 1.008043e+09
## 58        0          0          0                         0 1.043108e+09
## 59        0          0          0                         0 1.078198e+09
## 60        0          0          0                         0 1.115578e+09
## 61        0          0          0                         0 1.155160e+09
## 62        0          0          0                         0 1.196168e+09
## 63        0          0          0                         0 1.237388e+09
## 64        0          0          0                         0 1.279516e+09
## 65        0          0          0                         0 1.323004e+09
## 66        0          0          0                         0 1.370669e+09
## 67        0          0          0                         0 1.420100e+09
## 68        0          0          0                         0 1.469744e+09
## 69        0          0          0                         0 1.519692e+09
## 70        0          0          0                         0 1.570379e+09
## 71        0          0          0                         0 1.621815e+09
## 72        0          0          0                         0 1.675280e+09
## 73        0          0          0                         0 1.731830e+09
## 74        0          0          0                         0 1.790355e+09
## 75        0          0          0                         0 1.851111e+09
## 76        0          0          0                         0 1.912531e+09
## 77        0          0          0                         0 1.978446e+09
## 78        0          0          0                         0 2.045084e+09
## 79        0          0          0                         0 2.111479e+09
## 80        0          0          0                         0 2.200602e+09
## 81        0          0          0                         0 2.285131e+09
## 82        0          0          0                         0 2.370242e+09
## 83        0          0          0                         0 2.457049e+09
## 84        0          0          0                         0 2.545535e+09
## 85        0          0          0                         0 2.635981e+09
## 86        0          0          0                         0 2.740756e+09
## 87        0          0          0                         0 2.845448e+09
## 88        0          0          0                         0 2.953492e+09
## 89        0          0          0                         0 3.065105e+09
## 90        0          0          0                         0 3.184034e+09
## 91        0          0          0                         0 3.306654e+09
## 92        0          0          0                         0 3.436158e+09
## 93        0          0          0                         0 3.569011e+09
## 94        0          0          0                         0 3.710434e+09
## 95        0          0          0                         0 3.865645e+09
## 96        0          0          0                         0 4.023438e+09
## 97        0          0          0                         0 4.195841e+09
## 98        0          0          0                         0 4.369657e+09
## 99        0          0          0                         0 4.553169e+09
## 100       0          0          0                         0 4.750065e+09
## 101       0          0          0                         0 4.948807e+09
## 102       0          0          0                         0 5.156303e+09
## 103       0          0          0                         0 5.373403e+09
## 104       0          0          0                         0 5.628413e+09
## 105       0          0          0                         0 5.888447e+09
## 106       0          0          0                         0 6.165556e+09
## 107       0          0          0                         0 6.445236e+09
## 108       0          0          0                         0 6.729203e+09
## 109       0          0          0                         0 7.030205e+09
## 110       0          0          0                         0 7.360914e+09
## 111       0          0          0                         0 7.708701e+09
## 112       0          0          0                         0 8.062815e+09
## 113       0          0          0                         0 8.440738e+09
## 114       0          0          0                         0 8.847889e+09
## 115       0          0          0                         0 9.280256e+09
## 116       0          0          0                         0 9.726293e+09
## 117       0          0          0                         0 1.020411e+10
## 118       0          0          0                         0 1.069486e+10
## 119       0          0          0                         0 1.121599e+10
## 120       0          0          0                         0 1.174853e+10
## 121       0          0          0                         0 1.231467e+10
## 122       0          0          0                         0 1.294104e+10
## 123       0          0          0                         0 1.360646e+10
## 124       0          0          0                         0 1.422946e+10
## 125       0          0          0                         0 1.490526e+10
## 126       0          0          0                         0 1.559081e+10
## 127       0          0          0                         0 1.628991e+10
## 128       0          0          0                         0 1.699447e+10
## 129       0          0          0                         0 1.774951e+10
## 130       0          0          0                         0 1.860340e+10
## 131       0          0          0                         0 1.948599e+10
## 132       0          0          0                         0 2.041812e+10
## 133       0          0          0                         0 2.140939e+10
## 134       0          0          0                         0 2.241182e+10
## 135       0          0          0                         0 2.342173e+10
## 136       0          0          0                         0 2.444746e+10
## 137       0          0          0                         0 2.552450e+10
## 138       0          0          0                         0 2.671709e+10
## 139       0          0          0                         0 2.790924e+10
## 140       0          0          0                         0 2.920810e+10
## 141       0          0          0                         0 3.056740e+10
## 142       0          0     212512                         0 3.193794e+10
## 143       0          0     875696                         0 3.329208e+10
## 144       0          0    1179808                         0 3.469345e+10
## 145       0          0    1359344                         0 3.617937e+10
## 146       0          0    1722080                         0 3.771378e+10
## 147       0          0    2246032                         0 3.932082e+10
## 148       0          0    2901888                         0 4.101593e+10
## 149       0          0    3634688                         0 4.286776e+10
## 150       0          0    4147648                         0 4.482107e+10
## 151       0          0    4649616                         0 4.683904e+10
## 152       0          0    5048992                         0 4.890813e+10
## 153       0          0    5605920                         0 5.116540e+10
## 154       0       3664    6408336                         0 5.344663e+10
## 155       0       3664    7199760                         0 5.587530e+10
## 156       0       3664    8035152                         0 5.842616e+10
## 157       0       3664    8885200                         0 6.131082e+10
## 158       0       7328    9804864                         0 6.408653e+10
## 159       0       7328   10823456                         0 6.697182e+10
## 160       0       7328   12146160                         0 6.999784e+10
## 161       0       7328   13303984                         0 7.307907e+10
## 162       0       7328   14443488                         0 7.630579e+10
## 163       0      21984   15795504                         0 7.979716e+10
## 164       0      51296   17440640                         0 8.296523e+10
## 165       0     102592   19148064                         0 8.609039e+10
## 166       0     183200   20965408                         0 8.946272e+10
## 167       0     263808   22702144                         0 9.299109e+10
## 168       0     479984   24391248                         0 9.647178e+10
## 169       0     692496   26157296                         0 9.948842e+10
## 170       0     842720   28014944                         0 1.030000e+11
## 171       0    1003936   30458832                         0 1.060000e+11
## 172       0    1209120   33085920                         0 1.090000e+11
## 173       0    1659792   35888880                         0 1.130000e+11
## 174       0    2044512   39168160                         0 1.170000e+11
## 175       0    2718688   42784528                         0 1.200000e+11
## 176       0    3788576   46206704                         0 1.240000e+11
## 177       0    4803504   50163824                         0 1.280000e+11
## 178       0    6705120   55381360                         0 1.320000e+11
## 179       0    8654368   60613552                         0 1.360000e+11
## 180       0    7489216   65801776                         0 1.400000e+11
## 181       0    7232736   70381776                         0 1.440000e+11
## 182       0   11039632   74925136                         0 1.470000e+11
## 183       0   13860912   79146064                         0 1.500000e+11
## 184       0   19085776   83370656                         0 1.540000e+11
## 185       0   25076416   88078896                         0 1.580000e+11
## 186       0   28242112   93879008                         0 1.620000e+11
## 187       0   37640272  100001552                         0 1.670000e+11
## 188       0   43762816  106223024                         0 1.710000e+11
## 189       0   50761056  113162640                         0 1.750000e+11
## 190       0   63105072  119794480                         0 1.800000e+11
## 191       0   78164112  125971984                         0 1.850000e+11
## 192       0   89713040  129269584                         0 1.900000e+11
## 193       0  100045520  131977280                         0 1.960000e+11
## 194       0  115170512  133402576                         0 2.010000e+11
## 195       0  130925712  134014464                         0 2.050000e+11
## 196       0  210976784  134014464                         0 2.100000e+11
## 197       0  231473200  134014464                         0 2.150000e+11
## 198       0  257025936  134014464                         0 2.210000e+11
## 199       0  285744368  134014464                         0 2.260000e+11
## 200       0  324022176  134014464                         0 2.320000e+11
## 201       0  371405024  134014464                         0 2.380000e+11
## 202       0  422151424  134014464                         0 2.440000e+11
## 203       0  470010592  134014464                         0 2.510000e+11
## 204       0  521214992  134014464                         0 2.570000e+11
## 205       0  580971168  134014464                         0 2.640000e+11
## 206       0  645985184  134014464                         0 2.720000e+11
## 207       0  715575536  134014464                         0 2.800000e+11
## 208       0  770037232  134014464                         0 2.880000e+11
## 209       0  835186566  134014464                         0 2.970000e+11
## 210       0  892203396  134014464                         0 3.070000e+11
## 211       0  944083178  134014464                         0 3.160000e+11
## 212   40304  998139288  134014464                         0 3.260000e+11
## 213   73280 1054291027  134014464                         0 3.360000e+11
## 214  135568 1110841042  134014464                         0 3.470000e+11
## 215  183200 1171570642  134014464                         0 3.590000e+11
## 216  260144 1228544641  134014464                         0 3.710000e+11
## 217  344416 1294297020  134014464                         0 3.830000e+11
## 218  406704 1359869091  134014464                         0 3.960000e+11
## 219  450672 1428802267  134014464                         0 4.100000e+11
## 220  490976 1503291682  162187444                         0 4.250000e+11
## 221  549600 1565791864  186692850                         0 4.400000e+11
## 222  611888 1628305959  209730061                         0 4.570000e+11
## 223  666848 1694738811  234803387                         0 4.730000e+11
## 224  729136 1769796392  253868020                         0 4.900000e+11
## 225  784096 1833546839  275647677                         0 5.070000e+11
## 226  828064 1890820283  289552584                         0 5.250000e+11
## 227  879360 1954470347  304803599                         0 5.430000e+11
## 228  937984 2023061790  320192614                         0 5.620000e+11
## 229 1000272 2099509182  336440974                         0 5.810000e+11
## 230 1062560 2190149787  353226638                         0 6.010000e+11
## 231 1113856 2281941375  370917313                         0 6.200000e+11
## 232 1165152 2375142410  389249224                         0 6.380000e+11
## 233 1220112 2468050360  408504519                         0 6.570000e+11
## 234 1275072 2561053250  425978906                         0 6.760000e+11
## 235 1395984 2662079761  447047358                         0 6.960000e+11
## 236 1454608 2771319589  467592642                         0 7.160000e+11
## 237 1502240 2881980724  490840874                         0 7.370000e+11
## 238 1568192 2997732478  513849564                         0 7.590000e+11
## 239 1630480 3106303564  531175594                         0 7.810000e+11
## 240 1696432 3228125545  552338806                         0 8.030000e+11
## 241 1762384 3343178049  573499197                         0 8.260000e+11
## 242 1824672 3448756139  594592108                         0 8.480000e+11
## 243 1886960 3572724007  617192803                         0 8.700000e+11
## 244 1949248 3702254851  642965931                         0 8.920000e+11
## 245 2015200 3835129565  671489419                         0 9.150000e+11
## 246 2099472 3957469163  705512367                         0 9.390000e+11
## 247 2183744 4090952689  749821626                         0 9.630000e+11
## 248 2264352 4257754843  796376346                         0 9.870000e+11
## 249 2348624 4430317321  843034350                         0 1.010000e+12
## 250 2432896 4582188349  895366446                         0 1.040000e+12
## 251 2520832 4754162542  954895631                     14656 1.060000e+12
## 252 2605104 4946908952 1023556886                     40304 1.090000e+12
## 253 2689376 5138365650 1099833829                     65952 1.110000e+12
## 254 2748000 5289633634 1187633982                     91600 1.140000e+12
## 255 2806624 5454171610 1282493038                    120912 1.170000e+12
## 256 2854256 5622714825 1381627071                    150224 1.200000e+12
## 257 2953184 5782703743 1482204313                    179536 1.230000e+12
## 258 3048448 5960916552 1595445128                    201520 1.260000e+12
## 259 3169360 6139761658 1718281657                    230832 1.290000e+12
## 260 3290272 6327940990 1854394747                    260144 1.330000e+12
## 261 3422176 6503796829 1999442577                    285792 1.360000e+12
## 262 3535760 6701526588 2134817900                    311440 1.400000e+12
## 263 3642016 6884395507 2275256776                    333424 1.430000e+12
## 264 3795904 7068632089 2434969153                    355408 1.470000e+12
## 265 3963838 7245529368 2619471032                    379399 1.500000e+12
## 266 4133697 7411625736 2817272589                    403664 1.540000e+12
## 267 4315060 7571193371 3016099138                    429573 1.580000e+12
##         Yemen    Zambia  Zimbabwe
## 1           0         0         0
## 2           0         0         0
## 3           0         0         0
## 4           0         0         0
## 5           0         0         0
## 6           0         0         0
## 7           0         0         0
## 8           0         0         0
## 9           0         0         0
## 10          0         0         0
## 11          0         0         0
## 12          0         0         0
## 13          0         0         0
## 14          0         0         0
## 15          0         0         0
## 16          0         0         0
## 17          0         0         0
## 18          0         0         0
## 19          0         0         0
## 20          0         0         0
## 21          0         0         0
## 22          0         0         0
## 23          0         0         0
## 24          0         0         0
## 25          0         0         0
## 26          0         0         0
## 27          0         0         0
## 28          0         0         0
## 29          0         0         0
## 30          0         0         0
## 31          0         0         0
## 32          0         0         0
## 33          0         0         0
## 34          0         0         0
## 35          0         0         0
## 36          0         0         0
## 37          0         0         0
## 38          0         0         0
## 39          0         0         0
## 40          0         0         0
## 41          0         0         0
## 42          0         0         0
## 43          0         0         0
## 44          0         0         0
## 45          0         0         0
## 46          0         0         0
## 47          0         0         0
## 48          0         0         0
## 49          0         0         0
## 50          0         0         0
## 51          0         0         0
## 52          0         0         0
## 53          0         0         0
## 54          0         0         0
## 55          0         0         0
## 56          0         0         0
## 57          0         0         0
## 58          0         0         0
## 59          0         0         0
## 60          0         0         0
## 61          0         0         0
## 62          0         0         0
## 63          0         0         0
## 64          0         0         0
## 65          0         0         0
## 66          0         0         0
## 67          0         0         0
## 68          0         0         0
## 69          0         0         0
## 70          0         0         0
## 71          0         0         0
## 72          0         0         0
## 73          0         0         0
## 74          0         0         0
## 75          0         0         0
## 76          0         0         0
## 77          0         0         0
## 78          0         0         0
## 79          0         0         0
## 80          0         0         0
## 81          0         0         0
## 82          0         0         0
## 83          0         0         0
## 84          0         0         0
## 85          0         0         0
## 86          0         0         0
## 87          0         0         0
## 88          0         0         0
## 89          0         0         0
## 90          0         0         0
## 91          0         0         0
## 92          0         0         0
## 93          0         0         0
## 94          0         0         0
## 95          0         0         0
## 96          0         0         0
## 97          0         0         0
## 98          0         0         0
## 99          0         0         0
## 100         0         0         0
## 101         0         0         0
## 102         0         0         0
## 103         0         0         0
## 104         0         0         0
## 105         0         0         0
## 106         0         0         0
## 107         0         0         0
## 108         0         0         0
## 109         0         0         0
## 110         0         0         0
## 111         0         0         0
## 112         0         0         0
## 113         0         0         0
## 114         0         0         0
## 115         0         0         0
## 116         0         0         0
## 117         0         0         0
## 118         0         0         0
## 119         0         0         0
## 120         0         0         0
## 121         0         0         0
## 122         0         0         0
## 123         0         0         0
## 124         0         0         0
## 125         0         0         0
## 126         0         0         0
## 127         0         0         0
## 128         0         0         0
## 129         0         0         0
## 130         0         0         0
## 131         0         0         0
## 132         0         0         0
## 133         0         0         0
## 134         0         0         0
## 135         0         0         0
## 136         0         0         0
## 137         0         0         0
## 138         0         0         0
## 139         0         0         0
## 140         0         0         0
## 141         0         0         0
## 142         0         0         0
## 143         0         0         0
## 144         0         0         0
## 145         0         0         0
## 146         0         0         0
## 147         0         0         0
## 148         0         0         0
## 149         0         0         0
## 150         0         0         0
## 151         0         0         0
## 152         0         0         0
## 153         0         0    113584
## 154         0         0    256480
## 155         0         0    490976
## 156         0         0    743792
## 157         0         0   1022256
## 158         0         0   1417968
## 159         0         0   1828336
## 160         0         0   2260688
## 161         0         0   2773648
## 162         0         0   3293936
## 163         0         0   3876512
## 164         0         0   4719232
## 165         0         0   5704848
## 166         0         0   6888320
## 167         0         0   8211024
## 168         0         0   9390832
## 169         0         0  10618272
## 170         0         0  12006928
## 171         0         0  13391920
## 172         0         0  14634016
## 173         0         0  16117936
## 174         0         0  17686128
## 175         0         0  19514464
## 176         0         0  21837440
## 177         0         0  24248352
## 178         0         0  27153904
## 179         0         0  29905568
## 180         0         0  32397088
## 181         0         0  33954288
## 182         0         0  35115776
## 183         0         0  36398176
## 184         0         0  38105600
## 185         0         0  39948592
## 186         0         0  41817232
## 187         0         0  44550576
## 188         0         0  47320560
## 189         0         0  50288400
## 190         0         0  53714240
## 191         0         0  57458848
## 192         0         0  61599168
## 193         0         0  66318400
## 194         0         0  71114576
## 195         0         0  75577328
## 196         0         0  79889856
## 197         0         0  83927584
## 198         0         0  88463616
## 199         0         0  93593216
## 200     58624         0  93593216
## 201     98928         0  93593216
## 202    157552         0  93593216
## 203    227168         0  93593216
## 204   4682592         0  93593216
## 205   7166784         0  93593216
## 206   9497088         0  93593216
## 207  12453936         0  93593216
## 208  14337232         0  93593216
## 209  16938672   4567766  99826414
## 210  20569696   8922992 105769567
## 211  23233424  12631948 110830845
## 212  27117264  16214629 115719813
## 213  30033808  19659112 120420197
## 214  33664832  22934104 124889266
## 215  37592640  26846365 130098464
## 216  41055120  30344593 136139390
## 217  44107232  35132223 141433870
## 218  55744096  39699864 147811527
## 219  60419360  43970751 154555406
## 220  62929200  47736630 162709538
## 221  64900432  51523304 171442256
## 222  66395344  55584719 179658082
## 223  69124965  60170383 188928932
## 224  71370759  64367544 197975951
## 225  73539609  68443763 206286863
## 226  76103870  72463155 217141793
## 227  79081860  76198060 226426204
## 228  82183982  79668933 235705882
## 229  85402470  83265408 245137537
## 230  88715988  86788670 254751489
## 231  92941426  90146701 264156877
## 232  98875031  93657482 272936734
## 233 105160629  96918248 283361830
## 234 112257610  99722689 293241482
## 235 120830971 102455421 303455191
## 236 129023012 105320993 316523214
## 237 137649663 107994718 331693333
## 238 147199895 111103776 347722794
## 239 157134948 113673781 363836448
## 240 166656317 116079581 379405743
## 241 175784893 118461649 395271089
## 242 185659126 120885757 412188507
## 243 194285134 123352958 428447609
## 244 203267751 125745970 446132072
## 245 213619911 127886982 461161498
## 246 224146784 129723988 476052059
## 247 237368069 132077679 490346270
## 248 249431616 134356917 504485906
## 249 263156275 136135111 520213654
## 250 277630489 137920167 534031835
## 251 293647159 139805056 546541031
## 252 309200692 141765116 558438037
## 253 326283191 143840697 569046377
## 254 344929429 145944995 578474925
## 255 364724273 148187062 589174567
## 256 385809327 150418746 599539437
## 257 406528343 152286353 609373451
## 258 428553318 154391909 617092326
## 259 452800876 156798190 622611834
## 260 475952740 159360768 630292845
## 261 495465754 162153362 639732696
## 262 513704005 165634024 647347296
## 263 538684418 169390168 658883535
## 264 560946988 173645895 670749884
## 265 581331585 178047308 681657488
## 266 600467008 182622452 691590138
## 267 619432763 187368600 701987856
read.csv("emission_multi.csv")
##                                country year         ghg
## 1                          Afghanistan 1751           0
## 2                               Africa 1751           0
## 3                              Albania 1751           0
## 4                              Algeria 1751           0
## 5                     Americas (other) 1751           0
## 6                              Andorra 1751           0
## 7                               Angola 1751           0
## 8                             Anguilla 1751           0
## 9                  Antarctic Fisheries 1751           0
## 10                 Antigua and Barbuda 1751           0
## 11                           Argentina 1751           0
## 12                             Armenia 1751           0
## 13                               Aruba 1751           0
## 14            Asia and Pacific (other) 1751           0
## 15                           Australia 1751           0
## 16                             Austria 1751           0
## 17                          Azerbaijan 1751           0
## 18                             Bahamas 1751           0
## 19                             Bahrain 1751           0
## 20                          Bangladesh 1751           0
## 21                            Barbados 1751           0
## 22                             Belarus 1751           0
## 23                             Belgium 1751           0
## 24                              Belize 1751           0
## 25                               Benin 1751           0
## 26                             Bermuda 1751           0
## 27                              Bhutan 1751           0
## 28                             Bolivia 1751           0
## 29     Bonaire Sint Eustatius and Saba 1751           0
## 30              Bosnia and Herzegovina 1751           0
## 31                            Botswana 1751           0
## 32                              Brazil 1751           0
## 33              British Virgin Islands 1751           0
## 34                              Brunei 1751           0
## 35                            Bulgaria 1751           0
## 36                        Burkina Faso 1751           0
## 37                             Burundi 1751           0
## 38                            Cambodia 1751           0
## 39                            Cameroon 1751           0
## 40                              Canada 1751           0
## 41                          Cape Verde 1751           0
## 42                      Cayman Islands 1751           0
## 43            Central African Republic 1751           0
## 44                                Chad 1751           0
## 45                               Chile 1751           0
## 46                               China 1751           0
## 47                    Christmas Island 1751           0
## 48                            Colombia 1751           0
## 49                             Comoros 1751           0
## 50                               Congo 1751           0
## 51                        Cook Islands 1751           0
## 52                          Costa Rica 1751           0
## 53                       Cote d'Ivoire 1751           0
## 54                             Croatia 1751           0
## 55                                Cuba 1751           0
## 56                             Curacao 1751           0
## 57                              Cyprus 1751           0
## 58                      Czech Republic 1751           0
## 59                      Czechoslovakia 1751           0
## 60        Democratic Republic of Congo 1751           0
## 61                             Denmark 1751           0
## 62                            Djibouti 1751           0
## 63                            Dominica 1751           0
## 64                  Dominican Republic 1751           0
## 65                               EU-28 1751     9350528
## 66                             Ecuador 1751           0
## 67                               Egypt 1751           0
## 68                         El Salvador 1751           0
## 69                   Equatorial Guinea 1751           0
## 70                             Eritrea 1751           0
## 71                             Estonia 1751           0
## 72                            Ethiopia 1751           0
## 73                      Europe (other) 1751           0
## 74                      Faeroe Islands 1751           0
## 75                    Falkland Islands 1751           0
## 76                                Fiji 1751           0
## 77                             Finland 1751           0
## 78                              France 1751           0
## 79                       French Guiana 1751           0
## 80                    French Polynesia 1751           0
## 81                               Gabon 1751           0
## 82                              Gambia 1751           0
## 83                             Georgia 1751           0
## 84                             Germany 1751           0
## 85                               Ghana 1751           0
## 86                           Gibraltar 1751           0
## 87                              Greece 1751           0
## 88                           Greenland 1751           0
## 89                             Grenada 1751           0
## 90                          Guadeloupe 1751           0
## 91                           Guatemala 1751           0
## 92                              Guinea 1751           0
## 93                       Guinea-Bissau 1751           0
## 94                              Guyana 1751           0
## 95                               Haiti 1751           0
## 96                            Honduras 1751           0
## 97                           Hong Kong 1751           0
## 98                             Hungary 1751           0
## 99                             Iceland 1751           0
## 100                              India 1751           0
## 101                          Indonesia 1751           0
## 102                               Iran 1751           0
## 103                               Iraq 1751           0
## 104                            Ireland 1751           0
## 105                             Israel 1751           0
## 106                              Italy 1751           0
## 107                            Jamaica 1751           0
## 108                              Japan 1751           0
## 109                             Jordan 1751           0
## 110                         Kazakhstan 1751           0
## 111                              Kenya 1751           0
## 112                           Kiribati 1751           0
## 113                             Kuwait 1751           0
## 114                         Kyrgysztan 1751           0
## 115                         Kyrgyzstan 1751           0
## 116                               Laos 1751           0
## 117                             Latvia 1751           0
## 118                            Lebanon 1751           0
## 119                            Lesotho 1751           0
## 120                            Liberia 1751           0
## 121                              Libya 1751           0
## 122                      Liechtenstein 1751           0
## 123                          Lithuania 1751           0
## 124                         Luxembourg 1751           0
## 125                              Macao 1751           0
## 126                          Macedonia 1751           0
## 127                         Madagascar 1751           0
## 128                             Malawi 1751           0
## 129                           Malaysia 1751           0
## 130                           Maldives 1751           0
## 131                               Mali 1751           0
## 132                              Malta 1751           0
## 133                   Marshall Islands 1751           0
## 134                         Martinique 1751           0
## 135                         Mauritania 1751           0
## 136                          Mauritius 1751           0
## 137                             Mexico 1751           0
## 138               Micronesia (country) 1751           0
## 139                        Middle East 1751           0
## 140                            Moldova 1751           0
## 141                           Mongolia 1751           0
## 142                         Montenegro 1751           0
## 143                         Montserrat 1751           0
## 144                            Morocco 1751           0
## 145                         Mozambique 1751           0
## 146                            Myanmar 1751           0
## 147                            Namibia 1751           0
## 148                              Nauru 1751           0
## 149                              Nepal 1751           0
## 150                        Netherlands 1751           0
## 151                      New Caledonia 1751           0
## 152                        New Zealand 1751           0
## 153                          Nicaragua 1751           0
## 154                              Niger 1751           0
## 155                            Nigeria 1751           0
## 156                               Niue 1751           0
## 157                        North Korea 1751           0
## 158                             Norway 1751           0
## 159                               Oman 1751           0
## 160                           Pakistan 1751           0
## 161                              Palau 1751           0
## 162                          Palestine 1751           0
## 163                             Panama 1751           0
## 164                   Papua New Guinea 1751           0
## 165                           Paraguay 1751           0
## 166                               Peru 1751           0
## 167                        Philippines 1751           0
## 168                             Poland 1751           0
## 169                           Portugal 1751           0
## 170                              Qatar 1751           0
## 171                            Reunion 1751           0
## 172                            Romania 1751           0
## 173                             Russia 1751           0
## 174                             Rwanda 1751           0
## 175                       Saint Helena 1751           0
## 176              Saint Kitts and Nevis 1751           0
## 177                        Saint Lucia 1751           0
## 178          Saint Pierre and Miquelon 1751           0
## 179   Saint Vincent and the Grenadines 1751           0
## 180                              Samoa 1751           0
## 181              Sao Tome and Principe 1751           0
## 182                       Saudi Arabia 1751           0
## 183                            Senegal 1751           0
## 184                             Serbia 1751           0
## 185                         Seychelles 1751           0
## 186                       Sierra Leone 1751           0
## 187                          Singapore 1751           0
## 188          Sint Maarten (Dutch part) 1751           0
## 189                           Slovakia 1751           0
## 190                           Slovenia 1751           0
## 191                    Solomon Islands 1751           0
## 192                            Somalia 1751           0
## 193                       South Africa 1751           0
## 194                        South Korea 1751           0
## 195                        South Sudan 1751           0
## 196                              Spain 1751           0
## 197                          Sri Lanka 1751           0
## 198                              Sudan 1751           0
## 199                           Suriname 1751           0
## 200                          Swaziland 1751           0
## 201                             Sweden 1751           0
## 202                        Switzerland 1751           0
## 203                              Syria 1751           0
## 204                             Taiwan 1751           0
## 205                         Tajikistan 1751           0
## 206                           Tanzania 1751           0
## 207                           Thailand 1751           0
## 208                              Timor 1751           0
## 209                               Togo 1751           0
## 210                              Tonga 1751           0
## 211                Trinidad and Tobago 1751           0
## 212                            Tunisia 1751           0
## 213                             Turkey 1751           0
## 214                       Turkmenistan 1751           0
## 215           Turks and Caicos Islands 1751           0
## 216                             Tuvalu 1751           0
## 217                             Uganda 1751           0
## 218                            Ukraine 1751           0
## 219               United Arab Emirates 1751           0
## 220                     United Kingdom 1751     9350528
## 221                      United States 1751           0
## 222                            Uruguay 1751           0
## 223                         Uzbekistan 1751           0
## 224                            Vanuatu 1751           0
## 225                          Venezuela 1751           0
## 226                            Vietnam 1751           0
## 227          Wallis and Futuna Islands 1751           0
## 228                              World 1751     9350528
## 229                              Yemen 1751           0
## 230                             Zambia 1751           0
## 231                           Zimbabwe 1751           0
## 232                        Afghanistan 1752           0
## 233                             Africa 1752           0
## 234                            Albania 1752           0
## 235                            Algeria 1752           0
## 236                   Americas (other) 1752           0
## 237                            Andorra 1752           0
## 238                             Angola 1752           0
## 239                           Anguilla 1752           0
## 240                Antarctic Fisheries 1752           0
## 241                Antigua and Barbuda 1752           0
## 242                          Argentina 1752           0
## 243                            Armenia 1752           0
## 244                              Aruba 1752           0
## 245           Asia and Pacific (other) 1752           0
## 246                          Australia 1752           0
## 247                            Austria 1752           0
## 248                         Azerbaijan 1752           0
## 249                            Bahamas 1752           0
## 250                            Bahrain 1752           0
## 251                         Bangladesh 1752           0
## 252                           Barbados 1752           0
## 253                            Belarus 1752           0
## 254                            Belgium 1752           0
## 255                             Belize 1752           0
## 256                              Benin 1752           0
## 257                            Bermuda 1752           0
## 258                             Bhutan 1752           0
## 259                            Bolivia 1752           0
## 260    Bonaire Sint Eustatius and Saba 1752           0
## 261             Bosnia and Herzegovina 1752           0
## 262                           Botswana 1752           0
## 263                             Brazil 1752           0
## 264             British Virgin Islands 1752           0
## 265                             Brunei 1752           0
## 266                           Bulgaria 1752           0
## 267                       Burkina Faso 1752           0
## 268                            Burundi 1752           0
## 269                           Cambodia 1752           0
## 270                           Cameroon 1752           0
## 271                             Canada 1752           0
## 272                         Cape Verde 1752           0
## 273                     Cayman Islands 1752           0
## 274           Central African Republic 1752           0
## 275                               Chad 1752           0
## 276                              Chile 1752           0
## 277                              China 1752           0
## 278                   Christmas Island 1752           0
## 279                           Colombia 1752           0
## 280                            Comoros 1752           0
## 281                              Congo 1752           0
## 282                       Cook Islands 1752           0
## 283                         Costa Rica 1752           0
## 284                      Cote d'Ivoire 1752           0
## 285                            Croatia 1752           0
## 286                               Cuba 1752           0
## 287                            Curacao 1752           0
## 288                             Cyprus 1752           0
## 289                     Czech Republic 1752           0
## 290                     Czechoslovakia 1752           0
## 291       Democratic Republic of Congo 1752           0
## 292                            Denmark 1752           0
## 293                           Djibouti 1752           0
## 294                           Dominica 1752           0
## 295                 Dominican Republic 1752           0
## 296                              EU-28 1752    18704720
## 297                            Ecuador 1752           0
## 298                              Egypt 1752           0
## 299                        El Salvador 1752           0
## 300                  Equatorial Guinea 1752           0
## 301                            Eritrea 1752           0
## 302                            Estonia 1752           0
## 303                           Ethiopia 1752           0
## 304                     Europe (other) 1752           0
## 305                     Faeroe Islands 1752           0
## 306                   Falkland Islands 1752           0
## 307                               Fiji 1752           0
## 308                            Finland 1752           0
## 309                             France 1752           0
## 310                      French Guiana 1752           0
## 311                   French Polynesia 1752           0
## 312                              Gabon 1752           0
## 313                             Gambia 1752           0
## 314                            Georgia 1752           0
## 315                            Germany 1752           0
## 316                              Ghana 1752           0
## 317                          Gibraltar 1752           0
## 318                             Greece 1752           0
## 319                          Greenland 1752           0
## 320                            Grenada 1752           0
## 321                         Guadeloupe 1752           0
## 322                          Guatemala 1752           0
## 323                             Guinea 1752           0
## 324                      Guinea-Bissau 1752           0
## 325                             Guyana 1752           0
## 326                              Haiti 1752           0
## 327                           Honduras 1752           0
## 328                          Hong Kong 1752           0
## 329                            Hungary 1752           0
## 330                            Iceland 1752           0
## 331                              India 1752           0
## 332                          Indonesia 1752           0
## 333                               Iran 1752           0
## 334                               Iraq 1752           0
## 335                            Ireland 1752           0
## 336                             Israel 1752           0
## 337                              Italy 1752           0
## 338                            Jamaica 1752           0
## 339                              Japan 1752           0
## 340                             Jordan 1752           0
## 341                         Kazakhstan 1752           0
## 342                              Kenya 1752           0
## 343                           Kiribati 1752           0
## 344                             Kuwait 1752           0
## 345                         Kyrgysztan 1752           0
## 346                         Kyrgyzstan 1752           0
## 347                               Laos 1752           0
## 348                             Latvia 1752           0
## 349                            Lebanon 1752           0
## 350                            Lesotho 1752           0
## 351                            Liberia 1752           0
## 352                              Libya 1752           0
## 353                      Liechtenstein 1752           0
## 354                          Lithuania 1752           0
## 355                         Luxembourg 1752           0
## 356                              Macao 1752           0
## 357                          Macedonia 1752           0
## 358                         Madagascar 1752           0
## 359                             Malawi 1752           0
## 360                           Malaysia 1752           0
## 361                           Maldives 1752           0
## 362                               Mali 1752           0
## 363                              Malta 1752           0
## 364                   Marshall Islands 1752           0
## 365                         Martinique 1752           0
## 366                         Mauritania 1752           0
## 367                          Mauritius 1752           0
## 368                             Mexico 1752           0
## 369               Micronesia (country) 1752           0
## 370                        Middle East 1752           0
## 371                            Moldova 1752           0
## 372                           Mongolia 1752           0
## 373                         Montenegro 1752           0
## 374                         Montserrat 1752           0
## 375                            Morocco 1752           0
## 376                         Mozambique 1752           0
## 377                            Myanmar 1752           0
## 378                            Namibia 1752           0
## 379                              Nauru 1752           0
## 380                              Nepal 1752           0
## 381                        Netherlands 1752           0
## 382                      New Caledonia 1752           0
## 383                        New Zealand 1752           0
## 384                          Nicaragua 1752           0
## 385                              Niger 1752           0
## 386                            Nigeria 1752           0
## 387                               Niue 1752           0
## 388                        North Korea 1752           0
## 389                             Norway 1752           0
## 390                               Oman 1752           0
## 391                           Pakistan 1752           0
## 392                              Palau 1752           0
## 393                          Palestine 1752           0
## 394                             Panama 1752           0
## 395                   Papua New Guinea 1752           0
## 396                           Paraguay 1752           0
## 397                               Peru 1752           0
## 398                        Philippines 1752           0
## 399                             Poland 1752           0
## 400                           Portugal 1752           0
## 401                              Qatar 1752           0
## 402                            Reunion 1752           0
## 403                            Romania 1752           0
## 404                             Russia 1752           0
## 405                             Rwanda 1752           0
## 406                       Saint Helena 1752           0
## 407              Saint Kitts and Nevis 1752           0
## 408                        Saint Lucia 1752           0
## 409          Saint Pierre and Miquelon 1752           0
## 410   Saint Vincent and the Grenadines 1752           0
## 411                              Samoa 1752           0
## 412              Sao Tome and Principe 1752           0
## 413                       Saudi Arabia 1752           0
## 414                            Senegal 1752           0
## 415                             Serbia 1752           0
## 416                         Seychelles 1752           0
## 417                       Sierra Leone 1752           0
## 418                          Singapore 1752           0
## 419          Sint Maarten (Dutch part) 1752           0
## 420                           Slovakia 1752           0
## 421                           Slovenia 1752           0
## 422                    Solomon Islands 1752           0
## 423                            Somalia 1752           0
## 424                       South Africa 1752           0
## 425                        South Korea 1752           0
## 426                        South Sudan 1752           0
## 427                              Spain 1752           0
## 428                          Sri Lanka 1752           0
## 429                              Sudan 1752           0
## 430                           Suriname 1752           0
## 431                          Swaziland 1752           0
## 432                             Sweden 1752           0
## 433                        Switzerland 1752           0
## 434                              Syria 1752           0
## 435                             Taiwan 1752           0
## 436                         Tajikistan 1752           0
## 437                           Tanzania 1752           0
## 438                           Thailand 1752           0
## 439                              Timor 1752           0
## 440                               Togo 1752           0
## 441                              Tonga 1752           0
## 442                Trinidad and Tobago 1752           0
## 443                            Tunisia 1752           0
## 444                             Turkey 1752           0
## 445                       Turkmenistan 1752           0
## 446           Turks and Caicos Islands 1752           0
## 447                             Tuvalu 1752           0
## 448                             Uganda 1752           0
## 449                            Ukraine 1752           0
## 450               United Arab Emirates 1752           0
## 451                     United Kingdom 1752    18704720
## 452                      United States 1752           0
## 453                            Uruguay 1752           0
## 454                         Uzbekistan 1752           0
## 455                            Vanuatu 1752           0
## 456                          Venezuela 1752           0
## 457                            Vietnam 1752           0
## 458          Wallis and Futuna Islands 1752           0
## 459                              World 1752    18704720
## 460                              Yemen 1752           0
## 461                             Zambia 1752           0
## 462                           Zimbabwe 1752           0
## 463                        Afghanistan 1753           0
## 464                             Africa 1753           0
## 465                            Albania 1753           0
## 466                            Algeria 1753           0
## 467                   Americas (other) 1753           0
## 468                            Andorra 1753           0
## 469                             Angola 1753           0
## 470                           Anguilla 1753           0
## 471                Antarctic Fisheries 1753           0
## 472                Antigua and Barbuda 1753           0
## 473                          Argentina 1753           0
## 474                            Armenia 1753           0
## 475                              Aruba 1753           0
## 476           Asia and Pacific (other) 1753           0
## 477                          Australia 1753           0
## 478                            Austria 1753           0
## 479                         Azerbaijan 1753           0
## 480                            Bahamas 1753           0
## 481                            Bahrain 1753           0
## 482                         Bangladesh 1753           0
## 483                           Barbados 1753           0
## 484                            Belarus 1753           0
## 485                            Belgium 1753           0
## 486                             Belize 1753           0
## 487                              Benin 1753           0
## 488                            Bermuda 1753           0
## 489                             Bhutan 1753           0
## 490                            Bolivia 1753           0
## 491    Bonaire Sint Eustatius and Saba 1753           0
## 492             Bosnia and Herzegovina 1753           0
## 493                           Botswana 1753           0
## 494                             Brazil 1753           0
## 495             British Virgin Islands 1753           0
## 496                             Brunei 1753           0
## 497                           Bulgaria 1753           0
## 498                       Burkina Faso 1753           0
## 499                            Burundi 1753           0
## 500                           Cambodia 1753           0
## 501                           Cameroon 1753           0
## 502                             Canada 1753           0
## 503                         Cape Verde 1753           0
## 504                     Cayman Islands 1753           0
## 505           Central African Republic 1753           0
## 506                               Chad 1753           0
## 507                              Chile 1753           0
## 508                              China 1753           0
## 509                   Christmas Island 1753           0
## 510                           Colombia 1753           0
## 511                            Comoros 1753           0
## 512                              Congo 1753           0
## 513                       Cook Islands 1753           0
## 514                         Costa Rica 1753           0
## 515                      Cote d'Ivoire 1753           0
## 516                            Croatia 1753           0
## 517                               Cuba 1753           0
## 518                            Curacao 1753           0
## 519                             Cyprus 1753           0
## 520                     Czech Republic 1753           0
## 521                     Czechoslovakia 1753           0
## 522       Democratic Republic of Congo 1753           0
## 523                            Denmark 1753           0
## 524                           Djibouti 1753           0
## 525                           Dominica 1753           0
## 526                 Dominican Republic 1753           0
## 527                              EU-28 1753    28058912
## 528                            Ecuador 1753           0
## 529                              Egypt 1753           0
## 530                        El Salvador 1753           0
## 531                  Equatorial Guinea 1753           0
## 532                            Eritrea 1753           0
## 533                            Estonia 1753           0
## 534                           Ethiopia 1753           0
## 535                     Europe (other) 1753           0
## 536                     Faeroe Islands 1753           0
## 537                   Falkland Islands 1753           0
## 538                               Fiji 1753           0
## 539                            Finland 1753           0
## 540                             France 1753           0
## 541                      French Guiana 1753           0
## 542                   French Polynesia 1753           0
## 543                              Gabon 1753           0
## 544                             Gambia 1753           0
## 545                            Georgia 1753           0
## 546                            Germany 1753           0
## 547                              Ghana 1753           0
## 548                          Gibraltar 1753           0
## 549                             Greece 1753           0
## 550                          Greenland 1753           0
## 551                            Grenada 1753           0
## 552                         Guadeloupe 1753           0
## 553                          Guatemala 1753           0
## 554                             Guinea 1753           0
## 555                      Guinea-Bissau 1753           0
## 556                             Guyana 1753           0
## 557                              Haiti 1753           0
## 558                           Honduras 1753           0
## 559                          Hong Kong 1753           0
## 560                            Hungary 1753           0
## 561                            Iceland 1753           0
## 562                              India 1753           0
## 563                          Indonesia 1753           0
## 564                               Iran 1753           0
## 565                               Iraq 1753           0
## 566                            Ireland 1753           0
## 567                             Israel 1753           0
## 568                              Italy 1753           0
## 569                            Jamaica 1753           0
## 570                              Japan 1753           0
## 571                             Jordan 1753           0
## 572                         Kazakhstan 1753           0
## 573                              Kenya 1753           0
## 574                           Kiribati 1753           0
## 575                             Kuwait 1753           0
## 576                         Kyrgysztan 1753           0
## 577                         Kyrgyzstan 1753           0
## 578                               Laos 1753           0
## 579                             Latvia 1753           0
## 580                            Lebanon 1753           0
## 581                            Lesotho 1753           0
## 582                            Liberia 1753           0
## 583                              Libya 1753           0
## 584                      Liechtenstein 1753           0
## 585                          Lithuania 1753           0
## 586                         Luxembourg 1753           0
## 587                              Macao 1753           0
## 588                          Macedonia 1753           0
## 589                         Madagascar 1753           0
## 590                             Malawi 1753           0
## 591                           Malaysia 1753           0
## 592                           Maldives 1753           0
## 593                               Mali 1753           0
## 594                              Malta 1753           0
## 595                   Marshall Islands 1753           0
## 596                         Martinique 1753           0
## 597                         Mauritania 1753           0
## 598                          Mauritius 1753           0
## 599                             Mexico 1753           0
## 600               Micronesia (country) 1753           0
## 601                        Middle East 1753           0
## 602                            Moldova 1753           0
## 603                           Mongolia 1753           0
## 604                         Montenegro 1753           0
## 605                         Montserrat 1753           0
## 606                            Morocco 1753           0
## 607                         Mozambique 1753           0
## 608                            Myanmar 1753           0
## 609                            Namibia 1753           0
## 610                              Nauru 1753           0
## 611                              Nepal 1753           0
## 612                        Netherlands 1753           0
## 613                      New Caledonia 1753           0
## 614                        New Zealand 1753           0
## 615                          Nicaragua 1753           0
## 616                              Niger 1753           0
## 617                            Nigeria 1753           0
## 618                               Niue 1753           0
## 619                        North Korea 1753           0
## 620                             Norway 1753           0
## 621                               Oman 1753           0
## 622                           Pakistan 1753           0
## 623                              Palau 1753           0
## 624                          Palestine 1753           0
## 625                             Panama 1753           0
## 626                   Papua New Guinea 1753           0
## 627                           Paraguay 1753           0
## 628                               Peru 1753           0
## 629                        Philippines 1753           0
## 630                             Poland 1753           0
## 631                           Portugal 1753           0
## 632                              Qatar 1753           0
## 633                            Reunion 1753           0
## 634                            Romania 1753           0
## 635                             Russia 1753           0
## 636                             Rwanda 1753           0
## 637                       Saint Helena 1753           0
## 638              Saint Kitts and Nevis 1753           0
## 639                        Saint Lucia 1753           0
## 640          Saint Pierre and Miquelon 1753           0
## 641   Saint Vincent and the Grenadines 1753           0
## 642                              Samoa 1753           0
## 643              Sao Tome and Principe 1753           0
## 644                       Saudi Arabia 1753           0
## 645                            Senegal 1753           0
## 646                             Serbia 1753           0
## 647                         Seychelles 1753           0
## 648                       Sierra Leone 1753           0
## 649                          Singapore 1753           0
## 650          Sint Maarten (Dutch part) 1753           0
## 651                           Slovakia 1753           0
## 652                           Slovenia 1753           0
## 653                    Solomon Islands 1753           0
## 654                            Somalia 1753           0
## 655                       South Africa 1753           0
## 656                        South Korea 1753           0
## 657                        South Sudan 1753           0
## 658                              Spain 1753           0
## 659                          Sri Lanka 1753           0
## 660                              Sudan 1753           0
## 661                           Suriname 1753           0
## 662                          Swaziland 1753           0
## 663                             Sweden 1753           0
## 664                        Switzerland 1753           0
## 665                              Syria 1753           0
## 666                             Taiwan 1753           0
## 667                         Tajikistan 1753           0
## 668                           Tanzania 1753           0
## 669                           Thailand 1753           0
## 670                              Timor 1753           0
## 671                               Togo 1753           0
## 672                              Tonga 1753           0
## 673                Trinidad and Tobago 1753           0
## 674                            Tunisia 1753           0
## 675                             Turkey 1753           0
## 676                       Turkmenistan 1753           0
## 677           Turks and Caicos Islands 1753           0
## 678                             Tuvalu 1753           0
## 679                             Uganda 1753           0
## 680                            Ukraine 1753           0
## 681               United Arab Emirates 1753           0
## 682                     United Kingdom 1753    28058912
## 683                      United States 1753           0
## 684                            Uruguay 1753           0
## 685                         Uzbekistan 1753           0
## 686                            Vanuatu 1753           0
## 687                          Venezuela 1753           0
## 688                            Vietnam 1753           0
## 689          Wallis and Futuna Islands 1753           0
## 690                              World 1753    28058912
## 691                              Yemen 1753           0
## 692                             Zambia 1753           0
## 693                           Zimbabwe 1753           0
## 694                        Afghanistan 1754           0
## 695                             Africa 1754           0
## 696                            Albania 1754           0
## 697                            Algeria 1754           0
## 698                   Americas (other) 1754           0
## 699                            Andorra 1754           0
## 700                             Angola 1754           0
## 701                           Anguilla 1754           0
## 702                Antarctic Fisheries 1754           0
## 703                Antigua and Barbuda 1754           0
## 704                          Argentina 1754           0
## 705                            Armenia 1754           0
## 706                              Aruba 1754           0
## 707           Asia and Pacific (other) 1754           0
## 708                          Australia 1754           0
## 709                            Austria 1754           0
## 710                         Azerbaijan 1754           0
## 711                            Bahamas 1754           0
## 712                            Bahrain 1754           0
## 713                         Bangladesh 1754           0
## 714                           Barbados 1754           0
## 715                            Belarus 1754           0
## 716                            Belgium 1754           0
## 717                             Belize 1754           0
## 718                              Benin 1754           0
## 719                            Bermuda 1754           0
## 720                             Bhutan 1754           0
## 721                            Bolivia 1754           0
## 722    Bonaire Sint Eustatius and Saba 1754           0
## 723             Bosnia and Herzegovina 1754           0
## 724                           Botswana 1754           0
## 725                             Brazil 1754           0
## 726             British Virgin Islands 1754           0
## 727                             Brunei 1754           0
## 728                           Bulgaria 1754           0
## 729                       Burkina Faso 1754           0
## 730                            Burundi 1754           0
## 731                           Cambodia 1754           0
## 732                           Cameroon 1754           0
## 733                             Canada 1754           0
## 734                         Cape Verde 1754           0
## 735                     Cayman Islands 1754           0
## 736           Central African Republic 1754           0
## 737                               Chad 1754           0
## 738                              Chile 1754           0
## 739                              China 1754           0
## 740                   Christmas Island 1754           0
## 741                           Colombia 1754           0
## 742                            Comoros 1754           0
## 743                              Congo 1754           0
## 744                       Cook Islands 1754           0
## 745                         Costa Rica 1754           0
## 746                      Cote d'Ivoire 1754           0
## 747                            Croatia 1754           0
## 748                               Cuba 1754           0
## 749                            Curacao 1754           0
## 750                             Cyprus 1754           0
## 751                     Czech Republic 1754           0
## 752                     Czechoslovakia 1754           0
## 753       Democratic Republic of Congo 1754           0
## 754                            Denmark 1754           0
## 755                           Djibouti 1754           0
## 756                           Dominica 1754           0
## 757                 Dominican Republic 1754           0
## 758                              EU-28 1754    37416768
## 759                            Ecuador 1754           0
## 760                              Egypt 1754           0
## 761                        El Salvador 1754           0
## 762                  Equatorial Guinea 1754           0
## 763                            Eritrea 1754           0
## 764                            Estonia 1754           0
## 765                           Ethiopia 1754           0
## 766                     Europe (other) 1754           0
## 767                     Faeroe Islands 1754           0
## 768                   Falkland Islands 1754           0
## 769                               Fiji 1754           0
## 770                            Finland 1754           0
## 771                             France 1754           0
## 772                      French Guiana 1754           0
## 773                   French Polynesia 1754           0
## 774                              Gabon 1754           0
## 775                             Gambia 1754           0
## 776                            Georgia 1754           0
## 777                            Germany 1754           0
## 778                              Ghana 1754           0
## 779                          Gibraltar 1754           0
## 780                             Greece 1754           0
## 781                          Greenland 1754           0
## 782                            Grenada 1754           0
## 783                         Guadeloupe 1754           0
## 784                          Guatemala 1754           0
## 785                             Guinea 1754           0
## 786                      Guinea-Bissau 1754           0
## 787                             Guyana 1754           0
## 788                              Haiti 1754           0
## 789                           Honduras 1754           0
## 790                          Hong Kong 1754           0
## 791                            Hungary 1754           0
## 792                            Iceland 1754           0
## 793                              India 1754           0
## 794                          Indonesia 1754           0
## 795                               Iran 1754           0
## 796                               Iraq 1754           0
## 797                            Ireland 1754           0
## 798                             Israel 1754           0
## 799                              Italy 1754           0
## 800                            Jamaica 1754           0
## 801                              Japan 1754           0
## 802                             Jordan 1754           0
## 803                         Kazakhstan 1754           0
## 804                              Kenya 1754           0
## 805                           Kiribati 1754           0
## 806                             Kuwait 1754           0
## 807                         Kyrgysztan 1754           0
## 808                         Kyrgyzstan 1754           0
## 809                               Laos 1754           0
## 810                             Latvia 1754           0
## 811                            Lebanon 1754           0
## 812                            Lesotho 1754           0
## 813                            Liberia 1754           0
## 814                              Libya 1754           0
## 815                      Liechtenstein 1754           0
## 816                          Lithuania 1754           0
## 817                         Luxembourg 1754           0
## 818                              Macao 1754           0
## 819                          Macedonia 1754           0
## 820                         Madagascar 1754           0
## 821                             Malawi 1754           0
## 822                           Malaysia 1754           0
## 823                           Maldives 1754           0
## 824                               Mali 1754           0
## 825                              Malta 1754           0
## 826                   Marshall Islands 1754           0
## 827                         Martinique 1754           0
## 828                         Mauritania 1754           0
## 829                          Mauritius 1754           0
## 830                             Mexico 1754           0
## 831               Micronesia (country) 1754           0
## 832                        Middle East 1754           0
## 833                            Moldova 1754           0
## 834                           Mongolia 1754           0
## 835                         Montenegro 1754           0
## 836                         Montserrat 1754           0
## 837                            Morocco 1754           0
## 838                         Mozambique 1754           0
## 839                            Myanmar 1754           0
## 840                            Namibia 1754           0
## 841                              Nauru 1754           0
## 842                              Nepal 1754           0
## 843                        Netherlands 1754           0
## 844                      New Caledonia 1754           0
## 845                        New Zealand 1754           0
## 846                          Nicaragua 1754           0
## 847                              Niger 1754           0
## 848                            Nigeria 1754           0
## 849                               Niue 1754           0
## 850                        North Korea 1754           0
## 851                             Norway 1754           0
## 852                               Oman 1754           0
## 853                           Pakistan 1754           0
## 854                              Palau 1754           0
## 855                          Palestine 1754           0
## 856                             Panama 1754           0
## 857                   Papua New Guinea 1754           0
## 858                           Paraguay 1754           0
## 859                               Peru 1754           0
## 860                        Philippines 1754           0
## 861                             Poland 1754           0
## 862                           Portugal 1754           0
## 863                              Qatar 1754           0
## 864                            Reunion 1754           0
## 865                            Romania 1754           0
## 866                             Russia 1754           0
## 867                             Rwanda 1754           0
## 868                       Saint Helena 1754           0
## 869              Saint Kitts and Nevis 1754           0
## 870                        Saint Lucia 1754           0
## 871          Saint Pierre and Miquelon 1754           0
## 872   Saint Vincent and the Grenadines 1754           0
## 873                              Samoa 1754           0
## 874              Sao Tome and Principe 1754           0
## 875                       Saudi Arabia 1754           0
## 876                            Senegal 1754           0
## 877                             Serbia 1754           0
## 878                         Seychelles 1754           0
## 879                       Sierra Leone 1754           0
## 880                          Singapore 1754           0
## 881          Sint Maarten (Dutch part) 1754           0
## 882                           Slovakia 1754           0
## 883                           Slovenia 1754           0
## 884                    Solomon Islands 1754           0
## 885                            Somalia 1754           0
## 886                       South Africa 1754           0
## 887                        South Korea 1754           0
## 888                        South Sudan 1754           0
## 889                              Spain 1754           0
## 890                          Sri Lanka 1754           0
## 891                              Sudan 1754           0
## 892                           Suriname 1754           0
## 893                          Swaziland 1754           0
## 894                             Sweden 1754           0
## 895                        Switzerland 1754           0
## 896                              Syria 1754           0
## 897                             Taiwan 1754           0
## 898                         Tajikistan 1754           0
## 899                           Tanzania 1754           0
## 900                           Thailand 1754           0
## 901                              Timor 1754           0
## 902                               Togo 1754           0
## 903                              Tonga 1754           0
## 904                Trinidad and Tobago 1754           0
## 905                            Tunisia 1754           0
## 906                             Turkey 1754           0
## 907                       Turkmenistan 1754           0
## 908           Turks and Caicos Islands 1754           0
## 909                             Tuvalu 1754           0
## 910                             Uganda 1754           0
## 911                            Ukraine 1754           0
## 912               United Arab Emirates 1754           0
## 913                     United Kingdom 1754    37416768
## 914                      United States 1754           0
## 915                            Uruguay 1754           0
## 916                         Uzbekistan 1754           0
## 917                            Vanuatu 1754           0
## 918                          Venezuela 1754           0
## 919                            Vietnam 1754           0
## 920          Wallis and Futuna Islands 1754           0
## 921                              World 1754    37416768
## 922                              Yemen 1754           0
## 923                             Zambia 1754           0
## 924                           Zimbabwe 1754           0
## 925                        Afghanistan 1755           0
## 926                             Africa 1755           0
## 927                            Albania 1755           0
## 928                            Algeria 1755           0
## 929                   Americas (other) 1755           0
## 930                            Andorra 1755           0
## 931                             Angola 1755           0
## 932                           Anguilla 1755           0
## 933                Antarctic Fisheries 1755           0
## 934                Antigua and Barbuda 1755           0
## 935                          Argentina 1755           0
## 936                            Armenia 1755           0
## 937                              Aruba 1755           0
## 938           Asia and Pacific (other) 1755           0
## 939                          Australia 1755           0
## 940                            Austria 1755           0
## 941                         Azerbaijan 1755           0
## 942                            Bahamas 1755           0
## 943                            Bahrain 1755           0
## 944                         Bangladesh 1755           0
## 945                           Barbados 1755           0
## 946                            Belarus 1755           0
## 947                            Belgium 1755           0
## 948                             Belize 1755           0
## 949                              Benin 1755           0
## 950                            Bermuda 1755           0
## 951                             Bhutan 1755           0
## 952                            Bolivia 1755           0
## 953    Bonaire Sint Eustatius and Saba 1755           0
## 954             Bosnia and Herzegovina 1755           0
## 955                           Botswana 1755           0
## 956                             Brazil 1755           0
## 957             British Virgin Islands 1755           0
## 958                             Brunei 1755           0
## 959                           Bulgaria 1755           0
## 960                       Burkina Faso 1755           0
## 961                            Burundi 1755           0
## 962                           Cambodia 1755           0
## 963                           Cameroon 1755           0
## 964                             Canada 1755           0
## 965                         Cape Verde 1755           0
## 966                     Cayman Islands 1755           0
## 967           Central African Republic 1755           0
## 968                               Chad 1755           0
## 969                              Chile 1755           0
## 970                              China 1755           0
## 971                   Christmas Island 1755           0
## 972                           Colombia 1755           0
## 973                            Comoros 1755           0
## 974                              Congo 1755           0
## 975                       Cook Islands 1755           0
## 976                         Costa Rica 1755           0
## 977                      Cote d'Ivoire 1755           0
## 978                            Croatia 1755           0
## 979                               Cuba 1755           0
## 980                            Curacao 1755           0
## 981                             Cyprus 1755           0
## 982                     Czech Republic 1755           0
## 983                     Czechoslovakia 1755           0
## 984       Democratic Republic of Congo 1755           0
## 985                            Denmark 1755           0
## 986                           Djibouti 1755           0
## 987                           Dominica 1755           0
## 988                 Dominican Republic 1755           0
## 989                              EU-28 1755    46778288
## 990                            Ecuador 1755           0
## 991                              Egypt 1755           0
## 992                        El Salvador 1755           0
## 993                  Equatorial Guinea 1755           0
## 994                            Eritrea 1755           0
## 995                            Estonia 1755           0
## 996                           Ethiopia 1755           0
## 997                     Europe (other) 1755           0
## 998                     Faeroe Islands 1755           0
## 999                   Falkland Islands 1755           0
## 1000                              Fiji 1755           0
## 1001                           Finland 1755           0
## 1002                            France 1755           0
## 1003                     French Guiana 1755           0
## 1004                  French Polynesia 1755           0
## 1005                             Gabon 1755           0
## 1006                            Gambia 1755           0
## 1007                           Georgia 1755           0
## 1008                           Germany 1755           0
## 1009                             Ghana 1755           0
## 1010                         Gibraltar 1755           0
## 1011                            Greece 1755           0
## 1012                         Greenland 1755           0
## 1013                           Grenada 1755           0
## 1014                        Guadeloupe 1755           0
## 1015                         Guatemala 1755           0
## 1016                            Guinea 1755           0
## 1017                     Guinea-Bissau 1755           0
## 1018                            Guyana 1755           0
## 1019                             Haiti 1755           0
## 1020                          Honduras 1755           0
## 1021                         Hong Kong 1755           0
## 1022                           Hungary 1755           0
## 1023                           Iceland 1755           0
## 1024                             India 1755           0
## 1025                         Indonesia 1755           0
## 1026                              Iran 1755           0
## 1027                              Iraq 1755           0
## 1028                           Ireland 1755           0
## 1029                            Israel 1755           0
## 1030                             Italy 1755           0
## 1031                           Jamaica 1755           0
## 1032                             Japan 1755           0
## 1033                            Jordan 1755           0
## 1034                        Kazakhstan 1755           0
## 1035                             Kenya 1755           0
## 1036                          Kiribati 1755           0
## 1037                            Kuwait 1755           0
## 1038                        Kyrgysztan 1755           0
## 1039                        Kyrgyzstan 1755           0
## 1040                              Laos 1755           0
## 1041                            Latvia 1755           0
## 1042                           Lebanon 1755           0
## 1043                           Lesotho 1755           0
## 1044                           Liberia 1755           0
## 1045                             Libya 1755           0
## 1046                     Liechtenstein 1755           0
## 1047                         Lithuania 1755           0
## 1048                        Luxembourg 1755           0
## 1049                             Macao 1755           0
## 1050                         Macedonia 1755           0
## 1051                        Madagascar 1755           0
## 1052                            Malawi 1755           0
## 1053                          Malaysia 1755           0
## 1054                          Maldives 1755           0
## 1055                              Mali 1755           0
## 1056                             Malta 1755           0
## 1057                  Marshall Islands 1755           0
## 1058                        Martinique 1755           0
## 1059                        Mauritania 1755           0
## 1060                         Mauritius 1755           0
## 1061                            Mexico 1755           0
## 1062              Micronesia (country) 1755           0
## 1063                       Middle East 1755           0
## 1064                           Moldova 1755           0
## 1065                          Mongolia 1755           0
## 1066                        Montenegro 1755           0
## 1067                        Montserrat 1755           0
## 1068                           Morocco 1755           0
## 1069                        Mozambique 1755           0
## 1070                           Myanmar 1755           0
## 1071                           Namibia 1755           0
## 1072                             Nauru 1755           0
## 1073                             Nepal 1755           0
## 1074                       Netherlands 1755           0
## 1075                     New Caledonia 1755           0
## 1076                       New Zealand 1755           0
## 1077                         Nicaragua 1755           0
## 1078                             Niger 1755           0
## 1079                           Nigeria 1755           0
## 1080                              Niue 1755           0
## 1081                       North Korea 1755           0
## 1082                            Norway 1755           0
## 1083                              Oman 1755           0
## 1084                          Pakistan 1755           0
## 1085                             Palau 1755           0
## 1086                         Palestine 1755           0
## 1087                            Panama 1755           0
## 1088                  Papua New Guinea 1755           0
## 1089                          Paraguay 1755           0
## 1090                              Peru 1755           0
## 1091                       Philippines 1755           0
## 1092                            Poland 1755           0
## 1093                          Portugal 1755           0
## 1094                             Qatar 1755           0
## 1095                           Reunion 1755           0
## 1096                           Romania 1755           0
## 1097                            Russia 1755           0
## 1098                            Rwanda 1755           0
## 1099                      Saint Helena 1755           0
## 1100             Saint Kitts and Nevis 1755           0
## 1101                       Saint Lucia 1755           0
## 1102         Saint Pierre and Miquelon 1755           0
## 1103  Saint Vincent and the Grenadines 1755           0
## 1104                             Samoa 1755           0
## 1105             Sao Tome and Principe 1755           0
## 1106                      Saudi Arabia 1755           0
## 1107                           Senegal 1755           0
## 1108                            Serbia 1755           0
## 1109                        Seychelles 1755           0
## 1110                      Sierra Leone 1755           0
## 1111                         Singapore 1755           0
## 1112         Sint Maarten (Dutch part) 1755           0
## 1113                          Slovakia 1755           0
## 1114                          Slovenia 1755           0
## 1115                   Solomon Islands 1755           0
## 1116                           Somalia 1755           0
## 1117                      South Africa 1755           0
## 1118                       South Korea 1755           0
## 1119                       South Sudan 1755           0
## 1120                             Spain 1755           0
## 1121                         Sri Lanka 1755           0
## 1122                             Sudan 1755           0
## 1123                          Suriname 1755           0
## 1124                         Swaziland 1755           0
## 1125                            Sweden 1755           0
## 1126                       Switzerland 1755           0
## 1127                             Syria 1755           0
## 1128                            Taiwan 1755           0
## 1129                        Tajikistan 1755           0
## 1130                          Tanzania 1755           0
## 1131                          Thailand 1755           0
## 1132                             Timor 1755           0
## 1133                              Togo 1755           0
## 1134                             Tonga 1755           0
## 1135               Trinidad and Tobago 1755           0
## 1136                           Tunisia 1755           0
## 1137                            Turkey 1755           0
## 1138                      Turkmenistan 1755           0
## 1139          Turks and Caicos Islands 1755           0
## 1140                            Tuvalu 1755           0
## 1141                            Uganda 1755           0
## 1142                           Ukraine 1755           0
## 1143              United Arab Emirates 1755           0
## 1144                    United Kingdom 1755    46778288
## 1145                     United States 1755           0
## 1146                           Uruguay 1755           0
## 1147                        Uzbekistan 1755           0
## 1148                           Vanuatu 1755           0
## 1149                         Venezuela 1755           0
## 1150                           Vietnam 1755           0
## 1151         Wallis and Futuna Islands 1755           0
## 1152                             World 1755    46778288
## 1153                             Yemen 1755           0
## 1154                            Zambia 1755           0
## 1155                          Zimbabwe 1755           0
## 1156                       Afghanistan 1756           0
## 1157                            Africa 1756           0
## 1158                           Albania 1756           0
## 1159                           Algeria 1756           0
## 1160                  Americas (other) 1756           0
## 1161                           Andorra 1756           0
## 1162                            Angola 1756           0
## 1163                          Anguilla 1756           0
## 1164               Antarctic Fisheries 1756           0
## 1165               Antigua and Barbuda 1756           0
## 1166                         Argentina 1756           0
## 1167                           Armenia 1756           0
## 1168                             Aruba 1756           0
## 1169          Asia and Pacific (other) 1756           0
## 1170                         Australia 1756           0
## 1171                           Austria 1756           0
## 1172                        Azerbaijan 1756           0
## 1173                           Bahamas 1756           0
## 1174                           Bahrain 1756           0
## 1175                        Bangladesh 1756           0
## 1176                          Barbados 1756           0
## 1177                           Belarus 1756           0
## 1178                           Belgium 1756           0
## 1179                            Belize 1756           0
## 1180                             Benin 1756           0
## 1181                           Bermuda 1756           0
## 1182                            Bhutan 1756           0
## 1183                           Bolivia 1756           0
## 1184   Bonaire Sint Eustatius and Saba 1756           0
## 1185            Bosnia and Herzegovina 1756           0
## 1186                          Botswana 1756           0
## 1187                            Brazil 1756           0
## 1188            British Virgin Islands 1756           0
## 1189                            Brunei 1756           0
## 1190                          Bulgaria 1756           0
## 1191                      Burkina Faso 1756           0
## 1192                           Burundi 1756           0
## 1193                          Cambodia 1756           0
## 1194                          Cameroon 1756           0
## 1195                            Canada 1756           0
## 1196                        Cape Verde 1756           0
## 1197                    Cayman Islands 1756           0
## 1198          Central African Republic 1756           0
## 1199                              Chad 1756           0
## 1200                             Chile 1756           0
## 1201                             China 1756           0
## 1202                  Christmas Island 1756           0
## 1203                          Colombia 1756           0
## 1204                           Comoros 1756           0
## 1205                             Congo 1756           0
## 1206                      Cook Islands 1756           0
## 1207                        Costa Rica 1756           0
## 1208                     Cote d'Ivoire 1756           0
## 1209                           Croatia 1756           0
## 1210                              Cuba 1756           0
## 1211                           Curacao 1756           0
## 1212                            Cyprus 1756           0
## 1213                    Czech Republic 1756           0
## 1214                    Czechoslovakia 1756           0
## 1215      Democratic Republic of Congo 1756           0
## 1216                           Denmark 1756           0
## 1217                          Djibouti 1756           0
## 1218                          Dominica 1756           0
## 1219                Dominican Republic 1756           0
## 1220                             EU-28 1756    56784672
## 1221                           Ecuador 1756           0
## 1222                             Egypt 1756           0
## 1223                       El Salvador 1756           0
## 1224                 Equatorial Guinea 1756           0
## 1225                           Eritrea 1756           0
## 1226                           Estonia 1756           0
## 1227                          Ethiopia 1756           0
## 1228                    Europe (other) 1756           0
## 1229                    Faeroe Islands 1756           0
## 1230                  Falkland Islands 1756           0
## 1231                              Fiji 1756           0
## 1232                           Finland 1756           0
## 1233                            France 1756           0
## 1234                     French Guiana 1756           0
## 1235                  French Polynesia 1756           0
## 1236                             Gabon 1756           0
## 1237                            Gambia 1756           0
## 1238                           Georgia 1756           0
## 1239                           Germany 1756           0
## 1240                             Ghana 1756           0
## 1241                         Gibraltar 1756           0
## 1242                            Greece 1756           0
## 1243                         Greenland 1756           0
## 1244                           Grenada 1756           0
## 1245                        Guadeloupe 1756           0
## 1246                         Guatemala 1756           0
## 1247                            Guinea 1756           0
## 1248                     Guinea-Bissau 1756           0
## 1249                            Guyana 1756           0
## 1250                             Haiti 1756           0
## 1251                          Honduras 1756           0
## 1252                         Hong Kong 1756           0
## 1253                           Hungary 1756           0
## 1254                           Iceland 1756           0
## 1255                             India 1756           0
## 1256                         Indonesia 1756           0
## 1257                              Iran 1756           0
## 1258                              Iraq 1756           0
## 1259                           Ireland 1756           0
## 1260                            Israel 1756           0
## 1261                             Italy 1756           0
## 1262                           Jamaica 1756           0
## 1263                             Japan 1756           0
## 1264                            Jordan 1756           0
## 1265                        Kazakhstan 1756           0
## 1266                             Kenya 1756           0
## 1267                          Kiribati 1756           0
## 1268                            Kuwait 1756           0
## 1269                        Kyrgysztan 1756           0
## 1270                        Kyrgyzstan 1756           0
## 1271                              Laos 1756           0
## 1272                            Latvia 1756           0
## 1273                           Lebanon 1756           0
## 1274                           Lesotho 1756           0
## 1275                           Liberia 1756           0
## 1276                             Libya 1756           0
## 1277                     Liechtenstein 1756           0
## 1278                         Lithuania 1756           0
## 1279                        Luxembourg 1756           0
## 1280                             Macao 1756           0
## 1281                         Macedonia 1756           0
## 1282                        Madagascar 1756           0
## 1283                            Malawi 1756           0
## 1284                          Malaysia 1756           0
## 1285                          Maldives 1756           0
## 1286                              Mali 1756           0
## 1287                             Malta 1756           0
## 1288                  Marshall Islands 1756           0
## 1289                        Martinique 1756           0
## 1290                        Mauritania 1756           0
## 1291                         Mauritius 1756           0
## 1292                            Mexico 1756           0
## 1293              Micronesia (country) 1756           0
## 1294                       Middle East 1756           0
## 1295                           Moldova 1756           0
## 1296                          Mongolia 1756           0
## 1297                        Montenegro 1756           0
## 1298                        Montserrat 1756           0
## 1299                           Morocco 1756           0
## 1300                        Mozambique 1756           0
## 1301                           Myanmar 1756           0
## 1302                           Namibia 1756           0
## 1303                             Nauru 1756           0
## 1304                             Nepal 1756           0
## 1305                       Netherlands 1756           0
## 1306                     New Caledonia 1756           0
## 1307                       New Zealand 1756           0
## 1308                         Nicaragua 1756           0
## 1309                             Niger 1756           0
## 1310                           Nigeria 1756           0
## 1311                              Niue 1756           0
## 1312                       North Korea 1756           0
## 1313                            Norway 1756           0
## 1314                              Oman 1756           0
## 1315                          Pakistan 1756           0
## 1316                             Palau 1756           0
## 1317                         Palestine 1756           0
## 1318                            Panama 1756           0
## 1319                  Papua New Guinea 1756           0
## 1320                          Paraguay 1756           0
## 1321                              Peru 1756           0
## 1322                       Philippines 1756           0
## 1323                            Poland 1756           0
## 1324                          Portugal 1756           0
## 1325                             Qatar 1756           0
## 1326                           Reunion 1756           0
## 1327                           Romania 1756           0
## 1328                            Russia 1756           0
## 1329                            Rwanda 1756           0
## 1330                      Saint Helena 1756           0
## 1331             Saint Kitts and Nevis 1756           0
## 1332                       Saint Lucia 1756           0
## 1333         Saint Pierre and Miquelon 1756           0
## 1334  Saint Vincent and the Grenadines 1756           0
## 1335                             Samoa 1756           0
## 1336             Sao Tome and Principe 1756           0
## 1337                      Saudi Arabia 1756           0
## 1338                           Senegal 1756           0
## 1339                            Serbia 1756           0
## 1340                        Seychelles 1756           0
## 1341                      Sierra Leone 1756           0
## 1342                         Singapore 1756           0
## 1343         Sint Maarten (Dutch part) 1756           0
## 1344                          Slovakia 1756           0
## 1345                          Slovenia 1756           0
## 1346                   Solomon Islands 1756           0
## 1347                           Somalia 1756           0
## 1348                      South Africa 1756           0
## 1349                       South Korea 1756           0
## 1350                       South Sudan 1756           0
## 1351                             Spain 1756           0
## 1352                         Sri Lanka 1756           0
## 1353                             Sudan 1756           0
## 1354                          Suriname 1756           0
## 1355                         Swaziland 1756           0
## 1356                            Sweden 1756           0
## 1357                       Switzerland 1756           0
## 1358                             Syria 1756           0
## 1359                            Taiwan 1756           0
## 1360                        Tajikistan 1756           0
## 1361                          Tanzania 1756           0
## 1362                          Thailand 1756           0
## 1363                             Timor 1756           0
## 1364                              Togo 1756           0
## 1365                             Tonga 1756           0
## 1366               Trinidad and Tobago 1756           0
## 1367                           Tunisia 1756           0
## 1368                            Turkey 1756           0
## 1369                      Turkmenistan 1756           0
## 1370          Turks and Caicos Islands 1756           0
## 1371                            Tuvalu 1756           0
## 1372                            Uganda 1756           0
## 1373                           Ukraine 1756           0
## 1374              United Arab Emirates 1756           0
## 1375                    United Kingdom 1756    56784672
## 1376                     United States 1756           0
## 1377                           Uruguay 1756           0
## 1378                        Uzbekistan 1756           0
## 1379                           Vanuatu 1756           0
## 1380                         Venezuela 1756           0
## 1381                           Vietnam 1756           0
## 1382         Wallis and Futuna Islands 1756           0
## 1383                             World 1756    56784672
## 1384                             Yemen 1756           0
## 1385                            Zambia 1756           0
## 1386                          Zimbabwe 1756           0
## 1387                       Afghanistan 1757           0
## 1388                            Africa 1757           0
## 1389                           Albania 1757           0
## 1390                           Algeria 1757           0
## 1391                  Americas (other) 1757           0
## 1392                           Andorra 1757           0
## 1393                            Angola 1757           0
## 1394                          Anguilla 1757           0
## 1395               Antarctic Fisheries 1757           0
## 1396               Antigua and Barbuda 1757           0
## 1397                         Argentina 1757           0
## 1398                           Armenia 1757           0
## 1399                             Aruba 1757           0
## 1400          Asia and Pacific (other) 1757           0
## 1401                         Australia 1757           0
## 1402                           Austria 1757           0
## 1403                        Azerbaijan 1757           0
## 1404                           Bahamas 1757           0
## 1405                           Bahrain 1757           0
## 1406                        Bangladesh 1757           0
## 1407                          Barbados 1757           0
## 1408                           Belarus 1757           0
## 1409                           Belgium 1757           0
## 1410                            Belize 1757           0
## 1411                             Benin 1757           0
## 1412                           Bermuda 1757           0
## 1413                            Bhutan 1757           0
## 1414                           Bolivia 1757           0
## 1415   Bonaire Sint Eustatius and Saba 1757           0
## 1416            Bosnia and Herzegovina 1757           0
## 1417                          Botswana 1757           0
## 1418                            Brazil 1757           0
## 1419            British Virgin Islands 1757           0
## 1420                            Brunei 1757           0
## 1421                          Bulgaria 1757           0
## 1422                      Burkina Faso 1757           0
## 1423                           Burundi 1757           0
## 1424                          Cambodia 1757           0
## 1425                          Cameroon 1757           0
## 1426                            Canada 1757           0
## 1427                        Cape Verde 1757           0
## 1428                    Cayman Islands 1757           0
## 1429          Central African Republic 1757           0
## 1430                              Chad 1757           0
## 1431                             Chile 1757           0
## 1432                             China 1757           0
## 1433                  Christmas Island 1757           0
## 1434                          Colombia 1757           0
## 1435                           Comoros 1757           0
## 1436                             Congo 1757           0
## 1437                      Cook Islands 1757           0
## 1438                        Costa Rica 1757           0
## 1439                     Cote d'Ivoire 1757           0
## 1440                           Croatia 1757           0
## 1441                              Cuba 1757           0
## 1442                           Curacao 1757           0
## 1443                            Cyprus 1757           0
## 1444                    Czech Republic 1757           0
## 1445                    Czechoslovakia 1757           0
## 1446      Democratic Republic of Congo 1757           0
## 1447                           Denmark 1757           0
## 1448                          Djibouti 1757           0
## 1449                          Dominica 1757           0
## 1450                Dominican Republic 1757           0
## 1451                             EU-28 1757    66794720
## 1452                           Ecuador 1757           0
## 1453                             Egypt 1757           0
## 1454                       El Salvador 1757           0
## 1455                 Equatorial Guinea 1757           0
## 1456                           Eritrea 1757           0
## 1457                           Estonia 1757           0
## 1458                          Ethiopia 1757           0
## 1459                    Europe (other) 1757           0
## 1460                    Faeroe Islands 1757           0
## 1461                  Falkland Islands 1757           0
## 1462                              Fiji 1757           0
## 1463                           Finland 1757           0
## 1464                            France 1757           0
## 1465                     French Guiana 1757           0
## 1466                  French Polynesia 1757           0
## 1467                             Gabon 1757           0
## 1468                            Gambia 1757           0
## 1469                           Georgia 1757           0
## 1470                           Germany 1757           0
## 1471                             Ghana 1757           0
## 1472                         Gibraltar 1757           0
## 1473                            Greece 1757           0
## 1474                         Greenland 1757           0
## 1475                           Grenada 1757           0
## 1476                        Guadeloupe 1757           0
## 1477                         Guatemala 1757           0
## 1478                            Guinea 1757           0
## 1479                     Guinea-Bissau 1757           0
## 1480                            Guyana 1757           0
## 1481                             Haiti 1757           0
## 1482                          Honduras 1757           0
## 1483                         Hong Kong 1757           0
## 1484                           Hungary 1757           0
## 1485                           Iceland 1757           0
## 1486                             India 1757           0
## 1487                         Indonesia 1757           0
## 1488                              Iran 1757           0
## 1489                              Iraq 1757           0
## 1490                           Ireland 1757           0
## 1491                            Israel 1757           0
## 1492                             Italy 1757           0
## 1493                           Jamaica 1757           0
## 1494                             Japan 1757           0
## 1495                            Jordan 1757           0
## 1496                        Kazakhstan 1757           0
## 1497                             Kenya 1757           0
## 1498                          Kiribati 1757           0
## 1499                            Kuwait 1757           0
## 1500                        Kyrgysztan 1757           0
## 1501                        Kyrgyzstan 1757           0
## 1502                              Laos 1757           0
## 1503                            Latvia 1757           0
## 1504                           Lebanon 1757           0
## 1505                           Lesotho 1757           0
## 1506                           Liberia 1757           0
## 1507                             Libya 1757           0
## 1508                     Liechtenstein 1757           0
## 1509                         Lithuania 1757           0
## 1510                        Luxembourg 1757           0
## 1511                             Macao 1757           0
## 1512                         Macedonia 1757           0
## 1513                        Madagascar 1757           0
## 1514                            Malawi 1757           0
## 1515                          Malaysia 1757           0
## 1516                          Maldives 1757           0
## 1517                              Mali 1757           0
## 1518                             Malta 1757           0
## 1519                  Marshall Islands 1757           0
## 1520                        Martinique 1757           0
## 1521                        Mauritania 1757           0
## 1522                         Mauritius 1757           0
## 1523                            Mexico 1757           0
## 1524              Micronesia (country) 1757           0
## 1525                       Middle East 1757           0
## 1526                           Moldova 1757           0
## 1527                          Mongolia 1757           0
## 1528                        Montenegro 1757           0
## 1529                        Montserrat 1757           0
## 1530                           Morocco 1757           0
## 1531                        Mozambique 1757           0
## 1532                           Myanmar 1757           0
## 1533                           Namibia 1757           0
## 1534                             Nauru 1757           0
## 1535                             Nepal 1757           0
## 1536                       Netherlands 1757           0
## 1537                     New Caledonia 1757           0
## 1538                       New Zealand 1757           0
## 1539                         Nicaragua 1757           0
## 1540                             Niger 1757           0
## 1541                           Nigeria 1757           0
## 1542                              Niue 1757           0
## 1543                       North Korea 1757           0
## 1544                            Norway 1757           0
## 1545                              Oman 1757           0
## 1546                          Pakistan 1757           0
## 1547                             Palau 1757           0
## 1548                         Palestine 1757           0
## 1549                            Panama 1757           0
## 1550                  Papua New Guinea 1757           0
## 1551                          Paraguay 1757           0
## 1552                              Peru 1757           0
## 1553                       Philippines 1757           0
## 1554                            Poland 1757           0
## 1555                          Portugal 1757           0
## 1556                             Qatar 1757           0
## 1557                           Reunion 1757           0
## 1558                           Romania 1757           0
## 1559                            Russia 1757           0
## 1560                            Rwanda 1757           0
## 1561                      Saint Helena 1757           0
## 1562             Saint Kitts and Nevis 1757           0
## 1563                       Saint Lucia 1757           0
## 1564         Saint Pierre and Miquelon 1757           0
## 1565  Saint Vincent and the Grenadines 1757           0
## 1566                             Samoa 1757           0
## 1567             Sao Tome and Principe 1757           0
## 1568                      Saudi Arabia 1757           0
## 1569                           Senegal 1757           0
## 1570                            Serbia 1757           0
## 1571                        Seychelles 1757           0
## 1572                      Sierra Leone 1757           0
## 1573                         Singapore 1757           0
## 1574         Sint Maarten (Dutch part) 1757           0
## 1575                          Slovakia 1757           0
## 1576                          Slovenia 1757           0
## 1577                   Solomon Islands 1757           0
## 1578                           Somalia 1757           0
## 1579                      South Africa 1757           0
## 1580                       South Korea 1757           0
## 1581                       South Sudan 1757           0
## 1582                             Spain 1757           0
## 1583                         Sri Lanka 1757           0
## 1584                             Sudan 1757           0
## 1585                          Suriname 1757           0
## 1586                         Swaziland 1757           0
## 1587                            Sweden 1757           0
## 1588                       Switzerland 1757           0
## 1589                             Syria 1757           0
## 1590                            Taiwan 1757           0
## 1591                        Tajikistan 1757           0
## 1592                          Tanzania 1757           0
## 1593                          Thailand 1757           0
## 1594                             Timor 1757           0
## 1595                              Togo 1757           0
## 1596                             Tonga 1757           0
## 1597               Trinidad and Tobago 1757           0
## 1598                           Tunisia 1757           0
## 1599                            Turkey 1757           0
## 1600                      Turkmenistan 1757           0
## 1601          Turks and Caicos Islands 1757           0
## 1602                            Tuvalu 1757           0
## 1603                            Uganda 1757           0
## 1604                           Ukraine 1757           0
## 1605              United Arab Emirates 1757           0
## 1606                    United Kingdom 1757    66794720
## 1607                     United States 1757           0
## 1608                           Uruguay 1757           0
## 1609                        Uzbekistan 1757           0
## 1610                           Vanuatu 1757           0
## 1611                         Venezuela 1757           0
## 1612                           Vietnam 1757           0
## 1613         Wallis and Futuna Islands 1757           0
## 1614                             World 1757    66794720
## 1615                             Yemen 1757           0
## 1616                            Zambia 1757           0
## 1617                          Zimbabwe 1757           0
## 1618                       Afghanistan 1758           0
## 1619                            Africa 1758           0
## 1620                           Albania 1758           0
## 1621                           Algeria 1758           0
## 1622                  Americas (other) 1758           0
## 1623                           Andorra 1758           0
## 1624                            Angola 1758           0
## 1625                          Anguilla 1758           0
## 1626               Antarctic Fisheries 1758           0
## 1627               Antigua and Barbuda 1758           0
## 1628                         Argentina 1758           0
## 1629                           Armenia 1758           0
## 1630                             Aruba 1758           0
## 1631          Asia and Pacific (other) 1758           0
## 1632                         Australia 1758           0
## 1633                           Austria 1758           0
## 1634                        Azerbaijan 1758           0
## 1635                           Bahamas 1758           0
## 1636                           Bahrain 1758           0
## 1637                        Bangladesh 1758           0
## 1638                          Barbados 1758           0
## 1639                           Belarus 1758           0
## 1640                           Belgium 1758           0
## 1641                            Belize 1758           0
## 1642                             Benin 1758           0
## 1643                           Bermuda 1758           0
## 1644                            Bhutan 1758           0
## 1645                           Bolivia 1758           0
## 1646   Bonaire Sint Eustatius and Saba 1758           0
## 1647            Bosnia and Herzegovina 1758           0
## 1648                          Botswana 1758           0
## 1649                            Brazil 1758           0
## 1650            British Virgin Islands 1758           0
## 1651                            Brunei 1758           0
## 1652                          Bulgaria 1758           0
## 1653                      Burkina Faso 1758           0
## 1654                           Burundi 1758           0
## 1655                          Cambodia 1758           0
## 1656                          Cameroon 1758           0
## 1657                            Canada 1758           0
## 1658                        Cape Verde 1758           0
## 1659                    Cayman Islands 1758           0
## 1660          Central African Republic 1758           0
## 1661                              Chad 1758           0
## 1662                             Chile 1758           0
## 1663                             China 1758           0
## 1664                  Christmas Island 1758           0
## 1665                          Colombia 1758           0
## 1666                           Comoros 1758           0
## 1667                             Congo 1758           0
## 1668                      Cook Islands 1758           0
## 1669                        Costa Rica 1758           0
## 1670                     Cote d'Ivoire 1758           0
## 1671                           Croatia 1758           0
## 1672                              Cuba 1758           0
## 1673                           Curacao 1758           0
## 1674                            Cyprus 1758           0
## 1675                    Czech Republic 1758           0
## 1676                    Czechoslovakia 1758           0
## 1677      Democratic Republic of Congo 1758           0
## 1678                           Denmark 1758           0
## 1679                          Djibouti 1758           0
## 1680                          Dominica 1758           0
## 1681                Dominican Republic 1758           0
## 1682                             EU-28 1758    76808432
## 1683                           Ecuador 1758           0
## 1684                             Egypt 1758           0
## 1685                       El Salvador 1758           0
## 1686                 Equatorial Guinea 1758           0
## 1687                           Eritrea 1758           0
## 1688                           Estonia 1758           0
## 1689                          Ethiopia 1758           0
## 1690                    Europe (other) 1758           0
## 1691                    Faeroe Islands 1758           0
## 1692                  Falkland Islands 1758           0
## 1693                              Fiji 1758           0
## 1694                           Finland 1758           0
## 1695                            France 1758           0
## 1696                     French Guiana 1758           0
## 1697                  French Polynesia 1758           0
## 1698                             Gabon 1758           0
## 1699                            Gambia 1758           0
## 1700                           Georgia 1758           0
## 1701                           Germany 1758           0
## 1702                             Ghana 1758           0
## 1703                         Gibraltar 1758           0
## 1704                            Greece 1758           0
## 1705                         Greenland 1758           0
## 1706                           Grenada 1758           0
## 1707                        Guadeloupe 1758           0
## 1708                         Guatemala 1758           0
## 1709                            Guinea 1758           0
## 1710                     Guinea-Bissau 1758           0
## 1711                            Guyana 1758           0
## 1712                             Haiti 1758           0
## 1713                          Honduras 1758           0
## 1714                         Hong Kong 1758           0
## 1715                           Hungary 1758           0
## 1716                           Iceland 1758           0
## 1717                             India 1758           0
## 1718                         Indonesia 1758           0
## 1719                              Iran 1758           0
## 1720                              Iraq 1758           0
## 1721                           Ireland 1758           0
## 1722                            Israel 1758           0
## 1723                             Italy 1758           0
## 1724                           Jamaica 1758           0
## 1725                             Japan 1758           0
## 1726                            Jordan 1758           0
## 1727                        Kazakhstan 1758           0
## 1728                             Kenya 1758           0
## 1729                          Kiribati 1758           0
## 1730                            Kuwait 1758           0
## 1731                        Kyrgysztan 1758           0
## 1732                        Kyrgyzstan 1758           0
## 1733                              Laos 1758           0
## 1734                            Latvia 1758           0
## 1735                           Lebanon 1758           0
## 1736                           Lesotho 1758           0
## 1737                           Liberia 1758           0
## 1738                             Libya 1758           0
## 1739                     Liechtenstein 1758           0
## 1740                         Lithuania 1758           0
## 1741                        Luxembourg 1758           0
## 1742                             Macao 1758           0
## 1743                         Macedonia 1758           0
## 1744                        Madagascar 1758           0
## 1745                            Malawi 1758           0
## 1746                          Malaysia 1758           0
## 1747                          Maldives 1758           0
## 1748                              Mali 1758           0
## 1749                             Malta 1758           0
## 1750                  Marshall Islands 1758           0
## 1751                        Martinique 1758           0
## 1752                        Mauritania 1758           0
## 1753                         Mauritius 1758           0
## 1754                            Mexico 1758           0
## 1755              Micronesia (country) 1758           0
## 1756                       Middle East 1758           0
## 1757                           Moldova 1758           0
## 1758                          Mongolia 1758           0
## 1759                        Montenegro 1758           0
## 1760                        Montserrat 1758           0
## 1761                           Morocco 1758           0
## 1762                        Mozambique 1758           0
## 1763                           Myanmar 1758           0
## 1764                           Namibia 1758           0
## 1765                             Nauru 1758           0
## 1766                             Nepal 1758           0
## 1767                       Netherlands 1758           0
## 1768                     New Caledonia 1758           0
## 1769                       New Zealand 1758           0
## 1770                         Nicaragua 1758           0
## 1771                             Niger 1758           0
## 1772                           Nigeria 1758           0
## 1773                              Niue 1758           0
## 1774                       North Korea 1758           0
## 1775                            Norway 1758           0
## 1776                              Oman 1758           0
## 1777                          Pakistan 1758           0
## 1778                             Palau 1758           0
## 1779                         Palestine 1758           0
## 1780                            Panama 1758           0
## 1781                  Papua New Guinea 1758           0
## 1782                          Paraguay 1758           0
## 1783                              Peru 1758           0
## 1784                       Philippines 1758           0
## 1785                            Poland 1758           0
## 1786                          Portugal 1758           0
## 1787                             Qatar 1758           0
## 1788                           Reunion 1758           0
## 1789                           Romania 1758           0
## 1790                            Russia 1758           0
## 1791                            Rwanda 1758           0
## 1792                      Saint Helena 1758           0
## 1793             Saint Kitts and Nevis 1758           0
## 1794                       Saint Lucia 1758           0
## 1795         Saint Pierre and Miquelon 1758           0
## 1796  Saint Vincent and the Grenadines 1758           0
## 1797                             Samoa 1758           0
## 1798             Sao Tome and Principe 1758           0
## 1799                      Saudi Arabia 1758           0
## 1800                           Senegal 1758           0
## 1801                            Serbia 1758           0
## 1802                        Seychelles 1758           0
## 1803                      Sierra Leone 1758           0
## 1804                         Singapore 1758           0
## 1805         Sint Maarten (Dutch part) 1758           0
## 1806                          Slovakia 1758           0
## 1807                          Slovenia 1758           0
## 1808                   Solomon Islands 1758           0
## 1809                           Somalia 1758           0
## 1810                      South Africa 1758           0
## 1811                       South Korea 1758           0
## 1812                       South Sudan 1758           0
## 1813                             Spain 1758           0
## 1814                         Sri Lanka 1758           0
## 1815                             Sudan 1758           0
## 1816                          Suriname 1758           0
## 1817                         Swaziland 1758           0
## 1818                            Sweden 1758           0
## 1819                       Switzerland 1758           0
## 1820                             Syria 1758           0
## 1821                            Taiwan 1758           0
## 1822                        Tajikistan 1758           0
## 1823                          Tanzania 1758           0
## 1824                          Thailand 1758           0
## 1825                             Timor 1758           0
## 1826                              Togo 1758           0
## 1827                             Tonga 1758           0
## 1828               Trinidad and Tobago 1758           0
## 1829                           Tunisia 1758           0
## 1830                            Turkey 1758           0
## 1831                      Turkmenistan 1758           0
## 1832          Turks and Caicos Islands 1758           0
## 1833                            Tuvalu 1758           0
## 1834                            Uganda 1758           0
## 1835                           Ukraine 1758           0
## 1836              United Arab Emirates 1758           0
## 1837                    United Kingdom 1758    76808432
## 1838                     United States 1758           0
## 1839                           Uruguay 1758           0
## 1840                        Uzbekistan 1758           0
## 1841                           Vanuatu 1758           0
## 1842                         Venezuela 1758           0
## 1843                           Vietnam 1758           0
## 1844         Wallis and Futuna Islands 1758           0
## 1845                             World 1758    76808432
## 1846                             Yemen 1758           0
## 1847                            Zambia 1758           0
## 1848                          Zimbabwe 1758           0
## 1849                       Afghanistan 1759           0
## 1850                            Africa 1759           0
## 1851                           Albania 1759           0
## 1852                           Algeria 1759           0
## 1853                  Americas (other) 1759           0
## 1854                           Andorra 1759           0
## 1855                            Angola 1759           0
## 1856                          Anguilla 1759           0
## 1857               Antarctic Fisheries 1759           0
## 1858               Antigua and Barbuda 1759           0
## 1859                         Argentina 1759           0
## 1860                           Armenia 1759           0
## 1861                             Aruba 1759           0
## 1862          Asia and Pacific (other) 1759           0
## 1863                         Australia 1759           0
## 1864                           Austria 1759           0
## 1865                        Azerbaijan 1759           0
## 1866                           Bahamas 1759           0
## 1867                           Bahrain 1759           0
## 1868                        Bangladesh 1759           0
## 1869                          Barbados 1759           0
## 1870                           Belarus 1759           0
## 1871                           Belgium 1759           0
## 1872                            Belize 1759           0
## 1873                             Benin 1759           0
## 1874                           Bermuda 1759           0
## 1875                            Bhutan 1759           0
## 1876                           Bolivia 1759           0
## 1877   Bonaire Sint Eustatius and Saba 1759           0
## 1878            Bosnia and Herzegovina 1759           0
## 1879                          Botswana 1759           0
## 1880                            Brazil 1759           0
## 1881            British Virgin Islands 1759           0
## 1882                            Brunei 1759           0
## 1883                          Bulgaria 1759           0
## 1884                      Burkina Faso 1759           0
## 1885                           Burundi 1759           0
## 1886                          Cambodia 1759           0
## 1887                          Cameroon 1759           0
## 1888                            Canada 1759           0
## 1889                        Cape Verde 1759           0
## 1890                    Cayman Islands 1759           0
## 1891          Central African Republic 1759           0
## 1892                              Chad 1759           0
## 1893                             Chile 1759           0
## 1894                             China 1759           0
## 1895                  Christmas Island 1759           0
## 1896                          Colombia 1759           0
## 1897                           Comoros 1759           0
## 1898                             Congo 1759           0
## 1899                      Cook Islands 1759           0
## 1900                        Costa Rica 1759           0
## 1901                     Cote d'Ivoire 1759           0
## 1902                           Croatia 1759           0
## 1903                              Cuba 1759           0
## 1904                           Curacao 1759           0
## 1905                            Cyprus 1759           0
## 1906                    Czech Republic 1759           0
## 1907                    Czechoslovakia 1759           0
## 1908      Democratic Republic of Congo 1759           0
## 1909                           Denmark 1759           0
## 1910                          Djibouti 1759           0
## 1911                          Dominica 1759           0
## 1912                Dominican Republic 1759           0
## 1913                             EU-28 1759    86825808
## 1914                           Ecuador 1759           0
## 1915                             Egypt 1759           0
## 1916                       El Salvador 1759           0
## 1917                 Equatorial Guinea 1759           0
## 1918                           Eritrea 1759           0
## 1919                           Estonia 1759           0
## 1920                          Ethiopia 1759           0
## 1921                    Europe (other) 1759           0
## 1922                    Faeroe Islands 1759           0
## 1923                  Falkland Islands 1759           0
## 1924                              Fiji 1759           0
## 1925                           Finland 1759           0
## 1926                            France 1759           0
## 1927                     French Guiana 1759           0
## 1928                  French Polynesia 1759           0
## 1929                             Gabon 1759           0
## 1930                            Gambia 1759           0
## 1931                           Georgia 1759           0
## 1932                           Germany 1759           0
## 1933                             Ghana 1759           0
## 1934                         Gibraltar 1759           0
## 1935                            Greece 1759           0
## 1936                         Greenland 1759           0
## 1937                           Grenada 1759           0
## 1938                        Guadeloupe 1759           0
## 1939                         Guatemala 1759           0
## 1940                            Guinea 1759           0
## 1941                     Guinea-Bissau 1759           0
## 1942                            Guyana 1759           0
## 1943                             Haiti 1759           0
## 1944                          Honduras 1759           0
## 1945                         Hong Kong 1759           0
## 1946                           Hungary 1759           0
## 1947                           Iceland 1759           0
## 1948                             India 1759           0
## 1949                         Indonesia 1759           0
## 1950                              Iran 1759           0
## 1951                              Iraq 1759           0
## 1952                           Ireland 1759           0
## 1953                            Israel 1759           0
## 1954                             Italy 1759           0
## 1955                           Jamaica 1759           0
## 1956                             Japan 1759           0
## 1957                            Jordan 1759           0
## 1958                        Kazakhstan 1759           0
## 1959                             Kenya 1759           0
## 1960                          Kiribati 1759           0
## 1961                            Kuwait 1759           0
## 1962                        Kyrgysztan 1759           0
## 1963                        Kyrgyzstan 1759           0
## 1964                              Laos 1759           0
## 1965                            Latvia 1759           0
## 1966                           Lebanon 1759           0
## 1967                           Lesotho 1759           0
## 1968                           Liberia 1759           0
## 1969                             Libya 1759           0
## 1970                     Liechtenstein 1759           0
## 1971                         Lithuania 1759           0
## 1972                        Luxembourg 1759           0
## 1973                             Macao 1759           0
## 1974                         Macedonia 1759           0
## 1975                        Madagascar 1759           0
## 1976                            Malawi 1759           0
## 1977                          Malaysia 1759           0
## 1978                          Maldives 1759           0
## 1979                              Mali 1759           0
## 1980                             Malta 1759           0
## 1981                  Marshall Islands 1759           0
## 1982                        Martinique 1759           0
## 1983                        Mauritania 1759           0
## 1984                         Mauritius 1759           0
## 1985                            Mexico 1759           0
## 1986              Micronesia (country) 1759           0
## 1987                       Middle East 1759           0
## 1988                           Moldova 1759           0
## 1989                          Mongolia 1759           0
## 1990                        Montenegro 1759           0
## 1991                        Montserrat 1759           0
## 1992                           Morocco 1759           0
## 1993                        Mozambique 1759           0
## 1994                           Myanmar 1759           0
## 1995                           Namibia 1759           0
## 1996                             Nauru 1759           0
## 1997                             Nepal 1759           0
## 1998                       Netherlands 1759           0
## 1999                     New Caledonia 1759           0
## 2000                       New Zealand 1759           0
## 2001                         Nicaragua 1759           0
## 2002                             Niger 1759           0
## 2003                           Nigeria 1759           0
## 2004                              Niue 1759           0
## 2005                       North Korea 1759           0
## 2006                            Norway 1759           0
## 2007                              Oman 1759           0
## 2008                          Pakistan 1759           0
## 2009                             Palau 1759           0
## 2010                         Palestine 1759           0
## 2011                            Panama 1759           0
## 2012                  Papua New Guinea 1759           0
## 2013                          Paraguay 1759           0
## 2014                              Peru 1759           0
## 2015                       Philippines 1759           0
## 2016                            Poland 1759           0
## 2017                          Portugal 1759           0
## 2018                             Qatar 1759           0
## 2019                           Reunion 1759           0
## 2020                           Romania 1759           0
## 2021                            Russia 1759           0
## 2022                            Rwanda 1759           0
## 2023                      Saint Helena 1759           0
## 2024             Saint Kitts and Nevis 1759           0
## 2025                       Saint Lucia 1759           0
## 2026         Saint Pierre and Miquelon 1759           0
## 2027  Saint Vincent and the Grenadines 1759           0
## 2028                             Samoa 1759           0
## 2029             Sao Tome and Principe 1759           0
## 2030                      Saudi Arabia 1759           0
## 2031                           Senegal 1759           0
## 2032                            Serbia 1759           0
## 2033                        Seychelles 1759           0
## 2034                      Sierra Leone 1759           0
## 2035                         Singapore 1759           0
## 2036         Sint Maarten (Dutch part) 1759           0
## 2037                          Slovakia 1759           0
## 2038                          Slovenia 1759           0
## 2039                   Solomon Islands 1759           0
## 2040                           Somalia 1759           0
## 2041                      South Africa 1759           0
## 2042                       South Korea 1759           0
## 2043                       South Sudan 1759           0
## 2044                             Spain 1759           0
## 2045                         Sri Lanka 1759           0
## 2046                             Sudan 1759           0
## 2047                          Suriname 1759           0
## 2048                         Swaziland 1759           0
## 2049                            Sweden 1759           0
## 2050                       Switzerland 1759           0
## 2051                             Syria 1759           0
## 2052                            Taiwan 1759           0
## 2053                        Tajikistan 1759           0
## 2054                          Tanzania 1759           0
## 2055                          Thailand 1759           0
## 2056                             Timor 1759           0
## 2057                              Togo 1759           0
## 2058                             Tonga 1759           0
## 2059               Trinidad and Tobago 1759           0
## 2060                           Tunisia 1759           0
## 2061                            Turkey 1759           0
## 2062                      Turkmenistan 1759           0
## 2063          Turks and Caicos Islands 1759           0
## 2064                            Tuvalu 1759           0
## 2065                            Uganda 1759           0
## 2066                           Ukraine 1759           0
## 2067              United Arab Emirates 1759           0
## 2068                    United Kingdom 1759    86825808
## 2069                     United States 1759           0
## 2070                           Uruguay 1759           0
## 2071                        Uzbekistan 1759           0
## 2072                           Vanuatu 1759           0
## 2073                         Venezuela 1759           0
## 2074                           Vietnam 1759           0
## 2075         Wallis and Futuna Islands 1759           0
## 2076                             World 1759    86825808
## 2077                             Yemen 1759           0
## 2078                            Zambia 1759           0
## 2079                          Zimbabwe 1759           0
## 2080                       Afghanistan 1760           0
## 2081                            Africa 1760           0
## 2082                           Albania 1760           0
## 2083                           Algeria 1760           0
## 2084                  Americas (other) 1760           0
## 2085                           Andorra 1760           0
## 2086                            Angola 1760           0
## 2087                          Anguilla 1760           0
## 2088               Antarctic Fisheries 1760           0
## 2089               Antigua and Barbuda 1760           0
## 2090                         Argentina 1760           0
## 2091                           Armenia 1760           0
## 2092                             Aruba 1760           0
## 2093          Asia and Pacific (other) 1760           0
## 2094                         Australia 1760           0
## 2095                           Austria 1760           0
## 2096                        Azerbaijan 1760           0
## 2097                           Bahamas 1760           0
## 2098                           Bahrain 1760           0
## 2099                        Bangladesh 1760           0
## 2100                          Barbados 1760           0
## 2101                           Belarus 1760           0
## 2102                           Belgium 1760           0
## 2103                            Belize 1760           0
## 2104                             Benin 1760           0
## 2105                           Bermuda 1760           0
## 2106                            Bhutan 1760           0
## 2107                           Bolivia 1760           0
## 2108   Bonaire Sint Eustatius and Saba 1760           0
## 2109            Bosnia and Herzegovina 1760           0
## 2110                          Botswana 1760           0
## 2111                            Brazil 1760           0
## 2112            British Virgin Islands 1760           0
## 2113                            Brunei 1760           0
## 2114                          Bulgaria 1760           0
## 2115                      Burkina Faso 1760           0
## 2116                           Burundi 1760           0
## 2117                          Cambodia 1760           0
## 2118                          Cameroon 1760           0
## 2119                            Canada 1760           0
## 2120                        Cape Verde 1760           0
## 2121                    Cayman Islands 1760           0
## 2122          Central African Republic 1760           0
## 2123                              Chad 1760           0
## 2124                             Chile 1760           0
## 2125                             China 1760           0
## 2126                  Christmas Island 1760           0
## 2127                          Colombia 1760           0
## 2128                           Comoros 1760           0
## 2129                             Congo 1760           0
## 2130                      Cook Islands 1760           0
## 2131                        Costa Rica 1760           0
## 2132                     Cote d'Ivoire 1760           0
## 2133                           Croatia 1760           0
## 2134                              Cuba 1760           0
## 2135                           Curacao 1760           0
## 2136                            Cyprus 1760           0
## 2137                    Czech Republic 1760           0
## 2138                    Czechoslovakia 1760           0
## 2139      Democratic Republic of Congo 1760           0
## 2140                           Denmark 1760           0
## 2141                          Djibouti 1760           0
## 2142                          Dominica 1760           0
## 2143                Dominican Republic 1760           0
## 2144                             EU-28 1760    96843184
## 2145                           Ecuador 1760           0
## 2146                             Egypt 1760           0
## 2147                       El Salvador 1760           0
## 2148                 Equatorial Guinea 1760           0
## 2149                           Eritrea 1760           0
## 2150                           Estonia 1760           0
## 2151                          Ethiopia 1760           0
## 2152                    Europe (other) 1760           0
## 2153                    Faeroe Islands 1760           0
## 2154                  Falkland Islands 1760           0
## 2155                              Fiji 1760           0
## 2156                           Finland 1760           0
## 2157                            France 1760           0
## 2158                     French Guiana 1760           0
## 2159                  French Polynesia 1760           0
## 2160                             Gabon 1760           0
## 2161                            Gambia 1760           0
## 2162                           Georgia 1760           0
## 2163                           Germany 1760           0
## 2164                             Ghana 1760           0
## 2165                         Gibraltar 1760           0
## 2166                            Greece 1760           0
## 2167                         Greenland 1760           0
## 2168                           Grenada 1760           0
## 2169                        Guadeloupe 1760           0
## 2170                         Guatemala 1760           0
## 2171                            Guinea 1760           0
## 2172                     Guinea-Bissau 1760           0
## 2173                            Guyana 1760           0
## 2174                             Haiti 1760           0
## 2175                          Honduras 1760           0
## 2176                         Hong Kong 1760           0
## 2177                           Hungary 1760           0
## 2178                           Iceland 1760           0
## 2179                             India 1760           0
## 2180                         Indonesia 1760           0
## 2181                              Iran 1760           0
## 2182                              Iraq 1760           0
## 2183                           Ireland 1760           0
## 2184                            Israel 1760           0
## 2185                             Italy 1760           0
## 2186                           Jamaica 1760           0
## 2187                             Japan 1760           0
## 2188                            Jordan 1760           0
## 2189                        Kazakhstan 1760           0
## 2190                             Kenya 1760           0
## 2191                          Kiribati 1760           0
## 2192                            Kuwait 1760           0
## 2193                        Kyrgysztan 1760           0
## 2194                        Kyrgyzstan 1760           0
## 2195                              Laos 1760           0
## 2196                            Latvia 1760           0
## 2197                           Lebanon 1760           0
## 2198                           Lesotho 1760           0
## 2199                           Liberia 1760           0
## 2200                             Libya 1760           0
## 2201                     Liechtenstein 1760           0
## 2202                         Lithuania 1760           0
## 2203                        Luxembourg 1760           0
## 2204                             Macao 1760           0
## 2205                         Macedonia 1760           0
## 2206                        Madagascar 1760           0
## 2207                            Malawi 1760           0
## 2208                          Malaysia 1760           0
## 2209                          Maldives 1760           0
## 2210                              Mali 1760           0
## 2211                             Malta 1760           0
## 2212                  Marshall Islands 1760           0
## 2213                        Martinique 1760           0
## 2214                        Mauritania 1760           0
## 2215                         Mauritius 1760           0
## 2216                            Mexico 1760           0
## 2217              Micronesia (country) 1760           0
## 2218                       Middle East 1760           0
## 2219                           Moldova 1760           0
## 2220                          Mongolia 1760           0
## 2221                        Montenegro 1760           0
## 2222                        Montserrat 1760           0
## 2223                           Morocco 1760           0
## 2224                        Mozambique 1760           0
## 2225                           Myanmar 1760           0
## 2226                           Namibia 1760           0
## 2227                             Nauru 1760           0
## 2228                             Nepal 1760           0
## 2229                       Netherlands 1760           0
## 2230                     New Caledonia 1760           0
## 2231                       New Zealand 1760           0
## 2232                         Nicaragua 1760           0
## 2233                             Niger 1760           0
## 2234                           Nigeria 1760           0
## 2235                              Niue 1760           0
## 2236                       North Korea 1760           0
## 2237                            Norway 1760           0
## 2238                              Oman 1760           0
## 2239                          Pakistan 1760           0
## 2240                             Palau 1760           0
## 2241                         Palestine 1760           0
## 2242                            Panama 1760           0
## 2243                  Papua New Guinea 1760           0
## 2244                          Paraguay 1760           0
## 2245                              Peru 1760           0
## 2246                       Philippines 1760           0
## 2247                            Poland 1760           0
## 2248                          Portugal 1760           0
## 2249                             Qatar 1760           0
## 2250                           Reunion 1760           0
## 2251                           Romania 1760           0
## 2252                            Russia 1760           0
## 2253                            Rwanda 1760           0
## 2254                      Saint Helena 1760           0
## 2255             Saint Kitts and Nevis 1760           0
## 2256                       Saint Lucia 1760           0
## 2257         Saint Pierre and Miquelon 1760           0
## 2258  Saint Vincent and the Grenadines 1760           0
## 2259                             Samoa 1760           0
## 2260             Sao Tome and Principe 1760           0
## 2261                      Saudi Arabia 1760           0
## 2262                           Senegal 1760           0
## 2263                            Serbia 1760           0
## 2264                        Seychelles 1760           0
## 2265                      Sierra Leone 1760           0
## 2266                         Singapore 1760           0
## 2267         Sint Maarten (Dutch part) 1760           0
## 2268                          Slovakia 1760           0
## 2269                          Slovenia 1760           0
## 2270                   Solomon Islands 1760           0
## 2271                           Somalia 1760           0
## 2272                      South Africa 1760           0
## 2273                       South Korea 1760           0
## 2274                       South Sudan 1760           0
## 2275                             Spain 1760           0
## 2276                         Sri Lanka 1760           0
## 2277                             Sudan 1760           0
## 2278                          Suriname 1760           0
## 2279                         Swaziland 1760           0
## 2280                            Sweden 1760           0
## 2281                       Switzerland 1760           0
## 2282                             Syria 1760           0
## 2283                            Taiwan 1760           0
## 2284                        Tajikistan 1760           0
## 2285                          Tanzania 1760           0
## 2286                          Thailand 1760           0
## 2287                             Timor 1760           0
## 2288                              Togo 1760           0
## 2289                             Tonga 1760           0
## 2290               Trinidad and Tobago 1760           0
## 2291                           Tunisia 1760           0
## 2292                            Turkey 1760           0
## 2293                      Turkmenistan 1760           0
## 2294          Turks and Caicos Islands 1760           0
## 2295                            Tuvalu 1760           0
## 2296                            Uganda 1760           0
## 2297                           Ukraine 1760           0
## 2298              United Arab Emirates 1760           0
## 2299                    United Kingdom 1760    96843184
## 2300                     United States 1760           0
## 2301                           Uruguay 1760           0
## 2302                        Uzbekistan 1760           0
## 2303                           Vanuatu 1760           0
## 2304                         Venezuela 1760           0
## 2305                           Vietnam 1760           0
## 2306         Wallis and Futuna Islands 1760           0
## 2307                             World 1760    96843184
## 2308                             Yemen 1760           0
## 2309                            Zambia 1760           0
## 2310                          Zimbabwe 1760           0
## 2311                       Afghanistan 1761           0
## 2312                            Africa 1761           0
## 2313                           Albania 1761           0
## 2314                           Algeria 1761           0
## 2315                  Americas (other) 1761           0
## 2316                           Andorra 1761           0
## 2317                            Angola 1761           0
## 2318                          Anguilla 1761           0
## 2319               Antarctic Fisheries 1761           0
## 2320               Antigua and Barbuda 1761           0
## 2321                         Argentina 1761           0
## 2322                           Armenia 1761           0
## 2323                             Aruba 1761           0
## 2324          Asia and Pacific (other) 1761           0
## 2325                         Australia 1761           0
## 2326                           Austria 1761           0
## 2327                        Azerbaijan 1761           0
## 2328                           Bahamas 1761           0
## 2329                           Bahrain 1761           0
## 2330                        Bangladesh 1761           0
## 2331                          Barbados 1761           0
## 2332                           Belarus 1761           0
## 2333                           Belgium 1761           0
## 2334                            Belize 1761           0
## 2335                             Benin 1761           0
## 2336                           Bermuda 1761           0
## 2337                            Bhutan 1761           0
## 2338                           Bolivia 1761           0
## 2339   Bonaire Sint Eustatius and Saba 1761           0
## 2340            Bosnia and Herzegovina 1761           0
## 2341                          Botswana 1761           0
## 2342                            Brazil 1761           0
## 2343            British Virgin Islands 1761           0
## 2344                            Brunei 1761           0
## 2345                          Bulgaria 1761           0
## 2346                      Burkina Faso 1761           0
## 2347                           Burundi 1761           0
## 2348                          Cambodia 1761           0
## 2349                          Cameroon 1761           0
## 2350                            Canada 1761           0
## 2351                        Cape Verde 1761           0
## 2352                    Cayman Islands 1761           0
## 2353          Central African Republic 1761           0
## 2354                              Chad 1761           0
## 2355                             Chile 1761           0
## 2356                             China 1761           0
## 2357                  Christmas Island 1761           0
## 2358                          Colombia 1761           0
## 2359                           Comoros 1761           0
## 2360                             Congo 1761           0
## 2361                      Cook Islands 1761           0
## 2362                        Costa Rica 1761           0
## 2363                     Cote d'Ivoire 1761           0
## 2364                           Croatia 1761           0
## 2365                              Cuba 1761           0
## 2366                           Curacao 1761           0
## 2367                            Cyprus 1761           0
## 2368                    Czech Republic 1761           0
## 2369                    Czechoslovakia 1761           0
## 2370      Democratic Republic of Congo 1761           0
## 2371                           Denmark 1761           0
## 2372                          Djibouti 1761           0
## 2373                          Dominica 1761           0
## 2374                Dominican Republic 1761           0
## 2375                             EU-28 1761   107816864
## 2376                           Ecuador 1761           0
## 2377                             Egypt 1761           0
## 2378                       El Salvador 1761           0
## 2379                 Equatorial Guinea 1761           0
## 2380                           Eritrea 1761           0
## 2381                           Estonia 1761           0
## 2382                          Ethiopia 1761           0
## 2383                    Europe (other) 1761           0
## 2384                    Faeroe Islands 1761           0
## 2385                  Falkland Islands 1761           0
## 2386                              Fiji 1761           0
## 2387                           Finland 1761           0
## 2388                            France 1761           0
## 2389                     French Guiana 1761           0
## 2390                  French Polynesia 1761           0
## 2391                             Gabon 1761           0
## 2392                            Gambia 1761           0
## 2393                           Georgia 1761           0
## 2394                           Germany 1761           0
## 2395                             Ghana 1761           0
## 2396                         Gibraltar 1761           0
## 2397                            Greece 1761           0
## 2398                         Greenland 1761           0
## 2399                           Grenada 1761           0
## 2400                        Guadeloupe 1761           0
## 2401                         Guatemala 1761           0
## 2402                            Guinea 1761           0
## 2403                     Guinea-Bissau 1761           0
## 2404                            Guyana 1761           0
## 2405                             Haiti 1761           0
## 2406                          Honduras 1761           0
## 2407                         Hong Kong 1761           0
## 2408                           Hungary 1761           0
## 2409                           Iceland 1761           0
## 2410                             India 1761           0
## 2411                         Indonesia 1761           0
## 2412                              Iran 1761           0
## 2413                              Iraq 1761           0
## 2414                           Ireland 1761           0
## 2415                            Israel 1761           0
## 2416                             Italy 1761           0
## 2417                           Jamaica 1761           0
## 2418                             Japan 1761           0
## 2419                            Jordan 1761           0
## 2420                        Kazakhstan 1761           0
## 2421                             Kenya 1761           0
## 2422                          Kiribati 1761           0
## 2423                            Kuwait 1761           0
## 2424                        Kyrgysztan 1761           0
## 2425                        Kyrgyzstan 1761           0
## 2426                              Laos 1761           0
## 2427                            Latvia 1761           0
## 2428                           Lebanon 1761           0
## 2429                           Lesotho 1761           0
## 2430                           Liberia 1761           0
## 2431                             Libya 1761           0
## 2432                     Liechtenstein 1761           0
## 2433                         Lithuania 1761           0
## 2434                        Luxembourg 1761           0
## 2435                             Macao 1761           0
## 2436                         Macedonia 1761           0
## 2437                        Madagascar 1761           0
## 2438                            Malawi 1761           0
## 2439                          Malaysia 1761           0
## 2440                          Maldives 1761           0
## 2441                              Mali 1761           0
## 2442                             Malta 1761           0
## 2443                  Marshall Islands 1761           0
## 2444                        Martinique 1761           0
## 2445                        Mauritania 1761           0
## 2446                         Mauritius 1761           0
## 2447                            Mexico 1761           0
## 2448              Micronesia (country) 1761           0
## 2449                       Middle East 1761           0
## 2450                           Moldova 1761           0
## 2451                          Mongolia 1761           0
## 2452                        Montenegro 1761           0
## 2453                        Montserrat 1761           0
## 2454                           Morocco 1761           0
## 2455                        Mozambique 1761           0
## 2456                           Myanmar 1761           0
## 2457                           Namibia 1761           0
## 2458                             Nauru 1761           0
## 2459                             Nepal 1761           0
## 2460                       Netherlands 1761           0
## 2461                     New Caledonia 1761           0
## 2462                       New Zealand 1761           0
## 2463                         Nicaragua 1761           0
## 2464                             Niger 1761           0
## 2465                           Nigeria 1761           0
## 2466                              Niue 1761           0
## 2467                       North Korea 1761           0
## 2468                            Norway 1761           0
## 2469                              Oman 1761           0
## 2470                          Pakistan 1761           0
## 2471                             Palau 1761           0
## 2472                         Palestine 1761           0
## 2473                            Panama 1761           0
## 2474                  Papua New Guinea 1761           0
## 2475                          Paraguay 1761           0
## 2476                              Peru 1761           0
## 2477                       Philippines 1761           0
## 2478                            Poland 1761           0
## 2479                          Portugal 1761           0
## 2480                             Qatar 1761           0
## 2481                           Reunion 1761           0
## 2482                           Romania 1761           0
## 2483                            Russia 1761           0
## 2484                            Rwanda 1761           0
## 2485                      Saint Helena 1761           0
## 2486             Saint Kitts and Nevis 1761           0
## 2487                       Saint Lucia 1761           0
## 2488         Saint Pierre and Miquelon 1761           0
## 2489  Saint Vincent and the Grenadines 1761           0
## 2490                             Samoa 1761           0
## 2491             Sao Tome and Principe 1761           0
## 2492                      Saudi Arabia 1761           0
## 2493                           Senegal 1761           0
## 2494                            Serbia 1761           0
## 2495                        Seychelles 1761           0
## 2496                      Sierra Leone 1761           0
## 2497                         Singapore 1761           0
## 2498         Sint Maarten (Dutch part) 1761           0
## 2499                          Slovakia 1761           0
## 2500                          Slovenia 1761           0
## 2501                   Solomon Islands 1761           0
## 2502                           Somalia 1761           0
## 2503                      South Africa 1761           0
## 2504                       South Korea 1761           0
## 2505                       South Sudan 1761           0
## 2506                             Spain 1761           0
## 2507                         Sri Lanka 1761           0
## 2508                             Sudan 1761           0
## 2509                          Suriname 1761           0
## 2510                         Swaziland 1761           0
## 2511                            Sweden 1761           0
## 2512                       Switzerland 1761           0
## 2513                             Syria 1761           0
## 2514                            Taiwan 1761           0
## 2515                        Tajikistan 1761           0
## 2516                          Tanzania 1761           0
## 2517                          Thailand 1761           0
## 2518                             Timor 1761           0
## 2519                              Togo 1761           0
## 2520                             Tonga 1761           0
## 2521               Trinidad and Tobago 1761           0
## 2522                           Tunisia 1761           0
## 2523                            Turkey 1761           0
## 2524                      Turkmenistan 1761           0
## 2525          Turks and Caicos Islands 1761           0
## 2526                            Tuvalu 1761           0
## 2527                            Uganda 1761           0
## 2528                           Ukraine 1761           0
## 2529              United Arab Emirates 1761           0
## 2530                    United Kingdom 1761   107816864
## 2531                     United States 1761           0
## 2532                           Uruguay 1761           0
## 2533                        Uzbekistan 1761           0
## 2534                           Vanuatu 1761           0
## 2535                         Venezuela 1761           0
## 2536                           Vietnam 1761           0
## 2537         Wallis and Futuna Islands 1761           0
## 2538                             World 1761   107816864
## 2539                             Yemen 1761           0
## 2540                            Zambia 1761           0
## 2541                          Zimbabwe 1761           0
## 2542                       Afghanistan 1762           0
## 2543                            Africa 1762           0
## 2544                           Albania 1762           0
## 2545                           Algeria 1762           0
## 2546                  Americas (other) 1762           0
## 2547                           Andorra 1762           0
## 2548                            Angola 1762           0
## 2549                          Anguilla 1762           0
## 2550               Antarctic Fisheries 1762           0
## 2551               Antigua and Barbuda 1762           0
## 2552                         Argentina 1762           0
## 2553                           Armenia 1762           0
## 2554                             Aruba 1762           0
## 2555          Asia and Pacific (other) 1762           0
## 2556                         Australia 1762           0
## 2557                           Austria 1762           0
## 2558                        Azerbaijan 1762           0
## 2559                           Bahamas 1762           0
## 2560                           Bahrain 1762           0
## 2561                        Bangladesh 1762           0
## 2562                          Barbados 1762           0
## 2563                           Belarus 1762           0
## 2564                           Belgium 1762           0
## 2565                            Belize 1762           0
## 2566                             Benin 1762           0
## 2567                           Bermuda 1762           0
## 2568                            Bhutan 1762           0
## 2569                           Bolivia 1762           0
## 2570   Bonaire Sint Eustatius and Saba 1762           0
## 2571            Bosnia and Herzegovina 1762           0
## 2572                          Botswana 1762           0
## 2573                            Brazil 1762           0
## 2574            British Virgin Islands 1762           0
## 2575                            Brunei 1762           0
## 2576                          Bulgaria 1762           0
## 2577                      Burkina Faso 1762           0
## 2578                           Burundi 1762           0
## 2579                          Cambodia 1762           0
## 2580                          Cameroon 1762           0
## 2581                            Canada 1762           0
## 2582                        Cape Verde 1762           0
## 2583                    Cayman Islands 1762           0
## 2584          Central African Republic 1762           0
## 2585                              Chad 1762           0
## 2586                             Chile 1762           0
## 2587                             China 1762           0
## 2588                  Christmas Island 1762           0
## 2589                          Colombia 1762           0
## 2590                           Comoros 1762           0
## 2591                             Congo 1762           0
## 2592                      Cook Islands 1762           0
## 2593                        Costa Rica 1762           0
## 2594                     Cote d'Ivoire 1762           0
## 2595                           Croatia 1762           0
## 2596                              Cuba 1762           0
## 2597                           Curacao 1762           0
## 2598                            Cyprus 1762           0
## 2599                    Czech Republic 1762           0
## 2600                    Czechoslovakia 1762           0
## 2601      Democratic Republic of Congo 1762           0
## 2602                           Denmark 1762           0
## 2603                          Djibouti 1762           0
## 2604                          Dominica 1762           0
## 2605                Dominican Republic 1762           0
## 2606                             EU-28 1762   118794208
## 2607                           Ecuador 1762           0
## 2608                             Egypt 1762           0
## 2609                       El Salvador 1762           0
## 2610                 Equatorial Guinea 1762           0
## 2611                           Eritrea 1762           0
## 2612                           Estonia 1762           0
## 2613                          Ethiopia 1762           0
## 2614                    Europe (other) 1762           0
## 2615                    Faeroe Islands 1762           0
## 2616                  Falkland Islands 1762           0
## 2617                              Fiji 1762           0
## 2618                           Finland 1762           0
## 2619                            France 1762           0
## 2620                     French Guiana 1762           0
## 2621                  French Polynesia 1762           0
## 2622                             Gabon 1762           0
## 2623                            Gambia 1762           0
## 2624                           Georgia 1762           0
## 2625                           Germany 1762           0
## 2626                             Ghana 1762           0
## 2627                         Gibraltar 1762           0
## 2628                            Greece 1762           0
## 2629                         Greenland 1762           0
## 2630                           Grenada 1762           0
## 2631                        Guadeloupe 1762           0
## 2632                         Guatemala 1762           0
## 2633                            Guinea 1762           0
## 2634                     Guinea-Bissau 1762           0
## 2635                            Guyana 1762           0
## 2636                             Haiti 1762           0
## 2637                          Honduras 1762           0
## 2638                         Hong Kong 1762           0
## 2639                           Hungary 1762           0
## 2640                           Iceland 1762           0
## 2641                             India 1762           0
## 2642                         Indonesia 1762           0
## 2643                              Iran 1762           0
## 2644                              Iraq 1762           0
## 2645                           Ireland 1762           0
## 2646                            Israel 1762           0
## 2647                             Italy 1762           0
## 2648                           Jamaica 1762           0
## 2649                             Japan 1762           0
## 2650                            Jordan 1762           0
## 2651                        Kazakhstan 1762           0
## 2652                             Kenya 1762           0
## 2653                          Kiribati 1762           0
## 2654                            Kuwait 1762           0
## 2655                        Kyrgysztan 1762           0
## 2656                        Kyrgyzstan 1762           0
## 2657                              Laos 1762           0
## 2658                            Latvia 1762           0
## 2659                           Lebanon 1762           0
## 2660                           Lesotho 1762           0
## 2661                           Liberia 1762           0
## 2662                             Libya 1762           0
## 2663                     Liechtenstein 1762           0
## 2664                         Lithuania 1762           0
## 2665                        Luxembourg 1762           0
## 2666                             Macao 1762           0
## 2667                         Macedonia 1762           0
## 2668                        Madagascar 1762           0
## 2669                            Malawi 1762           0
## 2670                          Malaysia 1762           0
## 2671                          Maldives 1762           0
## 2672                              Mali 1762           0
## 2673                             Malta 1762           0
## 2674                  Marshall Islands 1762           0
## 2675                        Martinique 1762           0
## 2676                        Mauritania 1762           0
## 2677                         Mauritius 1762           0
## 2678                            Mexico 1762           0
## 2679              Micronesia (country) 1762           0
## 2680                       Middle East 1762           0
## 2681                           Moldova 1762           0
## 2682                          Mongolia 1762           0
## 2683                        Montenegro 1762           0
## 2684                        Montserrat 1762           0
## 2685                           Morocco 1762           0
## 2686                        Mozambique 1762           0
## 2687                           Myanmar 1762           0
## 2688                           Namibia 1762           0
## 2689                             Nauru 1762           0
## 2690                             Nepal 1762           0
## 2691                       Netherlands 1762           0
## 2692                     New Caledonia 1762           0
## 2693                       New Zealand 1762           0
## 2694                         Nicaragua 1762           0
## 2695                             Niger 1762           0
## 2696                           Nigeria 1762           0
## 2697                              Niue 1762           0
## 2698                       North Korea 1762           0
## 2699                            Norway 1762           0
## 2700                              Oman 1762           0
## 2701                          Pakistan 1762           0
## 2702                             Palau 1762           0
## 2703                         Palestine 1762           0
## 2704                            Panama 1762           0
## 2705                  Papua New Guinea 1762           0
## 2706                          Paraguay 1762           0
## 2707                              Peru 1762           0
## 2708                       Philippines 1762           0
## 2709                            Poland 1762           0
## 2710                          Portugal 1762           0
## 2711                             Qatar 1762           0
## 2712                           Reunion 1762           0
## 2713                           Romania 1762           0
## 2714                            Russia 1762           0
## 2715                            Rwanda 1762           0
## 2716                      Saint Helena 1762           0
## 2717             Saint Kitts and Nevis 1762           0
## 2718                       Saint Lucia 1762           0
## 2719         Saint Pierre and Miquelon 1762           0
## 2720  Saint Vincent and the Grenadines 1762           0
## 2721                             Samoa 1762           0
## 2722             Sao Tome and Principe 1762           0
## 2723                      Saudi Arabia 1762           0
## 2724                           Senegal 1762           0
## 2725                            Serbia 1762           0
## 2726                        Seychelles 1762           0
## 2727                      Sierra Leone 1762           0
## 2728                         Singapore 1762           0
## 2729         Sint Maarten (Dutch part) 1762           0
## 2730                          Slovakia 1762           0
## 2731                          Slovenia 1762           0
## 2732                   Solomon Islands 1762           0
## 2733                           Somalia 1762           0
## 2734                      South Africa 1762           0
## 2735                       South Korea 1762           0
## 2736                       South Sudan 1762           0
## 2737                             Spain 1762           0
## 2738                         Sri Lanka 1762           0
## 2739                             Sudan 1762           0
## 2740                          Suriname 1762           0
## 2741                         Swaziland 1762           0
## 2742                            Sweden 1762           0
## 2743                       Switzerland 1762           0
## 2744                             Syria 1762           0
## 2745                            Taiwan 1762           0
## 2746                        Tajikistan 1762           0
## 2747                          Tanzania 1762           0
## 2748                          Thailand 1762           0
## 2749                             Timor 1762           0
## 2750                              Togo 1762           0
## 2751                             Tonga 1762           0
## 2752               Trinidad and Tobago 1762           0
## 2753                           Tunisia 1762           0
## 2754                            Turkey 1762           0
## 2755                      Turkmenistan 1762           0
## 2756          Turks and Caicos Islands 1762           0
## 2757                            Tuvalu 1762           0
## 2758                            Uganda 1762           0
## 2759                           Ukraine 1762           0
## 2760              United Arab Emirates 1762           0
## 2761                    United Kingdom 1762   118794208
## 2762                     United States 1762           0
## 2763                           Uruguay 1762           0
## 2764                        Uzbekistan 1762           0
## 2765                           Vanuatu 1762           0
## 2766                         Venezuela 1762           0
## 2767                           Vietnam 1762           0
## 2768         Wallis and Futuna Islands 1762           0
## 2769                             World 1762   118794208
## 2770                             Yemen 1762           0
## 2771                            Zambia 1762           0
## 2772                          Zimbabwe 1762           0
## 2773                       Afghanistan 1763           0
## 2774                            Africa 1763           0
## 2775                           Albania 1763           0
## 2776                           Algeria 1763           0
## 2777                  Americas (other) 1763           0
## 2778                           Andorra 1763           0
## 2779                            Angola 1763           0
## 2780                          Anguilla 1763           0
## 2781               Antarctic Fisheries 1763           0
## 2782               Antigua and Barbuda 1763           0
## 2783                         Argentina 1763           0
## 2784                           Armenia 1763           0
## 2785                             Aruba 1763           0
## 2786          Asia and Pacific (other) 1763           0
## 2787                         Australia 1763           0
## 2788                           Austria 1763           0
## 2789                        Azerbaijan 1763           0
## 2790                           Bahamas 1763           0
## 2791                           Bahrain 1763           0
## 2792                        Bangladesh 1763           0
## 2793                          Barbados 1763           0
## 2794                           Belarus 1763           0
## 2795                           Belgium 1763           0
## 2796                            Belize 1763           0
## 2797                             Benin 1763           0
## 2798                           Bermuda 1763           0
## 2799                            Bhutan 1763           0
## 2800                           Bolivia 1763           0
## 2801   Bonaire Sint Eustatius and Saba 1763           0
## 2802            Bosnia and Herzegovina 1763           0
## 2803                          Botswana 1763           0
## 2804                            Brazil 1763           0
## 2805            British Virgin Islands 1763           0
## 2806                            Brunei 1763           0
## 2807                          Bulgaria 1763           0
## 2808                      Burkina Faso 1763           0
## 2809                           Burundi 1763           0
## 2810                          Cambodia 1763           0
## 2811                          Cameroon 1763           0
## 2812                            Canada 1763           0
## 2813                        Cape Verde 1763           0
## 2814                    Cayman Islands 1763           0
## 2815          Central African Republic 1763           0
## 2816                              Chad 1763           0
## 2817                             Chile 1763           0
## 2818                             China 1763           0
## 2819                  Christmas Island 1763           0
## 2820                          Colombia 1763           0
## 2821                           Comoros 1763           0
## 2822                             Congo 1763           0
## 2823                      Cook Islands 1763           0
## 2824                        Costa Rica 1763           0
## 2825                     Cote d'Ivoire 1763           0
## 2826                           Croatia 1763           0
## 2827                              Cuba 1763           0
## 2828                           Curacao 1763           0
## 2829                            Cyprus 1763           0
## 2830                    Czech Republic 1763           0
## 2831                    Czechoslovakia 1763           0
## 2832      Democratic Republic of Congo 1763           0
## 2833                           Denmark 1763           0
## 2834                          Djibouti 1763           0
## 2835                          Dominica 1763           0
## 2836                Dominican Republic 1763           0
## 2837                             EU-28 1763   129775216
## 2838                           Ecuador 1763           0
## 2839                             Egypt 1763           0
## 2840                       El Salvador 1763           0
## 2841                 Equatorial Guinea 1763           0
## 2842                           Eritrea 1763           0
## 2843                           Estonia 1763           0
## 2844                          Ethiopia 1763           0
## 2845                    Europe (other) 1763           0
## 2846                    Faeroe Islands 1763           0
## 2847                  Falkland Islands 1763           0
## 2848                              Fiji 1763           0
## 2849                           Finland 1763           0
## 2850                            France 1763           0
## 2851                     French Guiana 1763           0
## 2852                  French Polynesia 1763           0
## 2853                             Gabon 1763           0
## 2854                            Gambia 1763           0
## 2855                           Georgia 1763           0
## 2856                           Germany 1763           0
## 2857                             Ghana 1763           0
## 2858                         Gibraltar 1763           0
## 2859                            Greece 1763           0
## 2860                         Greenland 1763           0
## 2861                           Grenada 1763           0
## 2862                        Guadeloupe 1763           0
## 2863                         Guatemala 1763           0
## 2864                            Guinea 1763           0
## 2865                     Guinea-Bissau 1763           0
## 2866                            Guyana 1763           0
## 2867                             Haiti 1763           0
## 2868                          Honduras 1763           0
## 2869                         Hong Kong 1763           0
## 2870                           Hungary 1763           0
## 2871                           Iceland 1763           0
## 2872                             India 1763           0
## 2873                         Indonesia 1763           0
## 2874                              Iran 1763           0
## 2875                              Iraq 1763           0
## 2876                           Ireland 1763           0
## 2877                            Israel 1763           0
## 2878                             Italy 1763           0
## 2879                           Jamaica 1763           0
## 2880                             Japan 1763           0
## 2881                            Jordan 1763           0
## 2882                        Kazakhstan 1763           0
## 2883                             Kenya 1763           0
## 2884                          Kiribati 1763           0
## 2885                            Kuwait 1763           0
## 2886                        Kyrgysztan 1763           0
## 2887                        Kyrgyzstan 1763           0
## 2888                              Laos 1763           0
## 2889                            Latvia 1763           0
## 2890                           Lebanon 1763           0
## 2891                           Lesotho 1763           0
## 2892                           Liberia 1763           0
## 2893                             Libya 1763           0
## 2894                     Liechtenstein 1763           0
## 2895                         Lithuania 1763           0
## 2896                        Luxembourg 1763           0
## 2897                             Macao 1763           0
## 2898                         Macedonia 1763           0
## 2899                        Madagascar 1763           0
## 2900                            Malawi 1763           0
## 2901                          Malaysia 1763           0
## 2902                          Maldives 1763           0
## 2903                              Mali 1763           0
## 2904                             Malta 1763           0
## 2905                  Marshall Islands 1763           0
## 2906                        Martinique 1763           0
## 2907                        Mauritania 1763           0
## 2908                         Mauritius 1763           0
## 2909                            Mexico 1763           0
## 2910              Micronesia (country) 1763           0
## 2911                       Middle East 1763           0
## 2912                           Moldova 1763           0
## 2913                          Mongolia 1763           0
## 2914                        Montenegro 1763           0
## 2915                        Montserrat 1763           0
## 2916                           Morocco 1763           0
## 2917                        Mozambique 1763           0
## 2918                           Myanmar 1763           0
## 2919                           Namibia 1763           0
## 2920                             Nauru 1763           0
## 2921                             Nepal 1763           0
## 2922                       Netherlands 1763           0
## 2923                     New Caledonia 1763           0
## 2924                       New Zealand 1763           0
## 2925                         Nicaragua 1763           0
## 2926                             Niger 1763           0
## 2927                           Nigeria 1763           0
## 2928                              Niue 1763           0
## 2929                       North Korea 1763           0
## 2930                            Norway 1763           0
## 2931                              Oman 1763           0
## 2932                          Pakistan 1763           0
## 2933                             Palau 1763           0
## 2934                         Palestine 1763           0
## 2935                            Panama 1763           0
## 2936                  Papua New Guinea 1763           0
## 2937                          Paraguay 1763           0
## 2938                              Peru 1763           0
## 2939                       Philippines 1763           0
## 2940                            Poland 1763           0
## 2941                          Portugal 1763           0
## 2942                             Qatar 1763           0
## 2943                           Reunion 1763           0
## 2944                           Romania 1763           0
## 2945                            Russia 1763           0
## 2946                            Rwanda 1763           0
## 2947                      Saint Helena 1763           0
## 2948             Saint Kitts and Nevis 1763           0
## 2949                       Saint Lucia 1763           0
## 2950         Saint Pierre and Miquelon 1763           0
## 2951  Saint Vincent and the Grenadines 1763           0
## 2952                             Samoa 1763           0
## 2953             Sao Tome and Principe 1763           0
## 2954                      Saudi Arabia 1763           0
## 2955                           Senegal 1763           0
## 2956                            Serbia 1763           0
## 2957                        Seychelles 1763           0
## 2958                      Sierra Leone 1763           0
## 2959                         Singapore 1763           0
## 2960         Sint Maarten (Dutch part) 1763           0
## 2961                          Slovakia 1763           0
## 2962                          Slovenia 1763           0
## 2963                   Solomon Islands 1763           0
## 2964                           Somalia 1763           0
## 2965                      South Africa 1763           0
## 2966                       South Korea 1763           0
## 2967                       South Sudan 1763           0
## 2968                             Spain 1763           0
## 2969                         Sri Lanka 1763           0
## 2970                             Sudan 1763           0
## 2971                          Suriname 1763           0
## 2972                         Swaziland 1763           0
## 2973                            Sweden 1763           0
## 2974                       Switzerland 1763           0
## 2975                             Syria 1763           0
## 2976                            Taiwan 1763           0
## 2977                        Tajikistan 1763           0
## 2978                          Tanzania 1763           0
## 2979                          Thailand 1763           0
## 2980                             Timor 1763           0
## 2981                              Togo 1763           0
## 2982                             Tonga 1763           0
## 2983               Trinidad and Tobago 1763           0
## 2984                           Tunisia 1763           0
## 2985                            Turkey 1763           0
## 2986                      Turkmenistan 1763           0
## 2987          Turks and Caicos Islands 1763           0
## 2988                            Tuvalu 1763           0
## 2989                            Uganda 1763           0
## 2990                           Ukraine 1763           0
## 2991              United Arab Emirates 1763           0
## 2992                    United Kingdom 1763   129775216
## 2993                     United States 1763           0
## 2994                           Uruguay 1763           0
## 2995                        Uzbekistan 1763           0
## 2996                           Vanuatu 1763           0
## 2997                         Venezuela 1763           0
## 2998                           Vietnam 1763           0
## 2999         Wallis and Futuna Islands 1763           0
## 3000                             World 1763   129775216
## 3001                             Yemen 1763           0
## 3002                            Zambia 1763           0
## 3003                          Zimbabwe 1763           0
## 3004                       Afghanistan 1764           0
## 3005                            Africa 1764           0
## 3006                           Albania 1764           0
## 3007                           Algeria 1764           0
## 3008                  Americas (other) 1764           0
## 3009                           Andorra 1764           0
## 3010                            Angola 1764           0
## 3011                          Anguilla 1764           0
## 3012               Antarctic Fisheries 1764           0
## 3013               Antigua and Barbuda 1764           0
## 3014                         Argentina 1764           0
## 3015                           Armenia 1764           0
## 3016                             Aruba 1764           0
## 3017          Asia and Pacific (other) 1764           0
## 3018                         Australia 1764           0
## 3019                           Austria 1764           0
## 3020                        Azerbaijan 1764           0
## 3021                           Bahamas 1764           0
## 3022                           Bahrain 1764           0
## 3023                        Bangladesh 1764           0
## 3024                          Barbados 1764           0
## 3025                           Belarus 1764           0
## 3026                           Belgium 1764           0
## 3027                            Belize 1764           0
## 3028                             Benin 1764           0
## 3029                           Bermuda 1764           0
## 3030                            Bhutan 1764           0
## 3031                           Bolivia 1764           0
## 3032   Bonaire Sint Eustatius and Saba 1764           0
## 3033            Bosnia and Herzegovina 1764           0
## 3034                          Botswana 1764           0
## 3035                            Brazil 1764           0
## 3036            British Virgin Islands 1764           0
## 3037                            Brunei 1764           0
## 3038                          Bulgaria 1764           0
## 3039                      Burkina Faso 1764           0
## 3040                           Burundi 1764           0
## 3041                          Cambodia 1764           0
## 3042                          Cameroon 1764           0
## 3043                            Canada 1764           0
## 3044                        Cape Verde 1764           0
## 3045                    Cayman Islands 1764           0
## 3046          Central African Republic 1764           0
## 3047                              Chad 1764           0
## 3048                             Chile 1764           0
## 3049                             China 1764           0
## 3050                  Christmas Island 1764           0
## 3051                          Colombia 1764           0
## 3052                           Comoros 1764           0
## 3053                             Congo 1764           0
## 3054                      Cook Islands 1764           0
## 3055                        Costa Rica 1764           0
## 3056                     Cote d'Ivoire 1764           0
## 3057                           Croatia 1764           0
## 3058                              Cuba 1764           0
## 3059                           Curacao 1764           0
## 3060                            Cyprus 1764           0
## 3061                    Czech Republic 1764           0
## 3062                    Czechoslovakia 1764           0
## 3063      Democratic Republic of Congo 1764           0
## 3064                           Denmark 1764           0
## 3065                          Djibouti 1764           0
## 3066                          Dominica 1764           0
## 3067                Dominican Republic 1764           0
## 3068                             EU-28 1764   140759888
## 3069                           Ecuador 1764           0
## 3070                             Egypt 1764           0
## 3071                       El Salvador 1764           0
## 3072                 Equatorial Guinea 1764           0
## 3073                           Eritrea 1764           0
## 3074                           Estonia 1764           0
## 3075                          Ethiopia 1764           0
## 3076                    Europe (other) 1764           0
## 3077                    Faeroe Islands 1764           0
## 3078                  Falkland Islands 1764           0
## 3079                              Fiji 1764           0
## 3080                           Finland 1764           0
## 3081                            France 1764           0
## 3082                     French Guiana 1764           0
## 3083                  French Polynesia 1764           0
## 3084                             Gabon 1764           0
## 3085                            Gambia 1764           0
## 3086                           Georgia 1764           0
## 3087                           Germany 1764           0
## 3088                             Ghana 1764           0
## 3089                         Gibraltar 1764           0
## 3090                            Greece 1764           0
## 3091                         Greenland 1764           0
## 3092                           Grenada 1764           0
## 3093                        Guadeloupe 1764           0
## 3094                         Guatemala 1764           0
## 3095                            Guinea 1764           0
## 3096                     Guinea-Bissau 1764           0
## 3097                            Guyana 1764           0
## 3098                             Haiti 1764           0
## 3099                          Honduras 1764           0
## 3100                         Hong Kong 1764           0
## 3101                           Hungary 1764           0
## 3102                           Iceland 1764           0
## 3103                             India 1764           0
## 3104                         Indonesia 1764           0
## 3105                              Iran 1764           0
## 3106                              Iraq 1764           0
## 3107                           Ireland 1764           0
## 3108                            Israel 1764           0
## 3109                             Italy 1764           0
## 3110                           Jamaica 1764           0
## 3111                             Japan 1764           0
## 3112                            Jordan 1764           0
## 3113                        Kazakhstan 1764           0
## 3114                             Kenya 1764           0
## 3115                          Kiribati 1764           0
## 3116                            Kuwait 1764           0
## 3117                        Kyrgysztan 1764           0
## 3118                        Kyrgyzstan 1764           0
## 3119                              Laos 1764           0
## 3120                            Latvia 1764           0
## 3121                           Lebanon 1764           0
## 3122                           Lesotho 1764           0
## 3123                           Liberia 1764           0
## 3124                             Libya 1764           0
## 3125                     Liechtenstein 1764           0
## 3126                         Lithuania 1764           0
## 3127                        Luxembourg 1764           0
## 3128                             Macao 1764           0
## 3129                         Macedonia 1764           0
## 3130                        Madagascar 1764           0
## 3131                            Malawi 1764           0
## 3132                          Malaysia 1764           0
## 3133                          Maldives 1764           0
## 3134                              Mali 1764           0
## 3135                             Malta 1764           0
## 3136                  Marshall Islands 1764           0
## 3137                        Martinique 1764           0
## 3138                        Mauritania 1764           0
## 3139                         Mauritius 1764           0
## 3140                            Mexico 1764           0
## 3141              Micronesia (country) 1764           0
## 3142                       Middle East 1764           0
## 3143                           Moldova 1764           0
## 3144                          Mongolia 1764           0
## 3145                        Montenegro 1764           0
## 3146                        Montserrat 1764           0
## 3147                           Morocco 1764           0
## 3148                        Mozambique 1764           0
## 3149                           Myanmar 1764           0
## 3150                           Namibia 1764           0
## 3151                             Nauru 1764           0
## 3152                             Nepal 1764           0
## 3153                       Netherlands 1764           0
## 3154                     New Caledonia 1764           0
## 3155                       New Zealand 1764           0
## 3156                         Nicaragua 1764           0
## 3157                             Niger 1764           0
## 3158                           Nigeria 1764           0
## 3159                              Niue 1764           0
## 3160                       North Korea 1764           0
## 3161                            Norway 1764           0
## 3162                              Oman 1764           0
## 3163                          Pakistan 1764           0
## 3164                             Palau 1764           0
## 3165                         Palestine 1764           0
## 3166                            Panama 1764           0
## 3167                  Papua New Guinea 1764           0
## 3168                          Paraguay 1764           0
## 3169                              Peru 1764           0
## 3170                       Philippines 1764           0
## 3171                            Poland 1764           0
## 3172                          Portugal 1764           0
## 3173                             Qatar 1764           0
## 3174                           Reunion 1764           0
## 3175                           Romania 1764           0
## 3176                            Russia 1764           0
## 3177                            Rwanda 1764           0
## 3178                      Saint Helena 1764           0
## 3179             Saint Kitts and Nevis 1764           0
## 3180                       Saint Lucia 1764           0
## 3181         Saint Pierre and Miquelon 1764           0
## 3182  Saint Vincent and the Grenadines 1764           0
## 3183                             Samoa 1764           0
## 3184             Sao Tome and Principe 1764           0
## 3185                      Saudi Arabia 1764           0
## 3186                           Senegal 1764           0
## 3187                            Serbia 1764           0
## 3188                        Seychelles 1764           0
## 3189                      Sierra Leone 1764           0
## 3190                         Singapore 1764           0
## 3191         Sint Maarten (Dutch part) 1764           0
## 3192                          Slovakia 1764           0
## 3193                          Slovenia 1764           0
## 3194                   Solomon Islands 1764           0
## 3195                           Somalia 1764           0
## 3196                      South Africa 1764           0
## 3197                       South Korea 1764           0
## 3198                       South Sudan 1764           0
## 3199                             Spain 1764           0
## 3200                         Sri Lanka 1764           0
## 3201                             Sudan 1764           0
## 3202                          Suriname 1764           0
## 3203                         Swaziland 1764           0
## 3204                            Sweden 1764           0
## 3205                       Switzerland 1764           0
## 3206                             Syria 1764           0
## 3207                            Taiwan 1764           0
## 3208                        Tajikistan 1764           0
## 3209                          Tanzania 1764           0
## 3210                          Thailand 1764           0
## 3211                             Timor 1764           0
## 3212                              Togo 1764           0
## 3213                             Tonga 1764           0
## 3214               Trinidad and Tobago 1764           0
## 3215                           Tunisia 1764           0
## 3216                            Turkey 1764           0
## 3217                      Turkmenistan 1764           0
## 3218          Turks and Caicos Islands 1764           0
## 3219                            Tuvalu 1764           0
## 3220                            Uganda 1764           0
## 3221                           Ukraine 1764           0
## 3222              United Arab Emirates 1764           0
## 3223                    United Kingdom 1764   140759888
## 3224                     United States 1764           0
## 3225                           Uruguay 1764           0
## 3226                        Uzbekistan 1764           0
## 3227                           Vanuatu 1764           0
## 3228                         Venezuela 1764           0
## 3229                           Vietnam 1764           0
## 3230         Wallis and Futuna Islands 1764           0
## 3231                             World 1764   140759888
## 3232                             Yemen 1764           0
## 3233                            Zambia 1764           0
## 3234                          Zimbabwe 1764           0
## 3235                       Afghanistan 1765           0
## 3236                            Africa 1765           0
## 3237                           Albania 1765           0
## 3238                           Algeria 1765           0
## 3239                  Americas (other) 1765           0
## 3240                           Andorra 1765           0
## 3241                            Angola 1765           0
## 3242                          Anguilla 1765           0
## 3243               Antarctic Fisheries 1765           0
## 3244               Antigua and Barbuda 1765           0
## 3245                         Argentina 1765           0
## 3246                           Armenia 1765           0
## 3247                             Aruba 1765           0
## 3248          Asia and Pacific (other) 1765           0
## 3249                         Australia 1765           0
## 3250                           Austria 1765           0
## 3251                        Azerbaijan 1765           0
## 3252                           Bahamas 1765           0
## 3253                           Bahrain 1765           0
## 3254                        Bangladesh 1765           0
## 3255                          Barbados 1765           0
## 3256                           Belarus 1765           0
## 3257                           Belgium 1765           0
## 3258                            Belize 1765           0
## 3259                             Benin 1765           0
## 3260                           Bermuda 1765           0
## 3261                            Bhutan 1765           0
## 3262                           Bolivia 1765           0
## 3263   Bonaire Sint Eustatius and Saba 1765           0
## 3264            Bosnia and Herzegovina 1765           0
## 3265                          Botswana 1765           0
## 3266                            Brazil 1765           0
## 3267            British Virgin Islands 1765           0
## 3268                            Brunei 1765           0
## 3269                          Bulgaria 1765           0
## 3270                      Burkina Faso 1765           0
## 3271                           Burundi 1765           0
## 3272                          Cambodia 1765           0
## 3273                          Cameroon 1765           0
## 3274                            Canada 1765           0
## 3275                        Cape Verde 1765           0
## 3276                    Cayman Islands 1765           0
## 3277          Central African Republic 1765           0
## 3278                              Chad 1765           0
## 3279                             Chile 1765           0
## 3280                             China 1765           0
## 3281                  Christmas Island 1765           0
## 3282                          Colombia 1765           0
## 3283                           Comoros 1765           0
## 3284                             Congo 1765           0
## 3285                      Cook Islands 1765           0
## 3286                        Costa Rica 1765           0
## 3287                     Cote d'Ivoire 1765           0
## 3288                           Croatia 1765           0
## 3289                              Cuba 1765           0
## 3290                           Curacao 1765           0
## 3291                            Cyprus 1765           0
## 3292                    Czech Republic 1765           0
## 3293                    Czechoslovakia 1765           0
## 3294      Democratic Republic of Congo 1765           0
## 3295                           Denmark 1765           0
## 3296                          Djibouti 1765           0
## 3297                          Dominica 1765           0
## 3298                Dominican Republic 1765           0
## 3299                             EU-28 1765   151748224
## 3300                           Ecuador 1765           0
## 3301                             Egypt 1765           0
## 3302                       El Salvador 1765           0
## 3303                 Equatorial Guinea 1765           0
## 3304                           Eritrea 1765           0
## 3305                           Estonia 1765           0
## 3306                          Ethiopia 1765           0
## 3307                    Europe (other) 1765           0
## 3308                    Faeroe Islands 1765           0
## 3309                  Falkland Islands 1765           0
## 3310                              Fiji 1765           0
## 3311                           Finland 1765           0
## 3312                            France 1765           0
## 3313                     French Guiana 1765           0
## 3314                  French Polynesia 1765           0
## 3315                             Gabon 1765           0
## 3316                            Gambia 1765           0
## 3317                           Georgia 1765           0
## 3318                           Germany 1765           0
## 3319                             Ghana 1765           0
## 3320                         Gibraltar 1765           0
## 3321                            Greece 1765           0
## 3322                         Greenland 1765           0
## 3323                           Grenada 1765           0
## 3324                        Guadeloupe 1765           0
## 3325                         Guatemala 1765           0
## 3326                            Guinea 1765           0
## 3327                     Guinea-Bissau 1765           0
## 3328                            Guyana 1765           0
## 3329                             Haiti 1765           0
## 3330                          Honduras 1765           0
## 3331                         Hong Kong 1765           0
## 3332                           Hungary 1765           0
## 3333                           Iceland 1765           0
## 3334                             India 1765           0
## 3335                         Indonesia 1765           0
## 3336                              Iran 1765           0
## 3337                              Iraq 1765           0
## 3338                           Ireland 1765           0
## 3339                            Israel 1765           0
## 3340                             Italy 1765           0
## 3341                           Jamaica 1765           0
## 3342                             Japan 1765           0
## 3343                            Jordan 1765           0
## 3344                        Kazakhstan 1765           0
## 3345                             Kenya 1765           0
## 3346                          Kiribati 1765           0
## 3347                            Kuwait 1765           0
## 3348                        Kyrgysztan 1765           0
## 3349                        Kyrgyzstan 1765           0
## 3350                              Laos 1765           0
## 3351                            Latvia 1765           0
## 3352                           Lebanon 1765           0
## 3353                           Lesotho 1765           0
## 3354                           Liberia 1765           0
## 3355                             Libya 1765           0
## 3356                     Liechtenstein 1765           0
## 3357                         Lithuania 1765           0
## 3358                        Luxembourg 1765           0
## 3359                             Macao 1765           0
## 3360                         Macedonia 1765           0
## 3361                        Madagascar 1765           0
## 3362                            Malawi 1765           0
## 3363                          Malaysia 1765           0
## 3364                          Maldives 1765           0
## 3365                              Mali 1765           0
## 3366                             Malta 1765           0
## 3367                  Marshall Islands 1765           0
## 3368                        Martinique 1765           0
## 3369                        Mauritania 1765           0
## 3370                         Mauritius 1765           0
## 3371                            Mexico 1765           0
## 3372              Micronesia (country) 1765           0
## 3373                       Middle East 1765           0
## 3374                           Moldova 1765           0
## 3375                          Mongolia 1765           0
## 3376                        Montenegro 1765           0
## 3377                        Montserrat 1765           0
## 3378                           Morocco 1765           0
## 3379                        Mozambique 1765           0
## 3380                           Myanmar 1765           0
## 3381                           Namibia 1765           0
## 3382                             Nauru 1765           0
## 3383                             Nepal 1765           0
## 3384                       Netherlands 1765           0
## 3385                     New Caledonia 1765           0
## 3386                       New Zealand 1765           0
## 3387                         Nicaragua 1765           0
## 3388                             Niger 1765           0
## 3389                           Nigeria 1765           0
## 3390                              Niue 1765           0
## 3391                       North Korea 1765           0
## 3392                            Norway 1765           0
## 3393                              Oman 1765           0
## 3394                          Pakistan 1765           0
## 3395                             Palau 1765           0
## 3396                         Palestine 1765           0
## 3397                            Panama 1765           0
## 3398                  Papua New Guinea 1765           0
## 3399                          Paraguay 1765           0
## 3400                              Peru 1765           0
## 3401                       Philippines 1765           0
## 3402                            Poland 1765           0
## 3403                          Portugal 1765           0
## 3404                             Qatar 1765           0
## 3405                           Reunion 1765           0
## 3406                           Romania 1765           0
## 3407                            Russia 1765           0
## 3408                            Rwanda 1765           0
## 3409                      Saint Helena 1765           0
## 3410             Saint Kitts and Nevis 1765           0
## 3411                       Saint Lucia 1765           0
## 3412         Saint Pierre and Miquelon 1765           0
## 3413  Saint Vincent and the Grenadines 1765           0
## 3414                             Samoa 1765           0
## 3415             Sao Tome and Principe 1765           0
## 3416                      Saudi Arabia 1765           0
## 3417                           Senegal 1765           0
## 3418                            Serbia 1765           0
## 3419                        Seychelles 1765           0
## 3420                      Sierra Leone 1765           0
## 3421                         Singapore 1765           0
## 3422         Sint Maarten (Dutch part) 1765           0
## 3423                          Slovakia 1765           0
## 3424                          Slovenia 1765           0
## 3425                   Solomon Islands 1765           0
## 3426                           Somalia 1765           0
## 3427                      South Africa 1765           0
## 3428                       South Korea 1765           0
## 3429                       South Sudan 1765           0
## 3430                             Spain 1765           0
## 3431                         Sri Lanka 1765           0
## 3432                             Sudan 1765           0
## 3433                          Suriname 1765           0
## 3434                         Swaziland 1765           0
## 3435                            Sweden 1765           0
## 3436                       Switzerland 1765           0
## 3437                             Syria 1765           0
## 3438                            Taiwan 1765           0
## 3439                        Tajikistan 1765           0
## 3440                          Tanzania 1765           0
## 3441                          Thailand 1765           0
## 3442                             Timor 1765           0
## 3443                              Togo 1765           0
## 3444                             Tonga 1765           0
## 3445               Trinidad and Tobago 1765           0
## 3446                           Tunisia 1765           0
## 3447                            Turkey 1765           0
## 3448                      Turkmenistan 1765           0
## 3449          Turks and Caicos Islands 1765           0
## 3450                            Tuvalu 1765           0
## 3451                            Uganda 1765           0
## 3452                           Ukraine 1765           0
## 3453              United Arab Emirates 1765           0
## 3454                    United Kingdom 1765   151748224
## 3455                     United States 1765           0
## 3456                           Uruguay 1765           0
## 3457                        Uzbekistan 1765           0
## 3458                           Vanuatu 1765           0
## 3459                         Venezuela 1765           0
## 3460                           Vietnam 1765           0
## 3461         Wallis and Futuna Islands 1765           0
## 3462                             World 1765   151748224
## 3463                             Yemen 1765           0
## 3464                            Zambia 1765           0
## 3465                          Zimbabwe 1765           0
## 3466                       Afghanistan 1766           0
## 3467                            Africa 1766           0
## 3468                           Albania 1766           0
## 3469                           Algeria 1766           0
## 3470                  Americas (other) 1766           0
## 3471                           Andorra 1766           0
## 3472                            Angola 1766           0
## 3473                          Anguilla 1766           0
## 3474               Antarctic Fisheries 1766           0
## 3475               Antigua and Barbuda 1766           0
## 3476                         Argentina 1766           0
## 3477                           Armenia 1766           0
## 3478                             Aruba 1766           0
## 3479          Asia and Pacific (other) 1766           0
## 3480                         Australia 1766           0
## 3481                           Austria 1766           0
## 3482                        Azerbaijan 1766           0
## 3483                           Bahamas 1766           0
## 3484                           Bahrain 1766           0
## 3485                        Bangladesh 1766           0
## 3486                          Barbados 1766           0
## 3487                           Belarus 1766           0
## 3488                           Belgium 1766           0
## 3489                            Belize 1766           0
## 3490                             Benin 1766           0
## 3491                           Bermuda 1766           0
## 3492                            Bhutan 1766           0
## 3493                           Bolivia 1766           0
## 3494   Bonaire Sint Eustatius and Saba 1766           0
## 3495            Bosnia and Herzegovina 1766           0
## 3496                          Botswana 1766           0
## 3497                            Brazil 1766           0
## 3498            British Virgin Islands 1766           0
## 3499                            Brunei 1766           0
## 3500                          Bulgaria 1766           0
## 3501                      Burkina Faso 1766           0
## 3502                           Burundi 1766           0
## 3503                          Cambodia 1766           0
## 3504                          Cameroon 1766           0
## 3505                            Canada 1766           0
## 3506                        Cape Verde 1766           0
## 3507                    Cayman Islands 1766           0
## 3508          Central African Republic 1766           0
## 3509                              Chad 1766           0
## 3510                             Chile 1766           0
## 3511                             China 1766           0
## 3512                  Christmas Island 1766           0
## 3513                          Colombia 1766           0
## 3514                           Comoros 1766           0
## 3515                             Congo 1766           0
## 3516                      Cook Islands 1766           0
## 3517                        Costa Rica 1766           0
## 3518                     Cote d'Ivoire 1766           0
## 3519                           Croatia 1766           0
## 3520                              Cuba 1766           0
## 3521                           Curacao 1766           0
## 3522                            Cyprus 1766           0
## 3523                    Czech Republic 1766           0
## 3524                    Czechoslovakia 1766           0
## 3525      Democratic Republic of Congo 1766           0
## 3526                           Denmark 1766           0
## 3527                          Djibouti 1766           0
## 3528                          Dominica 1766           0
## 3529                Dominican Republic 1766           0
## 3530                             EU-28 1766   164007968
## 3531                           Ecuador 1766           0
## 3532                             Egypt 1766           0
## 3533                       El Salvador 1766           0
## 3534                 Equatorial Guinea 1766           0
## 3535                           Eritrea 1766           0
## 3536                           Estonia 1766           0
## 3537                          Ethiopia 1766           0
## 3538                    Europe (other) 1766           0
## 3539                    Faeroe Islands 1766           0
## 3540                  Falkland Islands 1766           0
## 3541                              Fiji 1766           0
## 3542                           Finland 1766           0
## 3543                            France 1766           0
## 3544                     French Guiana 1766           0
## 3545                  French Polynesia 1766           0
## 3546                             Gabon 1766           0
## 3547                            Gambia 1766           0
## 3548                           Georgia 1766           0
## 3549                           Germany 1766           0
## 3550                             Ghana 1766           0
## 3551                         Gibraltar 1766           0
## 3552                            Greece 1766           0
## 3553                         Greenland 1766           0
## 3554                           Grenada 1766           0
## 3555                        Guadeloupe 1766           0
## 3556                         Guatemala 1766           0
## 3557                            Guinea 1766           0
## 3558                     Guinea-Bissau 1766           0
## 3559                            Guyana 1766           0
## 3560                             Haiti 1766           0
## 3561                          Honduras 1766           0
## 3562                         Hong Kong 1766           0
## 3563                           Hungary 1766           0
## 3564                           Iceland 1766           0
## 3565                             India 1766           0
## 3566                         Indonesia 1766           0
## 3567                              Iran 1766           0
## 3568                              Iraq 1766           0
## 3569                           Ireland 1766           0
## 3570                            Israel 1766           0
## 3571                             Italy 1766           0
## 3572                           Jamaica 1766           0
## 3573                             Japan 1766           0
## 3574                            Jordan 1766           0
## 3575                        Kazakhstan 1766           0
## 3576                             Kenya 1766           0
## 3577                          Kiribati 1766           0
## 3578                            Kuwait 1766           0
## 3579                        Kyrgysztan 1766           0
## 3580                        Kyrgyzstan 1766           0
## 3581                              Laos 1766           0
## 3582                            Latvia 1766           0
## 3583                           Lebanon 1766           0
## 3584                           Lesotho 1766           0
## 3585                           Liberia 1766           0
## 3586                             Libya 1766           0
## 3587                     Liechtenstein 1766           0
## 3588                         Lithuania 1766           0
## 3589                        Luxembourg 1766           0
## 3590                             Macao 1766           0
## 3591                         Macedonia 1766           0
## 3592                        Madagascar 1766           0
## 3593                            Malawi 1766           0
## 3594                          Malaysia 1766           0
## 3595                          Maldives 1766           0
## 3596                              Mali 1766           0
## 3597                             Malta 1766           0
## 3598                  Marshall Islands 1766           0
## 3599                        Martinique 1766           0
## 3600                        Mauritania 1766           0
## 3601                         Mauritius 1766           0
## 3602                            Mexico 1766           0
## 3603              Micronesia (country) 1766           0
## 3604                       Middle East 1766           0
## 3605                           Moldova 1766           0
## 3606                          Mongolia 1766           0
## 3607                        Montenegro 1766           0
## 3608                        Montserrat 1766           0
## 3609                           Morocco 1766           0
## 3610                        Mozambique 1766           0
## 3611                           Myanmar 1766           0
## 3612                           Namibia 1766           0
## 3613                             Nauru 1766           0
## 3614                             Nepal 1766           0
## 3615                       Netherlands 1766           0
## 3616                     New Caledonia 1766           0
## 3617                       New Zealand 1766           0
## 3618                         Nicaragua 1766           0
## 3619                             Niger 1766           0
## 3620                           Nigeria 1766           0
## 3621                              Niue 1766           0
## 3622                       North Korea 1766           0
## 3623                            Norway 1766           0
## 3624                              Oman 1766           0
## 3625                          Pakistan 1766           0
## 3626                             Palau 1766           0
## 3627                         Palestine 1766           0
## 3628                            Panama 1766           0
## 3629                  Papua New Guinea 1766           0
## 3630                          Paraguay 1766           0
## 3631                              Peru 1766           0
## 3632                       Philippines 1766           0
## 3633                            Poland 1766           0
## 3634                          Portugal 1766           0
## 3635                             Qatar 1766           0
## 3636                           Reunion 1766           0
## 3637                           Romania 1766           0
## 3638                            Russia 1766           0
## 3639                            Rwanda 1766           0
## 3640                      Saint Helena 1766           0
## 3641             Saint Kitts and Nevis 1766           0
## 3642                       Saint Lucia 1766           0
## 3643         Saint Pierre and Miquelon 1766           0
## 3644  Saint Vincent and the Grenadines 1766           0
## 3645                             Samoa 1766           0
## 3646             Sao Tome and Principe 1766           0
## 3647                      Saudi Arabia 1766           0
## 3648                           Senegal 1766           0
## 3649                            Serbia 1766           0
## 3650                        Seychelles 1766           0
## 3651                      Sierra Leone 1766           0
## 3652                         Singapore 1766           0
## 3653         Sint Maarten (Dutch part) 1766           0
## 3654                          Slovakia 1766           0
## 3655                          Slovenia 1766           0
## 3656                   Solomon Islands 1766           0
## 3657                           Somalia 1766           0
## 3658                      South Africa 1766           0
## 3659                       South Korea 1766           0
## 3660                       South Sudan 1766           0
## 3661                             Spain 1766           0
## 3662                         Sri Lanka 1766           0
## 3663                             Sudan 1766           0
## 3664                          Suriname 1766           0
## 3665                         Swaziland 1766           0
## 3666                            Sweden 1766           0
## 3667                       Switzerland 1766           0
## 3668                             Syria 1766           0
## 3669                            Taiwan 1766           0
## 3670                        Tajikistan 1766           0
## 3671                          Tanzania 1766           0
## 3672                          Thailand 1766           0
## 3673                             Timor 1766           0
## 3674                              Togo 1766           0
## 3675                             Tonga 1766           0
## 3676               Trinidad and Tobago 1766           0
## 3677                           Tunisia 1766           0
## 3678                            Turkey 1766           0
## 3679                      Turkmenistan 1766           0
## 3680          Turks and Caicos Islands 1766           0
## 3681                            Tuvalu 1766           0
## 3682                            Uganda 1766           0
## 3683                           Ukraine 1766           0
## 3684              United Arab Emirates 1766           0
## 3685                    United Kingdom 1766   164007968
## 3686                     United States 1766           0
## 3687                           Uruguay 1766           0
## 3688                        Uzbekistan 1766           0
## 3689                           Vanuatu 1766           0
## 3690                         Venezuela 1766           0
## 3691                           Vietnam 1766           0
## 3692         Wallis and Futuna Islands 1766           0
## 3693                             World 1766   164007968
## 3694                             Yemen 1766           0
## 3695                            Zambia 1766           0
## 3696                          Zimbabwe 1766           0
## 3697                       Afghanistan 1767           0
## 3698                            Africa 1767           0
## 3699                           Albania 1767           0
## 3700                           Algeria 1767           0
## 3701                  Americas (other) 1767           0
## 3702                           Andorra 1767           0
## 3703                            Angola 1767           0
## 3704                          Anguilla 1767           0
## 3705               Antarctic Fisheries 1767           0
## 3706               Antigua and Barbuda 1767           0
## 3707                         Argentina 1767           0
## 3708                           Armenia 1767           0
## 3709                             Aruba 1767           0
## 3710          Asia and Pacific (other) 1767           0
## 3711                         Australia 1767           0
## 3712                           Austria 1767           0
## 3713                        Azerbaijan 1767           0
## 3714                           Bahamas 1767           0
## 3715                           Bahrain 1767           0
## 3716                        Bangladesh 1767           0
## 3717                          Barbados 1767           0
## 3718                           Belarus 1767           0
## 3719                           Belgium 1767           0
## 3720                            Belize 1767           0
## 3721                             Benin 1767           0
## 3722                           Bermuda 1767           0
## 3723                            Bhutan 1767           0
## 3724                           Bolivia 1767           0
## 3725   Bonaire Sint Eustatius and Saba 1767           0
## 3726            Bosnia and Herzegovina 1767           0
## 3727                          Botswana 1767           0
## 3728                            Brazil 1767           0
## 3729            British Virgin Islands 1767           0
## 3730                            Brunei 1767           0
## 3731                          Bulgaria 1767           0
## 3732                      Burkina Faso 1767           0
## 3733                           Burundi 1767           0
## 3734                          Cambodia 1767           0
## 3735                          Cameroon 1767           0
## 3736                            Canada 1767           0
## 3737                        Cape Verde 1767           0
## 3738                    Cayman Islands 1767           0
## 3739          Central African Republic 1767           0
## 3740                              Chad 1767           0
## 3741                             Chile 1767           0
## 3742                             China 1767           0
## 3743                  Christmas Island 1767           0
## 3744                          Colombia 1767           0
## 3745                           Comoros 1767           0
## 3746                             Congo 1767           0
## 3747                      Cook Islands 1767           0
## 3748                        Costa Rica 1767           0
## 3749                     Cote d'Ivoire 1767           0
## 3750                           Croatia 1767           0
## 3751                              Cuba 1767           0
## 3752                           Curacao 1767           0
## 3753                            Cyprus 1767           0
## 3754                    Czech Republic 1767           0
## 3755                    Czechoslovakia 1767           0
## 3756      Democratic Republic of Congo 1767           0
## 3757                           Denmark 1767           0
## 3758                          Djibouti 1767           0
## 3759                          Dominica 1767           0
## 3760                Dominican Republic 1767           0
## 3761                             EU-28 1767   176271376
## 3762                           Ecuador 1767           0
## 3763                             Egypt 1767           0
## 3764                       El Salvador 1767           0
## 3765                 Equatorial Guinea 1767           0
## 3766                           Eritrea 1767           0
## 3767                           Estonia 1767           0
## 3768                          Ethiopia 1767           0
## 3769                    Europe (other) 1767           0
## 3770                    Faeroe Islands 1767           0
## 3771                  Falkland Islands 1767           0
## 3772                              Fiji 1767           0
## 3773                           Finland 1767           0
## 3774                            France 1767           0
## 3775                     French Guiana 1767           0
## 3776                  French Polynesia 1767           0
## 3777                             Gabon 1767           0
## 3778                            Gambia 1767           0
## 3779                           Georgia 1767           0
## 3780                           Germany 1767           0
## 3781                             Ghana 1767           0
## 3782                         Gibraltar 1767           0
## 3783                            Greece 1767           0
## 3784                         Greenland 1767           0
## 3785                           Grenada 1767           0
## 3786                        Guadeloupe 1767           0
## 3787                         Guatemala 1767           0
## 3788                            Guinea 1767           0
## 3789                     Guinea-Bissau 1767           0
## 3790                            Guyana 1767           0
## 3791                             Haiti 1767           0
## 3792                          Honduras 1767           0
## 3793                         Hong Kong 1767           0
## 3794                           Hungary 1767           0
## 3795                           Iceland 1767           0
## 3796                             India 1767           0
## 3797                         Indonesia 1767           0
## 3798                              Iran 1767           0
## 3799                              Iraq 1767           0
## 3800                           Ireland 1767           0
## 3801                            Israel 1767           0
## 3802                             Italy 1767           0
## 3803                           Jamaica 1767           0
## 3804                             Japan 1767           0
## 3805                            Jordan 1767           0
## 3806                        Kazakhstan 1767           0
## 3807                             Kenya 1767           0
## 3808                          Kiribati 1767           0
## 3809                            Kuwait 1767           0
## 3810                        Kyrgysztan 1767           0
## 3811                        Kyrgyzstan 1767           0
## 3812                              Laos 1767           0
## 3813                            Latvia 1767           0
## 3814                           Lebanon 1767           0
## 3815                           Lesotho 1767           0
## 3816                           Liberia 1767           0
## 3817                             Libya 1767           0
## 3818                     Liechtenstein 1767           0
## 3819                         Lithuania 1767           0
## 3820                        Luxembourg 1767           0
## 3821                             Macao 1767           0
## 3822                         Macedonia 1767           0
## 3823                        Madagascar 1767           0
## 3824                            Malawi 1767           0
## 3825                          Malaysia 1767           0
## 3826                          Maldives 1767           0
## 3827                              Mali 1767           0
## 3828                             Malta 1767           0
## 3829                  Marshall Islands 1767           0
## 3830                        Martinique 1767           0
## 3831                        Mauritania 1767           0
## 3832                         Mauritius 1767           0
## 3833                            Mexico 1767           0
## 3834              Micronesia (country) 1767           0
## 3835                       Middle East 1767           0
## 3836                           Moldova 1767           0
## 3837                          Mongolia 1767           0
## 3838                        Montenegro 1767           0
## 3839                        Montserrat 1767           0
## 3840                           Morocco 1767           0
## 3841                        Mozambique 1767           0
## 3842                           Myanmar 1767           0
## 3843                           Namibia 1767           0
## 3844                             Nauru 1767           0
## 3845                             Nepal 1767           0
## 3846                       Netherlands 1767           0
## 3847                     New Caledonia 1767           0
## 3848                       New Zealand 1767           0
## 3849                         Nicaragua 1767           0
## 3850                             Niger 1767           0
## 3851                           Nigeria 1767           0
## 3852                              Niue 1767           0
## 3853                       North Korea 1767           0
## 3854                            Norway 1767           0
## 3855                              Oman 1767           0
## 3856                          Pakistan 1767           0
## 3857                             Palau 1767           0
## 3858                         Palestine 1767           0
## 3859                            Panama 1767           0
## 3860                  Papua New Guinea 1767           0
## 3861                          Paraguay 1767           0
## 3862                              Peru 1767           0
## 3863                       Philippines 1767           0
## 3864                            Poland 1767           0
## 3865                          Portugal 1767           0
## 3866                             Qatar 1767           0
## 3867                           Reunion 1767           0
## 3868                           Romania 1767           0
## 3869                            Russia 1767           0
## 3870                            Rwanda 1767           0
## 3871                      Saint Helena 1767           0
## 3872             Saint Kitts and Nevis 1767           0
## 3873                       Saint Lucia 1767           0
## 3874         Saint Pierre and Miquelon 1767           0
## 3875  Saint Vincent and the Grenadines 1767           0
## 3876                             Samoa 1767           0
## 3877             Sao Tome and Principe 1767           0
## 3878                      Saudi Arabia 1767           0
## 3879                           Senegal 1767           0
## 3880                            Serbia 1767           0
## 3881                        Seychelles 1767           0
## 3882                      Sierra Leone 1767           0
## 3883                         Singapore 1767           0
## 3884         Sint Maarten (Dutch part) 1767           0
## 3885                          Slovakia 1767           0
## 3886                          Slovenia 1767           0
## 3887                   Solomon Islands 1767           0
## 3888                           Somalia 1767           0
## 3889                      South Africa 1767           0
## 3890                       South Korea 1767           0
## 3891                       South Sudan 1767           0
## 3892                             Spain 1767           0
## 3893                         Sri Lanka 1767           0
## 3894                             Sudan 1767           0
## 3895                          Suriname 1767           0
## 3896                         Swaziland 1767           0
## 3897                            Sweden 1767           0
## 3898                       Switzerland 1767           0
## 3899                             Syria 1767           0
## 3900                            Taiwan 1767           0
## 3901                        Tajikistan 1767           0
## 3902                          Tanzania 1767           0
## 3903                          Thailand 1767           0
## 3904                             Timor 1767           0
## 3905                              Togo 1767           0
## 3906                             Tonga 1767           0
## 3907               Trinidad and Tobago 1767           0
## 3908                           Tunisia 1767           0
## 3909                            Turkey 1767           0
## 3910                      Turkmenistan 1767           0
## 3911          Turks and Caicos Islands 1767           0
## 3912                            Tuvalu 1767           0
## 3913                            Uganda 1767           0
## 3914                           Ukraine 1767           0
## 3915              United Arab Emirates 1767           0
## 3916                    United Kingdom 1767   176271376
## 3917                     United States 1767           0
## 3918                           Uruguay 1767           0
## 3919                        Uzbekistan 1767           0
## 3920                           Vanuatu 1767           0
## 3921                         Venezuela 1767           0
## 3922                           Vietnam 1767           0
## 3923         Wallis and Futuna Islands 1767           0
## 3924                             World 1767   176271376
## 3925                             Yemen 1767           0
## 3926                            Zambia 1767           0
## 3927                          Zimbabwe 1767           0
## 3928                       Afghanistan 1768           0
## 3929                            Africa 1768           0
## 3930                           Albania 1768           0
## 3931                           Algeria 1768           0
## 3932                  Americas (other) 1768           0
## 3933                           Andorra 1768           0
## 3934                            Angola 1768           0
## 3935                          Anguilla 1768           0
## 3936               Antarctic Fisheries 1768           0
## 3937               Antigua and Barbuda 1768           0
## 3938                         Argentina 1768           0
## 3939                           Armenia 1768           0
## 3940                             Aruba 1768           0
## 3941          Asia and Pacific (other) 1768           0
## 3942                         Australia 1768           0
## 3943                           Austria 1768           0
## 3944                        Azerbaijan 1768           0
## 3945                           Bahamas 1768           0
## 3946                           Bahrain 1768           0
## 3947                        Bangladesh 1768           0
## 3948                          Barbados 1768           0
## 3949                           Belarus 1768           0
## 3950                           Belgium 1768           0
## 3951                            Belize 1768           0
## 3952                             Benin 1768           0
## 3953                           Bermuda 1768           0
## 3954                            Bhutan 1768           0
## 3955                           Bolivia 1768           0
## 3956   Bonaire Sint Eustatius and Saba 1768           0
## 3957            Bosnia and Herzegovina 1768           0
## 3958                          Botswana 1768           0
## 3959                            Brazil 1768           0
## 3960            British Virgin Islands 1768           0
## 3961                            Brunei 1768           0
## 3962                          Bulgaria 1768           0
## 3963                      Burkina Faso 1768           0
## 3964                           Burundi 1768           0
## 3965                          Cambodia 1768           0
## 3966                          Cameroon 1768           0
## 3967                            Canada 1768           0
## 3968                        Cape Verde 1768           0
## 3969                    Cayman Islands 1768           0
## 3970          Central African Republic 1768           0
## 3971                              Chad 1768           0
## 3972                             Chile 1768           0
## 3973                             China 1768           0
## 3974                  Christmas Island 1768           0
## 3975                          Colombia 1768           0
## 3976                           Comoros 1768           0
## 3977                             Congo 1768           0
## 3978                      Cook Islands 1768           0
## 3979                        Costa Rica 1768           0
## 3980                     Cote d'Ivoire 1768           0
## 3981                           Croatia 1768           0
## 3982                              Cuba 1768           0
## 3983                           Curacao 1768           0
## 3984                            Cyprus 1768           0
## 3985                    Czech Republic 1768           0
## 3986                    Czechoslovakia 1768           0
## 3987      Democratic Republic of Congo 1768           0
## 3988                           Denmark 1768           0
## 3989                          Djibouti 1768           0
## 3990                          Dominica 1768           0
## 3991                Dominican Republic 1768           0
## 3992                             EU-28 1768   188538448
## 3993                           Ecuador 1768           0
## 3994                             Egypt 1768           0
## 3995                       El Salvador 1768           0
## 3996                 Equatorial Guinea 1768           0
## 3997                           Eritrea 1768           0
## 3998                           Estonia 1768           0
## 3999                          Ethiopia 1768           0
## 4000                    Europe (other) 1768           0
## 4001                    Faeroe Islands 1768           0
## 4002                  Falkland Islands 1768           0
## 4003                              Fiji 1768           0
## 4004                           Finland 1768           0
## 4005                            France 1768           0
## 4006                     French Guiana 1768           0
## 4007                  French Polynesia 1768           0
## 4008                             Gabon 1768           0
## 4009                            Gambia 1768           0
## 4010                           Georgia 1768           0
## 4011                           Germany 1768           0
## 4012                             Ghana 1768           0
## 4013                         Gibraltar 1768           0
## 4014                            Greece 1768           0
## 4015                         Greenland 1768           0
## 4016                           Grenada 1768           0
## 4017                        Guadeloupe 1768           0
## 4018                         Guatemala 1768           0
## 4019                            Guinea 1768           0
## 4020                     Guinea-Bissau 1768           0
## 4021                            Guyana 1768           0
## 4022                             Haiti 1768           0
## 4023                          Honduras 1768           0
## 4024                         Hong Kong 1768           0
## 4025                           Hungary 1768           0
## 4026                           Iceland 1768           0
## 4027                             India 1768           0
## 4028                         Indonesia 1768           0
## 4029                              Iran 1768           0
## 4030                              Iraq 1768           0
## 4031                           Ireland 1768           0
## 4032                            Israel 1768           0
## 4033                             Italy 1768           0
## 4034                           Jamaica 1768           0
## 4035                             Japan 1768           0
## 4036                            Jordan 1768           0
## 4037                        Kazakhstan 1768           0
## 4038                             Kenya 1768           0
## 4039                          Kiribati 1768           0
## 4040                            Kuwait 1768           0
## 4041                        Kyrgysztan 1768           0
## 4042                        Kyrgyzstan 1768           0
## 4043                              Laos 1768           0
## 4044                            Latvia 1768           0
## 4045                           Lebanon 1768           0
## 4046                           Lesotho 1768           0
## 4047                           Liberia 1768           0
## 4048                             Libya 1768           0
## 4049                     Liechtenstein 1768           0
## 4050                         Lithuania 1768           0
## 4051                        Luxembourg 1768           0
## 4052                             Macao 1768           0
## 4053                         Macedonia 1768           0
## 4054                        Madagascar 1768           0
## 4055                            Malawi 1768           0
## 4056                          Malaysia 1768           0
## 4057                          Maldives 1768           0
## 4058                              Mali 1768           0
## 4059                             Malta 1768           0
## 4060                  Marshall Islands 1768           0
## 4061                        Martinique 1768           0
## 4062                        Mauritania 1768           0
## 4063                         Mauritius 1768           0
## 4064                            Mexico 1768           0
## 4065              Micronesia (country) 1768           0
## 4066                       Middle East 1768           0
## 4067                           Moldova 1768           0
## 4068                          Mongolia 1768           0
## 4069                        Montenegro 1768           0
## 4070                        Montserrat 1768           0
## 4071                           Morocco 1768           0
## 4072                        Mozambique 1768           0
## 4073                           Myanmar 1768           0
## 4074                           Namibia 1768           0
## 4075                             Nauru 1768           0
## 4076                             Nepal 1768           0
## 4077                       Netherlands 1768           0
## 4078                     New Caledonia 1768           0
## 4079                       New Zealand 1768           0
## 4080                         Nicaragua 1768           0
## 4081                             Niger 1768           0
## 4082                           Nigeria 1768           0
## 4083                              Niue 1768           0
## 4084                       North Korea 1768           0
## 4085                            Norway 1768           0
## 4086                              Oman 1768           0
## 4087                          Pakistan 1768           0
## 4088                             Palau 1768           0
## 4089                         Palestine 1768           0
## 4090                            Panama 1768           0
## 4091                  Papua New Guinea 1768           0
## 4092                          Paraguay 1768           0
## 4093                              Peru 1768           0
## 4094                       Philippines 1768           0
## 4095                            Poland 1768           0
## 4096                          Portugal 1768           0
## 4097                             Qatar 1768           0
## 4098                           Reunion 1768           0
## 4099                           Romania 1768           0
## 4100                            Russia 1768           0
## 4101                            Rwanda 1768           0
## 4102                      Saint Helena 1768           0
## 4103             Saint Kitts and Nevis 1768           0
## 4104                       Saint Lucia 1768           0
## 4105         Saint Pierre and Miquelon 1768           0
## 4106  Saint Vincent and the Grenadines 1768           0
## 4107                             Samoa 1768           0
## 4108             Sao Tome and Principe 1768           0
## 4109                      Saudi Arabia 1768           0
## 4110                           Senegal 1768           0
## 4111                            Serbia 1768           0
## 4112                        Seychelles 1768           0
## 4113                      Sierra Leone 1768           0
## 4114                         Singapore 1768           0
## 4115         Sint Maarten (Dutch part) 1768           0
## 4116                          Slovakia 1768           0
## 4117                          Slovenia 1768           0
## 4118                   Solomon Islands 1768           0
## 4119                           Somalia 1768           0
## 4120                      South Africa 1768           0
## 4121                       South Korea 1768           0
## 4122                       South Sudan 1768           0
## 4123                             Spain 1768           0
## 4124                         Sri Lanka 1768           0
## 4125                             Sudan 1768           0
## 4126                          Suriname 1768           0
## 4127                         Swaziland 1768           0
## 4128                            Sweden 1768           0
## 4129                       Switzerland 1768           0
## 4130                             Syria 1768           0
## 4131                            Taiwan 1768           0
## 4132                        Tajikistan 1768           0
## 4133                          Tanzania 1768           0
## 4134                          Thailand 1768           0
## 4135                             Timor 1768           0
## 4136                              Togo 1768           0
## 4137                             Tonga 1768           0
## 4138               Trinidad and Tobago 1768           0
## 4139                           Tunisia 1768           0
## 4140                            Turkey 1768           0
## 4141                      Turkmenistan 1768           0
## 4142          Turks and Caicos Islands 1768           0
## 4143                            Tuvalu 1768           0
## 4144                            Uganda 1768           0
## 4145                           Ukraine 1768           0
## 4146              United Arab Emirates 1768           0
## 4147                    United Kingdom 1768   188538448
## 4148                     United States 1768           0
## 4149                           Uruguay 1768           0
## 4150                        Uzbekistan 1768           0
## 4151                           Vanuatu 1768           0
## 4152                         Venezuela 1768           0
## 4153                           Vietnam 1768           0
## 4154         Wallis and Futuna Islands 1768           0
## 4155                             World 1768   188538448
## 4156                             Yemen 1768           0
## 4157                            Zambia 1768           0
## 4158                          Zimbabwe 1768           0
## 4159                       Afghanistan 1769           0
## 4160                            Africa 1769           0
## 4161                           Albania 1769           0
## 4162                           Algeria 1769           0
## 4163                  Americas (other) 1769           0
## 4164                           Andorra 1769           0
## 4165                            Angola 1769           0
## 4166                          Anguilla 1769           0
## 4167               Antarctic Fisheries 1769           0
## 4168               Antigua and Barbuda 1769           0
## 4169                         Argentina 1769           0
## 4170                           Armenia 1769           0
## 4171                             Aruba 1769           0
## 4172          Asia and Pacific (other) 1769           0
## 4173                         Australia 1769           0
## 4174                           Austria 1769           0
## 4175                        Azerbaijan 1769           0
## 4176                           Bahamas 1769           0
## 4177                           Bahrain 1769           0
## 4178                        Bangladesh 1769           0
## 4179                          Barbados 1769           0
## 4180                           Belarus 1769           0
## 4181                           Belgium 1769           0
## 4182                            Belize 1769           0
## 4183                             Benin 1769           0
## 4184                           Bermuda 1769           0
## 4185                            Bhutan 1769           0
## 4186                           Bolivia 1769           0
## 4187   Bonaire Sint Eustatius and Saba 1769           0
## 4188            Bosnia and Herzegovina 1769           0
## 4189                          Botswana 1769           0
## 4190                            Brazil 1769           0
## 4191            British Virgin Islands 1769           0
## 4192                            Brunei 1769           0
## 4193                          Bulgaria 1769           0
## 4194                      Burkina Faso 1769           0
## 4195                           Burundi 1769           0
## 4196                          Cambodia 1769           0
## 4197                          Cameroon 1769           0
## 4198                            Canada 1769           0
## 4199                        Cape Verde 1769           0
## 4200                    Cayman Islands 1769           0
## 4201          Central African Republic 1769           0
## 4202                              Chad 1769           0
## 4203                             Chile 1769           0
## 4204                             China 1769           0
## 4205                  Christmas Island 1769           0
## 4206                          Colombia 1769           0
## 4207                           Comoros 1769           0
## 4208                             Congo 1769           0
## 4209                      Cook Islands 1769           0
## 4210                        Costa Rica 1769           0
## 4211                     Cote d'Ivoire 1769           0
## 4212                           Croatia 1769           0
## 4213                              Cuba 1769           0
## 4214                           Curacao 1769           0
## 4215                            Cyprus 1769           0
## 4216                    Czech Republic 1769           0
## 4217                    Czechoslovakia 1769           0
## 4218      Democratic Republic of Congo 1769           0
## 4219                           Denmark 1769           0
## 4220                          Djibouti 1769           0
## 4221                          Dominica 1769           0
## 4222                Dominican Republic 1769           0
## 4223                             EU-28 1769   200809184
## 4224                           Ecuador 1769           0
## 4225                             Egypt 1769           0
## 4226                       El Salvador 1769           0
## 4227                 Equatorial Guinea 1769           0
## 4228                           Eritrea 1769           0
## 4229                           Estonia 1769           0
## 4230                          Ethiopia 1769           0
## 4231                    Europe (other) 1769           0
## 4232                    Faeroe Islands 1769           0
## 4233                  Falkland Islands 1769           0
## 4234                              Fiji 1769           0
## 4235                           Finland 1769           0
## 4236                            France 1769           0
## 4237                     French Guiana 1769           0
## 4238                  French Polynesia 1769           0
## 4239                             Gabon 1769           0
## 4240                            Gambia 1769           0
## 4241                           Georgia 1769           0
## 4242                           Germany 1769           0
## 4243                             Ghana 1769           0
## 4244                         Gibraltar 1769           0
## 4245                            Greece 1769           0
## 4246                         Greenland 1769           0
## 4247                           Grenada 1769           0
## 4248                        Guadeloupe 1769           0
## 4249                         Guatemala 1769           0
## 4250                            Guinea 1769           0
## 4251                     Guinea-Bissau 1769           0
## 4252                            Guyana 1769           0
## 4253                             Haiti 1769           0
## 4254                          Honduras 1769           0
## 4255                         Hong Kong 1769           0
## 4256                           Hungary 1769           0
## 4257                           Iceland 1769           0
## 4258                             India 1769           0
## 4259                         Indonesia 1769           0
## 4260                              Iran 1769           0
## 4261                              Iraq 1769           0
## 4262                           Ireland 1769           0
## 4263                            Israel 1769           0
## 4264                             Italy 1769           0
## 4265                           Jamaica 1769           0
## 4266                             Japan 1769           0
## 4267                            Jordan 1769           0
## 4268                        Kazakhstan 1769           0
## 4269                             Kenya 1769           0
## 4270                          Kiribati 1769           0
## 4271                            Kuwait 1769           0
## 4272                        Kyrgysztan 1769           0
## 4273                        Kyrgyzstan 1769           0
## 4274                              Laos 1769           0
## 4275                            Latvia 1769           0
## 4276                           Lebanon 1769           0
## 4277                           Lesotho 1769           0
## 4278                           Liberia 1769           0
## 4279                             Libya 1769           0
## 4280                     Liechtenstein 1769           0
## 4281                         Lithuania 1769           0
## 4282                        Luxembourg 1769           0
## 4283                             Macao 1769           0
## 4284                         Macedonia 1769           0
## 4285                        Madagascar 1769           0
## 4286                            Malawi 1769           0
## 4287                          Malaysia 1769           0
## 4288                          Maldives 1769           0
## 4289                              Mali 1769           0
## 4290                             Malta 1769           0
## 4291                  Marshall Islands 1769           0
## 4292                        Martinique 1769           0
## 4293                        Mauritania 1769           0
## 4294                         Mauritius 1769           0
## 4295                            Mexico 1769           0
## 4296              Micronesia (country) 1769           0
## 4297                       Middle East 1769           0
## 4298                           Moldova 1769           0
## 4299                          Mongolia 1769           0
## 4300                        Montenegro 1769           0
## 4301                        Montserrat 1769           0
## 4302                           Morocco 1769           0
## 4303                        Mozambique 1769           0
## 4304                           Myanmar 1769           0
## 4305                           Namibia 1769           0
## 4306                             Nauru 1769           0
## 4307                             Nepal 1769           0
## 4308                       Netherlands 1769           0
## 4309                     New Caledonia 1769           0
## 4310                       New Zealand 1769           0
## 4311                         Nicaragua 1769           0
## 4312                             Niger 1769           0
## 4313                           Nigeria 1769           0
## 4314                              Niue 1769           0
## 4315                       North Korea 1769           0
## 4316                            Norway 1769           0
## 4317                              Oman 1769           0
## 4318                          Pakistan 1769           0
## 4319                             Palau 1769           0
## 4320                         Palestine 1769           0
## 4321                            Panama 1769           0
## 4322                  Papua New Guinea 1769           0
## 4323                          Paraguay 1769           0
## 4324                              Peru 1769           0
## 4325                       Philippines 1769           0
## 4326                            Poland 1769           0
## 4327                          Portugal 1769           0
## 4328                             Qatar 1769           0
## 4329                           Reunion 1769           0
## 4330                           Romania 1769           0
## 4331                            Russia 1769           0
## 4332                            Rwanda 1769           0
## 4333                      Saint Helena 1769           0
## 4334             Saint Kitts and Nevis 1769           0
## 4335                       Saint Lucia 1769           0
## 4336         Saint Pierre and Miquelon 1769           0
## 4337  Saint Vincent and the Grenadines 1769           0
## 4338                             Samoa 1769           0
## 4339             Sao Tome and Principe 1769           0
## 4340                      Saudi Arabia 1769           0
## 4341                           Senegal 1769           0
## 4342                            Serbia 1769           0
## 4343                        Seychelles 1769           0
## 4344                      Sierra Leone 1769           0
## 4345                         Singapore 1769           0
## 4346         Sint Maarten (Dutch part) 1769           0
## 4347                          Slovakia 1769           0
## 4348                          Slovenia 1769           0
## 4349                   Solomon Islands 1769           0
## 4350                           Somalia 1769           0
## 4351                      South Africa 1769           0
## 4352                       South Korea 1769           0
## 4353                       South Sudan 1769           0
## 4354                             Spain 1769           0
## 4355                         Sri Lanka 1769           0
## 4356                             Sudan 1769           0
## 4357                          Suriname 1769           0
## 4358                         Swaziland 1769           0
## 4359                            Sweden 1769           0
## 4360                       Switzerland 1769           0
## 4361                             Syria 1769           0
## 4362                            Taiwan 1769           0
## 4363                        Tajikistan 1769           0
## 4364                          Tanzania 1769           0
## 4365                          Thailand 1769           0
## 4366                             Timor 1769           0
## 4367                              Togo 1769           0
## 4368                             Tonga 1769           0
## 4369               Trinidad and Tobago 1769           0
## 4370                           Tunisia 1769           0
## 4371                            Turkey 1769           0
## 4372                      Turkmenistan 1769           0
## 4373          Turks and Caicos Islands 1769           0
## 4374                            Tuvalu 1769           0
## 4375                            Uganda 1769           0
## 4376                           Ukraine 1769           0
## 4377              United Arab Emirates 1769           0
## 4378                    United Kingdom 1769   200809184
## 4379                     United States 1769           0
## 4380                           Uruguay 1769           0
## 4381                        Uzbekistan 1769           0
## 4382                           Vanuatu 1769           0
## 4383                         Venezuela 1769           0
## 4384                           Vietnam 1769           0
## 4385         Wallis and Futuna Islands 1769           0
## 4386                             World 1769   200809184
## 4387                             Yemen 1769           0
## 4388                            Zambia 1769           0
## 4389                          Zimbabwe 1769           0
## 4390                       Afghanistan 1770           0
## 4391                            Africa 1770           0
## 4392                           Albania 1770           0
## 4393                           Algeria 1770           0
## 4394                  Americas (other) 1770           0
## 4395                           Andorra 1770           0
## 4396                            Angola 1770           0
## 4397                          Anguilla 1770           0
## 4398               Antarctic Fisheries 1770           0
## 4399               Antigua and Barbuda 1770           0
## 4400                         Argentina 1770           0
## 4401                           Armenia 1770           0
## 4402                             Aruba 1770           0
## 4403          Asia and Pacific (other) 1770           0
## 4404                         Australia 1770           0
## 4405                           Austria 1770           0
## 4406                        Azerbaijan 1770           0
## 4407                           Bahamas 1770           0
## 4408                           Bahrain 1770           0
## 4409                        Bangladesh 1770           0
## 4410                          Barbados 1770           0
## 4411                           Belarus 1770           0
## 4412                           Belgium 1770           0
## 4413                            Belize 1770           0
## 4414                             Benin 1770           0
## 4415                           Bermuda 1770           0
## 4416                            Bhutan 1770           0
## 4417                           Bolivia 1770           0
## 4418   Bonaire Sint Eustatius and Saba 1770           0
## 4419            Bosnia and Herzegovina 1770           0
## 4420                          Botswana 1770           0
## 4421                            Brazil 1770           0
## 4422            British Virgin Islands 1770           0
## 4423                            Brunei 1770           0
## 4424                          Bulgaria 1770           0
## 4425                      Burkina Faso 1770           0
## 4426                           Burundi 1770           0
## 4427                          Cambodia 1770           0
## 4428                          Cameroon 1770           0
## 4429                            Canada 1770           0
## 4430                        Cape Verde 1770           0
## 4431                    Cayman Islands 1770           0
## 4432          Central African Republic 1770           0
## 4433                              Chad 1770           0
## 4434                             Chile 1770           0
## 4435                             China 1770           0
## 4436                  Christmas Island 1770           0
## 4437                          Colombia 1770           0
## 4438                           Comoros 1770           0
## 4439                             Congo 1770           0
## 4440                      Cook Islands 1770           0
## 4441                        Costa Rica 1770           0
## 4442                     Cote d'Ivoire 1770           0
## 4443                           Croatia 1770           0
## 4444                              Cuba 1770           0
## 4445                           Curacao 1770           0
## 4446                            Cyprus 1770           0
## 4447                    Czech Republic 1770           0
## 4448                    Czechoslovakia 1770           0
## 4449      Democratic Republic of Congo 1770           0
## 4450                           Denmark 1770           0
## 4451                          Djibouti 1770           0
## 4452                          Dominica 1770           0
## 4453                Dominican Republic 1770           0
## 4454                             EU-28 1770   213083584
## 4455                           Ecuador 1770           0
## 4456                             Egypt 1770           0
## 4457                       El Salvador 1770           0
## 4458                 Equatorial Guinea 1770           0
## 4459                           Eritrea 1770           0
## 4460                           Estonia 1770           0
## 4461                          Ethiopia 1770           0
## 4462                    Europe (other) 1770           0
## 4463                    Faeroe Islands 1770           0
## 4464                  Falkland Islands 1770           0
## 4465                              Fiji 1770           0
## 4466                           Finland 1770           0
## 4467                            France 1770           0
## 4468                     French Guiana 1770           0
## 4469                  French Polynesia 1770           0
## 4470                             Gabon 1770           0
## 4471                            Gambia 1770           0
## 4472                           Georgia 1770           0
## 4473                           Germany 1770           0
## 4474                             Ghana 1770           0
## 4475                         Gibraltar 1770           0
## 4476                            Greece 1770           0
## 4477                         Greenland 1770           0
## 4478                           Grenada 1770           0
## 4479                        Guadeloupe 1770           0
## 4480                         Guatemala 1770           0
## 4481                            Guinea 1770           0
## 4482                     Guinea-Bissau 1770           0
## 4483                            Guyana 1770           0
## 4484                             Haiti 1770           0
## 4485                          Honduras 1770           0
## 4486                         Hong Kong 1770           0
## 4487                           Hungary 1770           0
## 4488                           Iceland 1770           0
## 4489                             India 1770           0
## 4490                         Indonesia 1770           0
## 4491                              Iran 1770           0
## 4492                              Iraq 1770           0
## 4493                           Ireland 1770           0
## 4494                            Israel 1770           0
## 4495                             Italy 1770           0
## 4496                           Jamaica 1770           0
## 4497                             Japan 1770           0
## 4498                            Jordan 1770           0
## 4499                        Kazakhstan 1770           0
## 4500                             Kenya 1770           0
## 4501                          Kiribati 1770           0
## 4502                            Kuwait 1770           0
## 4503                        Kyrgysztan 1770           0
## 4504                        Kyrgyzstan 1770           0
## 4505                              Laos 1770           0
## 4506                            Latvia 1770           0
## 4507                           Lebanon 1770           0
## 4508                           Lesotho 1770           0
## 4509                           Liberia 1770           0
## 4510                             Libya 1770           0
## 4511                     Liechtenstein 1770           0
## 4512                         Lithuania 1770           0
## 4513                        Luxembourg 1770           0
## 4514                             Macao 1770           0
## 4515                         Macedonia 1770           0
## 4516                        Madagascar 1770           0
## 4517                            Malawi 1770           0
## 4518                          Malaysia 1770           0
## 4519                          Maldives 1770           0
## 4520                              Mali 1770           0
## 4521                             Malta 1770           0
## 4522                  Marshall Islands 1770           0
## 4523                        Martinique 1770           0
## 4524                        Mauritania 1770           0
## 4525                         Mauritius 1770           0
## 4526                            Mexico 1770           0
## 4527              Micronesia (country) 1770           0
## 4528                       Middle East 1770           0
## 4529                           Moldova 1770           0
## 4530                          Mongolia 1770           0
## 4531                        Montenegro 1770           0
## 4532                        Montserrat 1770           0
## 4533                           Morocco 1770           0
## 4534                        Mozambique 1770           0
## 4535                           Myanmar 1770           0
## 4536                           Namibia 1770           0
## 4537                             Nauru 1770           0
## 4538                             Nepal 1770           0
## 4539                       Netherlands 1770           0
## 4540                     New Caledonia 1770           0
## 4541                       New Zealand 1770           0
## 4542                         Nicaragua 1770           0
## 4543                             Niger 1770           0
## 4544                           Nigeria 1770           0
## 4545                              Niue 1770           0
## 4546                       North Korea 1770           0
## 4547                            Norway 1770           0
## 4548                              Oman 1770           0
## 4549                          Pakistan 1770           0
## 4550                             Palau 1770           0
## 4551                         Palestine 1770           0
## 4552                            Panama 1770           0
## 4553                  Papua New Guinea 1770           0
## 4554                          Paraguay 1770           0
## 4555                              Peru 1770           0
## 4556                       Philippines 1770           0
## 4557                            Poland 1770           0
## 4558                          Portugal 1770           0
## 4559                             Qatar 1770           0
## 4560                           Reunion 1770           0
## 4561                           Romania 1770           0
## 4562                            Russia 1770           0
## 4563                            Rwanda 1770           0
## 4564                      Saint Helena 1770           0
## 4565             Saint Kitts and Nevis 1770           0
## 4566                       Saint Lucia 1770           0
## 4567         Saint Pierre and Miquelon 1770           0
## 4568  Saint Vincent and the Grenadines 1770           0
## 4569                             Samoa 1770           0
## 4570             Sao Tome and Principe 1770           0
## 4571                      Saudi Arabia 1770           0
## 4572                           Senegal 1770           0
## 4573                            Serbia 1770           0
## 4574                        Seychelles 1770           0
## 4575                      Sierra Leone 1770           0
## 4576                         Singapore 1770           0
## 4577         Sint Maarten (Dutch part) 1770           0
## 4578                          Slovakia 1770           0
## 4579                          Slovenia 1770           0
## 4580                   Solomon Islands 1770           0
## 4581                           Somalia 1770           0
## 4582                      South Africa 1770           0
## 4583                       South Korea 1770           0
## 4584                       South Sudan 1770           0
## 4585                             Spain 1770           0
## 4586                         Sri Lanka 1770           0
## 4587                             Sudan 1770           0
## 4588                          Suriname 1770           0
## 4589                         Swaziland 1770           0
## 4590                            Sweden 1770           0
## 4591                       Switzerland 1770           0
## 4592                             Syria 1770           0
## 4593                            Taiwan 1770           0
## 4594                        Tajikistan 1770           0
## 4595                          Tanzania 1770           0
## 4596                          Thailand 1770           0
## 4597                             Timor 1770           0
## 4598                              Togo 1770           0
## 4599                             Tonga 1770           0
## 4600               Trinidad and Tobago 1770           0
## 4601                           Tunisia 1770           0
## 4602                            Turkey 1770           0
## 4603                      Turkmenistan 1770           0
## 4604          Turks and Caicos Islands 1770           0
## 4605                            Tuvalu 1770           0
## 4606                            Uganda 1770           0
## 4607                           Ukraine 1770           0
## 4608              United Arab Emirates 1770           0
## 4609                    United Kingdom 1770   213083584
## 4610                     United States 1770           0
## 4611                           Uruguay 1770           0
## 4612                        Uzbekistan 1770           0
## 4613                           Vanuatu 1770           0
## 4614                         Venezuela 1770           0
## 4615                           Vietnam 1770           0
## 4616         Wallis and Futuna Islands 1770           0
## 4617                             World 1770   213083584
## 4618                             Yemen 1770           0
## 4619                            Zambia 1770           0
## 4620                          Zimbabwe 1770           0
## 4621                       Afghanistan 1771           0
## 4622                            Africa 1771           0
## 4623                           Albania 1771           0
## 4624                           Algeria 1771           0
## 4625                  Americas (other) 1771           0
## 4626                           Andorra 1771           0
## 4627                            Angola 1771           0
## 4628                          Anguilla 1771           0
## 4629               Antarctic Fisheries 1771           0
## 4630               Antigua and Barbuda 1771           0
## 4631                         Argentina 1771           0
## 4632                           Armenia 1771           0
## 4633                             Aruba 1771           0
## 4634          Asia and Pacific (other) 1771           0
## 4635                         Australia 1771           0
## 4636                           Austria 1771           0
## 4637                        Azerbaijan 1771           0
## 4638                           Bahamas 1771           0
## 4639                           Bahrain 1771           0
## 4640                        Bangladesh 1771           0
## 4641                          Barbados 1771           0
## 4642                           Belarus 1771           0
## 4643                           Belgium 1771           0
## 4644                            Belize 1771           0
## 4645                             Benin 1771           0
## 4646                           Bermuda 1771           0
## 4647                            Bhutan 1771           0
## 4648                           Bolivia 1771           0
## 4649   Bonaire Sint Eustatius and Saba 1771           0
## 4650            Bosnia and Herzegovina 1771           0
## 4651                          Botswana 1771           0
## 4652                            Brazil 1771           0
## 4653            British Virgin Islands 1771           0
## 4654                            Brunei 1771           0
## 4655                          Bulgaria 1771           0
## 4656                      Burkina Faso 1771           0
## 4657                           Burundi 1771           0
## 4658                          Cambodia 1771           0
## 4659                          Cameroon 1771           0
## 4660                            Canada 1771           0
## 4661                        Cape Verde 1771           0
## 4662                    Cayman Islands 1771           0
## 4663          Central African Republic 1771           0
## 4664                              Chad 1771           0
## 4665                             Chile 1771           0
## 4666                             China 1771           0
## 4667                  Christmas Island 1771           0
## 4668                          Colombia 1771           0
## 4669                           Comoros 1771           0
## 4670                             Congo 1771           0
## 4671                      Cook Islands 1771           0
## 4672                        Costa Rica 1771           0
## 4673                     Cote d'Ivoire 1771           0
## 4674                           Croatia 1771           0
## 4675                              Cuba 1771           0
## 4676                           Curacao 1771           0
## 4677                            Cyprus 1771           0
## 4678                    Czech Republic 1771           0
## 4679                    Czechoslovakia 1771           0
## 4680      Democratic Republic of Congo 1771           0
## 4681                           Denmark 1771           0
## 4682                          Djibouti 1771           0
## 4683                          Dominica 1771           0
## 4684                Dominican Republic 1771           0
## 4685                             EU-28 1771   226695344
## 4686                           Ecuador 1771           0
## 4687                             Egypt 1771           0
## 4688                       El Salvador 1771           0
## 4689                 Equatorial Guinea 1771           0
## 4690                           Eritrea 1771           0
## 4691                           Estonia 1771           0
## 4692                          Ethiopia 1771           0
## 4693                    Europe (other) 1771           0
## 4694                    Faeroe Islands 1771           0
## 4695                  Falkland Islands 1771           0
## 4696                              Fiji 1771           0
## 4697                           Finland 1771           0
## 4698                            France 1771           0
## 4699                     French Guiana 1771           0
## 4700                  French Polynesia 1771           0
## 4701                             Gabon 1771           0
## 4702                            Gambia 1771           0
## 4703                           Georgia 1771           0
## 4704                           Germany 1771           0
## 4705                             Ghana 1771           0
## 4706                         Gibraltar 1771           0
## 4707                            Greece 1771           0
## 4708                         Greenland 1771           0
## 4709                           Grenada 1771           0
## 4710                        Guadeloupe 1771           0
## 4711                         Guatemala 1771           0
## 4712                            Guinea 1771           0
## 4713                     Guinea-Bissau 1771           0
## 4714                            Guyana 1771           0
## 4715                             Haiti 1771           0
## 4716                          Honduras 1771           0
## 4717                         Hong Kong 1771           0
## 4718                           Hungary 1771           0
## 4719                           Iceland 1771           0
## 4720                             India 1771           0
## 4721                         Indonesia 1771           0
## 4722                              Iran 1771           0
## 4723                              Iraq 1771           0
## 4724                           Ireland 1771           0
## 4725                            Israel 1771           0
## 4726                             Italy 1771           0
## 4727                           Jamaica 1771           0
## 4728                             Japan 1771           0
## 4729                            Jordan 1771           0
## 4730                        Kazakhstan 1771           0
## 4731                             Kenya 1771           0
## 4732                          Kiribati 1771           0
## 4733                            Kuwait 1771           0
## 4734                        Kyrgysztan 1771           0
## 4735                        Kyrgyzstan 1771           0
## 4736                              Laos 1771           0
## 4737                            Latvia 1771           0
## 4738                           Lebanon 1771           0
## 4739                           Lesotho 1771           0
## 4740                           Liberia 1771           0
## 4741                             Libya 1771           0
## 4742                     Liechtenstein 1771           0
## 4743                         Lithuania 1771           0
## 4744                        Luxembourg 1771           0
## 4745                             Macao 1771           0
## 4746                         Macedonia 1771           0
## 4747                        Madagascar 1771           0
## 4748                            Malawi 1771           0
## 4749                          Malaysia 1771           0
## 4750                          Maldives 1771           0
## 4751                              Mali 1771           0
## 4752                             Malta 1771           0
## 4753                  Marshall Islands 1771           0
## 4754                        Martinique 1771           0
## 4755                        Mauritania 1771           0
## 4756                         Mauritius 1771           0
## 4757                            Mexico 1771           0
## 4758              Micronesia (country) 1771           0
## 4759                       Middle East 1771           0
## 4760                           Moldova 1771           0
## 4761                          Mongolia 1771           0
## 4762                        Montenegro 1771           0
## 4763                        Montserrat 1771           0
## 4764                           Morocco 1771           0
## 4765                        Mozambique 1771           0
## 4766                           Myanmar 1771           0
## 4767                           Namibia 1771           0
## 4768                             Nauru 1771           0
## 4769                             Nepal 1771           0
## 4770                       Netherlands 1771           0
## 4771                     New Caledonia 1771           0
## 4772                       New Zealand 1771           0
## 4773                         Nicaragua 1771           0
## 4774                             Niger 1771           0
## 4775                           Nigeria 1771           0
## 4776                              Niue 1771           0
## 4777                       North Korea 1771           0
## 4778                            Norway 1771           0
## 4779                              Oman 1771           0
## 4780                          Pakistan 1771           0
## 4781                             Palau 1771           0
## 4782                         Palestine 1771           0
## 4783                            Panama 1771           0
## 4784                  Papua New Guinea 1771           0
## 4785                          Paraguay 1771           0
## 4786                              Peru 1771           0
## 4787                       Philippines 1771           0
## 4788                            Poland 1771           0
## 4789                          Portugal 1771           0
## 4790                             Qatar 1771           0
## 4791                           Reunion 1771           0
## 4792                           Romania 1771           0
## 4793                            Russia 1771           0
## 4794                            Rwanda 1771           0
## 4795                      Saint Helena 1771           0
## 4796             Saint Kitts and Nevis 1771           0
## 4797                       Saint Lucia 1771           0
## 4798         Saint Pierre and Miquelon 1771           0
## 4799  Saint Vincent and the Grenadines 1771           0
## 4800                             Samoa 1771           0
## 4801             Sao Tome and Principe 1771           0
## 4802                      Saudi Arabia 1771           0
## 4803                           Senegal 1771           0
## 4804                            Serbia 1771           0
## 4805                        Seychelles 1771           0
## 4806                      Sierra Leone 1771           0
## 4807                         Singapore 1771           0
## 4808         Sint Maarten (Dutch part) 1771           0
## 4809                          Slovakia 1771           0
## 4810                          Slovenia 1771           0
## 4811                   Solomon Islands 1771           0
## 4812                           Somalia 1771           0
## 4813                      South Africa 1771           0
## 4814                       South Korea 1771           0
## 4815                       South Sudan 1771           0
## 4816                             Spain 1771           0
## 4817                         Sri Lanka 1771           0
## 4818                             Sudan 1771           0
## 4819                          Suriname 1771           0
## 4820                         Swaziland 1771           0
## 4821                            Sweden 1771           0
## 4822                       Switzerland 1771           0
## 4823                             Syria 1771           0
## 4824                            Taiwan 1771           0
## 4825                        Tajikistan 1771           0
## 4826                          Tanzania 1771           0
## 4827                          Thailand 1771           0
## 4828                             Timor 1771           0
## 4829                              Togo 1771           0
## 4830                             Tonga 1771           0
## 4831               Trinidad and Tobago 1771           0
## 4832                           Tunisia 1771           0
## 4833                            Turkey 1771           0
## 4834                      Turkmenistan 1771           0
## 4835          Turks and Caicos Islands 1771           0
## 4836                            Tuvalu 1771           0
## 4837                            Uganda 1771           0
## 4838                           Ukraine 1771           0
## 4839              United Arab Emirates 1771           0
## 4840                    United Kingdom 1771   226695344
## 4841                     United States 1771           0
## 4842                           Uruguay 1771           0
## 4843                        Uzbekistan 1771           0
## 4844                           Vanuatu 1771           0
## 4845                         Venezuela 1771           0
## 4846                           Vietnam 1771           0
## 4847         Wallis and Futuna Islands 1771           0
## 4848                             World 1771   226695344
## 4849                             Yemen 1771           0
## 4850                            Zambia 1771           0
## 4851                          Zimbabwe 1771           0
## 4852                       Afghanistan 1772           0
## 4853                            Africa 1772           0
## 4854                           Albania 1772           0
## 4855                           Algeria 1772           0
## 4856                  Americas (other) 1772           0
## 4857                           Andorra 1772           0
## 4858                            Angola 1772           0
## 4859                          Anguilla 1772           0
## 4860               Antarctic Fisheries 1772           0
## 4861               Antigua and Barbuda 1772           0
## 4862                         Argentina 1772           0
## 4863                           Armenia 1772           0
## 4864                             Aruba 1772           0
## 4865          Asia and Pacific (other) 1772           0
## 4866                         Australia 1772           0
## 4867                           Austria 1772           0
## 4868                        Azerbaijan 1772           0
## 4869                           Bahamas 1772           0
## 4870                           Bahrain 1772           0
## 4871                        Bangladesh 1772           0
## 4872                          Barbados 1772           0
## 4873                           Belarus 1772           0
## 4874                           Belgium 1772           0
## 4875                            Belize 1772           0
## 4876                             Benin 1772           0
## 4877                           Bermuda 1772           0
## 4878                            Bhutan 1772           0
## 4879                           Bolivia 1772           0
## 4880   Bonaire Sint Eustatius and Saba 1772           0
## 4881            Bosnia and Herzegovina 1772           0
## 4882                          Botswana 1772           0
## 4883                            Brazil 1772           0
## 4884            British Virgin Islands 1772           0
## 4885                            Brunei 1772           0
## 4886                          Bulgaria 1772           0
## 4887                      Burkina Faso 1772           0
## 4888                           Burundi 1772           0
## 4889                          Cambodia 1772           0
## 4890                          Cameroon 1772           0
## 4891                            Canada 1772           0
## 4892                        Cape Verde 1772           0
## 4893                    Cayman Islands 1772           0
## 4894          Central African Republic 1772           0
## 4895                              Chad 1772           0
## 4896                             Chile 1772           0
## 4897                             China 1772           0
## 4898                  Christmas Island 1772           0
## 4899                          Colombia 1772           0
## 4900                           Comoros 1772           0
## 4901                             Congo 1772           0
## 4902                      Cook Islands 1772           0
## 4903                        Costa Rica 1772           0
## 4904                     Cote d'Ivoire 1772           0
## 4905                           Croatia 1772           0
## 4906                              Cuba 1772           0
## 4907                           Curacao 1772           0
## 4908                            Cyprus 1772           0
## 4909                    Czech Republic 1772           0
## 4910                    Czechoslovakia 1772           0
## 4911      Democratic Republic of Congo 1772           0
## 4912                           Denmark 1772           0
## 4913                          Djibouti 1772           0
## 4914                          Dominica 1772           0
## 4915                Dominican Republic 1772           0
## 4916                             EU-28 1772   240310768
## 4917                           Ecuador 1772           0
## 4918                             Egypt 1772           0
## 4919                       El Salvador 1772           0
## 4920                 Equatorial Guinea 1772           0
## 4921                           Eritrea 1772           0
## 4922                           Estonia 1772           0
## 4923                          Ethiopia 1772           0
## 4924                    Europe (other) 1772           0
## 4925                    Faeroe Islands 1772           0
## 4926                  Falkland Islands 1772           0
## 4927                              Fiji 1772           0
## 4928                           Finland 1772           0
## 4929                            France 1772           0
## 4930                     French Guiana 1772           0
## 4931                  French Polynesia 1772           0
## 4932                             Gabon 1772           0
## 4933                            Gambia 1772           0
## 4934                           Georgia 1772           0
## 4935                           Germany 1772           0
## 4936                             Ghana 1772           0
## 4937                         Gibraltar 1772           0
## 4938                            Greece 1772           0
## 4939                         Greenland 1772           0
## 4940                           Grenada 1772           0
## 4941                        Guadeloupe 1772           0
## 4942                         Guatemala 1772           0
## 4943                            Guinea 1772           0
## 4944                     Guinea-Bissau 1772           0
## 4945                            Guyana 1772           0
## 4946                             Haiti 1772           0
## 4947                          Honduras 1772           0
## 4948                         Hong Kong 1772           0
## 4949                           Hungary 1772           0
## 4950                           Iceland 1772           0
## 4951                             India 1772           0
## 4952                         Indonesia 1772           0
## 4953                              Iran 1772           0
## 4954                              Iraq 1772           0
## 4955                           Ireland 1772           0
## 4956                            Israel 1772           0
## 4957                             Italy 1772           0
## 4958                           Jamaica 1772           0
## 4959                             Japan 1772           0
## 4960                            Jordan 1772           0
## 4961                        Kazakhstan 1772           0
## 4962                             Kenya 1772           0
## 4963                          Kiribati 1772           0
## 4964                            Kuwait 1772           0
## 4965                        Kyrgysztan 1772           0
## 4966                        Kyrgyzstan 1772           0
## 4967                              Laos 1772           0
## 4968                            Latvia 1772           0
## 4969                           Lebanon 1772           0
## 4970                           Lesotho 1772           0
## 4971                           Liberia 1772           0
## 4972                             Libya 1772           0
## 4973                     Liechtenstein 1772           0
## 4974                         Lithuania 1772           0
## 4975                        Luxembourg 1772           0
## 4976                             Macao 1772           0
## 4977                         Macedonia 1772           0
## 4978                        Madagascar 1772           0
## 4979                            Malawi 1772           0
## 4980                          Malaysia 1772           0
## 4981                          Maldives 1772           0
## 4982                              Mali 1772           0
## 4983                             Malta 1772           0
## 4984                  Marshall Islands 1772           0
## 4985                        Martinique 1772           0
## 4986                        Mauritania 1772           0
## 4987                         Mauritius 1772           0
## 4988                            Mexico 1772           0
## 4989              Micronesia (country) 1772           0
## 4990                       Middle East 1772           0
## 4991                           Moldova 1772           0
## 4992                          Mongolia 1772           0
## 4993                        Montenegro 1772           0
## 4994                        Montserrat 1772           0
## 4995                           Morocco 1772           0
## 4996                        Mozambique 1772           0
## 4997                           Myanmar 1772           0
## 4998                           Namibia 1772           0
## 4999                             Nauru 1772           0
## 5000                             Nepal 1772           0
## 5001                       Netherlands 1772           0
## 5002                     New Caledonia 1772           0
## 5003                       New Zealand 1772           0
## 5004                         Nicaragua 1772           0
## 5005                             Niger 1772           0
## 5006                           Nigeria 1772           0
## 5007                              Niue 1772           0
## 5008                       North Korea 1772           0
## 5009                            Norway 1772           0
## 5010                              Oman 1772           0
## 5011                          Pakistan 1772           0
## 5012                             Palau 1772           0
## 5013                         Palestine 1772           0
## 5014                            Panama 1772           0
## 5015                  Papua New Guinea 1772           0
## 5016                          Paraguay 1772           0
## 5017                              Peru 1772           0
## 5018                       Philippines 1772           0
## 5019                            Poland 1772           0
## 5020                          Portugal 1772           0
## 5021                             Qatar 1772           0
## 5022                           Reunion 1772           0
## 5023                           Romania 1772           0
## 5024                            Russia 1772           0
## 5025                            Rwanda 1772           0
## 5026                      Saint Helena 1772           0
## 5027             Saint Kitts and Nevis 1772           0
## 5028                       Saint Lucia 1772           0
## 5029         Saint Pierre and Miquelon 1772           0
## 5030  Saint Vincent and the Grenadines 1772           0
## 5031                             Samoa 1772           0
## 5032             Sao Tome and Principe 1772           0
## 5033                      Saudi Arabia 1772           0
## 5034                           Senegal 1772           0
## 5035                            Serbia 1772           0
## 5036                        Seychelles 1772           0
## 5037                      Sierra Leone 1772           0
## 5038                         Singapore 1772           0
## 5039         Sint Maarten (Dutch part) 1772           0
## 5040                          Slovakia 1772           0
## 5041                          Slovenia 1772           0
## 5042                   Solomon Islands 1772           0
## 5043                           Somalia 1772           0
## 5044                      South Africa 1772           0
## 5045                       South Korea 1772           0
## 5046                       South Sudan 1772           0
## 5047                             Spain 1772           0
## 5048                         Sri Lanka 1772           0
## 5049                             Sudan 1772           0
## 5050                          Suriname 1772           0
## 5051                         Swaziland 1772           0
## 5052                            Sweden 1772           0
## 5053                       Switzerland 1772           0
## 5054                             Syria 1772           0
## 5055                            Taiwan 1772           0
## 5056                        Tajikistan 1772           0
## 5057                          Tanzania 1772           0
## 5058                          Thailand 1772           0
## 5059                             Timor 1772           0
## 5060                              Togo 1772           0
## 5061                             Tonga 1772           0
## 5062               Trinidad and Tobago 1772           0
## 5063                           Tunisia 1772           0
## 5064                            Turkey 1772           0
## 5065                      Turkmenistan 1772           0
## 5066          Turks and Caicos Islands 1772           0
## 5067                            Tuvalu 1772           0
## 5068                            Uganda 1772           0
## 5069                           Ukraine 1772           0
## 5070              United Arab Emirates 1772           0
## 5071                    United Kingdom 1772   240310768
## 5072                     United States 1772           0
## 5073                           Uruguay 1772           0
## 5074                        Uzbekistan 1772           0
## 5075                           Vanuatu 1772           0
## 5076                         Venezuela 1772           0
## 5077                           Vietnam 1772           0
## 5078         Wallis and Futuna Islands 1772           0
## 5079                             World 1772   240310768
## 5080                             Yemen 1772           0
## 5081                            Zambia 1772           0
## 5082                          Zimbabwe 1772           0
## 5083                       Afghanistan 1773           0
## 5084                            Africa 1773           0
## 5085                           Albania 1773           0
## 5086                           Algeria 1773           0
## 5087                  Americas (other) 1773           0
## 5088                           Andorra 1773           0
## 5089                            Angola 1773           0
## 5090                          Anguilla 1773           0
## 5091               Antarctic Fisheries 1773           0
## 5092               Antigua and Barbuda 1773           0
## 5093                         Argentina 1773           0
## 5094                           Armenia 1773           0
## 5095                             Aruba 1773           0
## 5096          Asia and Pacific (other) 1773           0
## 5097                         Australia 1773           0
## 5098                           Austria 1773           0
## 5099                        Azerbaijan 1773           0
## 5100                           Bahamas 1773           0
## 5101                           Bahrain 1773           0
## 5102                        Bangladesh 1773           0
## 5103                          Barbados 1773           0
## 5104                           Belarus 1773           0
## 5105                           Belgium 1773           0
## 5106                            Belize 1773           0
## 5107                             Benin 1773           0
## 5108                           Bermuda 1773           0
## 5109                            Bhutan 1773           0
## 5110                           Bolivia 1773           0
## 5111   Bonaire Sint Eustatius and Saba 1773           0
## 5112            Bosnia and Herzegovina 1773           0
## 5113                          Botswana 1773           0
## 5114                            Brazil 1773           0
## 5115            British Virgin Islands 1773           0
## 5116                            Brunei 1773           0
## 5117                          Bulgaria 1773           0
## 5118                      Burkina Faso 1773           0
## 5119                           Burundi 1773           0
## 5120                          Cambodia 1773           0
## 5121                          Cameroon 1773           0
## 5122                            Canada 1773           0
## 5123                        Cape Verde 1773           0
## 5124                    Cayman Islands 1773           0
## 5125          Central African Republic 1773           0
## 5126                              Chad 1773           0
## 5127                             Chile 1773           0
## 5128                             China 1773           0
## 5129                  Christmas Island 1773           0
## 5130                          Colombia 1773           0
## 5131                           Comoros 1773           0
## 5132                             Congo 1773           0
## 5133                      Cook Islands 1773           0
## 5134                        Costa Rica 1773           0
## 5135                     Cote d'Ivoire 1773           0
## 5136                           Croatia 1773           0
## 5137                              Cuba 1773           0
## 5138                           Curacao 1773           0
## 5139                            Cyprus 1773           0
## 5140                    Czech Republic 1773           0
## 5141                    Czechoslovakia 1773           0
## 5142      Democratic Republic of Congo 1773           0
## 5143                           Denmark 1773           0
## 5144                          Djibouti 1773           0
## 5145                          Dominica 1773           0
## 5146                Dominican Republic 1773           0
## 5147                             EU-28 1773   253929856
## 5148                           Ecuador 1773           0
## 5149                             Egypt 1773           0
## 5150                       El Salvador 1773           0
## 5151                 Equatorial Guinea 1773           0
## 5152                           Eritrea 1773           0
## 5153                           Estonia 1773           0
## 5154                          Ethiopia 1773           0
## 5155                    Europe (other) 1773           0
## 5156                    Faeroe Islands 1773           0
## 5157                  Falkland Islands 1773           0
## 5158                              Fiji 1773           0
## 5159                           Finland 1773           0
## 5160                            France 1773           0
## 5161                     French Guiana 1773           0
## 5162                  French Polynesia 1773           0
## 5163                             Gabon 1773           0
## 5164                            Gambia 1773           0
## 5165                           Georgia 1773           0
## 5166                           Germany 1773           0
## 5167                             Ghana 1773           0
## 5168                         Gibraltar 1773           0
## 5169                            Greece 1773           0
## 5170                         Greenland 1773           0
## 5171                           Grenada 1773           0
## 5172                        Guadeloupe 1773           0
## 5173                         Guatemala 1773           0
## 5174                            Guinea 1773           0
## 5175                     Guinea-Bissau 1773           0
## 5176                            Guyana 1773           0
## 5177                             Haiti 1773           0
## 5178                          Honduras 1773           0
## 5179                         Hong Kong 1773           0
## 5180                           Hungary 1773           0
## 5181                           Iceland 1773           0
## 5182                             India 1773           0
## 5183                         Indonesia 1773           0
## 5184                              Iran 1773           0
## 5185                              Iraq 1773           0
## 5186                           Ireland 1773           0
## 5187                            Israel 1773           0
## 5188                             Italy 1773           0
## 5189                           Jamaica 1773           0
## 5190                             Japan 1773           0
## 5191                            Jordan 1773           0
## 5192                        Kazakhstan 1773           0
## 5193                             Kenya 1773           0
## 5194                          Kiribati 1773           0
## 5195                            Kuwait 1773           0
## 5196                        Kyrgysztan 1773           0
## 5197                        Kyrgyzstan 1773           0
## 5198                              Laos 1773           0
## 5199                            Latvia 1773           0
## 5200                           Lebanon 1773           0
## 5201                           Lesotho 1773           0
## 5202                           Liberia 1773           0
## 5203                             Libya 1773           0
## 5204                     Liechtenstein 1773           0
## 5205                         Lithuania 1773           0
## 5206                        Luxembourg 1773           0
## 5207                             Macao 1773           0
## 5208                         Macedonia 1773           0
## 5209                        Madagascar 1773           0
## 5210                            Malawi 1773           0
## 5211                          Malaysia 1773           0
## 5212                          Maldives 1773           0
## 5213                              Mali 1773           0
## 5214                             Malta 1773           0
## 5215                  Marshall Islands 1773           0
## 5216                        Martinique 1773           0
## 5217                        Mauritania 1773           0
## 5218                         Mauritius 1773           0
## 5219                            Mexico 1773           0
## 5220              Micronesia (country) 1773           0
## 5221                       Middle East 1773           0
## 5222                           Moldova 1773           0
## 5223                          Mongolia 1773           0
## 5224                        Montenegro 1773           0
## 5225                        Montserrat 1773           0
## 5226                           Morocco 1773           0
## 5227                        Mozambique 1773           0
## 5228                           Myanmar 1773           0
## 5229                           Namibia 1773           0
## 5230                             Nauru 1773           0
## 5231                             Nepal 1773           0
## 5232                       Netherlands 1773           0
## 5233                     New Caledonia 1773           0
## 5234                       New Zealand 1773           0
## 5235                         Nicaragua 1773           0
## 5236                             Niger 1773           0
## 5237                           Nigeria 1773           0
## 5238                              Niue 1773           0
## 5239                       North Korea 1773           0
## 5240                            Norway 1773           0
## 5241                              Oman 1773           0
## 5242                          Pakistan 1773           0
## 5243                             Palau 1773           0
## 5244                         Palestine 1773           0
## 5245                            Panama 1773           0
## 5246                  Papua New Guinea 1773           0
## 5247                          Paraguay 1773           0
## 5248                              Peru 1773           0
## 5249                       Philippines 1773           0
## 5250                            Poland 1773           0
## 5251                          Portugal 1773           0
## 5252                             Qatar 1773           0
## 5253                           Reunion 1773           0
## 5254                           Romania 1773           0
## 5255                            Russia 1773           0
## 5256                            Rwanda 1773           0
## 5257                      Saint Helena 1773           0
## 5258             Saint Kitts and Nevis 1773           0
## 5259                       Saint Lucia 1773           0
## 5260         Saint Pierre and Miquelon 1773           0
## 5261  Saint Vincent and the Grenadines 1773           0
## 5262                             Samoa 1773           0
## 5263             Sao Tome and Principe 1773           0
## 5264                      Saudi Arabia 1773           0
## 5265                           Senegal 1773           0
## 5266                            Serbia 1773           0
## 5267                        Seychelles 1773           0
## 5268                      Sierra Leone 1773           0
## 5269                         Singapore 1773           0
## 5270         Sint Maarten (Dutch part) 1773           0
## 5271                          Slovakia 1773           0
## 5272                          Slovenia 1773           0
## 5273                   Solomon Islands 1773           0
## 5274                           Somalia 1773           0
## 5275                      South Africa 1773           0
## 5276                       South Korea 1773           0
## 5277                       South Sudan 1773           0
## 5278                             Spain 1773           0
## 5279                         Sri Lanka 1773           0
## 5280                             Sudan 1773           0
## 5281                          Suriname 1773           0
## 5282                         Swaziland 1773           0
## 5283                            Sweden 1773           0
## 5284                       Switzerland 1773           0
## 5285                             Syria 1773           0
## 5286                            Taiwan 1773           0
## 5287                        Tajikistan 1773           0
## 5288                          Tanzania 1773           0
## 5289                          Thailand 1773           0
## 5290                             Timor 1773           0
## 5291                              Togo 1773           0
## 5292                             Tonga 1773           0
## 5293               Trinidad and Tobago 1773           0
## 5294                           Tunisia 1773           0
## 5295                            Turkey 1773           0
## 5296                      Turkmenistan 1773           0
## 5297          Turks and Caicos Islands 1773           0
## 5298                            Tuvalu 1773           0
## 5299                            Uganda 1773           0
## 5300                           Ukraine 1773           0
## 5301              United Arab Emirates 1773           0
## 5302                    United Kingdom 1773   253929856
## 5303                     United States 1773           0
## 5304                           Uruguay 1773           0
## 5305                        Uzbekistan 1773           0
## 5306                           Vanuatu 1773           0
## 5307                         Venezuela 1773           0
## 5308                           Vietnam 1773           0
## 5309         Wallis and Futuna Islands 1773           0
## 5310                             World 1773   253929856
## 5311                             Yemen 1773           0
## 5312                            Zambia 1773           0
## 5313                          Zimbabwe 1773           0
## 5314                       Afghanistan 1774           0
## 5315                            Africa 1774           0
## 5316                           Albania 1774           0
## 5317                           Algeria 1774           0
## 5318                  Americas (other) 1774           0
## 5319                           Andorra 1774           0
## 5320                            Angola 1774           0
## 5321                          Anguilla 1774           0
## 5322               Antarctic Fisheries 1774           0
## 5323               Antigua and Barbuda 1774           0
## 5324                         Argentina 1774           0
## 5325                           Armenia 1774           0
## 5326                             Aruba 1774           0
## 5327          Asia and Pacific (other) 1774           0
## 5328                         Australia 1774           0
## 5329                           Austria 1774           0
## 5330                        Azerbaijan 1774           0
## 5331                           Bahamas 1774           0
## 5332                           Bahrain 1774           0
## 5333                        Bangladesh 1774           0
## 5334                          Barbados 1774           0
## 5335                           Belarus 1774           0
## 5336                           Belgium 1774           0
## 5337                            Belize 1774           0
## 5338                             Benin 1774           0
## 5339                           Bermuda 1774           0
## 5340                            Bhutan 1774           0
## 5341                           Bolivia 1774           0
## 5342   Bonaire Sint Eustatius and Saba 1774           0
## 5343            Bosnia and Herzegovina 1774           0
## 5344                          Botswana 1774           0
## 5345                            Brazil 1774           0
## 5346            British Virgin Islands 1774           0
## 5347                            Brunei 1774           0
## 5348                          Bulgaria 1774           0
## 5349                      Burkina Faso 1774           0
## 5350                           Burundi 1774           0
## 5351                          Cambodia 1774           0
## 5352                          Cameroon 1774           0
## 5353                            Canada 1774           0
## 5354                        Cape Verde 1774           0
## 5355                    Cayman Islands 1774           0
## 5356          Central African Republic 1774           0
## 5357                              Chad 1774           0
## 5358                             Chile 1774           0
## 5359                             China 1774           0
## 5360                  Christmas Island 1774           0
## 5361                          Colombia 1774           0
## 5362                           Comoros 1774           0
## 5363                             Congo 1774           0
## 5364                      Cook Islands 1774           0
## 5365                        Costa Rica 1774           0
## 5366                     Cote d'Ivoire 1774           0
## 5367                           Croatia 1774           0
## 5368                              Cuba 1774           0
## 5369                           Curacao 1774           0
## 5370                            Cyprus 1774           0
## 5371                    Czech Republic 1774           0
## 5372                    Czechoslovakia 1774           0
## 5373      Democratic Republic of Congo 1774           0
## 5374                           Denmark 1774           0
## 5375                          Djibouti 1774           0
## 5376                          Dominica 1774           0
## 5377                Dominican Republic 1774           0
## 5378                             EU-28 1774   267552608
## 5379                           Ecuador 1774           0
## 5380                             Egypt 1774           0
## 5381                       El Salvador 1774           0
## 5382                 Equatorial Guinea 1774           0
## 5383                           Eritrea 1774           0
## 5384                           Estonia 1774           0
## 5385                          Ethiopia 1774           0
## 5386                    Europe (other) 1774           0
## 5387                    Faeroe Islands 1774           0
## 5388                  Falkland Islands 1774           0
## 5389                              Fiji 1774           0
## 5390                           Finland 1774           0
## 5391                            France 1774           0
## 5392                     French Guiana 1774           0
## 5393                  French Polynesia 1774           0
## 5394                             Gabon 1774           0
## 5395                            Gambia 1774           0
## 5396                           Georgia 1774           0
## 5397                           Germany 1774           0
## 5398                             Ghana 1774           0
## 5399                         Gibraltar 1774           0
## 5400                            Greece 1774           0
## 5401                         Greenland 1774           0
## 5402                           Grenada 1774           0
## 5403                        Guadeloupe 1774           0
## 5404                         Guatemala 1774           0
## 5405                            Guinea 1774           0
## 5406                     Guinea-Bissau 1774           0
## 5407                            Guyana 1774           0
## 5408                             Haiti 1774           0
## 5409                          Honduras 1774           0
## 5410                         Hong Kong 1774           0
## 5411                           Hungary 1774           0
## 5412                           Iceland 1774           0
## 5413                             India 1774           0
## 5414                         Indonesia 1774           0
## 5415                              Iran 1774           0
## 5416                              Iraq 1774           0
## 5417                           Ireland 1774           0
## 5418                            Israel 1774           0
## 5419                             Italy 1774           0
## 5420                           Jamaica 1774           0
## 5421                             Japan 1774           0
## 5422                            Jordan 1774           0
## 5423                        Kazakhstan 1774           0
## 5424                             Kenya 1774           0
## 5425                          Kiribati 1774           0
## 5426                            Kuwait 1774           0
## 5427                        Kyrgysztan 1774           0
## 5428                        Kyrgyzstan 1774           0
## 5429                              Laos 1774           0
## 5430                            Latvia 1774           0
## 5431                           Lebanon 1774           0
## 5432                           Lesotho 1774           0
## 5433                           Liberia 1774           0
## 5434                             Libya 1774           0
## 5435                     Liechtenstein 1774           0
## 5436                         Lithuania 1774           0
## 5437                        Luxembourg 1774           0
## 5438                             Macao 1774           0
## 5439                         Macedonia 1774           0
## 5440                        Madagascar 1774           0
## 5441                            Malawi 1774           0
## 5442                          Malaysia 1774           0
## 5443                          Maldives 1774           0
## 5444                              Mali 1774           0
## 5445                             Malta 1774           0
## 5446                  Marshall Islands 1774           0
## 5447                        Martinique 1774           0
## 5448                        Mauritania 1774           0
## 5449                         Mauritius 1774           0
## 5450                            Mexico 1774           0
## 5451              Micronesia (country) 1774           0
## 5452                       Middle East 1774           0
## 5453                           Moldova 1774           0
## 5454                          Mongolia 1774           0
## 5455                        Montenegro 1774           0
## 5456                        Montserrat 1774           0
## 5457                           Morocco 1774           0
## 5458                        Mozambique 1774           0
## 5459                           Myanmar 1774           0
## 5460                           Namibia 1774           0
## 5461                             Nauru 1774           0
## 5462                             Nepal 1774           0
## 5463                       Netherlands 1774           0
## 5464                     New Caledonia 1774           0
## 5465                       New Zealand 1774           0
## 5466                         Nicaragua 1774           0
## 5467                             Niger 1774           0
## 5468                           Nigeria 1774           0
## 5469                              Niue 1774           0
## 5470                       North Korea 1774           0
## 5471                            Norway 1774           0
## 5472                              Oman 1774           0
## 5473                          Pakistan 1774           0
## 5474                             Palau 1774           0
## 5475                         Palestine 1774           0
## 5476                            Panama 1774           0
## 5477                  Papua New Guinea 1774           0
## 5478                          Paraguay 1774           0
## 5479                              Peru 1774           0
## 5480                       Philippines 1774           0
## 5481                            Poland 1774           0
## 5482                          Portugal 1774           0
## 5483                             Qatar 1774           0
## 5484                           Reunion 1774           0
## 5485                           Romania 1774           0
## 5486                            Russia 1774           0
## 5487                            Rwanda 1774           0
## 5488                      Saint Helena 1774           0
## 5489             Saint Kitts and Nevis 1774           0
## 5490                       Saint Lucia 1774           0
## 5491         Saint Pierre and Miquelon 1774           0
## 5492  Saint Vincent and the Grenadines 1774           0
## 5493                             Samoa 1774           0
## 5494             Sao Tome and Principe 1774           0
## 5495                      Saudi Arabia 1774           0
## 5496                           Senegal 1774           0
## 5497                            Serbia 1774           0
## 5498                        Seychelles 1774           0
## 5499                      Sierra Leone 1774           0
## 5500                         Singapore 1774           0
## 5501         Sint Maarten (Dutch part) 1774           0
## 5502                          Slovakia 1774           0
## 5503                          Slovenia 1774           0
## 5504                   Solomon Islands 1774           0
## 5505                           Somalia 1774           0
## 5506                      South Africa 1774           0
## 5507                       South Korea 1774           0
## 5508                       South Sudan 1774           0
## 5509                             Spain 1774           0
## 5510                         Sri Lanka 1774           0
## 5511                             Sudan 1774           0
## 5512                          Suriname 1774           0
## 5513                         Swaziland 1774           0
## 5514                            Sweden 1774           0
## 5515                       Switzerland 1774           0
## 5516                             Syria 1774           0
## 5517                            Taiwan 1774           0
## 5518                        Tajikistan 1774           0
## 5519                          Tanzania 1774           0
## 5520                          Thailand 1774           0
## 5521                             Timor 1774           0
## 5522                              Togo 1774           0
## 5523                             Tonga 1774           0
## 5524               Trinidad and Tobago 1774           0
## 5525                           Tunisia 1774           0
## 5526                            Turkey 1774           0
## 5527                      Turkmenistan 1774           0
## 5528          Turks and Caicos Islands 1774           0
## 5529                            Tuvalu 1774           0
## 5530                            Uganda 1774           0
## 5531                           Ukraine 1774           0
## 5532              United Arab Emirates 1774           0
## 5533                    United Kingdom 1774   267552608
## 5534                     United States 1774           0
## 5535                           Uruguay 1774           0
## 5536                        Uzbekistan 1774           0
## 5537                           Vanuatu 1774           0
## 5538                         Venezuela 1774           0
## 5539                           Vietnam 1774           0
## 5540         Wallis and Futuna Islands 1774           0
## 5541                             World 1774   267552608
## 5542                             Yemen 1774           0
## 5543                            Zambia 1774           0
## 5544                          Zimbabwe 1774           0
## 5545                       Afghanistan 1775           0
## 5546                            Africa 1775           0
## 5547                           Albania 1775           0
## 5548                           Algeria 1775           0
## 5549                  Americas (other) 1775           0
## 5550                           Andorra 1775           0
## 5551                            Angola 1775           0
## 5552                          Anguilla 1775           0
## 5553               Antarctic Fisheries 1775           0
## 5554               Antigua and Barbuda 1775           0
## 5555                         Argentina 1775           0
## 5556                           Armenia 1775           0
## 5557                             Aruba 1775           0
## 5558          Asia and Pacific (other) 1775           0
## 5559                         Australia 1775           0
## 5560                           Austria 1775           0
## 5561                        Azerbaijan 1775           0
## 5562                           Bahamas 1775           0
## 5563                           Bahrain 1775           0
## 5564                        Bangladesh 1775           0
## 5565                          Barbados 1775           0
## 5566                           Belarus 1775           0
## 5567                           Belgium 1775           0
## 5568                            Belize 1775           0
## 5569                             Benin 1775           0
## 5570                           Bermuda 1775           0
## 5571                            Bhutan 1775           0
## 5572                           Bolivia 1775           0
## 5573   Bonaire Sint Eustatius and Saba 1775           0
## 5574            Bosnia and Herzegovina 1775           0
## 5575                          Botswana 1775           0
## 5576                            Brazil 1775           0
## 5577            British Virgin Islands 1775           0
## 5578                            Brunei 1775           0
## 5579                          Bulgaria 1775           0
## 5580                      Burkina Faso 1775           0
## 5581                           Burundi 1775           0
## 5582                          Cambodia 1775           0
## 5583                          Cameroon 1775           0
## 5584                            Canada 1775           0
## 5585                        Cape Verde 1775           0
## 5586                    Cayman Islands 1775           0
## 5587          Central African Republic 1775           0
## 5588                              Chad 1775           0
## 5589                             Chile 1775           0
## 5590                             China 1775           0
## 5591                  Christmas Island 1775           0
## 5592                          Colombia 1775           0
## 5593                           Comoros 1775           0
## 5594                             Congo 1775           0
## 5595                      Cook Islands 1775           0
## 5596                        Costa Rica 1775           0
## 5597                     Cote d'Ivoire 1775           0
## 5598                           Croatia 1775           0
## 5599                              Cuba 1775           0
## 5600                           Curacao 1775           0
## 5601                            Cyprus 1775           0
## 5602                    Czech Republic 1775           0
## 5603                    Czechoslovakia 1775           0
## 5604      Democratic Republic of Congo 1775           0
## 5605                           Denmark 1775           0
## 5606                          Djibouti 1775           0
## 5607                          Dominica 1775           0
## 5608                Dominican Republic 1775           0
## 5609                             EU-28 1775   281179024
## 5610                           Ecuador 1775           0
## 5611                             Egypt 1775           0
## 5612                       El Salvador 1775           0
## 5613                 Equatorial Guinea 1775           0
## 5614                           Eritrea 1775           0
## 5615                           Estonia 1775           0
## 5616                          Ethiopia 1775           0
## 5617                    Europe (other) 1775           0
## 5618                    Faeroe Islands 1775           0
## 5619                  Falkland Islands 1775           0
## 5620                              Fiji 1775           0
## 5621                           Finland 1775           0
## 5622                            France 1775           0
## 5623                     French Guiana 1775           0
## 5624                  French Polynesia 1775           0
## 5625                             Gabon 1775           0
## 5626                            Gambia 1775           0
## 5627                           Georgia 1775           0
## 5628                           Germany 1775           0
## 5629                             Ghana 1775           0
## 5630                         Gibraltar 1775           0
## 5631                            Greece 1775           0
## 5632                         Greenland 1775           0
## 5633                           Grenada 1775           0
## 5634                        Guadeloupe 1775           0
## 5635                         Guatemala 1775           0
## 5636                            Guinea 1775           0
## 5637                     Guinea-Bissau 1775           0
## 5638                            Guyana 1775           0
## 5639                             Haiti 1775           0
## 5640                          Honduras 1775           0
## 5641                         Hong Kong 1775           0
## 5642                           Hungary 1775           0
## 5643                           Iceland 1775           0
## 5644                             India 1775           0
## 5645                         Indonesia 1775           0
## 5646                              Iran 1775           0
## 5647                              Iraq 1775           0
## 5648                           Ireland 1775           0
## 5649                            Israel 1775           0
## 5650                             Italy 1775           0
## 5651                           Jamaica 1775           0
## 5652                             Japan 1775           0
## 5653                            Jordan 1775           0
## 5654                        Kazakhstan 1775           0
## 5655                             Kenya 1775           0
## 5656                          Kiribati 1775           0
## 5657                            Kuwait 1775           0
## 5658                        Kyrgysztan 1775           0
## 5659                        Kyrgyzstan 1775           0
## 5660                              Laos 1775           0
## 5661                            Latvia 1775           0
## 5662                           Lebanon 1775           0
## 5663                           Lesotho 1775           0
## 5664                           Liberia 1775           0
## 5665                             Libya 1775           0
## 5666                     Liechtenstein 1775           0
## 5667                         Lithuania 1775           0
## 5668                        Luxembourg 1775           0
## 5669                             Macao 1775           0
## 5670                         Macedonia 1775           0
## 5671                        Madagascar 1775           0
## 5672                            Malawi 1775           0
## 5673                          Malaysia 1775           0
## 5674                          Maldives 1775           0
## 5675                              Mali 1775           0
## 5676                             Malta 1775           0
## 5677                  Marshall Islands 1775           0
## 5678                        Martinique 1775           0
## 5679                        Mauritania 1775           0
## 5680                         Mauritius 1775           0
## 5681                            Mexico 1775           0
## 5682              Micronesia (country) 1775           0
## 5683                       Middle East 1775           0
## 5684                           Moldova 1775           0
## 5685                          Mongolia 1775           0
## 5686                        Montenegro 1775           0
## 5687                        Montserrat 1775           0
## 5688                           Morocco 1775           0
## 5689                        Mozambique 1775           0
## 5690                           Myanmar 1775           0
## 5691                           Namibia 1775           0
## 5692                             Nauru 1775           0
## 5693                             Nepal 1775           0
## 5694                       Netherlands 1775           0
## 5695                     New Caledonia 1775           0
## 5696                       New Zealand 1775           0
## 5697                         Nicaragua 1775           0
## 5698                             Niger 1775           0
## 5699                           Nigeria 1775           0
## 5700                              Niue 1775           0
## 5701                       North Korea 1775           0
## 5702                            Norway 1775           0
## 5703                              Oman 1775           0
## 5704                          Pakistan 1775           0
## 5705                             Palau 1775           0
## 5706                         Palestine 1775           0
## 5707                            Panama 1775           0
## 5708                  Papua New Guinea 1775           0
## 5709                          Paraguay 1775           0
## 5710                              Peru 1775           0
## 5711                       Philippines 1775           0
## 5712                            Poland 1775           0
## 5713                          Portugal 1775           0
## 5714                             Qatar 1775           0
## 5715                           Reunion 1775           0
## 5716                           Romania 1775           0
## 5717                            Russia 1775           0
## 5718                            Rwanda 1775           0
## 5719                      Saint Helena 1775           0
## 5720             Saint Kitts and Nevis 1775           0
## 5721                       Saint Lucia 1775           0
## 5722         Saint Pierre and Miquelon 1775           0
## 5723  Saint Vincent and the Grenadines 1775           0
## 5724                             Samoa 1775           0
## 5725             Sao Tome and Principe 1775           0
## 5726                      Saudi Arabia 1775           0
## 5727                           Senegal 1775           0
## 5728                            Serbia 1775           0
## 5729                        Seychelles 1775           0
## 5730                      Sierra Leone 1775           0
## 5731                         Singapore 1775           0
## 5732         Sint Maarten (Dutch part) 1775           0
## 5733                          Slovakia 1775           0
## 5734                          Slovenia 1775           0
## 5735                   Solomon Islands 1775           0
## 5736                           Somalia 1775           0
## 5737                      South Africa 1775           0
## 5738                       South Korea 1775           0
## 5739                       South Sudan 1775           0
## 5740                             Spain 1775           0
## 5741                         Sri Lanka 1775           0
## 5742                             Sudan 1775           0
## 5743                          Suriname 1775           0
## 5744                         Swaziland 1775           0
## 5745                            Sweden 1775           0
## 5746                       Switzerland 1775           0
## 5747                             Syria 1775           0
## 5748                            Taiwan 1775           0
## 5749                        Tajikistan 1775           0
## 5750                          Tanzania 1775           0
## 5751                          Thailand 1775           0
## 5752                             Timor 1775           0
## 5753                              Togo 1775           0
## 5754                             Tonga 1775           0
## 5755               Trinidad and Tobago 1775           0
## 5756                           Tunisia 1775           0
## 5757                            Turkey 1775           0
## 5758                      Turkmenistan 1775           0
## 5759          Turks and Caicos Islands 1775           0
## 5760                            Tuvalu 1775           0
## 5761                            Uganda 1775           0
## 5762                           Ukraine 1775           0
## 5763              United Arab Emirates 1775           0
## 5764                    United Kingdom 1775   281179024
## 5765                     United States 1775           0
## 5766                           Uruguay 1775           0
## 5767                        Uzbekistan 1775           0
## 5768                           Vanuatu 1775           0
## 5769                         Venezuela 1775           0
## 5770                           Vietnam 1775           0
## 5771         Wallis and Futuna Islands 1775           0
## 5772                             World 1775   281179024
## 5773                             Yemen 1775           0
## 5774                            Zambia 1775           0
## 5775                          Zimbabwe 1775           0
## 5776                       Afghanistan 1776           0
## 5777                            Africa 1776           0
## 5778                           Albania 1776           0
## 5779                           Algeria 1776           0
## 5780                  Americas (other) 1776           0
## 5781                           Andorra 1776           0
## 5782                            Angola 1776           0
## 5783                          Anguilla 1776           0
## 5784               Antarctic Fisheries 1776           0
## 5785               Antigua and Barbuda 1776           0
## 5786                         Argentina 1776           0
## 5787                           Armenia 1776           0
## 5788                             Aruba 1776           0
## 5789          Asia and Pacific (other) 1776           0
## 5790                         Australia 1776           0
## 5791                           Austria 1776           0
## 5792                        Azerbaijan 1776           0
## 5793                           Bahamas 1776           0
## 5794                           Bahrain 1776           0
## 5795                        Bangladesh 1776           0
## 5796                          Barbados 1776           0
## 5797                           Belarus 1776           0
## 5798                           Belgium 1776           0
## 5799                            Belize 1776           0
## 5800                             Benin 1776           0
## 5801                           Bermuda 1776           0
## 5802                            Bhutan 1776           0
## 5803                           Bolivia 1776           0
## 5804   Bonaire Sint Eustatius and Saba 1776           0
## 5805            Bosnia and Herzegovina 1776           0
## 5806                          Botswana 1776           0
## 5807                            Brazil 1776           0
## 5808            British Virgin Islands 1776           0
## 5809                            Brunei 1776           0
## 5810                          Bulgaria 1776           0
## 5811                      Burkina Faso 1776           0
## 5812                           Burundi 1776           0
## 5813                          Cambodia 1776           0
## 5814                          Cameroon 1776           0
## 5815                            Canada 1776           0
## 5816                        Cape Verde 1776           0
## 5817                    Cayman Islands 1776           0
## 5818          Central African Republic 1776           0
## 5819                              Chad 1776           0
## 5820                             Chile 1776           0
## 5821                             China 1776           0
## 5822                  Christmas Island 1776           0
## 5823                          Colombia 1776           0
## 5824                           Comoros 1776           0
## 5825                             Congo 1776           0
## 5826                      Cook Islands 1776           0
## 5827                        Costa Rica 1776           0
## 5828                     Cote d'Ivoire 1776           0
## 5829                           Croatia 1776           0
## 5830                              Cuba 1776           0
## 5831                           Curacao 1776           0
## 5832                            Cyprus 1776           0
## 5833                    Czech Republic 1776           0
## 5834                    Czechoslovakia 1776           0
## 5835      Democratic Republic of Congo 1776           0
## 5836                           Denmark 1776           0
## 5837                          Djibouti 1776           0
## 5838                          Dominica 1776           0
## 5839                Dominican Republic 1776           0
## 5840                             EU-28 1776   296216080
## 5841                           Ecuador 1776           0
## 5842                             Egypt 1776           0
## 5843                       El Salvador 1776           0
## 5844                 Equatorial Guinea 1776           0
## 5845                           Eritrea 1776           0
## 5846                           Estonia 1776           0
## 5847                          Ethiopia 1776           0
## 5848                    Europe (other) 1776           0
## 5849                    Faeroe Islands 1776           0
## 5850                  Falkland Islands 1776           0
## 5851                              Fiji 1776           0
## 5852                           Finland 1776           0
## 5853                            France 1776           0
## 5854                     French Guiana 1776           0
## 5855                  French Polynesia 1776           0
## 5856                             Gabon 1776           0
## 5857                            Gambia 1776           0
## 5858                           Georgia 1776           0
## 5859                           Germany 1776           0
## 5860                             Ghana 1776           0
## 5861                         Gibraltar 1776           0
## 5862                            Greece 1776           0
## 5863                         Greenland 1776           0
## 5864                           Grenada 1776           0
## 5865                        Guadeloupe 1776           0
## 5866                         Guatemala 1776           0
## 5867                            Guinea 1776           0
## 5868                     Guinea-Bissau 1776           0
## 5869                            Guyana 1776           0
## 5870                             Haiti 1776           0
## 5871                          Honduras 1776           0
## 5872                         Hong Kong 1776           0
## 5873                           Hungary 1776           0
## 5874                           Iceland 1776           0
## 5875                             India 1776           0
## 5876                         Indonesia 1776           0
## 5877                              Iran 1776           0
## 5878                              Iraq 1776           0
## 5879                           Ireland 1776           0
## 5880                            Israel 1776           0
## 5881                             Italy 1776           0
## 5882                           Jamaica 1776           0
## 5883                             Japan 1776           0
## 5884                            Jordan 1776           0
## 5885                        Kazakhstan 1776           0
## 5886                             Kenya 1776           0
## 5887                          Kiribati 1776           0
## 5888                            Kuwait 1776           0
## 5889                        Kyrgysztan 1776           0
## 5890                        Kyrgyzstan 1776           0
## 5891                              Laos 1776           0
## 5892                            Latvia 1776           0
## 5893                           Lebanon 1776           0
## 5894                           Lesotho 1776           0
## 5895                           Liberia 1776           0
## 5896                             Libya 1776           0
## 5897                     Liechtenstein 1776           0
## 5898                         Lithuania 1776           0
## 5899                        Luxembourg 1776           0
## 5900                             Macao 1776           0
## 5901                         Macedonia 1776           0
## 5902                        Madagascar 1776           0
## 5903                            Malawi 1776           0
## 5904                          Malaysia 1776           0
## 5905                          Maldives 1776           0
## 5906                              Mali 1776           0
## 5907                             Malta 1776           0
## 5908                  Marshall Islands 1776           0
## 5909                        Martinique 1776           0
## 5910                        Mauritania 1776           0
## 5911                         Mauritius 1776           0
## 5912                            Mexico 1776           0
## 5913              Micronesia (country) 1776           0
## 5914                       Middle East 1776           0
## 5915                           Moldova 1776           0
## 5916                          Mongolia 1776           0
## 5917                        Montenegro 1776           0
## 5918                        Montserrat 1776           0
## 5919                           Morocco 1776           0
## 5920                        Mozambique 1776           0
## 5921                           Myanmar 1776           0
## 5922                           Namibia 1776           0
## 5923                             Nauru 1776           0
## 5924                             Nepal 1776           0
## 5925                       Netherlands 1776           0
## 5926                     New Caledonia 1776           0
## 5927                       New Zealand 1776           0
## 5928                         Nicaragua 1776           0
## 5929                             Niger 1776           0
## 5930                           Nigeria 1776           0
## 5931                              Niue 1776           0
## 5932                       North Korea 1776           0
## 5933                            Norway 1776           0
## 5934                              Oman 1776           0
## 5935                          Pakistan 1776           0
## 5936                             Palau 1776           0
## 5937                         Palestine 1776           0
## 5938                            Panama 1776           0
## 5939                  Papua New Guinea 1776           0
## 5940                          Paraguay 1776           0
## 5941                              Peru 1776           0
## 5942                       Philippines 1776           0
## 5943                            Poland 1776           0
## 5944                          Portugal 1776           0
## 5945                             Qatar 1776           0
## 5946                           Reunion 1776           0
## 5947                           Romania 1776           0
## 5948                            Russia 1776           0
## 5949                            Rwanda 1776           0
## 5950                      Saint Helena 1776           0
## 5951             Saint Kitts and Nevis 1776           0
## 5952                       Saint Lucia 1776           0
## 5953         Saint Pierre and Miquelon 1776           0
## 5954  Saint Vincent and the Grenadines 1776           0
## 5955                             Samoa 1776           0
## 5956             Sao Tome and Principe 1776           0
## 5957                      Saudi Arabia 1776           0
## 5958                           Senegal 1776           0
## 5959                            Serbia 1776           0
## 5960                        Seychelles 1776           0
## 5961                      Sierra Leone 1776           0
## 5962                         Singapore 1776           0
## 5963         Sint Maarten (Dutch part) 1776           0
## 5964                          Slovakia 1776           0
## 5965                          Slovenia 1776           0
## 5966                   Solomon Islands 1776           0
## 5967                           Somalia 1776           0
## 5968                      South Africa 1776           0
## 5969                       South Korea 1776           0
## 5970                       South Sudan 1776           0
## 5971                             Spain 1776           0
## 5972                         Sri Lanka 1776           0
## 5973                             Sudan 1776           0
## 5974                          Suriname 1776           0
## 5975                         Swaziland 1776           0
## 5976                            Sweden 1776           0
## 5977                       Switzerland 1776           0
## 5978                             Syria 1776           0
## 5979                            Taiwan 1776           0
## 5980                        Tajikistan 1776           0
## 5981                          Tanzania 1776           0
## 5982                          Thailand 1776           0
## 5983                             Timor 1776           0
## 5984                              Togo 1776           0
## 5985                             Tonga 1776           0
## 5986               Trinidad and Tobago 1776           0
## 5987                           Tunisia 1776           0
## 5988                            Turkey 1776           0
## 5989                      Turkmenistan 1776           0
## 5990          Turks and Caicos Islands 1776           0
## 5991                            Tuvalu 1776           0
## 5992                            Uganda 1776           0
## 5993                           Ukraine 1776           0
## 5994              United Arab Emirates 1776           0
## 5995                    United Kingdom 1776   296216080
## 5996                     United States 1776           0
## 5997                           Uruguay 1776           0
## 5998                        Uzbekistan 1776           0
## 5999                           Vanuatu 1776           0
## 6000                         Venezuela 1776           0
## 6001                           Vietnam 1776           0
## 6002         Wallis and Futuna Islands 1776           0
## 6003                             World 1776   296216080
## 6004                             Yemen 1776           0
## 6005                            Zambia 1776           0
## 6006                          Zimbabwe 1776           0
## 6007                       Afghanistan 1777           0
## 6008                            Africa 1777           0
## 6009                           Albania 1777           0
## 6010                           Algeria 1777           0
## 6011                  Americas (other) 1777           0
## 6012                           Andorra 1777           0
## 6013                            Angola 1777           0
## 6014                          Anguilla 1777           0
## 6015               Antarctic Fisheries 1777           0
## 6016               Antigua and Barbuda 1777           0
## 6017                         Argentina 1777           0
## 6018                           Armenia 1777           0
## 6019                             Aruba 1777           0
## 6020          Asia and Pacific (other) 1777           0
## 6021                         Australia 1777           0
## 6022                           Austria 1777           0
## 6023                        Azerbaijan 1777           0
## 6024                           Bahamas 1777           0
## 6025                           Bahrain 1777           0
## 6026                        Bangladesh 1777           0
## 6027                          Barbados 1777           0
## 6028                           Belarus 1777           0
## 6029                           Belgium 1777           0
## 6030                            Belize 1777           0
## 6031                             Benin 1777           0
## 6032                           Bermuda 1777           0
## 6033                            Bhutan 1777           0
## 6034                           Bolivia 1777           0
## 6035   Bonaire Sint Eustatius and Saba 1777           0
## 6036            Bosnia and Herzegovina 1777           0
## 6037                          Botswana 1777           0
## 6038                            Brazil 1777           0
## 6039            British Virgin Islands 1777           0
## 6040                            Brunei 1777           0
## 6041                          Bulgaria 1777           0
## 6042                      Burkina Faso 1777           0
## 6043                           Burundi 1777           0
## 6044                          Cambodia 1777           0
## 6045                          Cameroon 1777           0
## 6046                            Canada 1777           0
## 6047                        Cape Verde 1777           0
## 6048                    Cayman Islands 1777           0
## 6049          Central African Republic 1777           0
## 6050                              Chad 1777           0
## 6051                             Chile 1777           0
## 6052                             China 1777           0
## 6053                  Christmas Island 1777           0
## 6054                          Colombia 1777           0
## 6055                           Comoros 1777           0
## 6056                             Congo 1777           0
## 6057                      Cook Islands 1777           0
## 6058                        Costa Rica 1777           0
## 6059                     Cote d'Ivoire 1777           0
## 6060                           Croatia 1777           0
## 6061                              Cuba 1777           0
## 6062                           Curacao 1777           0
## 6063                            Cyprus 1777           0
## 6064                    Czech Republic 1777           0
## 6065                    Czechoslovakia 1777           0
## 6066      Democratic Republic of Congo 1777           0
## 6067                           Denmark 1777           0
## 6068                          Djibouti 1777           0
## 6069                          Dominica 1777           0
## 6070                Dominican Republic 1777           0
## 6071                             EU-28 1777   311256800
## 6072                           Ecuador 1777           0
## 6073                             Egypt 1777           0
## 6074                       El Salvador 1777           0
## 6075                 Equatorial Guinea 1777           0
## 6076                           Eritrea 1777           0
## 6077                           Estonia 1777           0
## 6078                          Ethiopia 1777           0
## 6079                    Europe (other) 1777           0
## 6080                    Faeroe Islands 1777           0
## 6081                  Falkland Islands 1777           0
## 6082                              Fiji 1777           0
## 6083                           Finland 1777           0
## 6084                            France 1777           0
## 6085                     French Guiana 1777           0
## 6086                  French Polynesia 1777           0
## 6087                             Gabon 1777           0
## 6088                            Gambia 1777           0
## 6089                           Georgia 1777           0
## 6090                           Germany 1777           0
## 6091                             Ghana 1777           0
## 6092                         Gibraltar 1777           0
## 6093                            Greece 1777           0
## 6094                         Greenland 1777           0
## 6095                           Grenada 1777           0
## 6096                        Guadeloupe 1777           0
## 6097                         Guatemala 1777           0
## 6098                            Guinea 1777           0
## 6099                     Guinea-Bissau 1777           0
## 6100                            Guyana 1777           0
## 6101                             Haiti 1777           0
## 6102                          Honduras 1777           0
## 6103                         Hong Kong 1777           0
## 6104                           Hungary 1777           0
## 6105                           Iceland 1777           0
## 6106                             India 1777           0
## 6107                         Indonesia 1777           0
## 6108                              Iran 1777           0
## 6109                              Iraq 1777           0
## 6110                           Ireland 1777           0
## 6111                            Israel 1777           0
## 6112                             Italy 1777           0
## 6113                           Jamaica 1777           0
## 6114                             Japan 1777           0
## 6115                            Jordan 1777           0
## 6116                        Kazakhstan 1777           0
## 6117                             Kenya 1777           0
## 6118                          Kiribati 1777           0
## 6119                            Kuwait 1777           0
## 6120                        Kyrgysztan 1777           0
## 6121                        Kyrgyzstan 1777           0
## 6122                              Laos 1777           0
## 6123                            Latvia 1777           0
## 6124                           Lebanon 1777           0
## 6125                           Lesotho 1777           0
## 6126                           Liberia 1777           0
## 6127                             Libya 1777           0
## 6128                     Liechtenstein 1777           0
## 6129                         Lithuania 1777           0
## 6130                        Luxembourg 1777           0
## 6131                             Macao 1777           0
## 6132                         Macedonia 1777           0
## 6133                        Madagascar 1777           0
## 6134                            Malawi 1777           0
## 6135                          Malaysia 1777           0
## 6136                          Maldives 1777           0
## 6137                              Mali 1777           0
## 6138                             Malta 1777           0
## 6139                  Marshall Islands 1777           0
## 6140                        Martinique 1777           0
## 6141                        Mauritania 1777           0
## 6142                         Mauritius 1777           0
## 6143                            Mexico 1777           0
## 6144              Micronesia (country) 1777           0
## 6145                       Middle East 1777           0
## 6146                           Moldova 1777           0
## 6147                          Mongolia 1777           0
## 6148                        Montenegro 1777           0
## 6149                        Montserrat 1777           0
## 6150                           Morocco 1777           0
## 6151                        Mozambique 1777           0
## 6152                           Myanmar 1777           0
## 6153                           Namibia 1777           0
## 6154                             Nauru 1777           0
## 6155                             Nepal 1777           0
## 6156                       Netherlands 1777           0
## 6157                     New Caledonia 1777           0
## 6158                       New Zealand 1777           0
## 6159                         Nicaragua 1777           0
## 6160                             Niger 1777           0
## 6161                           Nigeria 1777           0
## 6162                              Niue 1777           0
## 6163                       North Korea 1777           0
## 6164                            Norway 1777           0
## 6165                              Oman 1777           0
## 6166                          Pakistan 1777           0
## 6167                             Palau 1777           0
## 6168                         Palestine 1777           0
## 6169                            Panama 1777           0
## 6170                  Papua New Guinea 1777           0
## 6171                          Paraguay 1777           0
## 6172                              Peru 1777           0
## 6173                       Philippines 1777           0
## 6174                            Poland 1777           0
## 6175                          Portugal 1777           0
## 6176                             Qatar 1777           0
## 6177                           Reunion 1777           0
## 6178                           Romania 1777           0
## 6179                            Russia 1777           0
## 6180                            Rwanda 1777           0
## 6181                      Saint Helena 1777           0
## 6182             Saint Kitts and Nevis 1777           0
## 6183                       Saint Lucia 1777           0
## 6184         Saint Pierre and Miquelon 1777           0
## 6185  Saint Vincent and the Grenadines 1777           0
## 6186                             Samoa 1777           0
## 6187             Sao Tome and Principe 1777           0
## 6188                      Saudi Arabia 1777           0
## 6189                           Senegal 1777           0
## 6190                            Serbia 1777           0
## 6191                        Seychelles 1777           0
## 6192                      Sierra Leone 1777           0
## 6193                         Singapore 1777           0
## 6194         Sint Maarten (Dutch part) 1777           0
## 6195                          Slovakia 1777           0
## 6196                          Slovenia 1777           0
## 6197                   Solomon Islands 1777           0
## 6198                           Somalia 1777           0
## 6199                      South Africa 1777           0
## 6200                       South Korea 1777           0
## 6201                       South Sudan 1777           0
## 6202                             Spain 1777           0
## 6203                         Sri Lanka 1777           0
## 6204                             Sudan 1777           0
## 6205                          Suriname 1777           0
## 6206                         Swaziland 1777           0
## 6207                            Sweden 1777           0
## 6208                       Switzerland 1777           0
## 6209                             Syria 1777           0
## 6210                            Taiwan 1777           0
## 6211                        Tajikistan 1777           0
## 6212                          Tanzania 1777           0
## 6213                          Thailand 1777           0
## 6214                             Timor 1777           0
## 6215                              Togo 1777           0
## 6216                             Tonga 1777           0
## 6217               Trinidad and Tobago 1777           0
## 6218                           Tunisia 1777           0
## 6219                            Turkey 1777           0
## 6220                      Turkmenistan 1777           0
## 6221          Turks and Caicos Islands 1777           0
## 6222                            Tuvalu 1777           0
## 6223                            Uganda 1777           0
## 6224                           Ukraine 1777           0
## 6225              United Arab Emirates 1777           0
## 6226                    United Kingdom 1777   311256800
## 6227                     United States 1777           0
## 6228                           Uruguay 1777           0
## 6229                        Uzbekistan 1777           0
## 6230                           Vanuatu 1777           0
## 6231                         Venezuela 1777           0
## 6232                           Vietnam 1777           0
## 6233         Wallis and Futuna Islands 1777           0
## 6234                             World 1777   311256800
## 6235                             Yemen 1777           0
## 6236                            Zambia 1777           0
## 6237                          Zimbabwe 1777           0
## 6238                       Afghanistan 1778           0
## 6239                            Africa 1778           0
## 6240                           Albania 1778           0
## 6241                           Algeria 1778           0
## 6242                  Americas (other) 1778           0
## 6243                           Andorra 1778           0
## 6244                            Angola 1778           0
## 6245                          Anguilla 1778           0
## 6246               Antarctic Fisheries 1778           0
## 6247               Antigua and Barbuda 1778           0
## 6248                         Argentina 1778           0
## 6249                           Armenia 1778           0
## 6250                             Aruba 1778           0
## 6251          Asia and Pacific (other) 1778           0
## 6252                         Australia 1778           0
## 6253                           Austria 1778           0
## 6254                        Azerbaijan 1778           0
## 6255                           Bahamas 1778           0
## 6256                           Bahrain 1778           0
## 6257                        Bangladesh 1778           0
## 6258                          Barbados 1778           0
## 6259                           Belarus 1778           0
## 6260                           Belgium 1778           0
## 6261                            Belize 1778           0
## 6262                             Benin 1778           0
## 6263                           Bermuda 1778           0
## 6264                            Bhutan 1778           0
## 6265                           Bolivia 1778           0
## 6266   Bonaire Sint Eustatius and Saba 1778           0
## 6267            Bosnia and Herzegovina 1778           0
## 6268                          Botswana 1778           0
## 6269                            Brazil 1778           0
## 6270            British Virgin Islands 1778           0
## 6271                            Brunei 1778           0
## 6272                          Bulgaria 1778           0
## 6273                      Burkina Faso 1778           0
## 6274                           Burundi 1778           0
## 6275                          Cambodia 1778           0
## 6276                          Cameroon 1778           0
## 6277                            Canada 1778           0
## 6278                        Cape Verde 1778           0
## 6279                    Cayman Islands 1778           0
## 6280          Central African Republic 1778           0
## 6281                              Chad 1778           0
## 6282                             Chile 1778           0
## 6283                             China 1778           0
## 6284                  Christmas Island 1778           0
## 6285                          Colombia 1778           0
## 6286                           Comoros 1778           0
## 6287                             Congo 1778           0
## 6288                      Cook Islands 1778           0
## 6289                        Costa Rica 1778           0
## 6290                     Cote d'Ivoire 1778           0
## 6291                           Croatia 1778           0
## 6292                              Cuba 1778           0
## 6293                           Curacao 1778           0
## 6294                            Cyprus 1778           0
## 6295                    Czech Republic 1778           0
## 6296                    Czechoslovakia 1778           0
## 6297      Democratic Republic of Congo 1778           0
## 6298                           Denmark 1778           0
## 6299                          Djibouti 1778           0
## 6300                          Dominica 1778           0
## 6301                Dominican Republic 1778           0
## 6302                             EU-28 1778   326301184
## 6303                           Ecuador 1778           0
## 6304                             Egypt 1778           0
## 6305                       El Salvador 1778           0
## 6306                 Equatorial Guinea 1778           0
## 6307                           Eritrea 1778           0
## 6308                           Estonia 1778           0
## 6309                          Ethiopia 1778           0
## 6310                    Europe (other) 1778           0
## 6311                    Faeroe Islands 1778           0
## 6312                  Falkland Islands 1778           0
## 6313                              Fiji 1778           0
## 6314                           Finland 1778           0
## 6315                            France 1778           0
## 6316                     French Guiana 1778           0
## 6317                  French Polynesia 1778           0
## 6318                             Gabon 1778           0
## 6319                            Gambia 1778           0
## 6320                           Georgia 1778           0
## 6321                           Germany 1778           0
## 6322                             Ghana 1778           0
## 6323                         Gibraltar 1778           0
## 6324                            Greece 1778           0
## 6325                         Greenland 1778           0
## 6326                           Grenada 1778           0
## 6327                        Guadeloupe 1778           0
## 6328                         Guatemala 1778           0
## 6329                            Guinea 1778           0
## 6330                     Guinea-Bissau 1778           0
## 6331                            Guyana 1778           0
## 6332                             Haiti 1778           0
## 6333                          Honduras 1778           0
## 6334                         Hong Kong 1778           0
## 6335                           Hungary 1778           0
## 6336                           Iceland 1778           0
## 6337                             India 1778           0
## 6338                         Indonesia 1778           0
## 6339                              Iran 1778           0
## 6340                              Iraq 1778           0
## 6341                           Ireland 1778           0
## 6342                            Israel 1778           0
## 6343                             Italy 1778           0
## 6344                           Jamaica 1778           0
## 6345                             Japan 1778           0
## 6346                            Jordan 1778           0
## 6347                        Kazakhstan 1778           0
## 6348                             Kenya 1778           0
## 6349                          Kiribati 1778           0
## 6350                            Kuwait 1778           0
## 6351                        Kyrgysztan 1778           0
## 6352                        Kyrgyzstan 1778           0
## 6353                              Laos 1778           0
## 6354                            Latvia 1778           0
## 6355                           Lebanon 1778           0
## 6356                           Lesotho 1778           0
## 6357                           Liberia 1778           0
## 6358                             Libya 1778           0
## 6359                     Liechtenstein 1778           0
## 6360                         Lithuania 1778           0
## 6361                        Luxembourg 1778           0
## 6362                             Macao 1778           0
## 6363                         Macedonia 1778           0
## 6364                        Madagascar 1778           0
## 6365                            Malawi 1778           0
## 6366                          Malaysia 1778           0
## 6367                          Maldives 1778           0
## 6368                              Mali 1778           0
## 6369                             Malta 1778           0
## 6370                  Marshall Islands 1778           0
## 6371                        Martinique 1778           0
## 6372                        Mauritania 1778           0
## 6373                         Mauritius 1778           0
## 6374                            Mexico 1778           0
## 6375              Micronesia (country) 1778           0
## 6376                       Middle East 1778           0
## 6377                           Moldova 1778           0
## 6378                          Mongolia 1778           0
## 6379                        Montenegro 1778           0
## 6380                        Montserrat 1778           0
## 6381                           Morocco 1778           0
## 6382                        Mozambique 1778           0
## 6383                           Myanmar 1778           0
## 6384                           Namibia 1778           0
## 6385                             Nauru 1778           0
## 6386                             Nepal 1778           0
## 6387                       Netherlands 1778           0
## 6388                     New Caledonia 1778           0
## 6389                       New Zealand 1778           0
## 6390                         Nicaragua 1778           0
## 6391                             Niger 1778           0
## 6392                           Nigeria 1778           0
## 6393                              Niue 1778           0
## 6394                       North Korea 1778           0
## 6395                            Norway 1778           0
## 6396                              Oman 1778           0
## 6397                          Pakistan 1778           0
## 6398                             Palau 1778           0
## 6399                         Palestine 1778           0
## 6400                            Panama 1778           0
## 6401                  Papua New Guinea 1778           0
## 6402                          Paraguay 1778           0
## 6403                              Peru 1778           0
## 6404                       Philippines 1778           0
## 6405                            Poland 1778           0
## 6406                          Portugal 1778           0
## 6407                             Qatar 1778           0
## 6408                           Reunion 1778           0
## 6409                           Romania 1778           0
## 6410                            Russia 1778           0
## 6411                            Rwanda 1778           0
## 6412                      Saint Helena 1778           0
## 6413             Saint Kitts and Nevis 1778           0
## 6414                       Saint Lucia 1778           0
## 6415         Saint Pierre and Miquelon 1778           0
## 6416  Saint Vincent and the Grenadines 1778           0
## 6417                             Samoa 1778           0
## 6418             Sao Tome and Principe 1778           0
## 6419                      Saudi Arabia 1778           0
## 6420                           Senegal 1778           0
## 6421                            Serbia 1778           0
## 6422                        Seychelles 1778           0
## 6423                      Sierra Leone 1778           0
## 6424                         Singapore 1778           0
## 6425         Sint Maarten (Dutch part) 1778           0
## 6426                          Slovakia 1778           0
## 6427                          Slovenia 1778           0
## 6428                   Solomon Islands 1778           0
## 6429                           Somalia 1778           0
## 6430                      South Africa 1778           0
## 6431                       South Korea 1778           0
## 6432                       South Sudan 1778           0
## 6433                             Spain 1778           0
## 6434                         Sri Lanka 1778           0
## 6435                             Sudan 1778           0
## 6436                          Suriname 1778           0
## 6437                         Swaziland 1778           0
## 6438                            Sweden 1778           0
## 6439                       Switzerland 1778           0
## 6440                             Syria 1778           0
## 6441                            Taiwan 1778           0
## 6442                        Tajikistan 1778           0
## 6443                          Tanzania 1778           0
## 6444                          Thailand 1778           0
## 6445                             Timor 1778           0
## 6446                              Togo 1778           0
## 6447                             Tonga 1778           0
## 6448               Trinidad and Tobago 1778           0
## 6449                           Tunisia 1778           0
## 6450                            Turkey 1778           0
## 6451                      Turkmenistan 1778           0
## 6452          Turks and Caicos Islands 1778           0
## 6453                            Tuvalu 1778           0
## 6454                            Uganda 1778           0
## 6455                           Ukraine 1778           0
## 6456              United Arab Emirates 1778           0
## 6457                    United Kingdom 1778   326301184
## 6458                     United States 1778           0
## 6459                           Uruguay 1778           0
## 6460                        Uzbekistan 1778           0
## 6461                           Vanuatu 1778           0
## 6462                         Venezuela 1778           0
## 6463                           Vietnam 1778           0
## 6464         Wallis and Futuna Islands 1778           0
## 6465                             World 1778   326301184
## 6466                             Yemen 1778           0
## 6467                            Zambia 1778           0
## 6468                          Zimbabwe 1778           0
## 6469                       Afghanistan 1779           0
## 6470                            Africa 1779           0
## 6471                           Albania 1779           0
## 6472                           Algeria 1779           0
## 6473                  Americas (other) 1779           0
## 6474                           Andorra 1779           0
## 6475                            Angola 1779           0
## 6476                          Anguilla 1779           0
## 6477               Antarctic Fisheries 1779           0
## 6478               Antigua and Barbuda 1779           0
## 6479                         Argentina 1779           0
## 6480                           Armenia 1779           0
## 6481                             Aruba 1779           0
## 6482          Asia and Pacific (other) 1779           0
## 6483                         Australia 1779           0
## 6484                           Austria 1779           0
## 6485                        Azerbaijan 1779           0
## 6486                           Bahamas 1779           0
## 6487                           Bahrain 1779           0
## 6488                        Bangladesh 1779           0
## 6489                          Barbados 1779           0
## 6490                           Belarus 1779           0
## 6491                           Belgium 1779           0
## 6492                            Belize 1779           0
## 6493                             Benin 1779           0
## 6494                           Bermuda 1779           0
## 6495                            Bhutan 1779           0
## 6496                           Bolivia 1779           0
## 6497   Bonaire Sint Eustatius and Saba 1779           0
## 6498            Bosnia and Herzegovina 1779           0
## 6499                          Botswana 1779           0
## 6500                            Brazil 1779           0
## 6501            British Virgin Islands 1779           0
## 6502                            Brunei 1779           0
## 6503                          Bulgaria 1779           0
## 6504                      Burkina Faso 1779           0
## 6505                           Burundi 1779           0
## 6506                          Cambodia 1779           0
## 6507                          Cameroon 1779           0
## 6508                            Canada 1779           0
## 6509                        Cape Verde 1779           0
## 6510                    Cayman Islands 1779           0
## 6511          Central African Republic 1779           0
## 6512                              Chad 1779           0
## 6513                             Chile 1779           0
## 6514                             China 1779           0
## 6515                  Christmas Island 1779           0
## 6516                          Colombia 1779           0
## 6517                           Comoros 1779           0
## 6518                             Congo 1779           0
## 6519                      Cook Islands 1779           0
## 6520                        Costa Rica 1779           0
## 6521                     Cote d'Ivoire 1779           0
## 6522                           Croatia 1779           0
## 6523                              Cuba 1779           0
## 6524                           Curacao 1779           0
## 6525                            Cyprus 1779           0
## 6526                    Czech Republic 1779           0
## 6527                    Czechoslovakia 1779           0
## 6528      Democratic Republic of Congo 1779           0
## 6529                           Denmark 1779           0
## 6530                          Djibouti 1779           0
## 6531                          Dominica 1779           0
## 6532                Dominican Republic 1779           0
## 6533                             EU-28 1779   341349232
## 6534                           Ecuador 1779           0
## 6535                             Egypt 1779           0
## 6536                       El Salvador 1779           0
## 6537                 Equatorial Guinea 1779           0
## 6538                           Eritrea 1779           0
## 6539                           Estonia 1779           0
## 6540                          Ethiopia 1779           0
## 6541                    Europe (other) 1779           0
## 6542                    Faeroe Islands 1779           0
## 6543                  Falkland Islands 1779           0
## 6544                              Fiji 1779           0
## 6545                           Finland 1779           0
## 6546                            France 1779           0
## 6547                     French Guiana 1779           0
## 6548                  French Polynesia 1779           0
## 6549                             Gabon 1779           0
## 6550                            Gambia 1779           0
## 6551                           Georgia 1779           0
## 6552                           Germany 1779           0
## 6553                             Ghana 1779           0
## 6554                         Gibraltar 1779           0
## 6555                            Greece 1779           0
## 6556                         Greenland 1779           0
## 6557                           Grenada 1779           0
## 6558                        Guadeloupe 1779           0
## 6559                         Guatemala 1779           0
## 6560                            Guinea 1779           0
## 6561                     Guinea-Bissau 1779           0
## 6562                            Guyana 1779           0
## 6563                             Haiti 1779           0
## 6564                          Honduras 1779           0
## 6565                         Hong Kong 1779           0
## 6566                           Hungary 1779           0
## 6567                           Iceland 1779           0
## 6568                             India 1779           0
## 6569                         Indonesia 1779           0
## 6570                              Iran 1779           0
## 6571                              Iraq 1779           0
## 6572                           Ireland 1779           0
## 6573                            Israel 1779           0
## 6574                             Italy 1779           0
## 6575                           Jamaica 1779           0
## 6576                             Japan 1779           0
## 6577                            Jordan 1779           0
## 6578                        Kazakhstan 1779           0
## 6579                             Kenya 1779           0
## 6580                          Kiribati 1779           0
## 6581                            Kuwait 1779           0
## 6582                        Kyrgysztan 1779           0
## 6583                        Kyrgyzstan 1779           0
## 6584                              Laos 1779           0
## 6585                            Latvia 1779           0
## 6586                           Lebanon 1779           0
## 6587                           Lesotho 1779           0
## 6588                           Liberia 1779           0
## 6589                             Libya 1779           0
## 6590                     Liechtenstein 1779           0
## 6591                         Lithuania 1779           0
## 6592                        Luxembourg 1779           0
## 6593                             Macao 1779           0
## 6594                         Macedonia 1779           0
## 6595                        Madagascar 1779           0
## 6596                            Malawi 1779           0
## 6597                          Malaysia 1779           0
## 6598                          Maldives 1779           0
## 6599                              Mali 1779           0
## 6600                             Malta 1779           0
## 6601                  Marshall Islands 1779           0
## 6602                        Martinique 1779           0
## 6603                        Mauritania 1779           0
## 6604                         Mauritius 1779           0
## 6605                            Mexico 1779           0
## 6606              Micronesia (country) 1779           0
## 6607                       Middle East 1779           0
## 6608                           Moldova 1779           0
## 6609                          Mongolia 1779           0
## 6610                        Montenegro 1779           0
## 6611                        Montserrat 1779           0
## 6612                           Morocco 1779           0
## 6613                        Mozambique 1779           0
## 6614                           Myanmar 1779           0
## 6615                           Namibia 1779           0
## 6616                             Nauru 1779           0
## 6617                             Nepal 1779           0
## 6618                       Netherlands 1779           0
## 6619                     New Caledonia 1779           0
## 6620                       New Zealand 1779           0
## 6621                         Nicaragua 1779           0
## 6622                             Niger 1779           0
## 6623                           Nigeria 1779           0
## 6624                              Niue 1779           0
## 6625                       North Korea 1779           0
## 6626                            Norway 1779           0
## 6627                              Oman 1779           0
## 6628                          Pakistan 1779           0
## 6629                             Palau 1779           0
## 6630                         Palestine 1779           0
## 6631                            Panama 1779           0
## 6632                  Papua New Guinea 1779           0
## 6633                          Paraguay 1779           0
## 6634                              Peru 1779           0
## 6635                       Philippines 1779           0
## 6636                            Poland 1779           0
## 6637                          Portugal 1779           0
## 6638                             Qatar 1779           0
## 6639                           Reunion 1779           0
## 6640                           Romania 1779           0
## 6641                            Russia 1779           0
## 6642                            Rwanda 1779           0
## 6643                      Saint Helena 1779           0
## 6644             Saint Kitts and Nevis 1779           0
## 6645                       Saint Lucia 1779           0
## 6646         Saint Pierre and Miquelon 1779           0
## 6647  Saint Vincent and the Grenadines 1779           0
## 6648                             Samoa 1779           0
## 6649             Sao Tome and Principe 1779           0
## 6650                      Saudi Arabia 1779           0
## 6651                           Senegal 1779           0
## 6652                            Serbia 1779           0
## 6653                        Seychelles 1779           0
## 6654                      Sierra Leone 1779           0
## 6655                         Singapore 1779           0
## 6656         Sint Maarten (Dutch part) 1779           0
## 6657                          Slovakia 1779           0
## 6658                          Slovenia 1779           0
## 6659                   Solomon Islands 1779           0
## 6660                           Somalia 1779           0
## 6661                      South Africa 1779           0
## 6662                       South Korea 1779           0
## 6663                       South Sudan 1779           0
## 6664                             Spain 1779           0
## 6665                         Sri Lanka 1779           0
## 6666                             Sudan 1779           0
## 6667                          Suriname 1779           0
## 6668                         Swaziland 1779           0
## 6669                            Sweden 1779           0
## 6670                       Switzerland 1779           0
## 6671                             Syria 1779           0
## 6672                            Taiwan 1779           0
## 6673                        Tajikistan 1779           0
## 6674                          Tanzania 1779           0
## 6675                          Thailand 1779           0
## 6676                             Timor 1779           0
## 6677                              Togo 1779           0
## 6678                             Tonga 1779           0
## 6679               Trinidad and Tobago 1779           0
## 6680                           Tunisia 1779           0
## 6681                            Turkey 1779           0
## 6682                      Turkmenistan 1779           0
## 6683          Turks and Caicos Islands 1779           0
## 6684                            Tuvalu 1779           0
## 6685                            Uganda 1779           0
## 6686                           Ukraine 1779           0
## 6687              United Arab Emirates 1779           0
## 6688                    United Kingdom 1779   341349232
## 6689                     United States 1779           0
## 6690                           Uruguay 1779           0
## 6691                        Uzbekistan 1779           0
## 6692                           Vanuatu 1779           0
## 6693                         Venezuela 1779           0
## 6694                           Vietnam 1779           0
## 6695         Wallis and Futuna Islands 1779           0
## 6696                             World 1779   341349232
## 6697                             Yemen 1779           0
## 6698                            Zambia 1779           0
## 6699                          Zimbabwe 1779           0
## 6700                       Afghanistan 1780           0
## 6701                            Africa 1780           0
## 6702                           Albania 1780           0
## 6703                           Algeria 1780           0
## 6704                  Americas (other) 1780           0
## 6705                           Andorra 1780           0
## 6706                            Angola 1780           0
## 6707                          Anguilla 1780           0
## 6708               Antarctic Fisheries 1780           0
## 6709               Antigua and Barbuda 1780           0
## 6710                         Argentina 1780           0
## 6711                           Armenia 1780           0
## 6712                             Aruba 1780           0
## 6713          Asia and Pacific (other) 1780           0
## 6714                         Australia 1780           0
## 6715                           Austria 1780           0
## 6716                        Azerbaijan 1780           0
## 6717                           Bahamas 1780           0
## 6718                           Bahrain 1780           0
## 6719                        Bangladesh 1780           0
## 6720                          Barbados 1780           0
## 6721                           Belarus 1780           0
## 6722                           Belgium 1780           0
## 6723                            Belize 1780           0
## 6724                             Benin 1780           0
## 6725                           Bermuda 1780           0
## 6726                            Bhutan 1780           0
## 6727                           Bolivia 1780           0
## 6728   Bonaire Sint Eustatius and Saba 1780           0
## 6729            Bosnia and Herzegovina 1780           0
## 6730                          Botswana 1780           0
## 6731                            Brazil 1780           0
## 6732            British Virgin Islands 1780           0
## 6733                            Brunei 1780           0
## 6734                          Bulgaria 1780           0
## 6735                      Burkina Faso 1780           0
## 6736                           Burundi 1780           0
## 6737                          Cambodia 1780           0
## 6738                          Cameroon 1780           0
## 6739                            Canada 1780           0
## 6740                        Cape Verde 1780           0
## 6741                    Cayman Islands 1780           0
## 6742          Central African Republic 1780           0
## 6743                              Chad 1780           0
## 6744                             Chile 1780           0
## 6745                             China 1780           0
## 6746                  Christmas Island 1780           0
## 6747                          Colombia 1780           0
## 6748                           Comoros 1780           0
## 6749                             Congo 1780           0
## 6750                      Cook Islands 1780           0
## 6751                        Costa Rica 1780           0
## 6752                     Cote d'Ivoire 1780           0
## 6753                           Croatia 1780           0
## 6754                              Cuba 1780           0
## 6755                           Curacao 1780           0
## 6756                            Cyprus 1780           0
## 6757                    Czech Republic 1780           0
## 6758                    Czechoslovakia 1780           0
## 6759      Democratic Republic of Congo 1780           0
## 6760                           Denmark 1780           0
## 6761                          Djibouti 1780           0
## 6762                          Dominica 1780           0
## 6763                Dominican Republic 1780           0
## 6764                             EU-28 1780   356404608
## 6765                           Ecuador 1780           0
## 6766                             Egypt 1780           0
## 6767                       El Salvador 1780           0
## 6768                 Equatorial Guinea 1780           0
## 6769                           Eritrea 1780           0
## 6770                           Estonia 1780           0
## 6771                          Ethiopia 1780           0
## 6772                    Europe (other) 1780           0
## 6773                    Faeroe Islands 1780           0
## 6774                  Falkland Islands 1780           0
## 6775                              Fiji 1780           0
## 6776                           Finland 1780           0
## 6777                            France 1780           0
## 6778                     French Guiana 1780           0
## 6779                  French Polynesia 1780           0
## 6780                             Gabon 1780           0
## 6781                            Gambia 1780           0
## 6782                           Georgia 1780           0
## 6783                           Germany 1780           0
## 6784                             Ghana 1780           0
## 6785                         Gibraltar 1780           0
## 6786                            Greece 1780           0
## 6787                         Greenland 1780           0
## 6788                           Grenada 1780           0
## 6789                        Guadeloupe 1780           0
## 6790                         Guatemala 1780           0
## 6791                            Guinea 1780           0
## 6792                     Guinea-Bissau 1780           0
## 6793                            Guyana 1780           0
## 6794                             Haiti 1780           0
## 6795                          Honduras 1780           0
## 6796                         Hong Kong 1780           0
## 6797                           Hungary 1780           0
## 6798                           Iceland 1780           0
## 6799                             India 1780           0
## 6800                         Indonesia 1780           0
## 6801                              Iran 1780           0
## 6802                              Iraq 1780           0
## 6803                           Ireland 1780           0
## 6804                            Israel 1780           0
## 6805                             Italy 1780           0
## 6806                           Jamaica 1780           0
## 6807                             Japan 1780           0
## 6808                            Jordan 1780           0
## 6809                        Kazakhstan 1780           0
## 6810                             Kenya 1780           0
## 6811                          Kiribati 1780           0
## 6812                            Kuwait 1780           0
## 6813                        Kyrgysztan 1780           0
## 6814                        Kyrgyzstan 1780           0
## 6815                              Laos 1780           0
## 6816                            Latvia 1780           0
## 6817                           Lebanon 1780           0
## 6818                           Lesotho 1780           0
## 6819                           Liberia 1780           0
## 6820                             Libya 1780           0
## 6821                     Liechtenstein 1780           0
## 6822                         Lithuania 1780           0
## 6823                        Luxembourg 1780           0
## 6824                             Macao 1780           0
## 6825                         Macedonia 1780           0
## 6826                        Madagascar 1780           0
## 6827                            Malawi 1780           0
## 6828                          Malaysia 1780           0
## 6829                          Maldives 1780           0
## 6830                              Mali 1780           0
## 6831                             Malta 1780           0
## 6832                  Marshall Islands 1780           0
## 6833                        Martinique 1780           0
## 6834                        Mauritania 1780           0
## 6835                         Mauritius 1780           0
## 6836                            Mexico 1780           0
## 6837              Micronesia (country) 1780           0
## 6838                       Middle East 1780           0
## 6839                           Moldova 1780           0
## 6840                          Mongolia 1780           0
## 6841                        Montenegro 1780           0
## 6842                        Montserrat 1780           0
## 6843                           Morocco 1780           0
## 6844                        Mozambique 1780           0
## 6845                           Myanmar 1780           0
## 6846                           Namibia 1780           0
## 6847                             Nauru 1780           0
## 6848                             Nepal 1780           0
## 6849                       Netherlands 1780           0
## 6850                     New Caledonia 1780           0
## 6851                       New Zealand 1780           0
## 6852                         Nicaragua 1780           0
## 6853                             Niger 1780           0
## 6854                           Nigeria 1780           0
## 6855                              Niue 1780           0
## 6856                       North Korea 1780           0
## 6857                            Norway 1780           0
## 6858                              Oman 1780           0
## 6859                          Pakistan 1780           0
## 6860                             Palau 1780           0
## 6861                         Palestine 1780           0
## 6862                            Panama 1780           0
## 6863                  Papua New Guinea 1780           0
## 6864                          Paraguay 1780           0
## 6865                              Peru 1780           0
## 6866                       Philippines 1780           0
## 6867                            Poland 1780           0
## 6868                          Portugal 1780           0
## 6869                             Qatar 1780           0
## 6870                           Reunion 1780           0
## 6871                           Romania 1780           0
## 6872                            Russia 1780           0
## 6873                            Rwanda 1780           0
## 6874                      Saint Helena 1780           0
## 6875             Saint Kitts and Nevis 1780           0
## 6876                       Saint Lucia 1780           0
## 6877         Saint Pierre and Miquelon 1780           0
## 6878  Saint Vincent and the Grenadines 1780           0
## 6879                             Samoa 1780           0
## 6880             Sao Tome and Principe 1780           0
## 6881                      Saudi Arabia 1780           0
## 6882                           Senegal 1780           0
## 6883                            Serbia 1780           0
## 6884                        Seychelles 1780           0
## 6885                      Sierra Leone 1780           0
## 6886                         Singapore 1780           0
## 6887         Sint Maarten (Dutch part) 1780           0
## 6888                          Slovakia 1780           0
## 6889                          Slovenia 1780           0
## 6890                   Solomon Islands 1780           0
## 6891                           Somalia 1780           0
## 6892                      South Africa 1780           0
## 6893                       South Korea 1780           0
## 6894                       South Sudan 1780           0
## 6895                             Spain 1780           0
## 6896                         Sri Lanka 1780           0
## 6897                             Sudan 1780           0
## 6898                          Suriname 1780           0
## 6899                         Swaziland 1780           0
## 6900                            Sweden 1780           0
## 6901                       Switzerland 1780           0
## 6902                             Syria 1780           0
## 6903                            Taiwan 1780           0
## 6904                        Tajikistan 1780           0
## 6905                          Tanzania 1780           0
## 6906                          Thailand 1780           0
## 6907                             Timor 1780           0
## 6908                              Togo 1780           0
## 6909                             Tonga 1780           0
## 6910               Trinidad and Tobago 1780           0
## 6911                           Tunisia 1780           0
## 6912                            Turkey 1780           0
## 6913                      Turkmenistan 1780           0
## 6914          Turks and Caicos Islands 1780           0
## 6915                            Tuvalu 1780           0
## 6916                            Uganda 1780           0
## 6917                           Ukraine 1780           0
## 6918              United Arab Emirates 1780           0
## 6919                    United Kingdom 1780   356404608
## 6920                     United States 1780           0
## 6921                           Uruguay 1780           0
## 6922                        Uzbekistan 1780           0
## 6923                           Vanuatu 1780           0
## 6924                         Venezuela 1780           0
## 6925                           Vietnam 1780           0
## 6926         Wallis and Futuna Islands 1780           0
## 6927                             World 1780   356404608
## 6928                             Yemen 1780           0
## 6929                            Zambia 1780           0
## 6930                          Zimbabwe 1780           0
## 6931                       Afghanistan 1781           0
## 6932                            Africa 1781           0
## 6933                           Albania 1781           0
## 6934                           Algeria 1781           0
## 6935                  Americas (other) 1781           0
## 6936                           Andorra 1781           0
## 6937                            Angola 1781           0
## 6938                          Anguilla 1781           0
## 6939               Antarctic Fisheries 1781           0
## 6940               Antigua and Barbuda 1781           0
## 6941                         Argentina 1781           0
## 6942                           Armenia 1781           0
## 6943                             Aruba 1781           0
## 6944          Asia and Pacific (other) 1781           0
## 6945                         Australia 1781           0
## 6946                           Austria 1781           0
## 6947                        Azerbaijan 1781           0
## 6948                           Bahamas 1781           0
## 6949                           Bahrain 1781           0
## 6950                        Bangladesh 1781           0
## 6951                          Barbados 1781           0
## 6952                           Belarus 1781           0
## 6953                           Belgium 1781           0
## 6954                            Belize 1781           0
## 6955                             Benin 1781           0
## 6956                           Bermuda 1781           0
## 6957                            Bhutan 1781           0
## 6958                           Bolivia 1781           0
## 6959   Bonaire Sint Eustatius and Saba 1781           0
## 6960            Bosnia and Herzegovina 1781           0
## 6961                          Botswana 1781           0
## 6962                            Brazil 1781           0
## 6963            British Virgin Islands 1781           0
## 6964                            Brunei 1781           0
## 6965                          Bulgaria 1781           0
## 6966                      Burkina Faso 1781           0
## 6967                           Burundi 1781           0
## 6968                          Cambodia 1781           0
## 6969                          Cameroon 1781           0
## 6970                            Canada 1781           0
## 6971                        Cape Verde 1781           0
## 6972                    Cayman Islands 1781           0
## 6973          Central African Republic 1781           0
## 6974                              Chad 1781           0
## 6975                             Chile 1781           0
## 6976                             China 1781           0
## 6977                  Christmas Island 1781           0
## 6978                          Colombia 1781           0
## 6979                           Comoros 1781           0
## 6980                             Congo 1781           0
## 6981                      Cook Islands 1781           0
## 6982                        Costa Rica 1781           0
## 6983                     Cote d'Ivoire 1781           0
## 6984                           Croatia 1781           0
## 6985                              Cuba 1781           0
## 6986                           Curacao 1781           0
## 6987                            Cyprus 1781           0
## 6988                    Czech Republic 1781           0
## 6989                    Czechoslovakia 1781           0
## 6990      Democratic Republic of Congo 1781           0
## 6991                           Denmark 1781           0
## 6992                          Djibouti 1781           0
## 6993                          Dominica 1781           0
## 6994                Dominican Republic 1781           0
## 6995                             EU-28 1781   373248016
## 6996                           Ecuador 1781           0
## 6997                             Egypt 1781           0
## 6998                       El Salvador 1781           0
## 6999                 Equatorial Guinea 1781           0
## 7000                           Eritrea 1781           0
## 7001                           Estonia 1781           0
## 7002                          Ethiopia 1781           0
## 7003                    Europe (other) 1781           0
## 7004                    Faeroe Islands 1781           0
## 7005                  Falkland Islands 1781           0
## 7006                              Fiji 1781           0
## 7007                           Finland 1781           0
## 7008                            France 1781           0
## 7009                     French Guiana 1781           0
## 7010                  French Polynesia 1781           0
## 7011                             Gabon 1781           0
## 7012                            Gambia 1781           0
## 7013                           Georgia 1781           0
## 7014                           Germany 1781           0
## 7015                             Ghana 1781           0
## 7016                         Gibraltar 1781           0
## 7017                            Greece 1781           0
## 7018                         Greenland 1781           0
## 7019                           Grenada 1781           0
## 7020                        Guadeloupe 1781           0
## 7021                         Guatemala 1781           0
## 7022                            Guinea 1781           0
## 7023                     Guinea-Bissau 1781           0
## 7024                            Guyana 1781           0
## 7025                             Haiti 1781           0
## 7026                          Honduras 1781           0
## 7027                         Hong Kong 1781           0
## 7028                           Hungary 1781           0
## 7029                           Iceland 1781           0
## 7030                             India 1781           0
## 7031                         Indonesia 1781           0
## 7032                              Iran 1781           0
## 7033                              Iraq 1781           0
## 7034                           Ireland 1781           0
## 7035                            Israel 1781           0
## 7036                             Italy 1781           0
## 7037                           Jamaica 1781           0
## 7038                             Japan 1781           0
## 7039                            Jordan 1781           0
## 7040                        Kazakhstan 1781           0
## 7041                             Kenya 1781           0
## 7042                          Kiribati 1781           0
## 7043                            Kuwait 1781           0
## 7044                        Kyrgysztan 1781           0
## 7045                        Kyrgyzstan 1781           0
## 7046                              Laos 1781           0
## 7047                            Latvia 1781           0
## 7048                           Lebanon 1781           0
## 7049                           Lesotho 1781           0
## 7050                           Liberia 1781           0
## 7051                             Libya 1781           0
## 7052                     Liechtenstein 1781           0
## 7053                         Lithuania 1781           0
## 7054                        Luxembourg 1781           0
## 7055                             Macao 1781           0
## 7056                         Macedonia 1781           0
## 7057                        Madagascar 1781           0
## 7058                            Malawi 1781           0
## 7059                          Malaysia 1781           0
## 7060                          Maldives 1781           0
## 7061                              Mali 1781           0
## 7062                             Malta 1781           0
## 7063                  Marshall Islands 1781           0
## 7064                        Martinique 1781           0
## 7065                        Mauritania 1781           0
## 7066                         Mauritius 1781           0
## 7067                            Mexico 1781           0
## 7068              Micronesia (country) 1781           0
## 7069                       Middle East 1781           0
## 7070                           Moldova 1781           0
## 7071                          Mongolia 1781           0
## 7072                        Montenegro 1781           0
## 7073                        Montserrat 1781           0
## 7074                           Morocco 1781           0
## 7075                        Mozambique 1781           0
## 7076                           Myanmar 1781           0
## 7077                           Namibia 1781           0
## 7078                             Nauru 1781           0
## 7079                             Nepal 1781           0
## 7080                       Netherlands 1781           0
## 7081                     New Caledonia 1781           0
## 7082                       New Zealand 1781           0
## 7083                         Nicaragua 1781           0
## 7084                             Niger 1781           0
## 7085                           Nigeria 1781           0
## 7086                              Niue 1781           0
## 7087                       North Korea 1781           0
## 7088                            Norway 1781           0
## 7089                              Oman 1781           0
## 7090                          Pakistan 1781           0
## 7091                             Palau 1781           0
## 7092                         Palestine 1781           0
## 7093                            Panama 1781           0
## 7094                  Papua New Guinea 1781           0
## 7095                          Paraguay 1781           0
## 7096                              Peru 1781           0
## 7097                       Philippines 1781           0
## 7098                            Poland 1781           0
## 7099                          Portugal 1781           0
## 7100                             Qatar 1781           0
## 7101                           Reunion 1781           0
## 7102                           Romania 1781           0
## 7103                            Russia 1781           0
## 7104                            Rwanda 1781           0
## 7105                      Saint Helena 1781           0
## 7106             Saint Kitts and Nevis 1781           0
## 7107                       Saint Lucia 1781           0
## 7108         Saint Pierre and Miquelon 1781           0
## 7109  Saint Vincent and the Grenadines 1781           0
## 7110                             Samoa 1781           0
## 7111             Sao Tome and Principe 1781           0
## 7112                      Saudi Arabia 1781           0
## 7113                           Senegal 1781           0
## 7114                            Serbia 1781           0
## 7115                        Seychelles 1781           0
## 7116                      Sierra Leone 1781           0
## 7117                         Singapore 1781           0
## 7118         Sint Maarten (Dutch part) 1781           0
## 7119                          Slovakia 1781           0
## 7120                          Slovenia 1781           0
## 7121                   Solomon Islands 1781           0
## 7122                           Somalia 1781           0
## 7123                      South Africa 1781           0
## 7124                       South Korea 1781           0
## 7125                       South Sudan 1781           0
## 7126                             Spain 1781           0
## 7127                         Sri Lanka 1781           0
## 7128                             Sudan 1781           0
## 7129                          Suriname 1781           0
## 7130                         Swaziland 1781           0
## 7131                            Sweden 1781           0
## 7132                       Switzerland 1781           0
## 7133                             Syria 1781           0
## 7134                            Taiwan 1781           0
## 7135                        Tajikistan 1781           0
## 7136                          Tanzania 1781           0
## 7137                          Thailand 1781           0
## 7138                             Timor 1781           0
## 7139                              Togo 1781           0
## 7140                             Tonga 1781           0
## 7141               Trinidad and Tobago 1781           0
## 7142                           Tunisia 1781           0
## 7143                            Turkey 1781           0
## 7144                      Turkmenistan 1781           0
## 7145          Turks and Caicos Islands 1781           0
## 7146                            Tuvalu 1781           0
## 7147                            Uganda 1781           0
## 7148                           Ukraine 1781           0
## 7149              United Arab Emirates 1781           0
## 7150                    United Kingdom 1781   373248016
## 7151                     United States 1781           0
## 7152                           Uruguay 1781           0
## 7153                        Uzbekistan 1781           0
## 7154                           Vanuatu 1781           0
## 7155                         Venezuela 1781           0
## 7156                           Vietnam 1781           0
## 7157         Wallis and Futuna Islands 1781           0
## 7158                             World 1781   373248016
## 7159                             Yemen 1781           0
## 7160                            Zambia 1781           0
## 7161                          Zimbabwe 1781           0
## 7162                       Afghanistan 1782           0
## 7163                            Africa 1782           0
## 7164                           Albania 1782           0
## 7165                           Algeria 1782           0
## 7166                  Americas (other) 1782           0
## 7167                           Andorra 1782           0
## 7168                            Angola 1782           0
## 7169                          Anguilla 1782           0
## 7170               Antarctic Fisheries 1782           0
## 7171               Antigua and Barbuda 1782           0
## 7172                         Argentina 1782           0
## 7173                           Armenia 1782           0
## 7174                             Aruba 1782           0
## 7175          Asia and Pacific (other) 1782           0
## 7176                         Australia 1782           0
## 7177                           Austria 1782           0
## 7178                        Azerbaijan 1782           0
## 7179                           Bahamas 1782           0
## 7180                           Bahrain 1782           0
## 7181                        Bangladesh 1782           0
## 7182                          Barbados 1782           0
## 7183                           Belarus 1782           0
## 7184                           Belgium 1782           0
## 7185                            Belize 1782           0
## 7186                             Benin 1782           0
## 7187                           Bermuda 1782           0
## 7188                            Bhutan 1782           0
## 7189                           Bolivia 1782           0
## 7190   Bonaire Sint Eustatius and Saba 1782           0
## 7191            Bosnia and Herzegovina 1782           0
## 7192                          Botswana 1782           0
## 7193                            Brazil 1782           0
## 7194            British Virgin Islands 1782           0
## 7195                            Brunei 1782           0
## 7196                          Bulgaria 1782           0
## 7197                      Burkina Faso 1782           0
## 7198                           Burundi 1782           0
## 7199                          Cambodia 1782           0
## 7200                          Cameroon 1782           0
## 7201                            Canada 1782           0
## 7202                        Cape Verde 1782           0
## 7203                    Cayman Islands 1782           0
## 7204          Central African Republic 1782           0
## 7205                              Chad 1782           0
## 7206                             Chile 1782           0
## 7207                             China 1782           0
## 7208                  Christmas Island 1782           0
## 7209                          Colombia 1782           0
## 7210                           Comoros 1782           0
## 7211                             Congo 1782           0
## 7212                      Cook Islands 1782           0
## 7213                        Costa Rica 1782           0
## 7214                     Cote d'Ivoire 1782           0
## 7215                           Croatia 1782           0
## 7216                              Cuba 1782           0
## 7217                           Curacao 1782           0
## 7218                            Cyprus 1782           0
## 7219                    Czech Republic 1782           0
## 7220                    Czechoslovakia 1782           0
## 7221      Democratic Republic of Congo 1782           0
## 7222                           Denmark 1782           0
## 7223                          Djibouti 1782           0
## 7224                          Dominica 1782           0
## 7225                Dominican Republic 1782           0
## 7226                             EU-28 1782   390095088
## 7227                           Ecuador 1782           0
## 7228                             Egypt 1782           0
## 7229                       El Salvador 1782           0
## 7230                 Equatorial Guinea 1782           0
## 7231                           Eritrea 1782           0
## 7232                           Estonia 1782           0
## 7233                          Ethiopia 1782           0
## 7234                    Europe (other) 1782           0
## 7235                    Faeroe Islands 1782           0
## 7236                  Falkland Islands 1782           0
## 7237                              Fiji 1782           0
## 7238                           Finland 1782           0
## 7239                            France 1782           0
## 7240                     French Guiana 1782           0
## 7241                  French Polynesia 1782           0
## 7242                             Gabon 1782           0
## 7243                            Gambia 1782           0
## 7244                           Georgia 1782           0
## 7245                           Germany 1782           0
## 7246                             Ghana 1782           0
## 7247                         Gibraltar 1782           0
## 7248                            Greece 1782           0
## 7249                         Greenland 1782           0
## 7250                           Grenada 1782           0
## 7251                        Guadeloupe 1782           0
## 7252                         Guatemala 1782           0
## 7253                            Guinea 1782           0
## 7254                     Guinea-Bissau 1782           0
## 7255                            Guyana 1782           0
## 7256                             Haiti 1782           0
## 7257                          Honduras 1782           0
## 7258                         Hong Kong 1782           0
## 7259                           Hungary 1782           0
## 7260                           Iceland 1782           0
## 7261                             India 1782           0
## 7262                         Indonesia 1782           0
## 7263                              Iran 1782           0
## 7264                              Iraq 1782           0
## 7265                           Ireland 1782           0
## 7266                            Israel 1782           0
## 7267                             Italy 1782           0
## 7268                           Jamaica 1782           0
## 7269                             Japan 1782           0
## 7270                            Jordan 1782           0
## 7271                        Kazakhstan 1782           0
## 7272                             Kenya 1782           0
## 7273                          Kiribati 1782           0
## 7274                            Kuwait 1782           0
## 7275                        Kyrgysztan 1782           0
## 7276                        Kyrgyzstan 1782           0
## 7277                              Laos 1782           0
## 7278                            Latvia 1782           0
## 7279                           Lebanon 1782           0
## 7280                           Lesotho 1782           0
## 7281                           Liberia 1782           0
## 7282                             Libya 1782           0
## 7283                     Liechtenstein 1782           0
## 7284                         Lithuania 1782           0
## 7285                        Luxembourg 1782           0
## 7286                             Macao 1782           0
## 7287                         Macedonia 1782           0
## 7288                        Madagascar 1782           0
## 7289                            Malawi 1782           0
## 7290                          Malaysia 1782           0
## 7291                          Maldives 1782           0
## 7292                              Mali 1782           0
## 7293                             Malta 1782           0
## 7294                  Marshall Islands 1782           0
## 7295                        Martinique 1782           0
## 7296                        Mauritania 1782           0
## 7297                         Mauritius 1782           0
## 7298                            Mexico 1782           0
## 7299              Micronesia (country) 1782           0
## 7300                       Middle East 1782           0
## 7301                           Moldova 1782           0
## 7302                          Mongolia 1782           0
## 7303                        Montenegro 1782           0
## 7304                        Montserrat 1782           0
## 7305                           Morocco 1782           0
## 7306                        Mozambique 1782           0
## 7307                           Myanmar 1782           0
## 7308                           Namibia 1782           0
## 7309                             Nauru 1782           0
## 7310                             Nepal 1782           0
## 7311                       Netherlands 1782           0
## 7312                     New Caledonia 1782           0
## 7313                       New Zealand 1782           0
## 7314                         Nicaragua 1782           0
## 7315                             Niger 1782           0
## 7316                           Nigeria 1782           0
## 7317                              Niue 1782           0
## 7318                       North Korea 1782           0
## 7319                            Norway 1782           0
## 7320                              Oman 1782           0
## 7321                          Pakistan 1782           0
## 7322                             Palau 1782           0
## 7323                         Palestine 1782           0
## 7324                            Panama 1782           0
## 7325                  Papua New Guinea 1782           0
## 7326                          Paraguay 1782           0
## 7327                              Peru 1782           0
## 7328                       Philippines 1782           0
## 7329                            Poland 1782           0
## 7330                          Portugal 1782           0
## 7331                             Qatar 1782           0
## 7332                           Reunion 1782           0
## 7333                           Romania 1782           0
## 7334                            Russia 1782           0
## 7335                            Rwanda 1782           0
## 7336                      Saint Helena 1782           0
## 7337             Saint Kitts and Nevis 1782           0
## 7338                       Saint Lucia 1782           0
## 7339         Saint Pierre and Miquelon 1782           0
## 7340  Saint Vincent and the Grenadines 1782           0
## 7341                             Samoa 1782           0
## 7342             Sao Tome and Principe 1782           0
## 7343                      Saudi Arabia 1782           0
## 7344                           Senegal 1782           0
## 7345                            Serbia 1782           0
## 7346                        Seychelles 1782           0
## 7347                      Sierra Leone 1782           0
## 7348                         Singapore 1782           0
## 7349         Sint Maarten (Dutch part) 1782           0
## 7350                          Slovakia 1782           0
## 7351                          Slovenia 1782           0
## 7352                   Solomon Islands 1782           0
## 7353                           Somalia 1782           0
## 7354                      South Africa 1782           0
## 7355                       South Korea 1782           0
## 7356                       South Sudan 1782           0
## 7357                             Spain 1782           0
## 7358                         Sri Lanka 1782           0
## 7359                             Sudan 1782           0
## 7360                          Suriname 1782           0
## 7361                         Swaziland 1782           0
## 7362                            Sweden 1782           0
## 7363                       Switzerland 1782           0
## 7364                             Syria 1782           0
## 7365                            Taiwan 1782           0
## 7366                        Tajikistan 1782           0
## 7367                          Tanzania 1782           0
## 7368                          Thailand 1782           0
## 7369                             Timor 1782           0
## 7370                              Togo 1782           0
## 7371                             Tonga 1782           0
## 7372               Trinidad and Tobago 1782           0
## 7373                           Tunisia 1782           0
## 7374                            Turkey 1782           0
## 7375                      Turkmenistan 1782           0
## 7376          Turks and Caicos Islands 1782           0
## 7377                            Tuvalu 1782           0
## 7378                            Uganda 1782           0
## 7379                           Ukraine 1782           0
## 7380              United Arab Emirates 1782           0
## 7381                    United Kingdom 1782   390095088
## 7382                     United States 1782           0
## 7383                           Uruguay 1782           0
## 7384                        Uzbekistan 1782           0
## 7385                           Vanuatu 1782           0
## 7386                         Venezuela 1782           0
## 7387                           Vietnam 1782           0
## 7388         Wallis and Futuna Islands 1782           0
## 7389                             World 1782   390095088
## 7390                             Yemen 1782           0
## 7391                            Zambia 1782           0
## 7392                          Zimbabwe 1782           0
## 7393                       Afghanistan 1783           0
## 7394                            Africa 1783           0
## 7395                           Albania 1783           0
## 7396                           Algeria 1783           0
## 7397                  Americas (other) 1783           0
## 7398                           Andorra 1783           0
## 7399                            Angola 1783           0
## 7400                          Anguilla 1783           0
## 7401               Antarctic Fisheries 1783           0
## 7402               Antigua and Barbuda 1783           0
## 7403                         Argentina 1783           0
## 7404                           Armenia 1783           0
## 7405                             Aruba 1783           0
## 7406          Asia and Pacific (other) 1783           0
## 7407                         Australia 1783           0
## 7408                           Austria 1783           0
## 7409                        Azerbaijan 1783           0
## 7410                           Bahamas 1783           0
## 7411                           Bahrain 1783           0
## 7412                        Bangladesh 1783           0
## 7413                          Barbados 1783           0
## 7414                           Belarus 1783           0
## 7415                           Belgium 1783           0
## 7416                            Belize 1783           0
## 7417                             Benin 1783           0
## 7418                           Bermuda 1783           0
## 7419                            Bhutan 1783           0
## 7420                           Bolivia 1783           0
## 7421   Bonaire Sint Eustatius and Saba 1783           0
## 7422            Bosnia and Herzegovina 1783           0
## 7423                          Botswana 1783           0
## 7424                            Brazil 1783           0
## 7425            British Virgin Islands 1783           0
## 7426                            Brunei 1783           0
## 7427                          Bulgaria 1783           0
## 7428                      Burkina Faso 1783           0
## 7429                           Burundi 1783           0
## 7430                          Cambodia 1783           0
## 7431                          Cameroon 1783           0
## 7432                            Canada 1783           0
## 7433                        Cape Verde 1783           0
## 7434                    Cayman Islands 1783           0
## 7435          Central African Republic 1783           0
## 7436                              Chad 1783           0
## 7437                             Chile 1783           0
## 7438                             China 1783           0
## 7439                  Christmas Island 1783           0
## 7440                          Colombia 1783           0
## 7441                           Comoros 1783           0
## 7442                             Congo 1783           0
## 7443                      Cook Islands 1783           0
## 7444                        Costa Rica 1783           0
## 7445                     Cote d'Ivoire 1783           0
## 7446                           Croatia 1783           0
## 7447                              Cuba 1783           0
## 7448                           Curacao 1783           0
## 7449                            Cyprus 1783           0
## 7450                    Czech Republic 1783           0
## 7451                    Czechoslovakia 1783           0
## 7452      Democratic Republic of Congo 1783           0
## 7453                           Denmark 1783           0
## 7454                          Djibouti 1783           0
## 7455                          Dominica 1783           0
## 7456                Dominican Republic 1783           0
## 7457                             EU-28 1783   406949488
## 7458                           Ecuador 1783           0
## 7459                             Egypt 1783           0
## 7460                       El Salvador 1783           0
## 7461                 Equatorial Guinea 1783           0
## 7462                           Eritrea 1783           0
## 7463                           Estonia 1783           0
## 7464                          Ethiopia 1783           0
## 7465                    Europe (other) 1783           0
## 7466                    Faeroe Islands 1783           0
## 7467                  Falkland Islands 1783           0
## 7468                              Fiji 1783           0
## 7469                           Finland 1783           0
## 7470                            France 1783           0
## 7471                     French Guiana 1783           0
## 7472                  French Polynesia 1783           0
## 7473                             Gabon 1783           0
## 7474                            Gambia 1783           0
## 7475                           Georgia 1783           0
## 7476                           Germany 1783           0
## 7477                             Ghana 1783           0
## 7478                         Gibraltar 1783           0
## 7479                            Greece 1783           0
## 7480                         Greenland 1783           0
## 7481                           Grenada 1783           0
## 7482                        Guadeloupe 1783           0
## 7483                         Guatemala 1783           0
## 7484                            Guinea 1783           0
## 7485                     Guinea-Bissau 1783           0
## 7486                            Guyana 1783           0
## 7487                             Haiti 1783           0
## 7488                          Honduras 1783           0
## 7489                         Hong Kong 1783           0
## 7490                           Hungary 1783           0
## 7491                           Iceland 1783           0
## 7492                             India 1783           0
## 7493                         Indonesia 1783           0
## 7494                              Iran 1783           0
## 7495                              Iraq 1783           0
## 7496                           Ireland 1783           0
## 7497                            Israel 1783           0
## 7498                             Italy 1783           0
## 7499                           Jamaica 1783           0
## 7500                             Japan 1783           0
## 7501                            Jordan 1783           0
## 7502                        Kazakhstan 1783           0
## 7503                             Kenya 1783           0
## 7504                          Kiribati 1783           0
## 7505                            Kuwait 1783           0
## 7506                        Kyrgysztan 1783           0
## 7507                        Kyrgyzstan 1783           0
## 7508                              Laos 1783           0
## 7509                            Latvia 1783           0
## 7510                           Lebanon 1783           0
## 7511                           Lesotho 1783           0
## 7512                           Liberia 1783           0
## 7513                             Libya 1783           0
## 7514                     Liechtenstein 1783           0
## 7515                         Lithuania 1783           0
## 7516                        Luxembourg 1783           0
## 7517                             Macao 1783           0
## 7518                         Macedonia 1783           0
## 7519                        Madagascar 1783           0
## 7520                            Malawi 1783           0
## 7521                          Malaysia 1783           0
## 7522                          Maldives 1783           0
## 7523                              Mali 1783           0
## 7524                             Malta 1783           0
## 7525                  Marshall Islands 1783           0
## 7526                        Martinique 1783           0
## 7527                        Mauritania 1783           0
## 7528                         Mauritius 1783           0
## 7529                            Mexico 1783           0
## 7530              Micronesia (country) 1783           0
## 7531                       Middle East 1783           0
## 7532                           Moldova 1783           0
## 7533                          Mongolia 1783           0
## 7534                        Montenegro 1783           0
## 7535                        Montserrat 1783           0
## 7536                           Morocco 1783           0
## 7537                        Mozambique 1783           0
## 7538                           Myanmar 1783           0
## 7539                           Namibia 1783           0
## 7540                             Nauru 1783           0
## 7541                             Nepal 1783           0
## 7542                       Netherlands 1783           0
## 7543                     New Caledonia 1783           0
## 7544                       New Zealand 1783           0
## 7545                         Nicaragua 1783           0
## 7546                             Niger 1783           0
## 7547                           Nigeria 1783           0
## 7548                              Niue 1783           0
## 7549                       North Korea 1783           0
## 7550                            Norway 1783           0
## 7551                              Oman 1783           0
## 7552                          Pakistan 1783           0
## 7553                             Palau 1783           0
## 7554                         Palestine 1783           0
## 7555                            Panama 1783           0
## 7556                  Papua New Guinea 1783           0
## 7557                          Paraguay 1783           0
## 7558                              Peru 1783           0
## 7559                       Philippines 1783           0
## 7560                            Poland 1783           0
## 7561                          Portugal 1783           0
## 7562                             Qatar 1783           0
## 7563                           Reunion 1783           0
## 7564                           Romania 1783           0
## 7565                            Russia 1783           0
## 7566                            Rwanda 1783           0
## 7567                      Saint Helena 1783           0
## 7568             Saint Kitts and Nevis 1783           0
## 7569                       Saint Lucia 1783           0
## 7570         Saint Pierre and Miquelon 1783           0
## 7571  Saint Vincent and the Grenadines 1783           0
## 7572                             Samoa 1783           0
## 7573             Sao Tome and Principe 1783           0
## 7574                      Saudi Arabia 1783           0
## 7575                           Senegal 1783           0
## 7576                            Serbia 1783           0
## 7577                        Seychelles 1783           0
## 7578                      Sierra Leone 1783           0
## 7579                         Singapore 1783           0
## 7580         Sint Maarten (Dutch part) 1783           0
## 7581                          Slovakia 1783           0
## 7582                          Slovenia 1783           0
## 7583                   Solomon Islands 1783           0
## 7584                           Somalia 1783           0
## 7585                      South Africa 1783           0
## 7586                       South Korea 1783           0
## 7587                       South Sudan 1783           0
## 7588                             Spain 1783           0
## 7589                         Sri Lanka 1783           0
## 7590                             Sudan 1783           0
## 7591                          Suriname 1783           0
## 7592                         Swaziland 1783           0
## 7593                            Sweden 1783           0
## 7594                       Switzerland 1783           0
## 7595                             Syria 1783           0
## 7596                            Taiwan 1783           0
## 7597                        Tajikistan 1783           0
## 7598                          Tanzania 1783           0
## 7599                          Thailand 1783           0
## 7600                             Timor 1783           0
## 7601                              Togo 1783           0
## 7602                             Tonga 1783           0
## 7603               Trinidad and Tobago 1783           0
## 7604                           Tunisia 1783           0
## 7605                            Turkey 1783           0
## 7606                      Turkmenistan 1783           0
## 7607          Turks and Caicos Islands 1783           0
## 7608                            Tuvalu 1783           0
## 7609                            Uganda 1783           0
## 7610                           Ukraine 1783           0
## 7611              United Arab Emirates 1783           0
## 7612                    United Kingdom 1783   406949488
## 7613                     United States 1783           0
## 7614                           Uruguay 1783           0
## 7615                        Uzbekistan 1783           0
## 7616                           Vanuatu 1783           0
## 7617                         Venezuela 1783           0
## 7618                           Vietnam 1783           0
## 7619         Wallis and Futuna Islands 1783           0
## 7620                             World 1783   406949488
## 7621                             Yemen 1783           0
## 7622                            Zambia 1783           0
## 7623                          Zimbabwe 1783           0
## 7624                       Afghanistan 1784           0
## 7625                            Africa 1784           0
## 7626                           Albania 1784           0
## 7627                           Algeria 1784           0
## 7628                  Americas (other) 1784           0
## 7629                           Andorra 1784           0
## 7630                            Angola 1784           0
## 7631                          Anguilla 1784           0
## 7632               Antarctic Fisheries 1784           0
## 7633               Antigua and Barbuda 1784           0
## 7634                         Argentina 1784           0
## 7635                           Armenia 1784           0
## 7636                             Aruba 1784           0
## 7637          Asia and Pacific (other) 1784           0
## 7638                         Australia 1784           0
## 7639                           Austria 1784           0
## 7640                        Azerbaijan 1784           0
## 7641                           Bahamas 1784           0
## 7642                           Bahrain 1784           0
## 7643                        Bangladesh 1784           0
## 7644                          Barbados 1784           0
## 7645                           Belarus 1784           0
## 7646                           Belgium 1784           0
## 7647                            Belize 1784           0
## 7648                             Benin 1784           0
## 7649                           Bermuda 1784           0
## 7650                            Bhutan 1784           0
## 7651                           Bolivia 1784           0
## 7652   Bonaire Sint Eustatius and Saba 1784           0
## 7653            Bosnia and Herzegovina 1784           0
## 7654                          Botswana 1784           0
## 7655                            Brazil 1784           0
## 7656            British Virgin Islands 1784           0
## 7657                            Brunei 1784           0
## 7658                          Bulgaria 1784           0
## 7659                      Burkina Faso 1784           0
## 7660                           Burundi 1784           0
## 7661                          Cambodia 1784           0
## 7662                          Cameroon 1784           0
## 7663                            Canada 1784           0
## 7664                        Cape Verde 1784           0
## 7665                    Cayman Islands 1784           0
## 7666          Central African Republic 1784           0
## 7667                              Chad 1784           0
## 7668                             Chile 1784           0
## 7669                             China 1784           0
## 7670                  Christmas Island 1784           0
## 7671                          Colombia 1784           0
## 7672                           Comoros 1784           0
## 7673                             Congo 1784           0
## 7674                      Cook Islands 1784           0
## 7675                        Costa Rica 1784           0
## 7676                     Cote d'Ivoire 1784           0
## 7677                           Croatia 1784           0
## 7678                              Cuba 1784           0
## 7679                           Curacao 1784           0
## 7680                            Cyprus 1784           0
## 7681                    Czech Republic 1784           0
## 7682                    Czechoslovakia 1784           0
## 7683      Democratic Republic of Congo 1784           0
## 7684                           Denmark 1784           0
## 7685                          Djibouti 1784           0
## 7686                          Dominica 1784           0
## 7687                Dominican Republic 1784           0
## 7688                             EU-28 1784   423807552
## 7689                           Ecuador 1784           0
## 7690                             Egypt 1784           0
## 7691                       El Salvador 1784           0
## 7692                 Equatorial Guinea 1784           0
## 7693                           Eritrea 1784           0
## 7694                           Estonia 1784           0
## 7695                          Ethiopia 1784           0
## 7696                    Europe (other) 1784           0
## 7697                    Faeroe Islands 1784           0
## 7698                  Falkland Islands 1784           0
## 7699                              Fiji 1784           0
## 7700                           Finland 1784           0
## 7701                            France 1784           0
## 7702                     French Guiana 1784           0
## 7703                  French Polynesia 1784           0
## 7704                             Gabon 1784           0
## 7705                            Gambia 1784           0
## 7706                           Georgia 1784           0
## 7707                           Germany 1784           0
## 7708                             Ghana 1784           0
## 7709                         Gibraltar 1784           0
## 7710                            Greece 1784           0
## 7711                         Greenland 1784           0
## 7712                           Grenada 1784           0
## 7713                        Guadeloupe 1784           0
## 7714                         Guatemala 1784           0
## 7715                            Guinea 1784           0
## 7716                     Guinea-Bissau 1784           0
## 7717                            Guyana 1784           0
## 7718                             Haiti 1784           0
## 7719                          Honduras 1784           0
## 7720                         Hong Kong 1784           0
## 7721                           Hungary 1784           0
## 7722                           Iceland 1784           0
## 7723                             India 1784           0
## 7724                         Indonesia 1784           0
## 7725                              Iran 1784           0
## 7726                              Iraq 1784           0
## 7727                           Ireland 1784           0
## 7728                            Israel 1784           0
## 7729                             Italy 1784           0
## 7730                           Jamaica 1784           0
## 7731                             Japan 1784           0
## 7732                            Jordan 1784           0
## 7733                        Kazakhstan 1784           0
## 7734                             Kenya 1784           0
## 7735                          Kiribati 1784           0
## 7736                            Kuwait 1784           0
## 7737                        Kyrgysztan 1784           0
## 7738                        Kyrgyzstan 1784           0
## 7739                              Laos 1784           0
## 7740                            Latvia 1784           0
## 7741                           Lebanon 1784           0
## 7742                           Lesotho 1784           0
## 7743                           Liberia 1784           0
## 7744                             Libya 1784           0
## 7745                     Liechtenstein 1784           0
## 7746                         Lithuania 1784           0
## 7747                        Luxembourg 1784           0
## 7748                             Macao 1784           0
## 7749                         Macedonia 1784           0
## 7750                        Madagascar 1784           0
## 7751                            Malawi 1784           0
## 7752                          Malaysia 1784           0
## 7753                          Maldives 1784           0
## 7754                              Mali 1784           0
## 7755                             Malta 1784           0
## 7756                  Marshall Islands 1784           0
## 7757                        Martinique 1784           0
## 7758                        Mauritania 1784           0
## 7759                         Mauritius 1784           0
## 7760                            Mexico 1784           0
## 7761              Micronesia (country) 1784           0
## 7762                       Middle East 1784           0
## 7763                           Moldova 1784           0
## 7764                          Mongolia 1784           0
## 7765                        Montenegro 1784           0
## 7766                        Montserrat 1784           0
## 7767                           Morocco 1784           0
## 7768                        Mozambique 1784           0
## 7769                           Myanmar 1784           0
## 7770                           Namibia 1784           0
## 7771                             Nauru 1784           0
## 7772                             Nepal 1784           0
## 7773                       Netherlands 1784           0
## 7774                     New Caledonia 1784           0
## 7775                       New Zealand 1784           0
## 7776                         Nicaragua 1784           0
## 7777                             Niger 1784           0
## 7778                           Nigeria 1784           0
## 7779                              Niue 1784           0
## 7780                       North Korea 1784           0
## 7781                            Norway 1784           0
## 7782                              Oman 1784           0
## 7783                          Pakistan 1784           0
## 7784                             Palau 1784           0
## 7785                         Palestine 1784           0
## 7786                            Panama 1784           0
## 7787                  Papua New Guinea 1784           0
## 7788                          Paraguay 1784           0
## 7789                              Peru 1784           0
## 7790                       Philippines 1784           0
## 7791                            Poland 1784           0
## 7792                          Portugal 1784           0
## 7793                             Qatar 1784           0
## 7794                           Reunion 1784           0
## 7795                           Romania 1784           0
## 7796                            Russia 1784           0
## 7797                            Rwanda 1784           0
## 7798                      Saint Helena 1784           0
## 7799             Saint Kitts and Nevis 1784           0
## 7800                       Saint Lucia 1784           0
## 7801         Saint Pierre and Miquelon 1784           0
## 7802  Saint Vincent and the Grenadines 1784           0
## 7803                             Samoa 1784           0
## 7804             Sao Tome and Principe 1784           0
## 7805                      Saudi Arabia 1784           0
## 7806                           Senegal 1784           0
## 7807                            Serbia 1784           0
## 7808                        Seychelles 1784           0
## 7809                      Sierra Leone 1784           0
## 7810                         Singapore 1784           0
## 7811         Sint Maarten (Dutch part) 1784           0
## 7812                          Slovakia 1784           0
## 7813                          Slovenia 1784           0
## 7814                   Solomon Islands 1784           0
## 7815                           Somalia 1784           0
## 7816                      South Africa 1784           0
## 7817                       South Korea 1784           0
## 7818                       South Sudan 1784           0
## 7819                             Spain 1784           0
## 7820                         Sri Lanka 1784           0
## 7821                             Sudan 1784           0
## 7822                          Suriname 1784           0
## 7823                         Swaziland 1784           0
## 7824                            Sweden 1784           0
## 7825                       Switzerland 1784           0
## 7826                             Syria 1784           0
## 7827                            Taiwan 1784           0
## 7828                        Tajikistan 1784           0
## 7829                          Tanzania 1784           0
## 7830                          Thailand 1784           0
## 7831                             Timor 1784           0
## 7832                              Togo 1784           0
## 7833                             Tonga 1784           0
## 7834               Trinidad and Tobago 1784           0
## 7835                           Tunisia 1784           0
## 7836                            Turkey 1784           0
## 7837                      Turkmenistan 1784           0
## 7838          Turks and Caicos Islands 1784           0
## 7839                            Tuvalu 1784           0
## 7840                            Uganda 1784           0
## 7841                           Ukraine 1784           0
## 7842              United Arab Emirates 1784           0
## 7843                    United Kingdom 1784   423807552
## 7844                     United States 1784           0
## 7845                           Uruguay 1784           0
## 7846                        Uzbekistan 1784           0
## 7847                           Vanuatu 1784           0
## 7848                         Venezuela 1784           0
## 7849                           Vietnam 1784           0
## 7850         Wallis and Futuna Islands 1784           0
## 7851                             World 1784   423807552
## 7852                             Yemen 1784           0
## 7853                            Zambia 1784           0
## 7854                          Zimbabwe 1784           0
## 7855                       Afghanistan 1785           0
## 7856                            Africa 1785           0
## 7857                           Albania 1785           0
## 7858                           Algeria 1785           0
## 7859                  Americas (other) 1785        3664
## 7860                           Andorra 1785           0
## 7861                            Angola 1785           0
## 7862                          Anguilla 1785           0
## 7863               Antarctic Fisheries 1785           0
## 7864               Antigua and Barbuda 1785           0
## 7865                         Argentina 1785           0
## 7866                           Armenia 1785           0
## 7867                             Aruba 1785           0
## 7868          Asia and Pacific (other) 1785           0
## 7869                         Australia 1785           0
## 7870                           Austria 1785           0
## 7871                        Azerbaijan 1785           0
## 7872                           Bahamas 1785           0
## 7873                           Bahrain 1785           0
## 7874                        Bangladesh 1785           0
## 7875                          Barbados 1785           0
## 7876                           Belarus 1785           0
## 7877                           Belgium 1785           0
## 7878                            Belize 1785           0
## 7879                             Benin 1785           0
## 7880                           Bermuda 1785           0
## 7881                            Bhutan 1785           0
## 7882                           Bolivia 1785           0
## 7883   Bonaire Sint Eustatius and Saba 1785           0
## 7884            Bosnia and Herzegovina 1785           0
## 7885                          Botswana 1785           0
## 7886                            Brazil 1785           0
## 7887            British Virgin Islands 1785           0
## 7888                            Brunei 1785           0
## 7889                          Bulgaria 1785           0
## 7890                      Burkina Faso 1785           0
## 7891                           Burundi 1785           0
## 7892                          Cambodia 1785           0
## 7893                          Cameroon 1785           0
## 7894                            Canada 1785        3664
## 7895                        Cape Verde 1785           0
## 7896                    Cayman Islands 1785           0
## 7897          Central African Republic 1785           0
## 7898                              Chad 1785           0
## 7899                             Chile 1785           0
## 7900                             China 1785           0
## 7901                  Christmas Island 1785           0
## 7902                          Colombia 1785           0
## 7903                           Comoros 1785           0
## 7904                             Congo 1785           0
## 7905                      Cook Islands 1785           0
## 7906                        Costa Rica 1785           0
## 7907                     Cote d'Ivoire 1785           0
## 7908                           Croatia 1785           0
## 7909                              Cuba 1785           0
## 7910                           Curacao 1785           0
## 7911                            Cyprus 1785           0
## 7912                    Czech Republic 1785           0
## 7913                    Czechoslovakia 1785           0
## 7914      Democratic Republic of Congo 1785           0
## 7915                           Denmark 1785           0
## 7916                          Djibouti 1785           0
## 7917                          Dominica 1785           0
## 7918                Dominican Republic 1785           0
## 7919                             EU-28 1785   440672944
## 7920                           Ecuador 1785           0
## 7921                             Egypt 1785           0
## 7922                       El Salvador 1785           0
## 7923                 Equatorial Guinea 1785           0
## 7924                           Eritrea 1785           0
## 7925                           Estonia 1785           0
## 7926                          Ethiopia 1785           0
## 7927                    Europe (other) 1785           0
## 7928                    Faeroe Islands 1785           0
## 7929                  Falkland Islands 1785           0
## 7930                              Fiji 1785           0
## 7931                           Finland 1785           0
## 7932                            France 1785           0
## 7933                     French Guiana 1785           0
## 7934                  French Polynesia 1785           0
## 7935                             Gabon 1785           0
## 7936                            Gambia 1785           0
## 7937                           Georgia 1785           0
## 7938                           Germany 1785           0
## 7939                             Ghana 1785           0
## 7940                         Gibraltar 1785           0
## 7941                            Greece 1785           0
## 7942                         Greenland 1785           0
## 7943                           Grenada 1785           0
## 7944                        Guadeloupe 1785           0
## 7945                         Guatemala 1785           0
## 7946                            Guinea 1785           0
## 7947                     Guinea-Bissau 1785           0
## 7948                            Guyana 1785           0
## 7949                             Haiti 1785           0
## 7950                          Honduras 1785           0
## 7951                         Hong Kong 1785           0
## 7952                           Hungary 1785           0
## 7953                           Iceland 1785           0
## 7954                             India 1785           0
## 7955                         Indonesia 1785           0
## 7956                              Iran 1785           0
## 7957                              Iraq 1785           0
## 7958                           Ireland 1785           0
## 7959                            Israel 1785           0
## 7960                             Italy 1785           0
## 7961                           Jamaica 1785           0
## 7962                             Japan 1785           0
## 7963                            Jordan 1785           0
## 7964                        Kazakhstan 1785           0
## 7965                             Kenya 1785           0
## 7966                          Kiribati 1785           0
## 7967                            Kuwait 1785           0
## 7968                        Kyrgysztan 1785           0
## 7969                        Kyrgyzstan 1785           0
## 7970                              Laos 1785           0
## 7971                            Latvia 1785           0
## 7972                           Lebanon 1785           0
## 7973                           Lesotho 1785           0
## 7974                           Liberia 1785           0
## 7975                             Libya 1785           0
## 7976                     Liechtenstein 1785           0
## 7977                         Lithuania 1785           0
## 7978                        Luxembourg 1785           0
## 7979                             Macao 1785           0
## 7980                         Macedonia 1785           0
## 7981                        Madagascar 1785           0
## 7982                            Malawi 1785           0
## 7983                          Malaysia 1785           0
## 7984                          Maldives 1785           0
## 7985                              Mali 1785           0
## 7986                             Malta 1785           0
## 7987                  Marshall Islands 1785           0
## 7988                        Martinique 1785           0
## 7989                        Mauritania 1785           0
## 7990                         Mauritius 1785           0
## 7991                            Mexico 1785           0
## 7992              Micronesia (country) 1785           0
## 7993                       Middle East 1785           0
## 7994                           Moldova 1785           0
## 7995                          Mongolia 1785           0
## 7996                        Montenegro 1785           0
## 7997                        Montserrat 1785           0
## 7998                           Morocco 1785           0
## 7999                        Mozambique 1785           0
## 8000                           Myanmar 1785           0
## 8001                           Namibia 1785           0
## 8002                             Nauru 1785           0
## 8003                             Nepal 1785           0
## 8004                       Netherlands 1785           0
## 8005                     New Caledonia 1785           0
## 8006                       New Zealand 1785           0
## 8007                         Nicaragua 1785           0
## 8008                             Niger 1785           0
## 8009                           Nigeria 1785           0
## 8010                              Niue 1785           0
## 8011                       North Korea 1785           0
## 8012                            Norway 1785           0
## 8013                              Oman 1785           0
## 8014                          Pakistan 1785           0
## 8015                             Palau 1785           0
## 8016                         Palestine 1785           0
## 8017                            Panama 1785           0
## 8018                  Papua New Guinea 1785           0
## 8019                          Paraguay 1785           0
## 8020                              Peru 1785           0
## 8021                       Philippines 1785           0
## 8022                            Poland 1785           0
## 8023                          Portugal 1785           0
## 8024                             Qatar 1785           0
## 8025                           Reunion 1785           0
## 8026                           Romania 1785           0
## 8027                            Russia 1785           0
## 8028                            Rwanda 1785           0
## 8029                      Saint Helena 1785           0
## 8030             Saint Kitts and Nevis 1785           0
## 8031                       Saint Lucia 1785           0
## 8032         Saint Pierre and Miquelon 1785           0
## 8033  Saint Vincent and the Grenadines 1785           0
## 8034                             Samoa 1785           0
## 8035             Sao Tome and Principe 1785           0
## 8036                      Saudi Arabia 1785           0
## 8037                           Senegal 1785           0
## 8038                            Serbia 1785           0
## 8039                        Seychelles 1785           0
## 8040                      Sierra Leone 1785           0
## 8041                         Singapore 1785           0
## 8042         Sint Maarten (Dutch part) 1785           0
## 8043                          Slovakia 1785           0
## 8044                          Slovenia 1785           0
## 8045                   Solomon Islands 1785           0
## 8046                           Somalia 1785           0
## 8047                      South Africa 1785           0
## 8048                       South Korea 1785           0
## 8049                       South Sudan 1785           0
## 8050                             Spain 1785           0
## 8051                         Sri Lanka 1785           0
## 8052                             Sudan 1785           0
## 8053                          Suriname 1785           0
## 8054                         Swaziland 1785           0
## 8055                            Sweden 1785           0
## 8056                       Switzerland 1785           0
## 8057                             Syria 1785           0
## 8058                            Taiwan 1785           0
## 8059                        Tajikistan 1785           0
## 8060                          Tanzania 1785           0
## 8061                          Thailand 1785           0
## 8062                             Timor 1785           0
## 8063                              Togo 1785           0
## 8064                             Tonga 1785           0
## 8065               Trinidad and Tobago 1785           0
## 8066                           Tunisia 1785           0
## 8067                            Turkey 1785           0
## 8068                      Turkmenistan 1785           0
## 8069          Turks and Caicos Islands 1785           0
## 8070                            Tuvalu 1785           0
## 8071                            Uganda 1785           0
## 8072                           Ukraine 1785           0
## 8073              United Arab Emirates 1785           0
## 8074                    United Kingdom 1785   440672944
## 8075                     United States 1785           0
## 8076                           Uruguay 1785           0
## 8077                        Uzbekistan 1785           0
## 8078                           Vanuatu 1785           0
## 8079                         Venezuela 1785           0
## 8080                           Vietnam 1785           0
## 8081         Wallis and Futuna Islands 1785           0
## 8082                             World 1785   440676608
## 8083                             Yemen 1785           0
## 8084                            Zambia 1785           0
## 8085                          Zimbabwe 1785           0
## 8086                       Afghanistan 1786           0
## 8087                            Africa 1786           0
## 8088                           Albania 1786           0
## 8089                           Algeria 1786           0
## 8090                  Americas (other) 1786        7328
## 8091                           Andorra 1786           0
## 8092                            Angola 1786           0
## 8093                          Anguilla 1786           0
## 8094               Antarctic Fisheries 1786           0
## 8095               Antigua and Barbuda 1786           0
## 8096                         Argentina 1786           0
## 8097                           Armenia 1786           0
## 8098                             Aruba 1786           0
## 8099          Asia and Pacific (other) 1786           0
## 8100                         Australia 1786           0
## 8101                           Austria 1786           0
## 8102                        Azerbaijan 1786           0
## 8103                           Bahamas 1786           0
## 8104                           Bahrain 1786           0
## 8105                        Bangladesh 1786           0
## 8106                          Barbados 1786           0
## 8107                           Belarus 1786           0
## 8108                           Belgium 1786           0
## 8109                            Belize 1786           0
## 8110                             Benin 1786           0
## 8111                           Bermuda 1786           0
## 8112                            Bhutan 1786           0
## 8113                           Bolivia 1786           0
## 8114   Bonaire Sint Eustatius and Saba 1786           0
## 8115            Bosnia and Herzegovina 1786           0
## 8116                          Botswana 1786           0
## 8117                            Brazil 1786           0
## 8118            British Virgin Islands 1786           0
## 8119                            Brunei 1786           0
## 8120                          Bulgaria 1786           0
## 8121                      Burkina Faso 1786           0
## 8122                           Burundi 1786           0
## 8123                          Cambodia 1786           0
## 8124                          Cameroon 1786           0
## 8125                            Canada 1786        7328
## 8126                        Cape Verde 1786           0
## 8127                    Cayman Islands 1786           0
## 8128          Central African Republic 1786           0
## 8129                              Chad 1786           0
## 8130                             Chile 1786           0
## 8131                             China 1786           0
## 8132                  Christmas Island 1786           0
## 8133                          Colombia 1786           0
## 8134                           Comoros 1786           0
## 8135                             Congo 1786           0
## 8136                      Cook Islands 1786           0
## 8137                        Costa Rica 1786           0
## 8138                     Cote d'Ivoire 1786           0
## 8139                           Croatia 1786           0
## 8140                              Cuba 1786           0
## 8141                           Curacao 1786           0
## 8142                            Cyprus 1786           0
## 8143                    Czech Republic 1786           0
## 8144                    Czechoslovakia 1786           0
## 8145      Democratic Republic of Congo 1786           0
## 8146                           Denmark 1786           0
## 8147                          Djibouti 1786           0
## 8148                          Dominica 1786           0
## 8149                Dominican Republic 1786           0
## 8150                             EU-28 1786   459821008
## 8151                           Ecuador 1786           0
## 8152                             Egypt 1786           0
## 8153                       El Salvador 1786           0
## 8154                 Equatorial Guinea 1786           0
## 8155                           Eritrea 1786           0
## 8156                           Estonia 1786           0
## 8157                          Ethiopia 1786           0
## 8158                    Europe (other) 1786           0
## 8159                    Faeroe Islands 1786           0
## 8160                  Falkland Islands 1786           0
## 8161                              Fiji 1786           0
## 8162                           Finland 1786           0
## 8163                            France 1786           0
## 8164                     French Guiana 1786           0
## 8165                  French Polynesia 1786           0
## 8166                             Gabon 1786           0
## 8167                            Gambia 1786           0
## 8168                           Georgia 1786           0
## 8169                           Germany 1786           0
## 8170                             Ghana 1786           0
## 8171                         Gibraltar 1786           0
## 8172                            Greece 1786           0
## 8173                         Greenland 1786           0
## 8174                           Grenada 1786           0
## 8175                        Guadeloupe 1786           0
## 8176                         Guatemala 1786           0
## 8177                            Guinea 1786           0
## 8178                     Guinea-Bissau 1786           0
## 8179                            Guyana 1786           0
## 8180                             Haiti 1786           0
## 8181                          Honduras 1786           0
## 8182                         Hong Kong 1786           0
## 8183                           Hungary 1786           0
## 8184                           Iceland 1786           0
## 8185                             India 1786           0
## 8186                         Indonesia 1786           0
## 8187                              Iran 1786           0
## 8188                              Iraq 1786           0
## 8189                           Ireland 1786           0
## 8190                            Israel 1786           0
## 8191                             Italy 1786           0
## 8192                           Jamaica 1786           0
## 8193                             Japan 1786           0
## 8194                            Jordan 1786           0
## 8195                        Kazakhstan 1786           0
## 8196                             Kenya 1786           0
## 8197                          Kiribati 1786           0
## 8198                            Kuwait 1786           0
## 8199                        Kyrgysztan 1786           0
## 8200                        Kyrgyzstan 1786           0
## 8201                              Laos 1786           0
## 8202                            Latvia 1786           0
## 8203                           Lebanon 1786           0
## 8204                           Lesotho 1786           0
## 8205                           Liberia 1786           0
## 8206                             Libya 1786           0
## 8207                     Liechtenstein 1786           0
## 8208                         Lithuania 1786           0
## 8209                        Luxembourg 1786           0
## 8210                             Macao 1786           0
## 8211                         Macedonia 1786           0
## 8212                        Madagascar 1786           0
## 8213                            Malawi 1786           0
## 8214                          Malaysia 1786           0
## 8215                          Maldives 1786           0
## 8216                              Mali 1786           0
## 8217                             Malta 1786           0
## 8218                  Marshall Islands 1786           0
## 8219                        Martinique 1786           0
## 8220                        Mauritania 1786           0
## 8221                         Mauritius 1786           0
## 8222                            Mexico 1786           0
## 8223              Micronesia (country) 1786           0
## 8224                       Middle East 1786           0
## 8225                           Moldova 1786           0
## 8226                          Mongolia 1786           0
## 8227                        Montenegro 1786           0
## 8228                        Montserrat 1786           0
## 8229                           Morocco 1786           0
## 8230                        Mozambique 1786           0
## 8231                           Myanmar 1786           0
## 8232                           Namibia 1786           0
## 8233                             Nauru 1786           0
## 8234                             Nepal 1786           0
## 8235                       Netherlands 1786           0
## 8236                     New Caledonia 1786           0
## 8237                       New Zealand 1786           0
## 8238                         Nicaragua 1786           0
## 8239                             Niger 1786           0
## 8240                           Nigeria 1786           0
## 8241                              Niue 1786           0
## 8242                       North Korea 1786           0
## 8243                            Norway 1786           0
## 8244                              Oman 1786           0
## 8245                          Pakistan 1786           0
## 8246                             Palau 1786           0
## 8247                         Palestine 1786           0
## 8248                            Panama 1786           0
## 8249                  Papua New Guinea 1786           0
## 8250                          Paraguay 1786           0
## 8251                              Peru 1786           0
## 8252                       Philippines 1786           0
## 8253                            Poland 1786           0
## 8254                          Portugal 1786           0
## 8255                             Qatar 1786           0
## 8256                           Reunion 1786           0
## 8257                           Romania 1786           0
## 8258                            Russia 1786           0
## 8259                            Rwanda 1786           0
## 8260                      Saint Helena 1786           0
## 8261             Saint Kitts and Nevis 1786           0
## 8262                       Saint Lucia 1786           0
## 8263         Saint Pierre and Miquelon 1786           0
## 8264  Saint Vincent and the Grenadines 1786           0
## 8265                             Samoa 1786           0
## 8266             Sao Tome and Principe 1786           0
## 8267                      Saudi Arabia 1786           0
## 8268                           Senegal 1786           0
## 8269                            Serbia 1786           0
## 8270                        Seychelles 1786           0
## 8271                      Sierra Leone 1786           0
## 8272                         Singapore 1786           0
## 8273         Sint Maarten (Dutch part) 1786           0
## 8274                          Slovakia 1786           0
## 8275                          Slovenia 1786           0
## 8276                   Solomon Islands 1786           0
## 8277                           Somalia 1786           0
## 8278                      South Africa 1786           0
## 8279                       South Korea 1786           0
## 8280                       South Sudan 1786           0
## 8281                             Spain 1786           0
## 8282                         Sri Lanka 1786           0
## 8283                             Sudan 1786           0
## 8284                          Suriname 1786           0
## 8285                         Swaziland 1786           0
## 8286                            Sweden 1786           0
## 8287                       Switzerland 1786           0
## 8288                             Syria 1786           0
## 8289                            Taiwan 1786           0
## 8290                        Tajikistan 1786           0
## 8291                          Tanzania 1786           0
## 8292                          Thailand 1786           0
## 8293                             Timor 1786           0
## 8294                              Togo 1786           0
## 8295                             Tonga 1786           0
## 8296               Trinidad and Tobago 1786           0
## 8297                           Tunisia 1786           0
## 8298                            Turkey 1786           0
## 8299                      Turkmenistan 1786           0
## 8300          Turks and Caicos Islands 1786           0
## 8301                            Tuvalu 1786           0
## 8302                            Uganda 1786           0
## 8303                           Ukraine 1786           0
## 8304              United Arab Emirates 1786           0
## 8305                    United Kingdom 1786   459821008
## 8306                     United States 1786           0
## 8307                           Uruguay 1786           0
## 8308                        Uzbekistan 1786           0
## 8309                           Vanuatu 1786           0
## 8310                         Venezuela 1786           0
## 8311                           Vietnam 1786           0
## 8312         Wallis and Futuna Islands 1786           0
## 8313                             World 1786   459828336
## 8314                             Yemen 1786           0
## 8315                            Zambia 1786           0
## 8316                          Zimbabwe 1786           0
## 8317                       Afghanistan 1787           0
## 8318                            Africa 1787           0
## 8319                           Albania 1787           0
## 8320                           Algeria 1787           0
## 8321                  Americas (other) 1787       10992
## 8322                           Andorra 1787           0
## 8323                            Angola 1787           0
## 8324                          Anguilla 1787           0
## 8325               Antarctic Fisheries 1787           0
## 8326               Antigua and Barbuda 1787           0
## 8327                         Argentina 1787           0
## 8328                           Armenia 1787           0
## 8329                             Aruba 1787           0
## 8330          Asia and Pacific (other) 1787           0
## 8331                         Australia 1787           0
## 8332                           Austria 1787           0
## 8333                        Azerbaijan 1787           0
## 8334                           Bahamas 1787           0
## 8335                           Bahrain 1787           0
## 8336                        Bangladesh 1787           0
## 8337                          Barbados 1787           0
## 8338                           Belarus 1787           0
## 8339                           Belgium 1787           0
## 8340                            Belize 1787           0
## 8341                             Benin 1787           0
## 8342                           Bermuda 1787           0
## 8343                            Bhutan 1787           0
## 8344                           Bolivia 1787           0
## 8345   Bonaire Sint Eustatius and Saba 1787           0
## 8346            Bosnia and Herzegovina 1787           0
## 8347                          Botswana 1787           0
## 8348                            Brazil 1787           0
## 8349            British Virgin Islands 1787           0
## 8350                            Brunei 1787           0
## 8351                          Bulgaria 1787           0
## 8352                      Burkina Faso 1787           0
## 8353                           Burundi 1787           0
## 8354                          Cambodia 1787           0
## 8355                          Cameroon 1787           0
## 8356                            Canada 1787       10992
## 8357                        Cape Verde 1787           0
## 8358                    Cayman Islands 1787           0
## 8359          Central African Republic 1787           0
## 8360                              Chad 1787           0
## 8361                             Chile 1787           0
## 8362                             China 1787           0
## 8363                  Christmas Island 1787           0
## 8364                          Colombia 1787           0
## 8365                           Comoros 1787           0
## 8366                             Congo 1787           0
## 8367                      Cook Islands 1787           0
## 8368                        Costa Rica 1787           0
## 8369                     Cote d'Ivoire 1787           0
## 8370                           Croatia 1787           0
## 8371                              Cuba 1787           0
## 8372                           Curacao 1787           0
## 8373                            Cyprus 1787           0
## 8374                    Czech Republic 1787           0
## 8375                    Czechoslovakia 1787           0
## 8376      Democratic Republic of Congo 1787           0
## 8377                           Denmark 1787           0
## 8378                          Djibouti 1787           0
## 8379                          Dominica 1787           0
## 8380                Dominican Republic 1787           0
## 8381                             EU-28 1787   478976400
## 8382                           Ecuador 1787           0
## 8383                             Egypt 1787           0
## 8384                       El Salvador 1787           0
## 8385                 Equatorial Guinea 1787           0
## 8386                           Eritrea 1787           0
## 8387                           Estonia 1787           0
## 8388                          Ethiopia 1787           0
## 8389                    Europe (other) 1787           0
## 8390                    Faeroe Islands 1787           0
## 8391                  Falkland Islands 1787           0
## 8392                              Fiji 1787           0
## 8393                           Finland 1787           0
## 8394                            France 1787           0
## 8395                     French Guiana 1787           0
## 8396                  French Polynesia 1787           0
## 8397                             Gabon 1787           0
## 8398                            Gambia 1787           0
## 8399                           Georgia 1787           0
## 8400                           Germany 1787           0
## 8401                             Ghana 1787           0
## 8402                         Gibraltar 1787           0
## 8403                            Greece 1787           0
## 8404                         Greenland 1787           0
## 8405                           Grenada 1787           0
## 8406                        Guadeloupe 1787           0
## 8407                         Guatemala 1787           0
## 8408                            Guinea 1787           0
## 8409                     Guinea-Bissau 1787           0
## 8410                            Guyana 1787           0
## 8411                             Haiti 1787           0
## 8412                          Honduras 1787           0
## 8413                         Hong Kong 1787           0
## 8414                           Hungary 1787           0
## 8415                           Iceland 1787           0
## 8416                             India 1787           0
## 8417                         Indonesia 1787           0
## 8418                              Iran 1787           0
## 8419                              Iraq 1787           0
## 8420                           Ireland 1787           0
## 8421                            Israel 1787           0
## 8422                             Italy 1787           0
## 8423                           Jamaica 1787           0
## 8424                             Japan 1787           0
## 8425                            Jordan 1787           0
## 8426                        Kazakhstan 1787           0
## 8427                             Kenya 1787           0
## 8428                          Kiribati 1787           0
## 8429                            Kuwait 1787           0
## 8430                        Kyrgysztan 1787           0
## 8431                        Kyrgyzstan 1787           0
## 8432                              Laos 1787           0
## 8433                            Latvia 1787           0
## 8434                           Lebanon 1787           0
## 8435                           Lesotho 1787           0
## 8436                           Liberia 1787           0
## 8437                             Libya 1787           0
## 8438                     Liechtenstein 1787           0
## 8439                         Lithuania 1787           0
## 8440                        Luxembourg 1787           0
## 8441                             Macao 1787           0
## 8442                         Macedonia 1787           0
## 8443                        Madagascar 1787           0
## 8444                            Malawi 1787           0
## 8445                          Malaysia 1787           0
## 8446                          Maldives 1787           0
## 8447                              Mali 1787           0
## 8448                             Malta 1787           0
## 8449                  Marshall Islands 1787           0
## 8450                        Martinique 1787           0
## 8451                        Mauritania 1787           0
## 8452                         Mauritius 1787           0
## 8453                            Mexico 1787           0
## 8454              Micronesia (country) 1787           0
## 8455                       Middle East 1787           0
## 8456                           Moldova 1787           0
## 8457                          Mongolia 1787           0
## 8458                        Montenegro 1787           0
## 8459                        Montserrat 1787           0
## 8460                           Morocco 1787           0
## 8461                        Mozambique 1787           0
## 8462                           Myanmar 1787           0
## 8463                           Namibia 1787           0
## 8464                             Nauru 1787           0
## 8465                             Nepal 1787           0
## 8466                       Netherlands 1787           0
## 8467                     New Caledonia 1787           0
## 8468                       New Zealand 1787           0
## 8469                         Nicaragua 1787           0
## 8470                             Niger 1787           0
## 8471                           Nigeria 1787           0
## 8472                              Niue 1787           0
## 8473                       North Korea 1787           0
## 8474                            Norway 1787           0
## 8475                              Oman 1787           0
## 8476                          Pakistan 1787           0
## 8477                             Palau 1787           0
## 8478                         Palestine 1787           0
## 8479                            Panama 1787           0
## 8480                  Papua New Guinea 1787           0
## 8481                          Paraguay 1787           0
## 8482                              Peru 1787           0
## 8483                       Philippines 1787           0
## 8484                            Poland 1787           0
## 8485                          Portugal 1787           0
## 8486                             Qatar 1787           0
## 8487                           Reunion 1787           0
## 8488                           Romania 1787           0
## 8489                            Russia 1787           0
## 8490                            Rwanda 1787           0
## 8491                      Saint Helena 1787           0
## 8492             Saint Kitts and Nevis 1787           0
## 8493                       Saint Lucia 1787           0
## 8494         Saint Pierre and Miquelon 1787           0
## 8495  Saint Vincent and the Grenadines 1787           0
## 8496                             Samoa 1787           0
## 8497             Sao Tome and Principe 1787           0
## 8498                      Saudi Arabia 1787           0
## 8499                           Senegal 1787           0
## 8500                            Serbia 1787           0
## 8501                        Seychelles 1787           0
## 8502                      Sierra Leone 1787           0
## 8503                         Singapore 1787           0
## 8504         Sint Maarten (Dutch part) 1787           0
## 8505                          Slovakia 1787           0
## 8506                          Slovenia 1787           0
## 8507                   Solomon Islands 1787           0
## 8508                           Somalia 1787           0
## 8509                      South Africa 1787           0
## 8510                       South Korea 1787           0
## 8511                       South Sudan 1787           0
## 8512                             Spain 1787           0
## 8513                         Sri Lanka 1787           0
## 8514                             Sudan 1787           0
## 8515                          Suriname 1787           0
## 8516                         Swaziland 1787           0
## 8517                            Sweden 1787           0
## 8518                       Switzerland 1787           0
## 8519                             Syria 1787           0
## 8520                            Taiwan 1787           0
## 8521                        Tajikistan 1787           0
## 8522                          Tanzania 1787           0
## 8523                          Thailand 1787           0
## 8524                             Timor 1787           0
## 8525                              Togo 1787           0
## 8526                             Tonga 1787           0
## 8527               Trinidad and Tobago 1787           0
## 8528                           Tunisia 1787           0
## 8529                            Turkey 1787           0
## 8530                      Turkmenistan 1787           0
## 8531          Turks and Caicos Islands 1787           0
## 8532                            Tuvalu 1787           0
## 8533                            Uganda 1787           0
## 8534                           Ukraine 1787           0
## 8535              United Arab Emirates 1787           0
## 8536                    United Kingdom 1787   478976400
## 8537                     United States 1787           0
## 8538                           Uruguay 1787           0
## 8539                        Uzbekistan 1787           0
## 8540                           Vanuatu 1787           0
## 8541                         Venezuela 1787           0
## 8542                           Vietnam 1787           0
## 8543         Wallis and Futuna Islands 1787           0
## 8544                             World 1787   478987392
## 8545                             Yemen 1787           0
## 8546                            Zambia 1787           0
## 8547                          Zimbabwe 1787           0
## 8548                       Afghanistan 1788           0
## 8549                            Africa 1788           0
## 8550                           Albania 1788           0
## 8551                           Algeria 1788           0
## 8552                  Americas (other) 1788       14656
## 8553                           Andorra 1788           0
## 8554                            Angola 1788           0
## 8555                          Anguilla 1788           0
## 8556               Antarctic Fisheries 1788           0
## 8557               Antigua and Barbuda 1788           0
## 8558                         Argentina 1788           0
## 8559                           Armenia 1788           0
## 8560                             Aruba 1788           0
## 8561          Asia and Pacific (other) 1788           0
## 8562                         Australia 1788           0
## 8563                           Austria 1788           0
## 8564                        Azerbaijan 1788           0
## 8565                           Bahamas 1788           0
## 8566                           Bahrain 1788           0
## 8567                        Bangladesh 1788           0
## 8568                          Barbados 1788           0
## 8569                           Belarus 1788           0
## 8570                           Belgium 1788           0
## 8571                            Belize 1788           0
## 8572                             Benin 1788           0
## 8573                           Bermuda 1788           0
## 8574                            Bhutan 1788           0
## 8575                           Bolivia 1788           0
## 8576   Bonaire Sint Eustatius and Saba 1788           0
## 8577            Bosnia and Herzegovina 1788           0
## 8578                          Botswana 1788           0
## 8579                            Brazil 1788           0
## 8580            British Virgin Islands 1788           0
## 8581                            Brunei 1788           0
## 8582                          Bulgaria 1788           0
## 8583                      Burkina Faso 1788           0
## 8584                           Burundi 1788           0
## 8585                          Cambodia 1788           0
## 8586                          Cameroon 1788           0
## 8587                            Canada 1788       14656
## 8588                        Cape Verde 1788           0
## 8589                    Cayman Islands 1788           0
## 8590          Central African Republic 1788           0
## 8591                              Chad 1788           0
## 8592                             Chile 1788           0
## 8593                             China 1788           0
## 8594                  Christmas Island 1788           0
## 8595                          Colombia 1788           0
## 8596                           Comoros 1788           0
## 8597                             Congo 1788           0
## 8598                      Cook Islands 1788           0
## 8599                        Costa Rica 1788           0
## 8600                     Cote d'Ivoire 1788           0
## 8601                           Croatia 1788           0
## 8602                              Cuba 1788           0
## 8603                           Curacao 1788           0
## 8604                            Cyprus 1788           0
## 8605                    Czech Republic 1788           0
## 8606                    Czechoslovakia 1788           0
## 8607      Democratic Republic of Congo 1788           0
## 8608                           Denmark 1788           0
## 8609                          Djibouti 1788           0
## 8610                          Dominica 1788           0
## 8611                Dominican Republic 1788           0
## 8612                             EU-28 1788   498135456
## 8613                           Ecuador 1788           0
## 8614                             Egypt 1788           0
## 8615                       El Salvador 1788           0
## 8616                 Equatorial Guinea 1788           0
## 8617                           Eritrea 1788           0
## 8618                           Estonia 1788           0
## 8619                          Ethiopia 1788           0
## 8620                    Europe (other) 1788           0
## 8621                    Faeroe Islands 1788           0
## 8622                  Falkland Islands 1788           0
## 8623                              Fiji 1788           0
## 8624                           Finland 1788           0
## 8625                            France 1788           0
## 8626                     French Guiana 1788           0
## 8627                  French Polynesia 1788           0
## 8628                             Gabon 1788           0
## 8629                            Gambia 1788           0
## 8630                           Georgia 1788           0
## 8631                           Germany 1788           0
## 8632                             Ghana 1788           0
## 8633                         Gibraltar 1788           0
## 8634                            Greece 1788           0
## 8635                         Greenland 1788           0
## 8636                           Grenada 1788           0
## 8637                        Guadeloupe 1788           0
## 8638                         Guatemala 1788           0
## 8639                            Guinea 1788           0
## 8640                     Guinea-Bissau 1788           0
## 8641                            Guyana 1788           0
## 8642                             Haiti 1788           0
## 8643                          Honduras 1788           0
## 8644                         Hong Kong 1788           0
## 8645                           Hungary 1788           0
## 8646                           Iceland 1788           0
## 8647                             India 1788           0
## 8648                         Indonesia 1788           0
## 8649                              Iran 1788           0
## 8650                              Iraq 1788           0
## 8651                           Ireland 1788           0
## 8652                            Israel 1788           0
## 8653                             Italy 1788           0
## 8654                           Jamaica 1788           0
## 8655                             Japan 1788           0
## 8656                            Jordan 1788           0
## 8657                        Kazakhstan 1788           0
## 8658                             Kenya 1788           0
## 8659                          Kiribati 1788           0
## 8660                            Kuwait 1788           0
## 8661                        Kyrgysztan 1788           0
## 8662                        Kyrgyzstan 1788           0
## 8663                              Laos 1788           0
## 8664                            Latvia 1788           0
## 8665                           Lebanon 1788           0
## 8666                           Lesotho 1788           0
## 8667                           Liberia 1788           0
## 8668                             Libya 1788           0
## 8669                     Liechtenstein 1788           0
## 8670                         Lithuania 1788           0
## 8671                        Luxembourg 1788           0
## 8672                             Macao 1788           0
## 8673                         Macedonia 1788           0
## 8674                        Madagascar 1788           0
## 8675                            Malawi 1788           0
## 8676                          Malaysia 1788           0
## 8677                          Maldives 1788           0
## 8678                              Mali 1788           0
## 8679                             Malta 1788           0
## 8680                  Marshall Islands 1788           0
## 8681                        Martinique 1788           0
## 8682                        Mauritania 1788           0
## 8683                         Mauritius 1788           0
## 8684                            Mexico 1788           0
## 8685              Micronesia (country) 1788           0
## 8686                       Middle East 1788           0
## 8687                           Moldova 1788           0
## 8688                          Mongolia 1788           0
## 8689                        Montenegro 1788           0
## 8690                        Montserrat 1788           0
## 8691                           Morocco 1788           0
## 8692                        Mozambique 1788           0
## 8693                           Myanmar 1788           0
## 8694                           Namibia 1788           0
## 8695                             Nauru 1788           0
## 8696                             Nepal 1788           0
## 8697                       Netherlands 1788           0
## 8698                     New Caledonia 1788           0
## 8699                       New Zealand 1788           0
## 8700                         Nicaragua 1788           0
## 8701                             Niger 1788           0
## 8702                           Nigeria 1788           0
## 8703                              Niue 1788           0
## 8704                       North Korea 1788           0
## 8705                            Norway 1788           0
## 8706                              Oman 1788           0
## 8707                          Pakistan 1788           0
## 8708                             Palau 1788           0
## 8709                         Palestine 1788           0
## 8710                            Panama 1788           0
## 8711                  Papua New Guinea 1788           0
## 8712                          Paraguay 1788           0
## 8713                              Peru 1788           0
## 8714                       Philippines 1788           0
## 8715                            Poland 1788           0
## 8716                          Portugal 1788           0
## 8717                             Qatar 1788           0
## 8718                           Reunion 1788           0
## 8719                           Romania 1788           0
## 8720                            Russia 1788           0
## 8721                            Rwanda 1788           0
## 8722                      Saint Helena 1788           0
## 8723             Saint Kitts and Nevis 1788           0
## 8724                       Saint Lucia 1788           0
## 8725         Saint Pierre and Miquelon 1788           0
## 8726  Saint Vincent and the Grenadines 1788           0
## 8727                             Samoa 1788           0
## 8728             Sao Tome and Principe 1788           0
## 8729                      Saudi Arabia 1788           0
## 8730                           Senegal 1788           0
## 8731                            Serbia 1788           0
## 8732                        Seychelles 1788           0
## 8733                      Sierra Leone 1788           0
## 8734                         Singapore 1788           0
## 8735         Sint Maarten (Dutch part) 1788           0
## 8736                          Slovakia 1788           0
## 8737                          Slovenia 1788           0
## 8738                   Solomon Islands 1788           0
## 8739                           Somalia 1788           0
## 8740                      South Africa 1788           0
## 8741                       South Korea 1788           0
## 8742                       South Sudan 1788           0
## 8743                             Spain 1788           0
## 8744                         Sri Lanka 1788           0
## 8745                             Sudan 1788           0
## 8746                          Suriname 1788           0
## 8747                         Swaziland 1788           0
## 8748                            Sweden 1788           0
## 8749                       Switzerland 1788           0
## 8750                             Syria 1788           0
## 8751                            Taiwan 1788           0
## 8752                        Tajikistan 1788           0
## 8753                          Tanzania 1788           0
## 8754                          Thailand 1788           0
## 8755                             Timor 1788           0
## 8756                              Togo 1788           0
## 8757                             Tonga 1788           0
## 8758               Trinidad and Tobago 1788           0
## 8759                           Tunisia 1788           0
## 8760                            Turkey 1788           0
## 8761                      Turkmenistan 1788           0
## 8762          Turks and Caicos Islands 1788           0
## 8763                            Tuvalu 1788           0
## 8764                            Uganda 1788           0
## 8765                           Ukraine 1788           0
## 8766              United Arab Emirates 1788           0
## 8767                    United Kingdom 1788   498135456
## 8768                     United States 1788           0
## 8769                           Uruguay 1788           0
## 8770                        Uzbekistan 1788           0
## 8771                           Vanuatu 1788           0
## 8772                         Venezuela 1788           0
## 8773                           Vietnam 1788           0
## 8774         Wallis and Futuna Islands 1788           0
## 8775                             World 1788   498150112
## 8776                             Yemen 1788           0
## 8777                            Zambia 1788           0
## 8778                          Zimbabwe 1788           0
## 8779                       Afghanistan 1789           0
## 8780                            Africa 1789           0
## 8781                           Albania 1789           0
## 8782                           Algeria 1789           0
## 8783                  Americas (other) 1789       18320
## 8784                           Andorra 1789           0
## 8785                            Angola 1789           0
## 8786                          Anguilla 1789           0
## 8787               Antarctic Fisheries 1789           0
## 8788               Antigua and Barbuda 1789           0
## 8789                         Argentina 1789           0
## 8790                           Armenia 1789           0
## 8791                             Aruba 1789           0
## 8792          Asia and Pacific (other) 1789           0
## 8793                         Australia 1789           0
## 8794                           Austria 1789           0
## 8795                        Azerbaijan 1789           0
## 8796                           Bahamas 1789           0
## 8797                           Bahrain 1789           0
## 8798                        Bangladesh 1789           0
## 8799                          Barbados 1789           0
## 8800                           Belarus 1789           0
## 8801                           Belgium 1789           0
## 8802                            Belize 1789           0
## 8803                             Benin 1789           0
## 8804                           Bermuda 1789           0
## 8805                            Bhutan 1789           0
## 8806                           Bolivia 1789           0
## 8807   Bonaire Sint Eustatius and Saba 1789           0
## 8808            Bosnia and Herzegovina 1789           0
## 8809                          Botswana 1789           0
## 8810                            Brazil 1789           0
## 8811            British Virgin Islands 1789           0
## 8812                            Brunei 1789           0
## 8813                          Bulgaria 1789           0
## 8814                      Burkina Faso 1789           0
## 8815                           Burundi 1789           0
## 8816                          Cambodia 1789           0
## 8817                          Cameroon 1789           0
## 8818                            Canada 1789       18320
## 8819                        Cape Verde 1789           0
## 8820                    Cayman Islands 1789           0
## 8821          Central African Republic 1789           0
## 8822                              Chad 1789           0
## 8823                             Chile 1789           0
## 8824                             China 1789           0
## 8825                  Christmas Island 1789           0
## 8826                          Colombia 1789           0
## 8827                           Comoros 1789           0
## 8828                             Congo 1789           0
## 8829                      Cook Islands 1789           0
## 8830                        Costa Rica 1789           0
## 8831                     Cote d'Ivoire 1789           0
## 8832                           Croatia 1789           0
## 8833                              Cuba 1789           0
## 8834                           Curacao 1789           0
## 8835                            Cyprus 1789           0
## 8836                    Czech Republic 1789           0
## 8837                    Czechoslovakia 1789           0
## 8838      Democratic Republic of Congo 1789           0
## 8839                           Denmark 1789           0
## 8840                          Djibouti 1789           0
## 8841                          Dominica 1789           0
## 8842                Dominican Republic 1789           0
## 8843                             EU-28 1789   517301840
## 8844                           Ecuador 1789           0
## 8845                             Egypt 1789           0
## 8846                       El Salvador 1789           0
## 8847                 Equatorial Guinea 1789           0
## 8848                           Eritrea 1789           0
## 8849                           Estonia 1789           0
## 8850                          Ethiopia 1789           0
## 8851                    Europe (other) 1789           0
## 8852                    Faeroe Islands 1789           0
## 8853                  Falkland Islands 1789           0
## 8854                              Fiji 1789           0
## 8855                           Finland 1789           0
## 8856                            France 1789           0
## 8857                     French Guiana 1789           0
## 8858                  French Polynesia 1789           0
## 8859                             Gabon 1789           0
## 8860                            Gambia 1789           0
## 8861                           Georgia 1789           0
## 8862                           Germany 1789           0
## 8863                             Ghana 1789           0
## 8864                         Gibraltar 1789           0
## 8865                            Greece 1789           0
## 8866                         Greenland 1789           0
## 8867                           Grenada 1789           0
## 8868                        Guadeloupe 1789           0
## 8869                         Guatemala 1789           0
## 8870                            Guinea 1789           0
## 8871                     Guinea-Bissau 1789           0
## 8872                            Guyana 1789           0
## 8873                             Haiti 1789           0
## 8874                          Honduras 1789           0
## 8875                         Hong Kong 1789           0
## 8876                           Hungary 1789           0
## 8877                           Iceland 1789           0
## 8878                             India 1789           0
## 8879                         Indonesia 1789           0
## 8880                              Iran 1789           0
## 8881                              Iraq 1789           0
## 8882                           Ireland 1789           0
## 8883                            Israel 1789           0
## 8884                             Italy 1789           0
## 8885                           Jamaica 1789           0
## 8886                             Japan 1789           0
## 8887                            Jordan 1789           0
## 8888                        Kazakhstan 1789           0
## 8889                             Kenya 1789           0
## 8890                          Kiribati 1789           0
## 8891                            Kuwait 1789           0
## 8892                        Kyrgysztan 1789           0
## 8893                        Kyrgyzstan 1789           0
## 8894                              Laos 1789           0
## 8895                            Latvia 1789           0
## 8896                           Lebanon 1789           0
## 8897                           Lesotho 1789           0
## 8898                           Liberia 1789           0
## 8899                             Libya 1789           0
## 8900                     Liechtenstein 1789           0
## 8901                         Lithuania 1789           0
## 8902                        Luxembourg 1789           0
## 8903                             Macao 1789           0
## 8904                         Macedonia 1789           0
## 8905                        Madagascar 1789           0
## 8906                            Malawi 1789           0
## 8907                          Malaysia 1789           0
## 8908                          Maldives 1789           0
## 8909                              Mali 1789           0
## 8910                             Malta 1789           0
## 8911                  Marshall Islands 1789           0
## 8912                        Martinique 1789           0
## 8913                        Mauritania 1789           0
## 8914                         Mauritius 1789           0
## 8915                            Mexico 1789           0
## 8916              Micronesia (country) 1789           0
## 8917                       Middle East 1789           0
## 8918                           Moldova 1789           0
## 8919                          Mongolia 1789           0
## 8920                        Montenegro 1789           0
## 8921                        Montserrat 1789           0
## 8922                           Morocco 1789           0
## 8923                        Mozambique 1789           0
## 8924                           Myanmar 1789           0
## 8925                           Namibia 1789           0
## 8926                             Nauru 1789           0
## 8927                             Nepal 1789           0
## 8928                       Netherlands 1789           0
## 8929                     New Caledonia 1789           0
## 8930                       New Zealand 1789           0
## 8931                         Nicaragua 1789           0
## 8932                             Niger 1789           0
## 8933                           Nigeria 1789           0
## 8934                              Niue 1789           0
## 8935                       North Korea 1789           0
## 8936                            Norway 1789           0
## 8937                              Oman 1789           0
## 8938                          Pakistan 1789           0
## 8939                             Palau 1789           0
## 8940                         Palestine 1789           0
## 8941                            Panama 1789           0
## 8942                  Papua New Guinea 1789           0
## 8943                          Paraguay 1789           0
## 8944                              Peru 1789           0
## 8945                       Philippines 1789           0
## 8946                            Poland 1789           0
## 8947                          Portugal 1789           0
## 8948                             Qatar 1789           0
## 8949                           Reunion 1789           0
## 8950                           Romania 1789           0
## 8951                            Russia 1789           0
## 8952                            Rwanda 1789           0
## 8953                      Saint Helena 1789           0
## 8954             Saint Kitts and Nevis 1789           0
## 8955                       Saint Lucia 1789           0
## 8956         Saint Pierre and Miquelon 1789           0
## 8957  Saint Vincent and the Grenadines 1789           0
## 8958                             Samoa 1789           0
## 8959             Sao Tome and Principe 1789           0
## 8960                      Saudi Arabia 1789           0
## 8961                           Senegal 1789           0
## 8962                            Serbia 1789           0
## 8963                        Seychelles 1789           0
## 8964                      Sierra Leone 1789           0
## 8965                         Singapore 1789           0
## 8966         Sint Maarten (Dutch part) 1789           0
## 8967                          Slovakia 1789           0
## 8968                          Slovenia 1789           0
## 8969                   Solomon Islands 1789           0
## 8970                           Somalia 1789           0
## 8971                      South Africa 1789           0
## 8972                       South Korea 1789           0
## 8973                       South Sudan 1789           0
## 8974                             Spain 1789           0
## 8975                         Sri Lanka 1789           0
## 8976                             Sudan 1789           0
## 8977                          Suriname 1789           0
## 8978                         Swaziland 1789           0
## 8979                            Sweden 1789           0
## 8980                       Switzerland 1789           0
## 8981                             Syria 1789           0
## 8982                            Taiwan 1789           0
## 8983                        Tajikistan 1789           0
## 8984                          Tanzania 1789           0
## 8985                          Thailand 1789           0
## 8986                             Timor 1789           0
## 8987                              Togo 1789           0
## 8988                             Tonga 1789           0
## 8989               Trinidad and Tobago 1789           0
## 8990                           Tunisia 1789           0
## 8991                            Turkey 1789           0
## 8992                      Turkmenistan 1789           0
## 8993          Turks and Caicos Islands 1789           0
## 8994                            Tuvalu 1789           0
## 8995                            Uganda 1789           0
## 8996                           Ukraine 1789           0
## 8997              United Arab Emirates 1789           0
## 8998                    United Kingdom 1789   517301840
## 8999                     United States 1789           0
## 9000                           Uruguay 1789           0
## 9001                        Uzbekistan 1789           0
## 9002                           Vanuatu 1789           0
## 9003                         Venezuela 1789           0
## 9004                           Vietnam 1789           0
## 9005         Wallis and Futuna Islands 1789           0
## 9006                             World 1789   517320160
## 9007                             Yemen 1789           0
## 9008                            Zambia 1789           0
## 9009                          Zimbabwe 1789           0
## 9010                       Afghanistan 1790           0
## 9011                            Africa 1790           0
## 9012                           Albania 1790           0
## 9013                           Algeria 1790           0
## 9014                  Americas (other) 1790       21984
## 9015                           Andorra 1790           0
## 9016                            Angola 1790           0
## 9017                          Anguilla 1790           0
## 9018               Antarctic Fisheries 1790           0
## 9019               Antigua and Barbuda 1790           0
## 9020                         Argentina 1790           0
## 9021                           Armenia 1790           0
## 9022                             Aruba 1790           0
## 9023          Asia and Pacific (other) 1790           0
## 9024                         Australia 1790           0
## 9025                           Austria 1790           0
## 9026                        Azerbaijan 1790           0
## 9027                           Bahamas 1790           0
## 9028                           Bahrain 1790           0
## 9029                        Bangladesh 1790           0
## 9030                          Barbados 1790           0
## 9031                           Belarus 1790           0
## 9032                           Belgium 1790           0
## 9033                            Belize 1790           0
## 9034                             Benin 1790           0
## 9035                           Bermuda 1790           0
## 9036                            Bhutan 1790           0
## 9037                           Bolivia 1790           0
## 9038   Bonaire Sint Eustatius and Saba 1790           0
## 9039            Bosnia and Herzegovina 1790           0
## 9040                          Botswana 1790           0
## 9041                            Brazil 1790           0
## 9042            British Virgin Islands 1790           0
## 9043                            Brunei 1790           0
## 9044                          Bulgaria 1790           0
## 9045                      Burkina Faso 1790           0
## 9046                           Burundi 1790           0
## 9047                          Cambodia 1790           0
## 9048                          Cameroon 1790           0
## 9049                            Canada 1790       21984
## 9050                        Cape Verde 1790           0
## 9051                    Cayman Islands 1790           0
## 9052          Central African Republic 1790           0
## 9053                              Chad 1790           0
## 9054                             Chile 1790           0
## 9055                             China 1790           0
## 9056                  Christmas Island 1790           0
## 9057                          Colombia 1790           0
## 9058                           Comoros 1790           0
## 9059                             Congo 1790           0
## 9060                      Cook Islands 1790           0
## 9061                        Costa Rica 1790           0
## 9062                     Cote d'Ivoire 1790           0
## 9063                           Croatia 1790           0
## 9064                              Cuba 1790           0
## 9065                           Curacao 1790           0
## 9066                            Cyprus 1790           0
## 9067                    Czech Republic 1790           0
## 9068                    Czechoslovakia 1790           0
## 9069      Democratic Republic of Congo 1790           0
## 9070                           Denmark 1790           0
## 9071                          Djibouti 1790           0
## 9072                          Dominica 1790           0
## 9073                Dominican Republic 1790           0
## 9074                             EU-28 1790   536475552
## 9075                           Ecuador 1790           0
## 9076                             Egypt 1790           0
## 9077                       El Salvador 1790           0
## 9078                 Equatorial Guinea 1790           0
## 9079                           Eritrea 1790           0
## 9080                           Estonia 1790           0
## 9081                          Ethiopia 1790           0
## 9082                    Europe (other) 1790           0
## 9083                    Faeroe Islands 1790           0
## 9084                  Falkland Islands 1790           0
## 9085                              Fiji 1790           0
## 9086                           Finland 1790           0
## 9087                            France 1790           0
## 9088                     French Guiana 1790           0
## 9089                  French Polynesia 1790           0
## 9090                             Gabon 1790           0
## 9091                            Gambia 1790           0
## 9092                           Georgia 1790           0
## 9093                           Germany 1790           0
## 9094                             Ghana 1790           0
## 9095                         Gibraltar 1790           0
## 9096                            Greece 1790           0
## 9097                         Greenland 1790           0
## 9098                           Grenada 1790           0
## 9099                        Guadeloupe 1790           0
## 9100                         Guatemala 1790           0
## 9101                            Guinea 1790           0
## 9102                     Guinea-Bissau 1790           0
## 9103                            Guyana 1790           0
## 9104                             Haiti 1790           0
## 9105                          Honduras 1790           0
## 9106                         Hong Kong 1790           0
## 9107                           Hungary 1790           0
## 9108                           Iceland 1790           0
## 9109                             India 1790           0
## 9110                         Indonesia 1790           0
## 9111                              Iran 1790           0
## 9112                              Iraq 1790           0
## 9113                           Ireland 1790           0
## 9114                            Israel 1790           0
## 9115                             Italy 1790           0
## 9116                           Jamaica 1790           0
## 9117                             Japan 1790           0
## 9118                            Jordan 1790           0
## 9119                        Kazakhstan 1790           0
## 9120                             Kenya 1790           0
## 9121                          Kiribati 1790           0
## 9122                            Kuwait 1790           0
## 9123                        Kyrgysztan 1790           0
## 9124                        Kyrgyzstan 1790           0
## 9125                              Laos 1790           0
## 9126                            Latvia 1790           0
## 9127                           Lebanon 1790           0
## 9128                           Lesotho 1790           0
## 9129                           Liberia 1790           0
## 9130                             Libya 1790           0
## 9131                     Liechtenstein 1790           0
## 9132                         Lithuania 1790           0
## 9133                        Luxembourg 1790           0
## 9134                             Macao 1790           0
## 9135                         Macedonia 1790           0
## 9136                        Madagascar 1790           0
## 9137                            Malawi 1790           0
## 9138                          Malaysia 1790           0
## 9139                          Maldives 1790           0
## 9140                              Mali 1790           0
## 9141                             Malta 1790           0
## 9142                  Marshall Islands 1790           0
## 9143                        Martinique 1790           0
## 9144                        Mauritania 1790           0
## 9145                         Mauritius 1790           0
## 9146                            Mexico 1790           0
## 9147              Micronesia (country) 1790           0
## 9148                       Middle East 1790           0
## 9149                           Moldova 1790           0
## 9150                          Mongolia 1790           0
## 9151                        Montenegro 1790           0
## 9152                        Montserrat 1790           0
## 9153                           Morocco 1790           0
## 9154                        Mozambique 1790           0
## 9155                           Myanmar 1790           0
## 9156                           Namibia 1790           0
## 9157                             Nauru 1790           0
## 9158                             Nepal 1790           0
## 9159                       Netherlands 1790           0
## 9160                     New Caledonia 1790           0
## 9161                       New Zealand 1790           0
## 9162                         Nicaragua 1790           0
## 9163                             Niger 1790           0
## 9164                           Nigeria 1790           0
## 9165                              Niue 1790           0
## 9166                       North Korea 1790           0
## 9167                            Norway 1790           0
## 9168                              Oman 1790           0
## 9169                          Pakistan 1790           0
## 9170                             Palau 1790           0
## 9171                         Palestine 1790           0
## 9172                            Panama 1790           0
## 9173                  Papua New Guinea 1790           0
## 9174                          Paraguay 1790           0
## 9175                              Peru 1790           0
## 9176                       Philippines 1790           0
## 9177                            Poland 1790           0
## 9178                          Portugal 1790           0
## 9179                             Qatar 1790           0
## 9180                           Reunion 1790           0
## 9181                           Romania 1790           0
## 9182                            Russia 1790           0
## 9183                            Rwanda 1790           0
## 9184                      Saint Helena 1790           0
## 9185             Saint Kitts and Nevis 1790           0
## 9186                       Saint Lucia 1790           0
## 9187         Saint Pierre and Miquelon 1790           0
## 9188  Saint Vincent and the Grenadines 1790           0
## 9189                             Samoa 1790           0
## 9190             Sao Tome and Principe 1790           0
## 9191                      Saudi Arabia 1790           0
## 9192                           Senegal 1790           0
## 9193                            Serbia 1790           0
## 9194                        Seychelles 1790           0
## 9195                      Sierra Leone 1790           0
## 9196                         Singapore 1790           0
## 9197         Sint Maarten (Dutch part) 1790           0
## 9198                          Slovakia 1790           0
## 9199                          Slovenia 1790           0
## 9200                   Solomon Islands 1790           0
## 9201                           Somalia 1790           0
## 9202                      South Africa 1790           0
## 9203                       South Korea 1790           0
## 9204                       South Sudan 1790           0
## 9205                             Spain 1790           0
## 9206                         Sri Lanka 1790           0
## 9207                             Sudan 1790           0
## 9208                          Suriname 1790           0
## 9209                         Swaziland 1790           0
## 9210                            Sweden 1790           0
## 9211                       Switzerland 1790           0
## 9212                             Syria 1790           0
## 9213                            Taiwan 1790           0
## 9214                        Tajikistan 1790           0
## 9215                          Tanzania 1790           0
## 9216                          Thailand 1790           0
## 9217                             Timor 1790           0
## 9218                              Togo 1790           0
## 9219                             Tonga 1790           0
## 9220               Trinidad and Tobago 1790           0
## 9221                           Tunisia 1790           0
## 9222                            Turkey 1790           0
## 9223                      Turkmenistan 1790           0
## 9224          Turks and Caicos Islands 1790           0
## 9225                            Tuvalu 1790           0
## 9226                            Uganda 1790           0
## 9227                           Ukraine 1790           0
## 9228              United Arab Emirates 1790           0
## 9229                    United Kingdom 1790   536475552
## 9230                     United States 1790           0
## 9231                           Uruguay 1790           0
## 9232                        Uzbekistan 1790           0
## 9233                           Vanuatu 1790           0
## 9234                         Venezuela 1790           0
## 9235                           Vietnam 1790           0
## 9236         Wallis and Futuna Islands 1790           0
## 9237                             World 1790   536497536
## 9238                             Yemen 1790           0
## 9239                            Zambia 1790           0
## 9240                          Zimbabwe 1790           0
## 9241                       Afghanistan 1791           0
## 9242                            Africa 1791           0
## 9243                           Albania 1791           0
## 9244                           Algeria 1791           0
## 9245                  Americas (other) 1791       25648
## 9246                           Andorra 1791           0
## 9247                            Angola 1791           0
## 9248                          Anguilla 1791           0
## 9249               Antarctic Fisheries 1791           0
## 9250               Antigua and Barbuda 1791           0
## 9251                         Argentina 1791           0
## 9252                           Armenia 1791           0
## 9253                             Aruba 1791           0
## 9254          Asia and Pacific (other) 1791           0
## 9255                         Australia 1791           0
## 9256                           Austria 1791           0
## 9257                        Azerbaijan 1791           0
## 9258                           Bahamas 1791           0
## 9259                           Bahrain 1791           0
## 9260                        Bangladesh 1791           0
## 9261                          Barbados 1791           0
## 9262                           Belarus 1791           0
## 9263                           Belgium 1791           0
## 9264                            Belize 1791           0
## 9265                             Benin 1791           0
## 9266                           Bermuda 1791           0
## 9267                            Bhutan 1791           0
## 9268                           Bolivia 1791           0
## 9269   Bonaire Sint Eustatius and Saba 1791           0
## 9270            Bosnia and Herzegovina 1791           0
## 9271                          Botswana 1791           0
## 9272                            Brazil 1791           0
## 9273            British Virgin Islands 1791           0
## 9274                            Brunei 1791           0
## 9275                          Bulgaria 1791           0
## 9276                      Burkina Faso 1791           0
## 9277                           Burundi 1791           0
## 9278                          Cambodia 1791           0
## 9279                          Cameroon 1791           0
## 9280                            Canada 1791       25648
## 9281                        Cape Verde 1791           0
## 9282                    Cayman Islands 1791           0
## 9283          Central African Republic 1791           0
## 9284                              Chad 1791           0
## 9285                             Chile 1791           0
## 9286                             China 1791           0
## 9287                  Christmas Island 1791           0
## 9288                          Colombia 1791           0
## 9289                           Comoros 1791           0
## 9290                             Congo 1791           0
## 9291                      Cook Islands 1791           0
## 9292                        Costa Rica 1791           0
## 9293                     Cote d'Ivoire 1791           0
## 9294                           Croatia 1791           0
## 9295                              Cuba 1791           0
## 9296                           Curacao 1791           0
## 9297                            Cyprus 1791           0
## 9298                    Czech Republic 1791           0
## 9299                    Czechoslovakia 1791           0
## 9300      Democratic Republic of Congo 1791           0
## 9301                           Denmark 1791           0
## 9302                          Djibouti 1791           0
## 9303                          Dominica 1791           0
## 9304                Dominican Republic 1791           0
## 9305                             EU-28 1791   557891632
## 9306                           Ecuador 1791           0
## 9307                             Egypt 1791           0
## 9308                       El Salvador 1791           0
## 9309                 Equatorial Guinea 1791           0
## 9310                           Eritrea 1791           0
## 9311                           Estonia 1791           0
## 9312                          Ethiopia 1791           0
## 9313                    Europe (other) 1791           0
## 9314                    Faeroe Islands 1791           0
## 9315                  Falkland Islands 1791           0
## 9316                              Fiji 1791           0
## 9317                           Finland 1791           0
## 9318                            France 1791           0
## 9319                     French Guiana 1791           0
## 9320                  French Polynesia 1791           0
## 9321                             Gabon 1791           0
## 9322                            Gambia 1791           0
## 9323                           Georgia 1791           0
## 9324                           Germany 1791           0
## 9325                             Ghana 1791           0
## 9326                         Gibraltar 1791           0
## 9327                            Greece 1791           0
## 9328                         Greenland 1791           0
## 9329                           Grenada 1791           0
## 9330                        Guadeloupe 1791           0
## 9331                         Guatemala 1791           0
## 9332                            Guinea 1791           0
## 9333                     Guinea-Bissau 1791           0
## 9334                            Guyana 1791           0
## 9335                             Haiti 1791           0
## 9336                          Honduras 1791           0
## 9337                         Hong Kong 1791           0
## 9338                           Hungary 1791           0
## 9339                           Iceland 1791           0
## 9340                             India 1791           0
## 9341                         Indonesia 1791           0
## 9342                              Iran 1791           0
## 9343                              Iraq 1791           0
## 9344                           Ireland 1791           0
## 9345                            Israel 1791           0
## 9346                             Italy 1791           0
## 9347                           Jamaica 1791           0
## 9348                             Japan 1791           0
## 9349                            Jordan 1791           0
## 9350                        Kazakhstan 1791           0
## 9351                             Kenya 1791           0
## 9352                          Kiribati 1791           0
## 9353                            Kuwait 1791           0
## 9354                        Kyrgysztan 1791           0
## 9355                        Kyrgyzstan 1791           0
## 9356                              Laos 1791           0
## 9357                            Latvia 1791           0
## 9358                           Lebanon 1791           0
## 9359                           Lesotho 1791           0
## 9360                           Liberia 1791           0
## 9361                             Libya 1791           0
## 9362                     Liechtenstein 1791           0
## 9363                         Lithuania 1791           0
## 9364                        Luxembourg 1791           0
## 9365                             Macao 1791           0
## 9366                         Macedonia 1791           0
## 9367                        Madagascar 1791           0
## 9368                            Malawi 1791           0
## 9369                          Malaysia 1791           0
## 9370                          Maldives 1791           0
## 9371                              Mali 1791           0
## 9372                             Malta 1791           0
## 9373                  Marshall Islands 1791           0
## 9374                        Martinique 1791           0
## 9375                        Mauritania 1791           0
## 9376                         Mauritius 1791           0
## 9377                            Mexico 1791           0
## 9378              Micronesia (country) 1791           0
## 9379                       Middle East 1791           0
## 9380                           Moldova 1791           0
## 9381                          Mongolia 1791           0
## 9382                        Montenegro 1791           0
## 9383                        Montserrat 1791           0
## 9384                           Morocco 1791           0
## 9385                        Mozambique 1791           0
## 9386                           Myanmar 1791           0
## 9387                           Namibia 1791           0
## 9388                             Nauru 1791           0
## 9389                             Nepal 1791           0
## 9390                       Netherlands 1791           0
## 9391                     New Caledonia 1791           0
## 9392                       New Zealand 1791           0
## 9393                         Nicaragua 1791           0
## 9394                             Niger 1791           0
## 9395                           Nigeria 1791           0
## 9396                              Niue 1791           0
## 9397                       North Korea 1791           0
## 9398                            Norway 1791           0
## 9399                              Oman 1791           0
## 9400                          Pakistan 1791           0
## 9401                             Palau 1791           0
## 9402                         Palestine 1791           0
## 9403                            Panama 1791           0
## 9404                  Papua New Guinea 1791           0
## 9405                          Paraguay 1791           0
## 9406                              Peru 1791           0
## 9407                       Philippines 1791           0
## 9408                            Poland 1791           0
## 9409                          Portugal 1791           0
## 9410                             Qatar 1791           0
## 9411                           Reunion 1791           0
## 9412                           Romania 1791           0
## 9413                            Russia 1791           0
## 9414                            Rwanda 1791           0
## 9415                      Saint Helena 1791           0
## 9416             Saint Kitts and Nevis 1791           0
## 9417                       Saint Lucia 1791           0
## 9418         Saint Pierre and Miquelon 1791           0
## 9419  Saint Vincent and the Grenadines 1791           0
## 9420                             Samoa 1791           0
## 9421             Sao Tome and Principe 1791           0
## 9422                      Saudi Arabia 1791           0
## 9423                           Senegal 1791           0
## 9424                            Serbia 1791           0
## 9425                        Seychelles 1791           0
## 9426                      Sierra Leone 1791           0
## 9427                         Singapore 1791           0
## 9428         Sint Maarten (Dutch part) 1791           0
## 9429                          Slovakia 1791           0
## 9430                          Slovenia 1791           0
## 9431                   Solomon Islands 1791           0
## 9432                           Somalia 1791           0
## 9433                      South Africa 1791           0
## 9434                       South Korea 1791           0
## 9435                       South Sudan 1791           0
## 9436                             Spain 1791           0
## 9437                         Sri Lanka 1791           0
## 9438                             Sudan 1791           0
## 9439                          Suriname 1791           0
## 9440                         Swaziland 1791           0
## 9441                            Sweden 1791           0
## 9442                       Switzerland 1791           0
## 9443                             Syria 1791           0
## 9444                            Taiwan 1791           0
## 9445                        Tajikistan 1791           0
## 9446                          Tanzania 1791           0
## 9447                          Thailand 1791           0
## 9448                             Timor 1791           0
## 9449                              Togo 1791           0
## 9450                             Tonga 1791           0
## 9451               Trinidad and Tobago 1791           0
## 9452                           Tunisia 1791           0
## 9453                            Turkey 1791           0
## 9454                      Turkmenistan 1791           0
## 9455          Turks and Caicos Islands 1791           0
## 9456                            Tuvalu 1791           0
## 9457                            Uganda 1791           0
## 9458                           Ukraine 1791           0
## 9459              United Arab Emirates 1791           0
## 9460                    United Kingdom 1791   557891632
## 9461                     United States 1791           0
## 9462                           Uruguay 1791           0
## 9463                        Uzbekistan 1791           0
## 9464                           Vanuatu 1791           0
## 9465                         Venezuela 1791           0
## 9466                           Vietnam 1791           0
## 9467         Wallis and Futuna Islands 1791           0
## 9468                             World 1791   557917280
## 9469                             Yemen 1791           0
## 9470                            Zambia 1791           0
## 9471                          Zimbabwe 1791           0
## 9472                       Afghanistan 1792           0
## 9473                            Africa 1792           0
## 9474                           Albania 1792           0
## 9475                           Algeria 1792           0
## 9476                  Americas (other) 1792       29312
## 9477                           Andorra 1792           0
## 9478                            Angola 1792           0
## 9479                          Anguilla 1792           0
## 9480               Antarctic Fisheries 1792           0
## 9481               Antigua and Barbuda 1792           0
## 9482                         Argentina 1792           0
## 9483                           Armenia 1792           0
## 9484                             Aruba 1792           0
## 9485          Asia and Pacific (other) 1792           0
## 9486                         Australia 1792           0
## 9487                           Austria 1792           0
## 9488                        Azerbaijan 1792           0
## 9489                           Bahamas 1792           0
## 9490                           Bahrain 1792           0
## 9491                        Bangladesh 1792           0
## 9492                          Barbados 1792           0
## 9493                           Belarus 1792           0
## 9494                           Belgium 1792           0
## 9495                            Belize 1792           0
## 9496                             Benin 1792           0
## 9497                           Bermuda 1792           0
## 9498                            Bhutan 1792           0
## 9499                           Bolivia 1792           0
## 9500   Bonaire Sint Eustatius and Saba 1792           0
## 9501            Bosnia and Herzegovina 1792           0
## 9502                          Botswana 1792           0
## 9503                            Brazil 1792           0
## 9504            British Virgin Islands 1792           0
## 9505                            Brunei 1792           0
## 9506                          Bulgaria 1792           0
## 9507                      Burkina Faso 1792           0
## 9508                           Burundi 1792           0
## 9509                          Cambodia 1792           0
## 9510                          Cameroon 1792           0
## 9511                            Canada 1792       29312
## 9512                        Cape Verde 1792           0
## 9513                    Cayman Islands 1792           0
## 9514          Central African Republic 1792           0
## 9515                              Chad 1792           0
## 9516                             Chile 1792           0
## 9517                             China 1792           0
## 9518                  Christmas Island 1792           0
## 9519                          Colombia 1792           0
## 9520                           Comoros 1792           0
## 9521                             Congo 1792           0
## 9522                      Cook Islands 1792           0
## 9523                        Costa Rica 1792           0
## 9524                     Cote d'Ivoire 1792           0
## 9525                           Croatia 1792           0
## 9526                              Cuba 1792           0
## 9527                           Curacao 1792           0
## 9528                            Cyprus 1792           0
## 9529                    Czech Republic 1792           0
## 9530                    Czechoslovakia 1792           0
## 9531      Democratic Republic of Congo 1792           0
## 9532                           Denmark 1792           0
## 9533                          Djibouti 1792           0
## 9534                          Dominica 1792           0
## 9535                Dominican Republic 1792           0
## 9536                             EU-28 1792   579784032
## 9537                           Ecuador 1792           0
## 9538                             Egypt 1792           0
## 9539                       El Salvador 1792           0
## 9540                 Equatorial Guinea 1792           0
## 9541                           Eritrea 1792           0
## 9542                           Estonia 1792           0
## 9543                          Ethiopia 1792           0
## 9544                    Europe (other) 1792           0
## 9545                    Faeroe Islands 1792           0
## 9546                  Falkland Islands 1792           0
## 9547                              Fiji 1792           0
## 9548                           Finland 1792           0
## 9549                            France 1792           0
## 9550                     French Guiana 1792           0
## 9551                  French Polynesia 1792           0
## 9552                             Gabon 1792           0
## 9553                            Gambia 1792           0
## 9554                           Georgia 1792           0
## 9555                           Germany 1792      468992
## 9556                             Ghana 1792           0
## 9557                         Gibraltar 1792           0
## 9558                            Greece 1792           0
## 9559                         Greenland 1792           0
## 9560                           Grenada 1792           0
## 9561                        Guadeloupe 1792           0
## 9562                         Guatemala 1792           0
## 9563                            Guinea 1792           0
## 9564                     Guinea-Bissau 1792           0
## 9565                            Guyana 1792           0
## 9566                             Haiti 1792           0
## 9567                          Honduras 1792           0
## 9568                         Hong Kong 1792           0
## 9569                           Hungary 1792           0
## 9570                           Iceland 1792           0
## 9571                             India 1792           0
## 9572                         Indonesia 1792           0
## 9573                              Iran 1792           0
## 9574                              Iraq 1792           0
## 9575                           Ireland 1792           0
## 9576                            Israel 1792           0
## 9577                             Italy 1792           0
## 9578                           Jamaica 1792           0
## 9579                             Japan 1792           0
## 9580                            Jordan 1792           0
## 9581                        Kazakhstan 1792           0
## 9582                             Kenya 1792           0
## 9583                          Kiribati 1792           0
## 9584                            Kuwait 1792           0
## 9585                        Kyrgysztan 1792           0
## 9586                        Kyrgyzstan 1792           0
## 9587                              Laos 1792           0
## 9588                            Latvia 1792           0
## 9589                           Lebanon 1792           0
## 9590                           Lesotho 1792           0
## 9591                           Liberia 1792           0
## 9592                             Libya 1792           0
## 9593                     Liechtenstein 1792           0
## 9594                         Lithuania 1792           0
## 9595                        Luxembourg 1792           0
## 9596                             Macao 1792           0
## 9597                         Macedonia 1792           0
## 9598                        Madagascar 1792           0
## 9599                            Malawi 1792           0
## 9600                          Malaysia 1792           0
## 9601                          Maldives 1792           0
## 9602                              Mali 1792           0
## 9603                             Malta 1792           0
## 9604                  Marshall Islands 1792           0
## 9605                        Martinique 1792           0
## 9606                        Mauritania 1792           0
## 9607                         Mauritius 1792           0
## 9608                            Mexico 1792           0
## 9609              Micronesia (country) 1792           0
## 9610                       Middle East 1792           0
## 9611                           Moldova 1792           0
## 9612                          Mongolia 1792           0
## 9613                        Montenegro 1792           0
## 9614                        Montserrat 1792           0
## 9615                           Morocco 1792           0
## 9616                        Mozambique 1792           0
## 9617                           Myanmar 1792           0
## 9618                           Namibia 1792           0
## 9619                             Nauru 1792           0
## 9620                             Nepal 1792           0
## 9621                       Netherlands 1792           0
## 9622                     New Caledonia 1792           0
## 9623                       New Zealand 1792           0
## 9624                         Nicaragua 1792           0
## 9625                             Niger 1792           0
## 9626                           Nigeria 1792           0
## 9627                              Niue 1792           0
## 9628                       North Korea 1792           0
## 9629                            Norway 1792           0
## 9630                              Oman 1792           0
## 9631                          Pakistan 1792           0
## 9632                             Palau 1792           0
## 9633                         Palestine 1792           0
## 9634                            Panama 1792           0
## 9635                  Papua New Guinea 1792           0
## 9636                          Paraguay 1792           0
## 9637                              Peru 1792           0
## 9638                       Philippines 1792           0
## 9639                            Poland 1792           0
## 9640                          Portugal 1792           0
## 9641                             Qatar 1792           0
## 9642                           Reunion 1792           0
## 9643                           Romania 1792           0
## 9644                            Russia 1792           0
## 9645                            Rwanda 1792           0
## 9646                      Saint Helena 1792           0
## 9647             Saint Kitts and Nevis 1792           0
## 9648                       Saint Lucia 1792           0
## 9649         Saint Pierre and Miquelon 1792           0
## 9650  Saint Vincent and the Grenadines 1792           0
## 9651                             Samoa 1792           0
## 9652             Sao Tome and Principe 1792           0
## 9653                      Saudi Arabia 1792           0
## 9654                           Senegal 1792           0
## 9655                            Serbia 1792           0
## 9656                        Seychelles 1792           0
## 9657                      Sierra Leone 1792           0
## 9658                         Singapore 1792           0
## 9659         Sint Maarten (Dutch part) 1792           0
## 9660                          Slovakia 1792           0
## 9661                          Slovenia 1792           0
## 9662                   Solomon Islands 1792           0
## 9663                           Somalia 1792           0
## 9664                      South Africa 1792           0
## 9665                       South Korea 1792           0
## 9666                       South Sudan 1792           0
## 9667                             Spain 1792           0
## 9668                         Sri Lanka 1792           0
## 9669                             Sudan 1792           0
## 9670                          Suriname 1792           0
## 9671                         Swaziland 1792           0
## 9672                            Sweden 1792           0
## 9673                       Switzerland 1792           0
## 9674                             Syria 1792           0
## 9675                            Taiwan 1792           0
## 9676                        Tajikistan 1792           0
## 9677                          Tanzania 1792           0
## 9678                          Thailand 1792           0
## 9679                             Timor 1792           0
## 9680                              Togo 1792           0
## 9681                             Tonga 1792           0
## 9682               Trinidad and Tobago 1792           0
## 9683                           Tunisia 1792           0
## 9684                            Turkey 1792           0
## 9685                      Turkmenistan 1792           0
## 9686          Turks and Caicos Islands 1792           0
## 9687                            Tuvalu 1792           0
## 9688                            Uganda 1792           0
## 9689                           Ukraine 1792           0
## 9690              United Arab Emirates 1792           0
## 9691                    United Kingdom 1792   579315040
## 9692                     United States 1792           0
## 9693                           Uruguay 1792           0
## 9694                        Uzbekistan 1792           0
## 9695                           Vanuatu 1792           0
## 9696                         Venezuela 1792           0
## 9697                           Vietnam 1792           0
## 9698         Wallis and Futuna Islands 1792           0
## 9699                             World 1792   579813344
## 9700                             Yemen 1792           0
## 9701                            Zambia 1792           0
## 9702                          Zimbabwe 1792           0
## 9703                       Afghanistan 1793           0
## 9704                            Africa 1793           0
## 9705                           Albania 1793           0
## 9706                           Algeria 1793           0
## 9707                  Americas (other) 1793       32976
## 9708                           Andorra 1793           0
## 9709                            Angola 1793           0
## 9710                          Anguilla 1793           0
## 9711               Antarctic Fisheries 1793           0
## 9712               Antigua and Barbuda 1793           0
## 9713                         Argentina 1793           0
## 9714                           Armenia 1793           0
## 9715                             Aruba 1793           0
## 9716          Asia and Pacific (other) 1793           0
## 9717                         Australia 1793           0
## 9718                           Austria 1793           0
## 9719                        Azerbaijan 1793           0
## 9720                           Bahamas 1793           0
## 9721                           Bahrain 1793           0
## 9722                        Bangladesh 1793           0
## 9723                          Barbados 1793           0
## 9724                           Belarus 1793           0
## 9725                           Belgium 1793           0
## 9726                            Belize 1793           0
## 9727                             Benin 1793           0
## 9728                           Bermuda 1793           0
## 9729                            Bhutan 1793           0
## 9730                           Bolivia 1793           0
## 9731   Bonaire Sint Eustatius and Saba 1793           0
## 9732            Bosnia and Herzegovina 1793           0
## 9733                          Botswana 1793           0
## 9734                            Brazil 1793           0
## 9735            British Virgin Islands 1793           0
## 9736                            Brunei 1793           0
## 9737                          Bulgaria 1793           0
## 9738                      Burkina Faso 1793           0
## 9739                           Burundi 1793           0
## 9740                          Cambodia 1793           0
## 9741                          Cameroon 1793           0
## 9742                            Canada 1793       32976
## 9743                        Cape Verde 1793           0
## 9744                    Cayman Islands 1793           0
## 9745          Central African Republic 1793           0
## 9746                              Chad 1793           0
## 9747                             Chile 1793           0
## 9748                             China 1793           0
## 9749                  Christmas Island 1793           0
## 9750                          Colombia 1793           0
## 9751                           Comoros 1793           0
## 9752                             Congo 1793           0
## 9753                      Cook Islands 1793           0
## 9754                        Costa Rica 1793           0
## 9755                     Cote d'Ivoire 1793           0
## 9756                           Croatia 1793           0
## 9757                              Cuba 1793           0
## 9758                           Curacao 1793           0
## 9759                            Cyprus 1793           0
## 9760                    Czech Republic 1793           0
## 9761                    Czechoslovakia 1793           0
## 9762      Democratic Republic of Congo 1793           0
## 9763                           Denmark 1793           0
## 9764                          Djibouti 1793           0
## 9765                          Dominica 1793           0
## 9766                Dominican Republic 1793           0
## 9767                             EU-28 1793   601694752
## 9768                           Ecuador 1793           0
## 9769                             Egypt 1793           0
## 9770                       El Salvador 1793           0
## 9771                 Equatorial Guinea 1793           0
## 9772                           Eritrea 1793           0
## 9773                           Estonia 1793           0
## 9774                          Ethiopia 1793           0
## 9775                    Europe (other) 1793           0
## 9776                    Faeroe Islands 1793           0
## 9777                  Falkland Islands 1793           0
## 9778                              Fiji 1793           0
## 9779                           Finland 1793           0
## 9780                            France 1793           0
## 9781                     French Guiana 1793           0
## 9782                  French Polynesia 1793           0
## 9783                             Gabon 1793           0
## 9784                            Gambia 1793           0
## 9785                           Georgia 1793           0
## 9786                           Germany 1793      948976
## 9787                             Ghana 1793           0
## 9788                         Gibraltar 1793           0
## 9789                            Greece 1793           0
## 9790                         Greenland 1793           0
## 9791                           Grenada 1793           0
## 9792                        Guadeloupe 1793           0
## 9793                         Guatemala 1793           0
## 9794                            Guinea 1793           0
## 9795                     Guinea-Bissau 1793           0
## 9796                            Guyana 1793           0
## 9797                             Haiti 1793           0
## 9798                          Honduras 1793           0
## 9799                         Hong Kong 1793           0
## 9800                           Hungary 1793           0
## 9801                           Iceland 1793           0
## 9802                             India 1793           0
## 9803                         Indonesia 1793           0
## 9804                              Iran 1793           0
## 9805                              Iraq 1793           0
## 9806                           Ireland 1793           0
## 9807                            Israel 1793           0
## 9808                             Italy 1793           0
## 9809                           Jamaica 1793           0
## 9810                             Japan 1793           0
## 9811                            Jordan 1793           0
## 9812                        Kazakhstan 1793           0
## 9813                             Kenya 1793           0
## 9814                          Kiribati 1793           0
## 9815                            Kuwait 1793           0
## 9816                        Kyrgysztan 1793           0
## 9817                        Kyrgyzstan 1793           0
## 9818                              Laos 1793           0
## 9819                            Latvia 1793           0
## 9820                           Lebanon 1793           0
## 9821                           Lesotho 1793           0
## 9822                           Liberia 1793           0
## 9823                             Libya 1793           0
## 9824                     Liechtenstein 1793           0
## 9825                         Lithuania 1793           0
## 9826                        Luxembourg 1793           0
## 9827                             Macao 1793           0
## 9828                         Macedonia 1793           0
## 9829                        Madagascar 1793           0
## 9830                            Malawi 1793           0
## 9831                          Malaysia 1793           0
## 9832                          Maldives 1793           0
## 9833                              Mali 1793           0
## 9834                             Malta 1793           0
## 9835                  Marshall Islands 1793           0
## 9836                        Martinique 1793           0
## 9837                        Mauritania 1793           0
## 9838                         Mauritius 1793           0
## 9839                            Mexico 1793           0
## 9840              Micronesia (country) 1793           0
## 9841                       Middle East 1793           0
## 9842                           Moldova 1793           0
## 9843                          Mongolia 1793           0
## 9844                        Montenegro 1793           0
## 9845                        Montserrat 1793           0
## 9846                           Morocco 1793           0
## 9847                        Mozambique 1793           0
## 9848                           Myanmar 1793           0
## 9849                           Namibia 1793           0
## 9850                             Nauru 1793           0
## 9851                             Nepal 1793           0
## 9852                       Netherlands 1793           0
## 9853                     New Caledonia 1793           0
## 9854                       New Zealand 1793           0
## 9855                         Nicaragua 1793           0
## 9856                             Niger 1793           0
## 9857                           Nigeria 1793           0
## 9858                              Niue 1793           0
## 9859                       North Korea 1793           0
## 9860                            Norway 1793           0
## 9861                              Oman 1793           0
## 9862                          Pakistan 1793           0
## 9863                             Palau 1793           0
## 9864                         Palestine 1793           0
## 9865                            Panama 1793           0
## 9866                  Papua New Guinea 1793           0
## 9867                          Paraguay 1793           0
## 9868                              Peru 1793           0
## 9869                       Philippines 1793           0
## 9870                            Poland 1793           0
## 9871                          Portugal 1793           0
## 9872                             Qatar 1793           0
## 9873                           Reunion 1793           0
## 9874                           Romania 1793           0
## 9875                            Russia 1793           0
## 9876                            Rwanda 1793           0
## 9877                      Saint Helena 1793           0
## 9878             Saint Kitts and Nevis 1793           0
## 9879                       Saint Lucia 1793           0
## 9880         Saint Pierre and Miquelon 1793           0
## 9881  Saint Vincent and the Grenadines 1793           0
## 9882                             Samoa 1793           0
## 9883             Sao Tome and Principe 1793           0
## 9884                      Saudi Arabia 1793           0
## 9885                           Senegal 1793           0
## 9886                            Serbia 1793           0
## 9887                        Seychelles 1793           0
## 9888                      Sierra Leone 1793           0
## 9889                         Singapore 1793           0
## 9890         Sint Maarten (Dutch part) 1793           0
## 9891                          Slovakia 1793           0
## 9892                          Slovenia 1793           0
## 9893                   Solomon Islands 1793           0
## 9894                           Somalia 1793           0
## 9895                      South Africa 1793           0
## 9896                       South Korea 1793           0
## 9897                       South Sudan 1793           0
## 9898                             Spain 1793           0
## 9899                         Sri Lanka 1793           0
## 9900                             Sudan 1793           0
## 9901                          Suriname 1793           0
## 9902                         Swaziland 1793           0
## 9903                            Sweden 1793           0
## 9904                       Switzerland 1793           0
## 9905                             Syria 1793           0
## 9906                            Taiwan 1793           0
## 9907                        Tajikistan 1793           0
## 9908                          Tanzania 1793           0
## 9909                          Thailand 1793           0
## 9910                             Timor 1793           0
## 9911                              Togo 1793           0
## 9912                             Tonga 1793           0
## 9913               Trinidad and Tobago 1793           0
## 9914                           Tunisia 1793           0
## 9915                            Turkey 1793           0
## 9916                      Turkmenistan 1793           0
## 9917          Turks and Caicos Islands 1793           0
## 9918                            Tuvalu 1793           0
## 9919                            Uganda 1793           0
## 9920                           Ukraine 1793           0
## 9921              United Arab Emirates 1793           0
## 9922                    United Kingdom 1793   600745776
## 9923                     United States 1793           0
## 9924                           Uruguay 1793           0
## 9925                        Uzbekistan 1793           0
## 9926                           Vanuatu 1793           0
## 9927                         Venezuela 1793           0
## 9928                           Vietnam 1793           0
## 9929         Wallis and Futuna Islands 1793           0
## 9930                             World 1793   601727728
## 9931                             Yemen 1793           0
## 9932                            Zambia 1793           0
## 9933                          Zimbabwe 1793           0
## 9934                       Afghanistan 1794           0
## 9935                            Africa 1794           0
## 9936                           Albania 1794           0
## 9937                           Algeria 1794           0
## 9938                  Americas (other) 1794       36640
## 9939                           Andorra 1794           0
## 9940                            Angola 1794           0
## 9941                          Anguilla 1794           0
## 9942               Antarctic Fisheries 1794           0
## 9943               Antigua and Barbuda 1794           0
## 9944                         Argentina 1794           0
## 9945                           Armenia 1794           0
## 9946                             Aruba 1794           0
## 9947          Asia and Pacific (other) 1794           0
## 9948                         Australia 1794           0
## 9949                           Austria 1794           0
## 9950                        Azerbaijan 1794           0
## 9951                           Bahamas 1794           0
## 9952                           Bahrain 1794           0
## 9953                        Bangladesh 1794           0
## 9954                          Barbados 1794           0
## 9955                           Belarus 1794           0
## 9956                           Belgium 1794           0
## 9957                            Belize 1794           0
## 9958                             Benin 1794           0
## 9959                           Bermuda 1794           0
## 9960                            Bhutan 1794           0
## 9961                           Bolivia 1794           0
## 9962   Bonaire Sint Eustatius and Saba 1794           0
## 9963            Bosnia and Herzegovina 1794           0
## 9964                          Botswana 1794           0
## 9965                            Brazil 1794           0
## 9966            British Virgin Islands 1794           0
## 9967                            Brunei 1794           0
## 9968                          Bulgaria 1794           0
## 9969                      Burkina Faso 1794           0
## 9970                           Burundi 1794           0
## 9971                          Cambodia 1794           0
## 9972                          Cameroon 1794           0
## 9973                            Canada 1794       36640
## 9974                        Cape Verde 1794           0
## 9975                    Cayman Islands 1794           0
## 9976          Central African Republic 1794           0
## 9977                              Chad 1794           0
## 9978                             Chile 1794           0
## 9979                             China 1794           0
## 9980                  Christmas Island 1794           0
## 9981                          Colombia 1794           0
## 9982                           Comoros 1794           0
## 9983                             Congo 1794           0
## 9984                      Cook Islands 1794           0
## 9985                        Costa Rica 1794           0
## 9986                     Cote d'Ivoire 1794           0
## 9987                           Croatia 1794           0
## 9988                              Cuba 1794           0
## 9989                           Curacao 1794           0
## 9990                            Cyprus 1794           0
## 9991                    Czech Republic 1794           0
## 9992                    Czechoslovakia 1794           0
## 9993      Democratic Republic of Congo 1794           0
## 9994                           Denmark 1794           0
## 9995                          Djibouti 1794           0
## 9996                          Dominica 1794           0
## 9997                Dominican Republic 1794           0
## 9998                             EU-28 1794   623572496
## 9999                           Ecuador 1794           0
## 10000                            Egypt 1794           0
## 10001                      El Salvador 1794           0
## 10002                Equatorial Guinea 1794           0
## 10003                          Eritrea 1794           0
## 10004                          Estonia 1794           0
## 10005                         Ethiopia 1794           0
## 10006                   Europe (other) 1794           0
## 10007                   Faeroe Islands 1794           0
## 10008                 Falkland Islands 1794           0
## 10009                             Fiji 1794           0
## 10010                          Finland 1794           0
## 10011                           France 1794           0
## 10012                    French Guiana 1794           0
## 10013                 French Polynesia 1794           0
## 10014                            Gabon 1794           0
## 10015                           Gambia 1794           0
## 10016                          Georgia 1794           0
## 10017                          Germany 1794     1392320
## 10018                            Ghana 1794           0
## 10019                        Gibraltar 1794           0
## 10020                           Greece 1794           0
## 10021                        Greenland 1794           0
## 10022                          Grenada 1794           0
## 10023                       Guadeloupe 1794           0
## 10024                        Guatemala 1794           0
## 10025                           Guinea 1794           0
## 10026                    Guinea-Bissau 1794           0
## 10027                           Guyana 1794           0
## 10028                            Haiti 1794           0
## 10029                         Honduras 1794           0
## 10030                        Hong Kong 1794           0
## 10031                          Hungary 1794           0
## 10032                          Iceland 1794           0
## 10033                            India 1794           0
## 10034                        Indonesia 1794           0
## 10035                             Iran 1794           0
## 10036                             Iraq 1794           0
## 10037                          Ireland 1794           0
## 10038                           Israel 1794           0
## 10039                            Italy 1794           0
## 10040                          Jamaica 1794           0
## 10041                            Japan 1794           0
## 10042                           Jordan 1794           0
## 10043                       Kazakhstan 1794           0
## 10044                            Kenya 1794           0
## 10045                         Kiribati 1794           0
## 10046                           Kuwait 1794           0
## 10047                       Kyrgysztan 1794           0
## 10048                       Kyrgyzstan 1794           0
## 10049                             Laos 1794           0
## 10050                           Latvia 1794           0
## 10051                          Lebanon 1794           0
## 10052                          Lesotho 1794           0
## 10053                          Liberia 1794           0
## 10054                            Libya 1794           0
## 10055                    Liechtenstein 1794           0
## 10056                        Lithuania 1794           0
## 10057                       Luxembourg 1794           0
## 10058                            Macao 1794           0
## 10059                        Macedonia 1794           0
## 10060                       Madagascar 1794           0
## 10061                           Malawi 1794           0
## 10062                         Malaysia 1794           0
## 10063                         Maldives 1794           0
## 10064                             Mali 1794           0
## 10065                            Malta 1794           0
## 10066                 Marshall Islands 1794           0
## 10067                       Martinique 1794           0
## 10068                       Mauritania 1794           0
## 10069                        Mauritius 1794           0
## 10070                           Mexico 1794           0
## 10071             Micronesia (country) 1794           0
## 10072                      Middle East 1794           0
## 10073                          Moldova 1794           0
## 10074                         Mongolia 1794           0
## 10075                       Montenegro 1794           0
## 10076                       Montserrat 1794           0
## 10077                          Morocco 1794           0
## 10078                       Mozambique 1794           0
## 10079                          Myanmar 1794           0
## 10080                          Namibia 1794           0
## 10081                            Nauru 1794           0
## 10082                            Nepal 1794           0
## 10083                      Netherlands 1794           0
## 10084                    New Caledonia 1794           0
## 10085                      New Zealand 1794           0
## 10086                        Nicaragua 1794           0
## 10087                            Niger 1794           0
## 10088                          Nigeria 1794           0
## 10089                             Niue 1794           0
## 10090                      North Korea 1794           0
## 10091                           Norway 1794           0
## 10092                             Oman 1794           0
## 10093                         Pakistan 1794           0
## 10094                            Palau 1794           0
## 10095                        Palestine 1794           0
## 10096                           Panama 1794           0
## 10097                 Papua New Guinea 1794           0
## 10098                         Paraguay 1794           0
## 10099                             Peru 1794           0
## 10100                      Philippines 1794           0
## 10101                           Poland 1794           0
## 10102                         Portugal 1794           0
## 10103                            Qatar 1794           0
## 10104                          Reunion 1794           0
## 10105                          Romania 1794           0
## 10106                           Russia 1794           0
## 10107                           Rwanda 1794           0
## 10108                     Saint Helena 1794           0
## 10109            Saint Kitts and Nevis 1794           0
## 10110                      Saint Lucia 1794           0
## 10111        Saint Pierre and Miquelon 1794           0
## 10112 Saint Vincent and the Grenadines 1794           0
## 10113                            Samoa 1794           0
## 10114            Sao Tome and Principe 1794           0
## 10115                     Saudi Arabia 1794           0
## 10116                          Senegal 1794           0
## 10117                           Serbia 1794           0
## 10118                       Seychelles 1794           0
## 10119                     Sierra Leone 1794           0
## 10120                        Singapore 1794           0
## 10121        Sint Maarten (Dutch part) 1794           0
## 10122                         Slovakia 1794           0
## 10123                         Slovenia 1794           0
## 10124                  Solomon Islands 1794           0
## 10125                          Somalia 1794           0
## 10126                     South Africa 1794           0
## 10127                      South Korea 1794           0
## 10128                      South Sudan 1794           0
## 10129                            Spain 1794           0
## 10130                        Sri Lanka 1794           0
## 10131                            Sudan 1794           0
## 10132                         Suriname 1794           0
## 10133                        Swaziland 1794           0
## 10134                           Sweden 1794           0
## 10135                      Switzerland 1794           0
## 10136                            Syria 1794           0
## 10137                           Taiwan 1794           0
## 10138                       Tajikistan 1794           0
## 10139                         Tanzania 1794           0
## 10140                         Thailand 1794           0
## 10141                            Timor 1794           0
## 10142                             Togo 1794           0
## 10143                            Tonga 1794           0
## 10144              Trinidad and Tobago 1794           0
## 10145                          Tunisia 1794           0
## 10146                           Turkey 1794           0
## 10147                     Turkmenistan 1794           0
## 10148         Turks and Caicos Islands 1794           0
## 10149                           Tuvalu 1794           0
## 10150                           Uganda 1794           0
## 10151                          Ukraine 1794           0
## 10152             United Arab Emirates 1794           0
## 10153                   United Kingdom 1794   622180176
## 10154                    United States 1794           0
## 10155                          Uruguay 1794           0
## 10156                       Uzbekistan 1794           0
## 10157                          Vanuatu 1794           0
## 10158                        Venezuela 1794           0
## 10159                          Vietnam 1794           0
## 10160        Wallis and Futuna Islands 1794           0
## 10161                            World 1794   623609136
## 10162                            Yemen 1794           0
## 10163                           Zambia 1794           0
## 10164                         Zimbabwe 1794           0
## 10165                      Afghanistan 1795           0
## 10166                           Africa 1795           0
## 10167                          Albania 1795           0
## 10168                          Algeria 1795           0
## 10169                 Americas (other) 1795       40304
## 10170                          Andorra 1795           0
## 10171                           Angola 1795           0
## 10172                         Anguilla 1795           0
## 10173              Antarctic Fisheries 1795           0
## 10174              Antigua and Barbuda 1795           0
## 10175                        Argentina 1795           0
## 10176                          Armenia 1795           0
## 10177                            Aruba 1795           0
## 10178         Asia and Pacific (other) 1795           0
## 10179                        Australia 1795           0
## 10180                          Austria 1795           0
## 10181                       Azerbaijan 1795           0
## 10182                          Bahamas 1795           0
## 10183                          Bahrain 1795           0
## 10184                       Bangladesh 1795           0
## 10185                         Barbados 1795           0
## 10186                          Belarus 1795           0
## 10187                          Belgium 1795           0
## 10188                           Belize 1795           0
## 10189                            Benin 1795           0
## 10190                          Bermuda 1795           0
## 10191                           Bhutan 1795           0
## 10192                          Bolivia 1795           0
## 10193  Bonaire Sint Eustatius and Saba 1795           0
## 10194           Bosnia and Herzegovina 1795           0
## 10195                         Botswana 1795           0
## 10196                           Brazil 1795           0
## 10197           British Virgin Islands 1795           0
## 10198                           Brunei 1795           0
## 10199                         Bulgaria 1795           0
## 10200                     Burkina Faso 1795           0
## 10201                          Burundi 1795           0
## 10202                         Cambodia 1795           0
## 10203                         Cameroon 1795           0
## 10204                           Canada 1795       40304
## 10205                       Cape Verde 1795           0
## 10206                   Cayman Islands 1795           0
## 10207         Central African Republic 1795           0
## 10208                             Chad 1795           0
## 10209                            Chile 1795           0
## 10210                            China 1795           0
## 10211                 Christmas Island 1795           0
## 10212                         Colombia 1795           0
## 10213                          Comoros 1795           0
## 10214                            Congo 1795           0
## 10215                     Cook Islands 1795           0
## 10216                       Costa Rica 1795           0
## 10217                    Cote d'Ivoire 1795           0
## 10218                          Croatia 1795           0
## 10219                             Cuba 1795           0
## 10220                          Curacao 1795           0
## 10221                           Cyprus 1795           0
## 10222                   Czech Republic 1795           0
## 10223                   Czechoslovakia 1795           0
## 10224     Democratic Republic of Congo 1795           0
## 10225                          Denmark 1795           0
## 10226                         Djibouti 1795           0
## 10227                         Dominica 1795           0
## 10228               Dominican Republic 1795           0
## 10229                            EU-28 1795   645461232
## 10230                          Ecuador 1795           0
## 10231                            Egypt 1795           0
## 10232                      El Salvador 1795           0
## 10233                Equatorial Guinea 1795           0
## 10234                          Eritrea 1795           0
## 10235                          Estonia 1795           0
## 10236                         Ethiopia 1795           0
## 10237                   Europe (other) 1795           0
## 10238                   Faeroe Islands 1795           0
## 10239                 Falkland Islands 1795           0
## 10240                             Fiji 1795           0
## 10241                          Finland 1795           0
## 10242                           France 1795           0
## 10243                    French Guiana 1795           0
## 10244                 French Polynesia 1795           0
## 10245                            Gabon 1795           0
## 10246                           Gambia 1795           0
## 10247                          Georgia 1795           0
## 10248                          Germany 1795     1839328
## 10249                            Ghana 1795           0
## 10250                        Gibraltar 1795           0
## 10251                           Greece 1795           0
## 10252                        Greenland 1795           0
## 10253                          Grenada 1795           0
## 10254                       Guadeloupe 1795           0
## 10255                        Guatemala 1795           0
## 10256                           Guinea 1795           0
## 10257                    Guinea-Bissau 1795           0
## 10258                           Guyana 1795           0
## 10259                            Haiti 1795           0
## 10260                         Honduras 1795           0
## 10261                        Hong Kong 1795           0
## 10262                          Hungary 1795           0
## 10263                          Iceland 1795           0
## 10264                            India 1795           0
## 10265                        Indonesia 1795           0
## 10266                             Iran 1795           0
## 10267                             Iraq 1795           0
## 10268                          Ireland 1795           0
## 10269                           Israel 1795           0
## 10270                            Italy 1795           0
## 10271                          Jamaica 1795           0
## 10272                            Japan 1795           0
## 10273                           Jordan 1795           0
## 10274                       Kazakhstan 1795           0
## 10275                            Kenya 1795           0
## 10276                         Kiribati 1795           0
## 10277                           Kuwait 1795           0
## 10278                       Kyrgysztan 1795           0
## 10279                       Kyrgyzstan 1795           0
## 10280                             Laos 1795           0
## 10281                           Latvia 1795           0
## 10282                          Lebanon 1795           0
## 10283                          Lesotho 1795           0
## 10284                          Liberia 1795           0
## 10285                            Libya 1795           0
## 10286                    Liechtenstein 1795           0
## 10287                        Lithuania 1795           0
## 10288                       Luxembourg 1795           0
## 10289                            Macao 1795           0
## 10290                        Macedonia 1795           0
## 10291                       Madagascar 1795           0
## 10292                           Malawi 1795           0
## 10293                         Malaysia 1795           0
## 10294                         Maldives 1795           0
## 10295                             Mali 1795           0
## 10296                            Malta 1795           0
## 10297                 Marshall Islands 1795           0
## 10298                       Martinique 1795           0
## 10299                       Mauritania 1795           0
## 10300                        Mauritius 1795           0
## 10301                           Mexico 1795           0
## 10302             Micronesia (country) 1795           0
## 10303                      Middle East 1795           0
## 10304                          Moldova 1795           0
## 10305                         Mongolia 1795           0
## 10306                       Montenegro 1795           0
## 10307                       Montserrat 1795           0
## 10308                          Morocco 1795           0
## 10309                       Mozambique 1795           0
## 10310                          Myanmar 1795           0
## 10311                          Namibia 1795           0
## 10312                            Nauru 1795           0
## 10313                            Nepal 1795           0
## 10314                      Netherlands 1795           0
## 10315                    New Caledonia 1795           0
## 10316                      New Zealand 1795           0
## 10317                        Nicaragua 1795           0
## 10318                            Niger 1795           0
## 10319                          Nigeria 1795           0
## 10320                             Niue 1795           0
## 10321                      North Korea 1795           0
## 10322                           Norway 1795           0
## 10323                             Oman 1795           0
## 10324                         Pakistan 1795           0
## 10325                            Palau 1795           0
## 10326                        Palestine 1795           0
## 10327                           Panama 1795           0
## 10328                 Papua New Guinea 1795           0
## 10329                         Paraguay 1795           0
## 10330                             Peru 1795           0
## 10331                      Philippines 1795           0
## 10332                           Poland 1795           0
## 10333                         Portugal 1795           0
## 10334                            Qatar 1795           0
## 10335                          Reunion 1795           0
## 10336                          Romania 1795           0
## 10337                           Russia 1795           0
## 10338                           Rwanda 1795           0
## 10339                     Saint Helena 1795           0
## 10340            Saint Kitts and Nevis 1795           0
## 10341                      Saint Lucia 1795           0
## 10342        Saint Pierre and Miquelon 1795           0
## 10343 Saint Vincent and the Grenadines 1795           0
## 10344                            Samoa 1795           0
## 10345            Sao Tome and Principe 1795           0
## 10346                     Saudi Arabia 1795           0
## 10347                          Senegal 1795           0
## 10348                           Serbia 1795           0
## 10349                       Seychelles 1795           0
## 10350                     Sierra Leone 1795           0
## 10351                        Singapore 1795           0
## 10352        Sint Maarten (Dutch part) 1795           0
## 10353                         Slovakia 1795           0
## 10354                         Slovenia 1795           0
## 10355                  Solomon Islands 1795           0
## 10356                          Somalia 1795           0
## 10357                     South Africa 1795           0
## 10358                      South Korea 1795           0
## 10359                      South Sudan 1795           0
## 10360                            Spain 1795           0
## 10361                        Sri Lanka 1795           0
## 10362                            Sudan 1795           0
## 10363                         Suriname 1795           0
## 10364                        Swaziland 1795           0
## 10365                           Sweden 1795           0
## 10366                      Switzerland 1795           0
## 10367                            Syria 1795           0
## 10368                           Taiwan 1795           0
## 10369                       Tajikistan 1795           0
## 10370                         Tanzania 1795           0
## 10371                         Thailand 1795           0
## 10372                            Timor 1795           0
## 10373                             Togo 1795           0
## 10374                            Tonga 1795           0
## 10375              Trinidad and Tobago 1795           0
## 10376                          Tunisia 1795           0
## 10377                           Turkey 1795           0
## 10378                     Turkmenistan 1795           0
## 10379         Turks and Caicos Islands 1795           0
## 10380                           Tuvalu 1795           0
## 10381                           Uganda 1795           0
## 10382                          Ukraine 1795           0
## 10383             United Arab Emirates 1795           0
## 10384                   United Kingdom 1795   643621904
## 10385                    United States 1795           0
## 10386                          Uruguay 1795           0
## 10387                       Uzbekistan 1795           0
## 10388                          Vanuatu 1795           0
## 10389                        Venezuela 1795           0
## 10390                          Vietnam 1795           0
## 10391        Wallis and Futuna Islands 1795           0
## 10392                            World 1795   645501536
## 10393                            Yemen 1795           0
## 10394                           Zambia 1795           0
## 10395                         Zimbabwe 1795           0
## 10396                      Afghanistan 1796           0
## 10397                           Africa 1796           0
## 10398                          Albania 1796           0
## 10399                          Algeria 1796           0
## 10400                 Americas (other) 1796       43968
## 10401                          Andorra 1796           0
## 10402                           Angola 1796           0
## 10403                         Anguilla 1796           0
## 10404              Antarctic Fisheries 1796           0
## 10405              Antigua and Barbuda 1796           0
## 10406                        Argentina 1796           0
## 10407                          Armenia 1796           0
## 10408                            Aruba 1796           0
## 10409         Asia and Pacific (other) 1796           0
## 10410                        Australia 1796           0
## 10411                          Austria 1796           0
## 10412                       Azerbaijan 1796           0
## 10413                          Bahamas 1796           0
## 10414                          Bahrain 1796           0
## 10415                       Bangladesh 1796           0
## 10416                         Barbados 1796           0
## 10417                          Belarus 1796           0
## 10418                          Belgium 1796           0
## 10419                           Belize 1796           0
## 10420                            Benin 1796           0
## 10421                          Bermuda 1796           0
## 10422                           Bhutan 1796           0
## 10423                          Bolivia 1796           0
## 10424  Bonaire Sint Eustatius and Saba 1796           0
## 10425           Bosnia and Herzegovina 1796           0
## 10426                         Botswana 1796           0
## 10427                           Brazil 1796           0
## 10428           British Virgin Islands 1796           0
## 10429                           Brunei 1796           0
## 10430                         Bulgaria 1796           0
## 10431                     Burkina Faso 1796           0
## 10432                          Burundi 1796           0
## 10433                         Cambodia 1796           0
## 10434                         Cameroon 1796           0
## 10435                           Canada 1796       43968
## 10436                       Cape Verde 1796           0
## 10437                   Cayman Islands 1796           0
## 10438         Central African Republic 1796           0
## 10439                             Chad 1796           0
## 10440                            Chile 1796           0
## 10441                            China 1796           0
## 10442                 Christmas Island 1796           0
## 10443                         Colombia 1796           0
## 10444                          Comoros 1796           0
## 10445                            Congo 1796           0
## 10446                     Cook Islands 1796           0
## 10447                       Costa Rica 1796           0
## 10448                    Cote d'Ivoire 1796           0
## 10449                          Croatia 1796           0
## 10450                             Cuba 1796           0
## 10451                          Curacao 1796           0
## 10452                           Cyprus 1796           0
## 10453                   Czech Republic 1796           0
## 10454                   Czechoslovakia 1796           0
## 10455     Democratic Republic of Congo 1796           0
## 10456                          Denmark 1796           0
## 10457                         Djibouti 1796           0
## 10458                         Dominica 1796           0
## 10459               Dominican Republic 1796           0
## 10460                            EU-28 1796   668408864
## 10461                          Ecuador 1796           0
## 10462                            Egypt 1796           0
## 10463                      El Salvador 1796           0
## 10464                Equatorial Guinea 1796           0
## 10465                          Eritrea 1796           0
## 10466                          Estonia 1796           0
## 10467                         Ethiopia 1796           0
## 10468                   Europe (other) 1796           0
## 10469                   Faeroe Islands 1796           0
## 10470                 Falkland Islands 1796           0
## 10471                             Fiji 1796           0
## 10472                          Finland 1796           0
## 10473                           France 1796           0
## 10474                    French Guiana 1796           0
## 10475                 French Polynesia 1796           0
## 10476                            Gabon 1796           0
## 10477                           Gambia 1796           0
## 10478                          Georgia 1796           0
## 10479                          Germany 1796     2374272
## 10480                            Ghana 1796           0
## 10481                        Gibraltar 1796           0
## 10482                           Greece 1796           0
## 10483                        Greenland 1796           0
## 10484                          Grenada 1796           0
## 10485                       Guadeloupe 1796           0
## 10486                        Guatemala 1796           0
## 10487                           Guinea 1796           0
## 10488                    Guinea-Bissau 1796           0
## 10489                           Guyana 1796           0
## 10490                            Haiti 1796           0
## 10491                         Honduras 1796           0
## 10492                        Hong Kong 1796           0
## 10493                          Hungary 1796           0
## 10494                          Iceland 1796           0
## 10495                            India 1796           0
## 10496                        Indonesia 1796           0
## 10497                             Iran 1796           0
## 10498                             Iraq 1796           0
## 10499                          Ireland 1796           0
## 10500                           Israel 1796           0
## 10501                            Italy 1796           0
## 10502                          Jamaica 1796           0
## 10503                            Japan 1796           0
## 10504                           Jordan 1796           0
## 10505                       Kazakhstan 1796           0
## 10506                            Kenya 1796           0
## 10507                         Kiribati 1796           0
## 10508                           Kuwait 1796           0
## 10509                       Kyrgysztan 1796           0
## 10510                       Kyrgyzstan 1796           0
## 10511                             Laos 1796           0
## 10512                           Latvia 1796           0
## 10513                          Lebanon 1796           0
## 10514                          Lesotho 1796           0
## 10515                          Liberia 1796           0
## 10516                            Libya 1796           0
## 10517                    Liechtenstein 1796           0
## 10518                        Lithuania 1796           0
## 10519                       Luxembourg 1796           0
## 10520                            Macao 1796           0
## 10521                        Macedonia 1796           0
## 10522                       Madagascar 1796           0
## 10523                           Malawi 1796           0
## 10524                         Malaysia 1796           0
## 10525                         Maldives 1796           0
## 10526                             Mali 1796           0
## 10527                            Malta 1796           0
## 10528                 Marshall Islands 1796           0
## 10529                       Martinique 1796           0
## 10530                       Mauritania 1796           0
## 10531                        Mauritius 1796           0
## 10532                           Mexico 1796           0
## 10533             Micronesia (country) 1796           0
## 10534                      Middle East 1796           0
## 10535                          Moldova 1796           0
## 10536                         Mongolia 1796           0
## 10537                       Montenegro 1796           0
## 10538                       Montserrat 1796           0
## 10539                          Morocco 1796           0
## 10540                       Mozambique 1796           0
## 10541                          Myanmar 1796           0
## 10542                          Namibia 1796           0
## 10543                            Nauru 1796           0
## 10544                            Nepal 1796           0
## 10545                      Netherlands 1796           0
## 10546                    New Caledonia 1796           0
## 10547                      New Zealand 1796           0
## 10548                        Nicaragua 1796           0
## 10549                            Niger 1796           0
## 10550                          Nigeria 1796           0
## 10551                             Niue 1796           0
## 10552                      North Korea 1796           0
## 10553                           Norway 1796           0
## 10554                             Oman 1796           0
## 10555                         Pakistan 1796           0
## 10556                            Palau 1796           0
## 10557                        Palestine 1796           0
## 10558                           Panama 1796           0
## 10559                 Papua New Guinea 1796           0
## 10560                         Paraguay 1796           0
## 10561                             Peru 1796           0
## 10562                      Philippines 1796           0
## 10563                           Poland 1796           0
## 10564                         Portugal 1796           0
## 10565                            Qatar 1796           0
## 10566                          Reunion 1796           0
## 10567                          Romania 1796           0
## 10568                           Russia 1796           0
## 10569                           Rwanda 1796           0
## 10570                     Saint Helena 1796           0
## 10571            Saint Kitts and Nevis 1796           0
## 10572                      Saint Lucia 1796           0
## 10573        Saint Pierre and Miquelon 1796           0
## 10574 Saint Vincent and the Grenadines 1796           0
## 10575                            Samoa 1796           0
## 10576            Sao Tome and Principe 1796           0
## 10577                     Saudi Arabia 1796           0
## 10578                          Senegal 1796           0
## 10579                           Serbia 1796           0
## 10580                       Seychelles 1796           0
## 10581                     Sierra Leone 1796           0
## 10582                        Singapore 1796           0
## 10583        Sint Maarten (Dutch part) 1796           0
## 10584                         Slovakia 1796           0
## 10585                         Slovenia 1796           0
## 10586                  Solomon Islands 1796           0
## 10587                          Somalia 1796           0
## 10588                     South Africa 1796           0
## 10589                      South Korea 1796           0
## 10590                      South Sudan 1796           0
## 10591                            Spain 1796           0
## 10592                        Sri Lanka 1796           0
## 10593                            Sudan 1796           0
## 10594                         Suriname 1796           0
## 10595                        Swaziland 1796           0
## 10596                           Sweden 1796           0
## 10597                      Switzerland 1796           0
## 10598                            Syria 1796           0
## 10599                           Taiwan 1796           0
## 10600                       Tajikistan 1796           0
## 10601                         Tanzania 1796           0
## 10602                         Thailand 1796           0
## 10603                            Timor 1796           0
## 10604                             Togo 1796           0
## 10605                            Tonga 1796           0
## 10606              Trinidad and Tobago 1796           0
## 10607                          Tunisia 1796           0
## 10608                           Turkey 1796           0
## 10609                     Turkmenistan 1796           0
## 10610         Turks and Caicos Islands 1796           0
## 10611                           Tuvalu 1796           0
## 10612                           Uganda 1796           0
## 10613                          Ukraine 1796           0
## 10614             United Arab Emirates 1796           0
## 10615                   United Kingdom 1796   666034592
## 10616                    United States 1796           0
## 10617                          Uruguay 1796           0
## 10618                       Uzbekistan 1796           0
## 10619                          Vanuatu 1796           0
## 10620                        Venezuela 1796           0
## 10621                          Vietnam 1796           0
## 10622        Wallis and Futuna Islands 1796           0
## 10623                            World 1796   668452832
## 10624                            Yemen 1796           0
## 10625                           Zambia 1796           0
## 10626                         Zimbabwe 1796           0
## 10627                      Afghanistan 1797           0
## 10628                           Africa 1797           0
## 10629                          Albania 1797           0
## 10630                          Algeria 1797           0
## 10631                 Americas (other) 1797       47632
## 10632                          Andorra 1797           0
## 10633                           Angola 1797           0
## 10634                         Anguilla 1797           0
## 10635              Antarctic Fisheries 1797           0
## 10636              Antigua and Barbuda 1797           0
## 10637                        Argentina 1797           0
## 10638                          Armenia 1797           0
## 10639                            Aruba 1797           0
## 10640         Asia and Pacific (other) 1797           0
## 10641                        Australia 1797           0
## 10642                          Austria 1797           0
## 10643                       Azerbaijan 1797           0
## 10644                          Bahamas 1797           0
## 10645                          Bahrain 1797           0
## 10646                       Bangladesh 1797           0
## 10647                         Barbados 1797           0
## 10648                          Belarus 1797           0
## 10649                          Belgium 1797           0
## 10650                           Belize 1797           0
## 10651                            Benin 1797           0
## 10652                          Bermuda 1797           0
## 10653                           Bhutan 1797           0
## 10654                          Bolivia 1797           0
## 10655  Bonaire Sint Eustatius and Saba 1797           0
## 10656           Bosnia and Herzegovina 1797           0
## 10657                         Botswana 1797           0
## 10658                           Brazil 1797           0
## 10659           British Virgin Islands 1797           0
## 10660                           Brunei 1797           0
## 10661                         Bulgaria 1797           0
## 10662                     Burkina Faso 1797           0
## 10663                          Burundi 1797           0
## 10664                         Cambodia 1797           0
## 10665                         Cameroon 1797           0
## 10666                           Canada 1797       47632
## 10667                       Cape Verde 1797           0
## 10668                   Cayman Islands 1797           0
## 10669         Central African Republic 1797           0
## 10670                             Chad 1797           0
## 10671                            Chile 1797           0
## 10672                            China 1797           0
## 10673                 Christmas Island 1797           0
## 10674                         Colombia 1797           0
## 10675                          Comoros 1797           0
## 10676                            Congo 1797           0
## 10677                     Cook Islands 1797           0
## 10678                       Costa Rica 1797           0
## 10679                    Cote d'Ivoire 1797           0
## 10680                          Croatia 1797           0
## 10681                             Cuba 1797           0
## 10682                          Curacao 1797           0
## 10683                           Cyprus 1797           0
## 10684                   Czech Republic 1797           0
## 10685                   Czechoslovakia 1797           0
## 10686     Democratic Republic of Congo 1797           0
## 10687                          Denmark 1797           0
## 10688                         Djibouti 1797           0
## 10689                         Dominica 1797           0
## 10690               Dominican Republic 1797           0
## 10691                            EU-28 1797   692499664
## 10692                          Ecuador 1797           0
## 10693                            Egypt 1797           0
## 10694                      El Salvador 1797           0
## 10695                Equatorial Guinea 1797           0
## 10696                          Eritrea 1797           0
## 10697                          Estonia 1797           0
## 10698                         Ethiopia 1797           0
## 10699                   Europe (other) 1797           0
## 10700                   Faeroe Islands 1797           0
## 10701                 Falkland Islands 1797           0
## 10702                             Fiji 1797           0
## 10703                          Finland 1797           0
## 10704                           France 1797           0
## 10705                    French Guiana 1797           0
## 10706                 French Polynesia 1797           0
## 10707                            Gabon 1797           0
## 10708                           Gambia 1797           0
## 10709                          Georgia 1797           0
## 10710                          Germany 1797     2923872
## 10711                            Ghana 1797           0
## 10712                        Gibraltar 1797           0
## 10713                           Greece 1797           0
## 10714                        Greenland 1797           0
## 10715                          Grenada 1797           0
## 10716                       Guadeloupe 1797           0
## 10717                        Guatemala 1797           0
## 10718                           Guinea 1797           0
## 10719                    Guinea-Bissau 1797           0
## 10720                           Guyana 1797           0
## 10721                            Haiti 1797           0
## 10722                         Honduras 1797           0
## 10723                        Hong Kong 1797           0
## 10724                          Hungary 1797           0
## 10725                          Iceland 1797           0
## 10726                            India 1797           0
## 10727                        Indonesia 1797           0
## 10728                             Iran 1797           0
## 10729                             Iraq 1797           0
## 10730                          Ireland 1797           0
## 10731                           Israel 1797           0
## 10732                            Italy 1797           0
## 10733                          Jamaica 1797           0
## 10734                            Japan 1797           0
## 10735                           Jordan 1797           0
## 10736                       Kazakhstan 1797           0
## 10737                            Kenya 1797           0
## 10738                         Kiribati 1797           0
## 10739                           Kuwait 1797           0
## 10740                       Kyrgysztan 1797           0
## 10741                       Kyrgyzstan 1797           0
## 10742                             Laos 1797           0
## 10743                           Latvia 1797           0
## 10744                          Lebanon 1797           0
## 10745                          Lesotho 1797           0
## 10746                          Liberia 1797           0
## 10747                            Libya 1797           0
## 10748                    Liechtenstein 1797           0
## 10749                        Lithuania 1797           0
## 10750                       Luxembourg 1797           0
## 10751                            Macao 1797           0
## 10752                        Macedonia 1797           0
## 10753                       Madagascar 1797           0
## 10754                           Malawi 1797           0
## 10755                         Malaysia 1797           0
## 10756                         Maldives 1797           0
## 10757                             Mali 1797           0
## 10758                            Malta 1797           0
## 10759                 Marshall Islands 1797           0
## 10760                       Martinique 1797           0
## 10761                       Mauritania 1797           0
## 10762                        Mauritius 1797           0
## 10763                           Mexico 1797           0
## 10764             Micronesia (country) 1797           0
## 10765                      Middle East 1797           0
## 10766                          Moldova 1797           0
## 10767                         Mongolia 1797           0
## 10768                       Montenegro 1797           0
## 10769                       Montserrat 1797           0
## 10770                          Morocco 1797           0
## 10771                       Mozambique 1797           0
## 10772                          Myanmar 1797           0
## 10773                          Namibia 1797           0
## 10774                            Nauru 1797           0
## 10775                            Nepal 1797           0
## 10776                      Netherlands 1797           0
## 10777                    New Caledonia 1797           0
## 10778                      New Zealand 1797           0
## 10779                        Nicaragua 1797           0
## 10780                            Niger 1797           0
## 10781                          Nigeria 1797           0
## 10782                             Niue 1797           0
## 10783                      North Korea 1797           0
## 10784                           Norway 1797           0
## 10785                             Oman 1797           0
## 10786                         Pakistan 1797           0
## 10787                            Palau 1797           0
## 10788                        Palestine 1797           0
## 10789                           Panama 1797           0
## 10790                 Papua New Guinea 1797           0
## 10791                         Paraguay 1797           0
## 10792                             Peru 1797           0
## 10793                      Philippines 1797           0
## 10794                           Poland 1797           0
## 10795                         Portugal 1797           0
## 10796                            Qatar 1797           0
## 10797                          Reunion 1797           0
## 10798                          Romania 1797           0
## 10799                           Russia 1797           0
## 10800                           Rwanda 1797           0
## 10801                     Saint Helena 1797           0
## 10802            Saint Kitts and Nevis 1797           0
## 10803                      Saint Lucia 1797           0
## 10804        Saint Pierre and Miquelon 1797           0
## 10805 Saint Vincent and the Grenadines 1797           0
## 10806                            Samoa 1797           0
## 10807            Sao Tome and Principe 1797           0
## 10808                     Saudi Arabia 1797           0
## 10809                          Senegal 1797           0
## 10810                           Serbia 1797           0
## 10811                       Seychelles 1797           0
## 10812                     Sierra Leone 1797           0
## 10813                        Singapore 1797           0
## 10814        Sint Maarten (Dutch part) 1797           0
## 10815                         Slovakia 1797           0
## 10816                         Slovenia 1797           0
## 10817                  Solomon Islands 1797           0
## 10818                          Somalia 1797           0
## 10819                     South Africa 1797           0
## 10820                      South Korea 1797           0
## 10821                      South Sudan 1797           0
## 10822                            Spain 1797           0
## 10823                        Sri Lanka 1797           0
## 10824                            Sudan 1797           0
## 10825                         Suriname 1797           0
## 10826                        Swaziland 1797           0
## 10827                           Sweden 1797           0
## 10828                      Switzerland 1797           0
## 10829                            Syria 1797           0
## 10830                           Taiwan 1797           0
## 10831                       Tajikistan 1797           0
## 10832                         Tanzania 1797           0
## 10833                         Thailand 1797           0
## 10834                            Timor 1797           0
## 10835                             Togo 1797           0
## 10836                            Tonga 1797           0
## 10837              Trinidad and Tobago 1797           0
## 10838                          Tunisia 1797           0
## 10839                           Turkey 1797           0
## 10840                     Turkmenistan 1797           0
## 10841         Turks and Caicos Islands 1797           0
## 10842                           Tuvalu 1797           0
## 10843                           Uganda 1797           0
## 10844                          Ukraine 1797           0
## 10845             United Arab Emirates 1797           0
## 10846                   United Kingdom 1797   689575792
## 10847                    United States 1797           0
## 10848                          Uruguay 1797           0
## 10849                       Uzbekistan 1797           0
## 10850                          Vanuatu 1797           0
## 10851                        Venezuela 1797           0
## 10852                          Vietnam 1797           0
## 10853        Wallis and Futuna Islands 1797           0
## 10854                            World 1797   692547296
## 10855                            Yemen 1797           0
## 10856                           Zambia 1797           0
## 10857                         Zimbabwe 1797           0
## 10858                      Afghanistan 1798           0
## 10859                           Africa 1798           0
## 10860                          Albania 1798           0
## 10861                          Algeria 1798           0
## 10862                 Americas (other) 1798       51296
## 10863                          Andorra 1798           0
## 10864                           Angola 1798           0
## 10865                         Anguilla 1798           0
## 10866              Antarctic Fisheries 1798           0
## 10867              Antigua and Barbuda 1798           0
## 10868                        Argentina 1798           0
## 10869                          Armenia 1798           0
## 10870                            Aruba 1798           0
## 10871         Asia and Pacific (other) 1798           0
## 10872                        Australia 1798           0
## 10873                          Austria 1798           0
## 10874                       Azerbaijan 1798           0
## 10875                          Bahamas 1798           0
## 10876                          Bahrain 1798           0
## 10877                       Bangladesh 1798           0
## 10878                         Barbados 1798           0
## 10879                          Belarus 1798           0
## 10880                          Belgium 1798           0
## 10881                           Belize 1798           0
## 10882                            Benin 1798           0
## 10883                          Bermuda 1798           0
## 10884                           Bhutan 1798           0
## 10885                          Bolivia 1798           0
## 10886  Bonaire Sint Eustatius and Saba 1798           0
## 10887           Bosnia and Herzegovina 1798           0
## 10888                         Botswana 1798           0
## 10889                           Brazil 1798           0
## 10890           British Virgin Islands 1798           0
## 10891                           Brunei 1798           0
## 10892                         Bulgaria 1798           0
## 10893                     Burkina Faso 1798           0
## 10894                          Burundi 1798           0
## 10895                         Cambodia 1798           0
## 10896                         Cameroon 1798           0
## 10897                           Canada 1798       51296
## 10898                       Cape Verde 1798           0
## 10899                   Cayman Islands 1798           0
## 10900         Central African Republic 1798           0
## 10901                             Chad 1798           0
## 10902                            Chile 1798           0
## 10903                            China 1798           0
## 10904                 Christmas Island 1798           0
## 10905                         Colombia 1798           0
## 10906                          Comoros 1798           0
## 10907                            Congo 1798           0
## 10908                     Cook Islands 1798           0
## 10909                       Costa Rica 1798           0
## 10910                    Cote d'Ivoire 1798           0
## 10911                          Croatia 1798           0
## 10912                             Cuba 1798           0
## 10913                          Curacao 1798           0
## 10914                           Cyprus 1798           0
## 10915                   Czech Republic 1798           0
## 10916                   Czechoslovakia 1798           0
## 10917     Democratic Republic of Congo 1798           0
## 10918                          Denmark 1798           0
## 10919                         Djibouti 1798           0
## 10920                         Dominica 1798           0
## 10921               Dominican Republic 1798           0
## 10922                            EU-28 1798   717590736
## 10923                          Ecuador 1798           0
## 10924                            Egypt 1798           0
## 10925                      El Salvador 1798           0
## 10926                Equatorial Guinea 1798           0
## 10927                          Eritrea 1798           0
## 10928                          Estonia 1798           0
## 10929                         Ethiopia 1798           0
## 10930                   Europe (other) 1798           0
## 10931                   Faeroe Islands 1798           0
## 10932                 Falkland Islands 1798           0
## 10933                             Fiji 1798           0
## 10934                          Finland 1798           0
## 10935                           France 1798           0
## 10936                    French Guiana 1798           0
## 10937                 French Polynesia 1798           0
## 10938                            Gabon 1798           0
## 10939                           Gambia 1798           0
## 10940                          Georgia 1798           0
## 10941                          Germany 1798     3499120
## 10942                            Ghana 1798           0
## 10943                        Gibraltar 1798           0
## 10944                           Greece 1798           0
## 10945                        Greenland 1798           0
## 10946                          Grenada 1798           0
## 10947                       Guadeloupe 1798           0
## 10948                        Guatemala 1798           0
## 10949                           Guinea 1798           0
## 10950                    Guinea-Bissau 1798           0
## 10951                           Guyana 1798           0
## 10952                            Haiti 1798           0
## 10953                         Honduras 1798           0
## 10954                        Hong Kong 1798           0
## 10955                          Hungary 1798           0
## 10956                          Iceland 1798           0
## 10957                            India 1798           0
## 10958                        Indonesia 1798           0
## 10959                             Iran 1798           0
## 10960                             Iraq 1798           0
## 10961                          Ireland 1798           0
## 10962                           Israel 1798           0
## 10963                            Italy 1798           0
## 10964                          Jamaica 1798           0
## 10965                            Japan 1798           0
## 10966                           Jordan 1798           0
## 10967                       Kazakhstan 1798           0
## 10968                            Kenya 1798           0
## 10969                         Kiribati 1798           0
## 10970                           Kuwait 1798           0
## 10971                       Kyrgysztan 1798           0
## 10972                       Kyrgyzstan 1798           0
## 10973                             Laos 1798           0
## 10974                           Latvia 1798           0
## 10975                          Lebanon 1798           0
## 10976                          Lesotho 1798           0
## 10977                          Liberia 1798           0
## 10978                            Libya 1798           0
## 10979                    Liechtenstein 1798           0
## 10980                        Lithuania 1798           0
## 10981                       Luxembourg 1798           0
## 10982                            Macao 1798           0
## 10983                        Macedonia 1798           0
## 10984                       Madagascar 1798           0
## 10985                           Malawi 1798           0
## 10986                         Malaysia 1798           0
## 10987                         Maldives 1798           0
## 10988                             Mali 1798           0
## 10989                            Malta 1798           0
## 10990                 Marshall Islands 1798           0
## 10991                       Martinique 1798           0
## 10992                       Mauritania 1798           0
## 10993                        Mauritius 1798           0
## 10994                           Mexico 1798           0
## 10995             Micronesia (country) 1798           0
## 10996                      Middle East 1798           0
## 10997                          Moldova 1798           0
## 10998                         Mongolia 1798           0
## 10999                       Montenegro 1798           0
## 11000                       Montserrat 1798           0
## 11001                          Morocco 1798           0
## 11002                       Mozambique 1798           0
## 11003                          Myanmar 1798           0
## 11004                          Namibia 1798           0
## 11005                            Nauru 1798           0
## 11006                            Nepal 1798           0
## 11007                      Netherlands 1798           0
## 11008                    New Caledonia 1798           0
## 11009                      New Zealand 1798           0
## 11010                        Nicaragua 1798           0
## 11011                            Niger 1798           0
## 11012                          Nigeria 1798           0
## 11013                             Niue 1798           0
## 11014                      North Korea 1798           0
## 11015                           Norway 1798           0
## 11016                             Oman 1798           0
## 11017                         Pakistan 1798           0
## 11018                            Palau 1798           0
## 11019                        Palestine 1798           0
## 11020                           Panama 1798           0
## 11021                 Papua New Guinea 1798           0
## 11022                         Paraguay 1798           0
## 11023                             Peru 1798           0
## 11024                      Philippines 1798           0
## 11025                           Poland 1798           0
## 11026                         Portugal 1798           0
## 11027                            Qatar 1798           0
## 11028                          Reunion 1798           0
## 11029                          Romania 1798           0
## 11030                           Russia 1798           0
## 11031                           Rwanda 1798           0
## 11032                     Saint Helena 1798           0
## 11033            Saint Kitts and Nevis 1798           0
## 11034                      Saint Lucia 1798           0
## 11035        Saint Pierre and Miquelon 1798           0
## 11036 Saint Vincent and the Grenadines 1798           0
## 11037                            Samoa 1798           0
## 11038            Sao Tome and Principe 1798           0
## 11039                     Saudi Arabia 1798           0
## 11040                          Senegal 1798           0
## 11041                           Serbia 1798           0
## 11042                       Seychelles 1798           0
## 11043                     Sierra Leone 1798           0
## 11044                        Singapore 1798           0
## 11045        Sint Maarten (Dutch part) 1798           0
## 11046                         Slovakia 1798           0
## 11047                         Slovenia 1798           0
## 11048                  Solomon Islands 1798           0
## 11049                          Somalia 1798           0
## 11050                     South Africa 1798           0
## 11051                      South Korea 1798           0
## 11052                      South Sudan 1798           0
## 11053                            Spain 1798           0
## 11054                        Sri Lanka 1798           0
## 11055                            Sudan 1798           0
## 11056                         Suriname 1798           0
## 11057                        Swaziland 1798           0
## 11058                           Sweden 1798           0
## 11059                      Switzerland 1798           0
## 11060                            Syria 1798           0
## 11061                           Taiwan 1798           0
## 11062                       Tajikistan 1798           0
## 11063                         Tanzania 1798           0
## 11064                         Thailand 1798           0
## 11065                            Timor 1798           0
## 11066                             Togo 1798           0
## 11067                            Tonga 1798           0
## 11068              Trinidad and Tobago 1798           0
## 11069                          Tunisia 1798           0
## 11070                           Turkey 1798           0
## 11071                     Turkmenistan 1798           0
## 11072         Turks and Caicos Islands 1798           0
## 11073                           Tuvalu 1798           0
## 11074                           Uganda 1798           0
## 11075                          Ukraine 1798           0
## 11076             United Arab Emirates 1798           0
## 11077                   United Kingdom 1798   714091616
## 11078                    United States 1798           0
## 11079                          Uruguay 1798           0
## 11080                       Uzbekistan 1798           0
## 11081                          Vanuatu 1798           0
## 11082                        Venezuela 1798           0
## 11083                          Vietnam 1798           0
## 11084        Wallis and Futuna Islands 1798           0
## 11085                            World 1798   717642032
## 11086                            Yemen 1798           0
## 11087                           Zambia 1798           0
## 11088                         Zimbabwe 1798           0
## 11089                      Afghanistan 1799           0
## 11090                           Africa 1799           0
## 11091                          Albania 1799           0
## 11092                          Algeria 1799           0
## 11093                 Americas (other) 1799       54960
## 11094                          Andorra 1799           0
## 11095                           Angola 1799           0
## 11096                         Anguilla 1799           0
## 11097              Antarctic Fisheries 1799           0
## 11098              Antigua and Barbuda 1799           0
## 11099                        Argentina 1799           0
## 11100                          Armenia 1799           0
## 11101                            Aruba 1799           0
## 11102         Asia and Pacific (other) 1799           0
## 11103                        Australia 1799           0
## 11104                          Austria 1799           0
## 11105                       Azerbaijan 1799           0
## 11106                          Bahamas 1799           0
## 11107                          Bahrain 1799           0
## 11108                       Bangladesh 1799           0
## 11109                         Barbados 1799           0
## 11110                          Belarus 1799           0
## 11111                          Belgium 1799           0
## 11112                           Belize 1799           0
## 11113                            Benin 1799           0
## 11114                          Bermuda 1799           0
## 11115                           Bhutan 1799           0
## 11116                          Bolivia 1799           0
## 11117  Bonaire Sint Eustatius and Saba 1799           0
## 11118           Bosnia and Herzegovina 1799           0
## 11119                         Botswana 1799           0
## 11120                           Brazil 1799           0
## 11121           British Virgin Islands 1799           0
## 11122                           Brunei 1799           0
## 11123                         Bulgaria 1799           0
## 11124                     Burkina Faso 1799           0
## 11125                          Burundi 1799           0
## 11126                         Cambodia 1799           0
## 11127                         Cameroon 1799           0
## 11128                           Canada 1799       54960
## 11129                       Cape Verde 1799           0
## 11130                   Cayman Islands 1799           0
## 11131         Central African Republic 1799           0
## 11132                             Chad 1799           0
## 11133                            Chile 1799           0
## 11134                            China 1799           0
## 11135                 Christmas Island 1799           0
## 11136                         Colombia 1799           0
## 11137                          Comoros 1799           0
## 11138                            Congo 1799           0
## 11139                     Cook Islands 1799           0
## 11140                       Costa Rica 1799           0
## 11141                    Cote d'Ivoire 1799           0
## 11142                          Croatia 1799           0
## 11143                             Cuba 1799           0
## 11144                          Curacao 1799           0
## 11145                           Cyprus 1799           0
## 11146                   Czech Republic 1799           0
## 11147                   Czechoslovakia 1799           0
## 11148     Democratic Republic of Congo 1799           0
## 11149                          Denmark 1799           0
## 11150                         Djibouti 1799           0
## 11151                         Dominica 1799           0
## 11152               Dominican Republic 1799           0
## 11153                            EU-28 1799   744015504
## 11154                          Ecuador 1799           0
## 11155                            Egypt 1799           0
## 11156                      El Salvador 1799           0
## 11157                Equatorial Guinea 1799           0
## 11158                          Eritrea 1799           0
## 11159                          Estonia 1799           0
## 11160                         Ethiopia 1799           0
## 11161                   Europe (other) 1799           0
## 11162                   Faeroe Islands 1799           0
## 11163                 Falkland Islands 1799           0
## 11164                             Fiji 1799           0
## 11165                          Finland 1799           0
## 11166                           France 1799           0
## 11167                    French Guiana 1799           0
## 11168                 French Polynesia 1799           0
## 11169                            Gabon 1799           0
## 11170                           Gambia 1799           0
## 11171                          Georgia 1799           0
## 11172                          Germany 1799     4125664
## 11173                            Ghana 1799           0
## 11174                        Gibraltar 1799           0
## 11175                           Greece 1799           0
## 11176                        Greenland 1799           0
## 11177                          Grenada 1799           0
## 11178                       Guadeloupe 1799           0
## 11179                        Guatemala 1799           0
## 11180                           Guinea 1799           0
## 11181                    Guinea-Bissau 1799           0
## 11182                           Guyana 1799           0
## 11183                            Haiti 1799           0
## 11184                         Honduras 1799           0
## 11185                        Hong Kong 1799           0
## 11186                          Hungary 1799           0
## 11187                          Iceland 1799           0
## 11188                            India 1799           0
## 11189                        Indonesia 1799           0
## 11190                             Iran 1799           0
## 11191                             Iraq 1799           0
## 11192                          Ireland 1799           0
## 11193                           Israel 1799           0
## 11194                            Italy 1799           0
## 11195                          Jamaica 1799           0
## 11196                            Japan 1799           0
## 11197                           Jordan 1799           0
## 11198                       Kazakhstan 1799           0
## 11199                            Kenya 1799           0
## 11200                         Kiribati 1799           0
## 11201                           Kuwait 1799           0
## 11202                       Kyrgysztan 1799           0
## 11203                       Kyrgyzstan 1799           0
## 11204                             Laos 1799           0
## 11205                           Latvia 1799           0
## 11206                          Lebanon 1799           0
## 11207                          Lesotho 1799           0
## 11208                          Liberia 1799           0
## 11209                            Libya 1799           0
## 11210                    Liechtenstein 1799           0
## 11211                        Lithuania 1799           0
## 11212                       Luxembourg 1799           0
## 11213                            Macao 1799           0
## 11214                        Macedonia 1799           0
## 11215                       Madagascar 1799           0
## 11216                           Malawi 1799           0
## 11217                         Malaysia 1799           0
## 11218                         Maldives 1799           0
## 11219                             Mali 1799           0
## 11220                            Malta 1799           0
## 11221                 Marshall Islands 1799           0
## 11222                       Martinique 1799           0
## 11223                       Mauritania 1799           0
## 11224                        Mauritius 1799           0
## 11225                           Mexico 1799           0
## 11226             Micronesia (country) 1799           0
## 11227                      Middle East 1799           0
## 11228                          Moldova 1799           0
## 11229                         Mongolia 1799           0
## 11230                       Montenegro 1799           0
## 11231                       Montserrat 1799           0
## 11232                          Morocco 1799           0
## 11233                       Mozambique 1799           0
## 11234                          Myanmar 1799           0
## 11235                          Namibia 1799           0
## 11236                            Nauru 1799           0
## 11237                            Nepal 1799           0
## 11238                      Netherlands 1799           0
## 11239                    New Caledonia 1799           0
## 11240                      New Zealand 1799           0
## 11241                        Nicaragua 1799           0
## 11242                            Niger 1799           0
## 11243                          Nigeria 1799           0
## 11244                             Niue 1799           0
## 11245                      North Korea 1799           0
## 11246                           Norway 1799           0
## 11247                             Oman 1799           0
## 11248                         Pakistan 1799           0
## 11249                            Palau 1799           0
## 11250                        Palestine 1799           0
## 11251                           Panama 1799           0
## 11252                 Papua New Guinea 1799           0
## 11253                         Paraguay 1799           0
## 11254                             Peru 1799           0
## 11255                      Philippines 1799           0
## 11256                           Poland 1799           0
## 11257                         Portugal 1799           0
## 11258                            Qatar 1799           0
## 11259                          Reunion 1799           0
## 11260                          Romania 1799           0
## 11261                           Russia 1799           0
## 11262                           Rwanda 1799           0
## 11263                     Saint Helena 1799           0
## 11264            Saint Kitts and Nevis 1799           0
## 11265                      Saint Lucia 1799           0
## 11266        Saint Pierre and Miquelon 1799           0
## 11267 Saint Vincent and the Grenadines 1799           0
## 11268                            Samoa 1799           0
## 11269            Sao Tome and Principe 1799           0
## 11270                     Saudi Arabia 1799           0
## 11271                          Senegal 1799           0
## 11272                           Serbia 1799           0
## 11273                       Seychelles 1799           0
## 11274                     Sierra Leone 1799           0
## 11275                        Singapore 1799           0
## 11276        Sint Maarten (Dutch part) 1799           0
## 11277                         Slovakia 1799           0
## 11278                         Slovenia 1799           0
## 11279                  Solomon Islands 1799           0
## 11280                          Somalia 1799           0
## 11281                     South Africa 1799           0
## 11282                      South Korea 1799           0
## 11283                      South Sudan 1799           0
## 11284                            Spain 1799           0
## 11285                        Sri Lanka 1799           0
## 11286                            Sudan 1799           0
## 11287                         Suriname 1799           0
## 11288                        Swaziland 1799           0
## 11289                           Sweden 1799           0
## 11290                      Switzerland 1799           0
## 11291                            Syria 1799           0
## 11292                           Taiwan 1799           0
## 11293                       Tajikistan 1799           0
## 11294                         Tanzania 1799           0
## 11295                         Thailand 1799           0
## 11296                            Timor 1799           0
## 11297                             Togo 1799           0
## 11298                            Tonga 1799           0
## 11299              Trinidad and Tobago 1799           0
## 11300                          Tunisia 1799           0
## 11301                           Turkey 1799           0
## 11302                     Turkmenistan 1799           0
## 11303         Turks and Caicos Islands 1799           0
## 11304                           Tuvalu 1799           0
## 11305                           Uganda 1799           0
## 11306                          Ukraine 1799           0
## 11307             United Arab Emirates 1799           0
## 11308                   United Kingdom 1799   739889840
## 11309                    United States 1799           0
## 11310                          Uruguay 1799           0
## 11311                       Uzbekistan 1799           0
## 11312                          Vanuatu 1799           0
## 11313                        Venezuela 1799           0
## 11314                          Vietnam 1799           0
## 11315        Wallis and Futuna Islands 1799           0
## 11316                            World 1799   744070464
## 11317                            Yemen 1799           0
## 11318                           Zambia 1799           0
## 11319                         Zimbabwe 1799           0
## 11320                      Afghanistan 1800           0
## 11321                           Africa 1800           0
## 11322                          Albania 1800           0
## 11323                          Algeria 1800           0
## 11324                 Americas (other) 1800       58624
## 11325                          Andorra 1800           0
## 11326                           Angola 1800           0
## 11327                         Anguilla 1800           0
## 11328              Antarctic Fisheries 1800           0
## 11329              Antigua and Barbuda 1800           0
## 11330                        Argentina 1800           0
## 11331                          Armenia 1800           0
## 11332                            Aruba 1800           0
## 11333         Asia and Pacific (other) 1800           0
## 11334                        Australia 1800           0
## 11335                          Austria 1800           0
## 11336                       Azerbaijan 1800           0
## 11337                          Bahamas 1800           0
## 11338                          Bahrain 1800           0
## 11339                       Bangladesh 1800           0
## 11340                         Barbados 1800           0
## 11341                          Belarus 1800           0
## 11342                          Belgium 1800           0
## 11343                           Belize 1800           0
## 11344                            Benin 1800           0
## 11345                          Bermuda 1800           0
## 11346                           Bhutan 1800           0
## 11347                          Bolivia 1800           0
## 11348  Bonaire Sint Eustatius and Saba 1800           0
## 11349           Bosnia and Herzegovina 1800           0
## 11350                         Botswana 1800           0
## 11351                           Brazil 1800           0
## 11352           British Virgin Islands 1800           0
## 11353                           Brunei 1800           0
## 11354                         Bulgaria 1800           0
## 11355                     Burkina Faso 1800           0
## 11356                          Burundi 1800           0
## 11357                         Cambodia 1800           0
## 11358                         Cameroon 1800           0
## 11359                           Canada 1800       58624
## 11360                       Cape Verde 1800           0
## 11361                   Cayman Islands 1800           0
## 11362         Central African Republic 1800           0
## 11363                             Chad 1800           0
## 11364                            Chile 1800           0
## 11365                            China 1800           0
## 11366                 Christmas Island 1800           0
## 11367                         Colombia 1800           0
## 11368                          Comoros 1800           0
## 11369                            Congo 1800           0
## 11370                     Cook Islands 1800           0
## 11371                       Costa Rica 1800           0
## 11372                    Cote d'Ivoire 1800           0
## 11373                          Croatia 1800           0
## 11374                             Cuba 1800           0
## 11375                          Curacao 1800           0
## 11376                           Cyprus 1800           0
## 11377                   Czech Republic 1800           0
## 11378                   Czechoslovakia 1800           0
## 11379     Democratic Republic of Congo 1800           0
## 11380                          Denmark 1800           0
## 11381                         Djibouti 1800           0
## 11382                         Dominica 1800           0
## 11383               Dominican Republic 1800           0
## 11384                            EU-28 1800   771850912
## 11385                          Ecuador 1800           0
## 11386                            Egypt 1800           0
## 11387                      El Salvador 1800           0
## 11388                Equatorial Guinea 1800           0
## 11389                          Eritrea 1800           0
## 11390                          Estonia 1800           0
## 11391                         Ethiopia 1800           0
## 11392                   Europe (other) 1800           0
## 11393                   Faeroe Islands 1800           0
## 11394                 Falkland Islands 1800           0
## 11395                             Fiji 1800           0
## 11396                          Finland 1800           0
## 11397                           France 1800           0
## 11398                    French Guiana 1800           0
## 11399                 French Polynesia 1800           0
## 11400                            Gabon 1800           0
## 11401                           Gambia 1800           0
## 11402                          Georgia 1800           0
## 11403                          Germany 1800     4920752
## 11404                            Ghana 1800           0
## 11405                        Gibraltar 1800           0
## 11406                           Greece 1800           0
## 11407                        Greenland 1800           0
## 11408                          Grenada 1800           0
## 11409                       Guadeloupe 1800           0
## 11410                        Guatemala 1800           0
## 11411                           Guinea 1800           0
## 11412                    Guinea-Bissau 1800           0
## 11413                           Guyana 1800           0
## 11414                            Haiti 1800           0
## 11415                         Honduras 1800           0
## 11416                        Hong Kong 1800           0
## 11417                          Hungary 1800           0
## 11418                          Iceland 1800           0
## 11419                            India 1800           0
## 11420                        Indonesia 1800           0
## 11421                             Iran 1800           0
## 11422                             Iraq 1800           0
## 11423                          Ireland 1800           0
## 11424                           Israel 1800           0
## 11425                            Italy 1800           0
## 11426                          Jamaica 1800           0
## 11427                            Japan 1800           0
## 11428                           Jordan 1800           0
## 11429                       Kazakhstan 1800           0
## 11430                            Kenya 1800           0
## 11431                         Kiribati 1800           0
## 11432                           Kuwait 1800           0
## 11433                       Kyrgysztan 1800           0
## 11434                       Kyrgyzstan 1800           0
## 11435                             Laos 1800           0
## 11436                           Latvia 1800           0
## 11437                          Lebanon 1800           0
## 11438                          Lesotho 1800           0
## 11439                          Liberia 1800           0
## 11440                            Libya 1800           0
## 11441                    Liechtenstein 1800           0
## 11442                        Lithuania 1800           0
## 11443                       Luxembourg 1800           0
## 11444                            Macao 1800           0
## 11445                        Macedonia 1800           0
## 11446                       Madagascar 1800           0
## 11447                           Malawi 1800           0
## 11448                         Malaysia 1800           0
## 11449                         Maldives 1800           0
## 11450                             Mali 1800           0
## 11451                            Malta 1800           0
## 11452                 Marshall Islands 1800           0
## 11453                       Martinique 1800           0
## 11454                       Mauritania 1800           0
## 11455                        Mauritius 1800           0
## 11456                           Mexico 1800           0
## 11457             Micronesia (country) 1800           0
## 11458                      Middle East 1800           0
## 11459                          Moldova 1800           0
## 11460                         Mongolia 1800           0
## 11461                       Montenegro 1800           0
## 11462                       Montserrat 1800           0
## 11463                          Morocco 1800           0
## 11464                       Mozambique 1800           0
## 11465                          Myanmar 1800           0
## 11466                          Namibia 1800           0
## 11467                            Nauru 1800           0
## 11468                            Nepal 1800           0
## 11469                      Netherlands 1800           0
## 11470                    New Caledonia 1800           0
## 11471                      New Zealand 1800           0
## 11472                        Nicaragua 1800           0
## 11473                            Niger 1800           0
## 11474                          Nigeria 1800           0
## 11475                             Niue 1800           0
## 11476                      North Korea 1800           0
## 11477                           Norway 1800           0
## 11478                             Oman 1800           0
## 11479                         Pakistan 1800           0
## 11480                            Palau 1800           0
## 11481                        Palestine 1800           0
## 11482                           Panama 1800           0
## 11483                 Papua New Guinea 1800           0
## 11484                         Paraguay 1800           0
## 11485                             Peru 1800           0
## 11486                      Philippines 1800           0
## 11487                           Poland 1800      406704
## 11488                         Portugal 1800           0
## 11489                            Qatar 1800           0
## 11490                          Reunion 1800           0
## 11491                          Romania 1800           0
## 11492                           Russia 1800           0
## 11493                           Rwanda 1800           0
## 11494                     Saint Helena 1800           0
## 11495            Saint Kitts and Nevis 1800           0
## 11496                      Saint Lucia 1800           0
## 11497        Saint Pierre and Miquelon 1800           0
## 11498 Saint Vincent and the Grenadines 1800           0
## 11499                            Samoa 1800           0
## 11500            Sao Tome and Principe 1800           0
## 11501                     Saudi Arabia 1800           0
## 11502                          Senegal 1800           0
## 11503                           Serbia 1800           0
## 11504                       Seychelles 1800           0
## 11505                     Sierra Leone 1800           0
## 11506                        Singapore 1800           0
## 11507        Sint Maarten (Dutch part) 1800           0
## 11508                         Slovakia 1800           0
## 11509                         Slovenia 1800           0
## 11510                  Solomon Islands 1800           0
## 11511                          Somalia 1800           0
## 11512                     South Africa 1800           0
## 11513                      South Korea 1800           0
## 11514                      South Sudan 1800           0
## 11515                            Spain 1800           0
## 11516                        Sri Lanka 1800           0
## 11517                            Sudan 1800           0
## 11518                         Suriname 1800           0
## 11519                        Swaziland 1800           0
## 11520                           Sweden 1800           0
## 11521                      Switzerland 1800           0
## 11522                            Syria 1800           0
## 11523                           Taiwan 1800           0
## 11524                       Tajikistan 1800           0
## 11525                         Tanzania 1800           0
## 11526                         Thailand 1800           0
## 11527                            Timor 1800           0
## 11528                             Togo 1800           0
## 11529                            Tonga 1800           0
## 11530              Trinidad and Tobago 1800           0
## 11531                          Tunisia 1800           0
## 11532                           Turkey 1800           0
## 11533                     Turkmenistan 1800           0
## 11534         Turks and Caicos Islands 1800           0
## 11535                           Tuvalu 1800           0
## 11536                           Uganda 1800           0
## 11537                          Ukraine 1800           0
## 11538             United Arab Emirates 1800           0
## 11539                   United Kingdom 1800   766523456
## 11540                    United States 1800      252816
## 11541                          Uruguay 1800           0
## 11542                       Uzbekistan 1800           0
## 11543                          Vanuatu 1800           0
## 11544                        Venezuela 1800           0
## 11545                          Vietnam 1800           0
## 11546        Wallis and Futuna Islands 1800           0
## 11547                            World 1800   772162352
## 11548                            Yemen 1800           0
## 11549                           Zambia 1800           0
## 11550                         Zimbabwe 1800           0
## 11551                      Afghanistan 1801           0
## 11552                           Africa 1801           0
## 11553                          Albania 1801           0
## 11554                          Algeria 1801           0
## 11555                 Americas (other) 1801       62288
## 11556                          Andorra 1801           0
## 11557                           Angola 1801           0
## 11558                         Anguilla 1801           0
## 11559              Antarctic Fisheries 1801           0
## 11560              Antigua and Barbuda 1801           0
## 11561                        Argentina 1801           0
## 11562                          Armenia 1801           0
## 11563                            Aruba 1801           0
## 11564         Asia and Pacific (other) 1801           0
## 11565                        Australia 1801           0
## 11566                          Austria 1801           0
## 11567                       Azerbaijan 1801           0
## 11568                          Bahamas 1801           0
## 11569                          Bahrain 1801           0
## 11570                       Bangladesh 1801           0
## 11571                         Barbados 1801           0
## 11572                          Belarus 1801           0
## 11573                          Belgium 1801           0
## 11574                           Belize 1801           0
## 11575                            Benin 1801           0
## 11576                          Bermuda 1801           0
## 11577                           Bhutan 1801           0
## 11578                          Bolivia 1801           0
## 11579  Bonaire Sint Eustatius and Saba 1801           0
## 11580           Bosnia and Herzegovina 1801           0
## 11581                         Botswana 1801           0
## 11582                           Brazil 1801           0
## 11583           British Virgin Islands 1801           0
## 11584                           Brunei 1801           0
## 11585                         Bulgaria 1801           0
## 11586                     Burkina Faso 1801           0
## 11587                          Burundi 1801           0
## 11588                         Cambodia 1801           0
## 11589                         Cameroon 1801           0
## 11590                           Canada 1801       62288
## 11591                       Cape Verde 1801           0
## 11592                   Cayman Islands 1801           0
## 11593         Central African Republic 1801           0
## 11594                             Chad 1801           0
## 11595                            Chile 1801           0
## 11596                            China 1801           0
## 11597                 Christmas Island 1801           0
## 11598                         Colombia 1801           0
## 11599                          Comoros 1801           0
## 11600                            Congo 1801           0
## 11601                     Cook Islands 1801           0
## 11602                       Costa Rica 1801           0
## 11603                    Cote d'Ivoire 1801           0
## 11604                          Croatia 1801           0
## 11605                             Cuba 1801           0
## 11606                          Curacao 1801           0
## 11607                           Cyprus 1801           0
## 11608                   Czech Republic 1801           0
## 11609                   Czechoslovakia 1801           0
## 11610     Democratic Republic of Congo 1801           0
## 11611                          Denmark 1801           0
## 11612                         Djibouti 1801           0
## 11613                         Dominica 1801           0
## 11614               Dominican Republic 1801           0
## 11615                            EU-28 1801   799539760
## 11616                          Ecuador 1801           0
## 11617                            Egypt 1801           0
## 11618                      El Salvador 1801           0
## 11619                Equatorial Guinea 1801           0
## 11620                          Eritrea 1801           0
## 11621                          Estonia 1801           0
## 11622                         Ethiopia 1801           0
## 11623                   Europe (other) 1801           0
## 11624                   Faeroe Islands 1801           0
## 11625                 Falkland Islands 1801           0
## 11626                             Fiji 1801           0
## 11627                          Finland 1801           0
## 11628                           France 1801           0
## 11629                    French Guiana 1801           0
## 11630                 French Polynesia 1801           0
## 11631                            Gabon 1801           0
## 11632                           Gambia 1801           0
## 11633                          Georgia 1801           0
## 11634                          Germany 1801     5455696
## 11635                            Ghana 1801           0
## 11636                        Gibraltar 1801           0
## 11637                           Greece 1801           0
## 11638                        Greenland 1801           0
## 11639                          Grenada 1801           0
## 11640                       Guadeloupe 1801           0
## 11641                        Guatemala 1801           0
## 11642                           Guinea 1801           0
## 11643                    Guinea-Bissau 1801           0
## 11644                           Guyana 1801           0
## 11645                            Haiti 1801           0
## 11646                         Honduras 1801           0
## 11647                        Hong Kong 1801           0
## 11648                          Hungary 1801           0
## 11649                          Iceland 1801           0
## 11650                            India 1801           0
## 11651                        Indonesia 1801           0
## 11652                             Iran 1801           0
## 11653                             Iraq 1801           0
## 11654                          Ireland 1801           0
## 11655                           Israel 1801           0
## 11656                            Italy 1801           0
## 11657                          Jamaica 1801           0
## 11658                            Japan 1801           0
## 11659                           Jordan 1801           0
## 11660                       Kazakhstan 1801           0
## 11661                            Kenya 1801           0
## 11662                         Kiribati 1801           0
## 11663                           Kuwait 1801           0
## 11664                       Kyrgysztan 1801           0
## 11665                       Kyrgyzstan 1801           0
## 11666                             Laos 1801           0
## 11667                           Latvia 1801           0
## 11668                          Lebanon 1801           0
## 11669                          Lesotho 1801           0
## 11670                          Liberia 1801           0
## 11671                            Libya 1801           0
## 11672                    Liechtenstein 1801           0
## 11673                        Lithuania 1801           0
## 11674                       Luxembourg 1801           0
## 11675                            Macao 1801           0
## 11676                        Macedonia 1801           0
## 11677                       Madagascar 1801           0
## 11678                           Malawi 1801           0
## 11679                         Malaysia 1801           0
## 11680                         Maldives 1801           0
## 11681                             Mali 1801           0
## 11682                            Malta 1801           0
## 11683                 Marshall Islands 1801           0
## 11684                       Martinique 1801           0
## 11685                       Mauritania 1801           0
## 11686                        Mauritius 1801           0
## 11687                           Mexico 1801           0
## 11688             Micronesia (country) 1801           0
## 11689                      Middle East 1801           0
## 11690                          Moldova 1801           0
## 11691                         Mongolia 1801           0
## 11692                       Montenegro 1801           0
## 11693                       Montserrat 1801           0
## 11694                          Morocco 1801           0
## 11695                       Mozambique 1801           0
## 11696                          Myanmar 1801           0
## 11697                          Namibia 1801           0
## 11698                            Nauru 1801           0
## 11699                            Nepal 1801           0
## 11700                      Netherlands 1801           0
## 11701                    New Caledonia 1801           0
## 11702                      New Zealand 1801           0
## 11703                        Nicaragua 1801           0
## 11704                            Niger 1801           0
## 11705                          Nigeria 1801           0
## 11706                             Niue 1801           0
## 11707                      North Korea 1801           0
## 11708                           Norway 1801           0
## 11709                             Oman 1801           0
## 11710                         Pakistan 1801           0
## 11711                            Palau 1801           0
## 11712                        Palestine 1801           0
## 11713                           Panama 1801           0
## 11714                 Papua New Guinea 1801           0
## 11715                         Paraguay 1801           0
## 11716                             Peru 1801           0
## 11717                      Philippines 1801           0
## 11718                           Poland 1801      850048
## 11719                         Portugal 1801           0
## 11720                            Qatar 1801           0
## 11721                          Reunion 1801           0
## 11722                          Romania 1801           0
## 11723                           Russia 1801           0
## 11724                           Rwanda 1801           0
## 11725                     Saint Helena 1801           0
## 11726            Saint Kitts and Nevis 1801           0
## 11727                      Saint Lucia 1801           0
## 11728        Saint Pierre and Miquelon 1801           0
## 11729 Saint Vincent and the Grenadines 1801           0
## 11730                            Samoa 1801           0
## 11731            Sao Tome and Principe 1801           0
## 11732                     Saudi Arabia 1801           0
## 11733                          Senegal 1801           0
## 11734                           Serbia 1801           0
## 11735                       Seychelles 1801           0
## 11736                     Sierra Leone 1801           0
## 11737                        Singapore 1801           0
## 11738        Sint Maarten (Dutch part) 1801           0
## 11739                         Slovakia 1801           0
## 11740                         Slovenia 1801           0
## 11741                  Solomon Islands 1801           0
## 11742                          Somalia 1801           0
## 11743                     South Africa 1801           0
## 11744                      South Korea 1801           0
## 11745                      South Sudan 1801           0
## 11746                            Spain 1801           0
## 11747                        Sri Lanka 1801           0
## 11748                            Sudan 1801           0
## 11749                         Suriname 1801           0
## 11750                        Swaziland 1801           0
## 11751                           Sweden 1801           0
## 11752                      Switzerland 1801           0
## 11753                            Syria 1801           0
## 11754                           Taiwan 1801           0
## 11755                       Tajikistan 1801           0
## 11756                         Tanzania 1801           0
## 11757                         Thailand 1801           0
## 11758                            Timor 1801           0
## 11759                             Togo 1801           0
## 11760                            Tonga 1801           0
## 11761              Trinidad and Tobago 1801           0
## 11762                          Tunisia 1801           0
## 11763                           Turkey 1801           0
## 11764                     Turkmenistan 1801           0
## 11765         Turks and Caicos Islands 1801           0
## 11766                           Tuvalu 1801           0
## 11767                           Uganda 1801           0
## 11768                          Ukraine 1801           0
## 11769             United Arab Emirates 1801           0
## 11770                   United Kingdom 1801   793234016
## 11771                    United States 1801      520288
## 11772                          Uruguay 1801           0
## 11773                       Uzbekistan 1801           0
## 11774                          Vanuatu 1801           0
## 11775                        Venezuela 1801           0
## 11776                          Vietnam 1801           0
## 11777        Wallis and Futuna Islands 1801           0
## 11778                            World 1801   800122336
## 11779                            Yemen 1801           0
## 11780                           Zambia 1801           0
## 11781                         Zimbabwe 1801           0
## 11782                      Afghanistan 1802           0
## 11783                           Africa 1802           0
## 11784                          Albania 1802           0
## 11785                          Algeria 1802           0
## 11786                 Americas (other) 1802       65952
## 11787                          Andorra 1802           0
## 11788                           Angola 1802           0
## 11789                         Anguilla 1802           0
## 11790              Antarctic Fisheries 1802           0
## 11791              Antigua and Barbuda 1802           0
## 11792                        Argentina 1802           0
## 11793                          Armenia 1802           0
## 11794                            Aruba 1802           0
## 11795         Asia and Pacific (other) 1802           0
## 11796                        Australia 1802           0
## 11797                          Austria 1802           0
## 11798                       Azerbaijan 1802           0
## 11799                          Bahamas 1802           0
## 11800                          Bahrain 1802           0
## 11801                       Bangladesh 1802           0
## 11802                         Barbados 1802           0
## 11803                          Belarus 1802           0
## 11804                          Belgium 1802     6397344
## 11805                           Belize 1802           0
## 11806                            Benin 1802           0
## 11807                          Bermuda 1802           0
## 11808                           Bhutan 1802           0
## 11809                          Bolivia 1802           0
## 11810  Bonaire Sint Eustatius and Saba 1802           0
## 11811           Bosnia and Herzegovina 1802           0
## 11812                         Botswana 1802           0
## 11813                           Brazil 1802           0
## 11814           British Virgin Islands 1802           0
## 11815                           Brunei 1802           0
## 11816                         Bulgaria 1802           0
## 11817                     Burkina Faso 1802           0
## 11818                          Burundi 1802           0
## 11819                         Cambodia 1802           0
## 11820                         Cameroon 1802           0
## 11821                           Canada 1802       65952
## 11822                       Cape Verde 1802           0
## 11823                   Cayman Islands 1802           0
## 11824         Central African Republic 1802           0
## 11825                             Chad 1802           0
## 11826                            Chile 1802           0
## 11827                            China 1802           0
## 11828                 Christmas Island 1802           0
## 11829                         Colombia 1802           0
## 11830                          Comoros 1802           0
## 11831                            Congo 1802           0
## 11832                     Cook Islands 1802           0
## 11833                       Costa Rica 1802           0
## 11834                    Cote d'Ivoire 1802           0
## 11835                          Croatia 1802           0
## 11836                             Cuba 1802           0
## 11837                          Curacao 1802           0
## 11838                           Cyprus 1802           0
## 11839                   Czech Republic 1802           0
## 11840                   Czechoslovakia 1802           0
## 11841     Democratic Republic of Congo 1802           0
## 11842                          Denmark 1802           0
## 11843                         Djibouti 1802           0
## 11844                         Dominica 1802           0
## 11845               Dominican Republic 1802           0
## 11846                            EU-28 1802   836029536
## 11847                          Ecuador 1802           0
## 11848                            Egypt 1802           0
## 11849                      El Salvador 1802           0
## 11850                Equatorial Guinea 1802           0
## 11851                          Eritrea 1802           0
## 11852                          Estonia 1802           0
## 11853                         Ethiopia 1802           0
## 11854                   Europe (other) 1802           0
## 11855                   Faeroe Islands 1802           0
## 11856                 Falkland Islands 1802           0
## 11857                             Fiji 1802           0
## 11858                          Finland 1802           0
## 11859                           France 1802     2238704
## 11860                    French Guiana 1802           0
## 11861                 French Polynesia 1802           0
## 11862                            Gabon 1802           0
## 11863                           Gambia 1802           0
## 11864                          Georgia 1802           0
## 11865                          Germany 1802     6008960
## 11866                            Ghana 1802           0
## 11867                        Gibraltar 1802           0
## 11868                           Greece 1802           0
## 11869                        Greenland 1802           0
## 11870                          Grenada 1802           0
## 11871                       Guadeloupe 1802           0
## 11872                        Guatemala 1802           0
## 11873                           Guinea 1802           0
## 11874                    Guinea-Bissau 1802           0
## 11875                           Guyana 1802           0
## 11876                            Haiti 1802           0
## 11877                         Honduras 1802           0
## 11878                        Hong Kong 1802           0
## 11879                          Hungary 1802           0
## 11880                          Iceland 1802           0
## 11881                            India 1802           0
## 11882                        Indonesia 1802           0
## 11883                             Iran 1802           0
## 11884                             Iraq 1802           0
## 11885                          Ireland 1802           0
## 11886                           Israel 1802           0
## 11887                            Italy 1802           0
## 11888                          Jamaica 1802           0
## 11889                            Japan 1802           0
## 11890                           Jordan 1802           0
## 11891                       Kazakhstan 1802           0
## 11892                            Kenya 1802           0
## 11893                         Kiribati 1802           0
## 11894                           Kuwait 1802           0
## 11895                       Kyrgysztan 1802           0
## 11896                       Kyrgyzstan 1802           0
## 11897                             Laos 1802           0
## 11898                           Latvia 1802           0
## 11899                          Lebanon 1802           0
## 11900                          Lesotho 1802           0
## 11901                          Liberia 1802           0
## 11902                            Libya 1802           0
## 11903                    Liechtenstein 1802           0
## 11904                        Lithuania 1802           0
## 11905                       Luxembourg 1802           0
## 11906                            Macao 1802           0
## 11907                        Macedonia 1802           0
## 11908                       Madagascar 1802           0
## 11909                           Malawi 1802           0
## 11910                         Malaysia 1802           0
## 11911                         Maldives 1802           0
## 11912                             Mali 1802           0
## 11913                            Malta 1802           0
## 11914                 Marshall Islands 1802           0
## 11915                       Martinique 1802           0
## 11916                       Mauritania 1802           0
## 11917                        Mauritius 1802           0
## 11918                           Mexico 1802           0
## 11919             Micronesia (country) 1802           0
## 11920                      Middle East 1802           0
## 11921                          Moldova 1802           0
## 11922                         Mongolia 1802           0
## 11923                       Montenegro 1802           0
## 11924                       Montserrat 1802           0
## 11925                          Morocco 1802           0
## 11926                       Mozambique 1802           0
## 11927                          Myanmar 1802           0
## 11928                          Namibia 1802           0
## 11929                            Nauru 1802           0
## 11930                            Nepal 1802           0
## 11931                      Netherlands 1802           0
## 11932                    New Caledonia 1802           0
## 11933                      New Zealand 1802           0
## 11934                        Nicaragua 1802           0
## 11935                            Niger 1802           0
## 11936                          Nigeria 1802           0
## 11937                             Niue 1802           0
## 11938                      North Korea 1802           0
## 11939                           Norway 1802           0
## 11940                             Oman 1802           0
## 11941                         Pakistan 1802           0
## 11942                            Palau 1802           0
## 11943                        Palestine 1802           0
## 11944                           Panama 1802           0
## 11945                 Papua New Guinea 1802           0
## 11946                         Paraguay 1802           0
## 11947                             Peru 1802           0
## 11948                      Philippines 1802           0
## 11949                           Poland 1802     1300720
## 11950                         Portugal 1802           0
## 11951                            Qatar 1802           0
## 11952                          Reunion 1802           0
## 11953                          Romania 1802           0
## 11954                           Russia 1802           0
## 11955                           Rwanda 1802           0
## 11956                     Saint Helena 1802           0
## 11957            Saint Kitts and Nevis 1802           0
## 11958                      Saint Lucia 1802           0
## 11959        Saint Pierre and Miquelon 1802           0
## 11960 Saint Vincent and the Grenadines 1802           0
## 11961                            Samoa 1802           0
## 11962            Sao Tome and Principe 1802           0
## 11963                     Saudi Arabia 1802           0
## 11964                          Senegal 1802           0
## 11965                           Serbia 1802           0
## 11966                       Seychelles 1802           0
## 11967                     Sierra Leone 1802           0
## 11968                        Singapore 1802           0
## 11969        Sint Maarten (Dutch part) 1802           0
## 11970                         Slovakia 1802           0
## 11971                         Slovenia 1802           0
## 11972                  Solomon Islands 1802           0
## 11973                          Somalia 1802           0
## 11974                     South Africa 1802           0
## 11975                      South Korea 1802           0
## 11976                      South Sudan 1802           0
## 11977                            Spain 1802           0
## 11978                        Sri Lanka 1802           0
## 11979                            Sudan 1802           0
## 11980                         Suriname 1802           0
## 11981                        Swaziland 1802           0
## 11982                           Sweden 1802           0
## 11983                      Switzerland 1802           0
## 11984                            Syria 1802           0
## 11985                           Taiwan 1802           0
## 11986                       Tajikistan 1802           0
## 11987                         Tanzania 1802           0
## 11988                         Thailand 1802           0
## 11989                            Timor 1802           0
## 11990                             Togo 1802           0
## 11991                            Tonga 1802           0
## 11992              Trinidad and Tobago 1802           0
## 11993                          Tunisia 1802           0
## 11994                           Turkey 1802           0
## 11995                     Turkmenistan 1802           0
## 11996         Turks and Caicos Islands 1802           0
## 11997                           Tuvalu 1802           0
## 11998                           Uganda 1802           0
## 11999                          Ukraine 1802           0
## 12000             United Arab Emirates 1802           0
## 12001                   United Kingdom 1802   820083808
## 12002                    United States 1802      809744
## 12003                          Uruguay 1802           0
## 12004                       Uzbekistan 1802           0
## 12005                          Vanuatu 1802           0
## 12006                        Venezuela 1802           0
## 12007                          Vietnam 1802           0
## 12008        Wallis and Futuna Islands 1802           0
## 12009                            World 1802   836905232
## 12010                            Yemen 1802           0
## 12011                           Zambia 1802           0
## 12012                         Zimbabwe 1802           0
## 12013                      Afghanistan 1803           0
## 12014                           Africa 1803           0
## 12015                          Albania 1803           0
## 12016                          Algeria 1803           0
## 12017                 Americas (other) 1803       69616
## 12018                          Andorra 1803           0
## 12019                           Angola 1803           0
## 12020                         Anguilla 1803           0
## 12021              Antarctic Fisheries 1803           0
## 12022              Antigua and Barbuda 1803           0
## 12023                        Argentina 1803           0
## 12024                          Armenia 1803           0
## 12025                            Aruba 1803           0
## 12026         Asia and Pacific (other) 1803           0
## 12027                        Australia 1803           0
## 12028                          Austria 1803           0
## 12029                       Azerbaijan 1803           0
## 12030                          Bahamas 1803           0
## 12031                          Bahrain 1803           0
## 12032                       Bangladesh 1803           0
## 12033                         Barbados 1803           0
## 12034                          Belarus 1803           0
## 12035                          Belgium 1803     6397344
## 12036                           Belize 1803           0
## 12037                            Benin 1803           0
## 12038                          Bermuda 1803           0
## 12039                           Bhutan 1803           0
## 12040                          Bolivia 1803           0
## 12041  Bonaire Sint Eustatius and Saba 1803           0
## 12042           Bosnia and Herzegovina 1803           0
## 12043                         Botswana 1803           0
## 12044                           Brazil 1803           0
## 12045           British Virgin Islands 1803           0
## 12046                           Brunei 1803           0
## 12047                         Bulgaria 1803           0
## 12048                     Burkina Faso 1803           0
## 12049                          Burundi 1803           0
## 12050                         Cambodia 1803           0
## 12051                         Cameroon 1803           0
## 12052                           Canada 1803       69616
## 12053                       Cape Verde 1803           0
## 12054                   Cayman Islands 1803           0
## 12055         Central African Republic 1803           0
## 12056                             Chad 1803           0
## 12057                            Chile 1803           0
## 12058                            China 1803           0
## 12059                 Christmas Island 1803           0
## 12060                         Colombia 1803           0
## 12061                          Comoros 1803           0
## 12062                            Congo 1803           0
## 12063                     Cook Islands 1803           0
## 12064                       Costa Rica 1803           0
## 12065                    Cote d'Ivoire 1803           0
## 12066                          Croatia 1803           0
## 12067                             Cuba 1803           0
## 12068                          Curacao 1803           0
## 12069                           Cyprus 1803           0
## 12070                   Czech Republic 1803           0
## 12071                   Czechoslovakia 1803           0
## 12072     Democratic Republic of Congo 1803           0
## 12073                          Denmark 1803           0
## 12074                         Djibouti 1803           0
## 12075                         Dominica 1803           0
## 12076               Dominican Republic 1803           0
## 12077                            EU-28 1803   867217504
## 12078                          Ecuador 1803           0
## 12079                            Egypt 1803           0
## 12080                      El Salvador 1803           0
## 12081                Equatorial Guinea 1803           0
## 12082                          Eritrea 1803           0
## 12083                          Estonia 1803           0
## 12084                         Ethiopia 1803           0
## 12085                   Europe (other) 1803           0
## 12086                   Faeroe Islands 1803           0
## 12087                 Falkland Islands 1803           0
## 12088                             Fiji 1803           0
## 12089                          Finland 1803           0
## 12090                           France 1803     2238704
## 12091                    French Guiana 1803           0
## 12092                 French Polynesia 1803           0
## 12093                            Gabon 1803           0
## 12094                           Gambia 1803           0
## 12095                          Georgia 1803           0
## 12096                          Germany 1803     6543904
## 12097                            Ghana 1803           0
## 12098                        Gibraltar 1803           0
## 12099                           Greece 1803           0
## 12100                        Greenland 1803           0
## 12101                          Grenada 1803           0
## 12102                       Guadeloupe 1803           0
## 12103                        Guatemala 1803           0
## 12104                           Guinea 1803           0
## 12105                    Guinea-Bissau 1803           0
## 12106                           Guyana 1803           0
## 12107                            Haiti 1803           0
## 12108                         Honduras 1803           0
## 12109                        Hong Kong 1803           0
## 12110                          Hungary 1803           0
## 12111                          Iceland 1803           0
## 12112                            India 1803           0
## 12113                        Indonesia 1803           0
## 12114                             Iran 1803           0
## 12115                             Iraq 1803           0
## 12116                          Ireland 1803           0
## 12117                           Israel 1803           0
## 12118                            Italy 1803           0
## 12119                          Jamaica 1803           0
## 12120                            Japan 1803           0
## 12121                           Jordan 1803           0
## 12122                       Kazakhstan 1803           0
## 12123                            Kenya 1803           0
## 12124                         Kiribati 1803           0
## 12125                           Kuwait 1803           0
## 12126                       Kyrgysztan 1803           0
## 12127                       Kyrgyzstan 1803           0
## 12128                             Laos 1803           0
## 12129                           Latvia 1803           0
## 12130                          Lebanon 1803           0
## 12131                          Lesotho 1803           0
## 12132                          Liberia 1803           0
## 12133                            Libya 1803           0
## 12134                    Liechtenstein 1803           0
## 12135                        Lithuania 1803           0
## 12136                       Luxembourg 1803           0
## 12137                            Macao 1803           0
## 12138                        Macedonia 1803           0
## 12139                       Madagascar 1803           0
## 12140                           Malawi 1803           0
## 12141                         Malaysia 1803           0
## 12142                         Maldives 1803           0
## 12143                             Mali 1803           0
## 12144                            Malta 1803           0
## 12145                 Marshall Islands 1803           0
## 12146                       Martinique 1803           0
## 12147                       Mauritania 1803           0
## 12148                        Mauritius 1803           0
## 12149                           Mexico 1803           0
## 12150             Micronesia (country) 1803           0
## 12151                      Middle East 1803           0
## 12152                          Moldova 1803           0
## 12153                         Mongolia 1803           0
## 12154                       Montenegro 1803           0
## 12155                       Montserrat 1803           0
## 12156                          Morocco 1803           0
## 12157                       Mozambique 1803           0
## 12158                          Myanmar 1803           0
## 12159                          Namibia 1803           0
## 12160                            Nauru 1803           0
## 12161                            Nepal 1803           0
## 12162                      Netherlands 1803           0
## 12163                    New Caledonia 1803           0
## 12164                      New Zealand 1803           0
## 12165                        Nicaragua 1803           0
## 12166                            Niger 1803           0
## 12167                          Nigeria 1803           0
## 12168                             Niue 1803           0
## 12169                      North Korea 1803           0
## 12170                           Norway 1803           0
## 12171                             Oman 1803           0
## 12172                         Pakistan 1803           0
## 12173                            Palau 1803           0
## 12174                        Palestine 1803           0
## 12175                           Panama 1803           0
## 12176                 Papua New Guinea 1803           0
## 12177                         Paraguay 1803           0
## 12178                             Peru 1803           0
## 12179                      Philippines 1803           0
## 12180                           Poland 1803     1762384
## 12181                         Portugal 1803           0
## 12182                            Qatar 1803           0
## 12183                          Reunion 1803           0
## 12184                          Romania 1803           0
## 12185                           Russia 1803           0
## 12186                           Rwanda 1803           0
## 12187                     Saint Helena 1803           0
## 12188            Saint Kitts and Nevis 1803           0
## 12189                      Saint Lucia 1803           0
## 12190        Saint Pierre and Miquelon 1803           0
## 12191 Saint Vincent and the Grenadines 1803           0
## 12192                            Samoa 1803           0
## 12193            Sao Tome and Principe 1803           0
## 12194                     Saudi Arabia 1803           0
## 12195                          Senegal 1803           0
## 12196                           Serbia 1803           0
## 12197                       Seychelles 1803           0
## 12198                     Sierra Leone 1803           0
## 12199                        Singapore 1803           0
## 12200        Sint Maarten (Dutch part) 1803           0
## 12201                         Slovakia 1803           0
## 12202                         Slovenia 1803           0
## 12203                  Solomon Islands 1803           0
## 12204                          Somalia 1803           0
## 12205                     South Africa 1803           0
## 12206                      South Korea 1803           0
## 12207                      South Sudan 1803           0
## 12208                            Spain 1803           0
## 12209                        Sri Lanka 1803           0
## 12210                            Sudan 1803           0
## 12211                         Suriname 1803           0
## 12212                        Swaziland 1803           0
## 12213                           Sweden 1803           0
## 12214                      Switzerland 1803           0
## 12215                            Syria 1803           0
## 12216                           Taiwan 1803           0
## 12217                       Tajikistan 1803           0
## 12218                         Tanzania 1803           0
## 12219                         Thailand 1803           0
## 12220                            Timor 1803           0
## 12221                             Togo 1803           0
## 12222                            Tonga 1803           0
## 12223              Trinidad and Tobago 1803           0
## 12224                          Tunisia 1803           0
## 12225                           Turkey 1803           0
## 12226                     Turkmenistan 1803           0
## 12227         Turks and Caicos Islands 1803           0
## 12228                           Tuvalu 1803           0
## 12229                           Uganda 1803           0
## 12230                          Ukraine 1803           0
## 12231             United Arab Emirates 1803           0
## 12232                   United Kingdom 1803   850275168
## 12233                    United States 1803     1106528
## 12234                          Uruguay 1803           0
## 12235                       Uzbekistan 1803           0
## 12236                          Vanuatu 1803           0
## 12237                        Venezuela 1803           0
## 12238                          Vietnam 1803           0
## 12239        Wallis and Futuna Islands 1803           0
## 12240                            World 1803   868393648
## 12241                            Yemen 1803           0
## 12242                           Zambia 1803           0
## 12243                         Zimbabwe 1803           0
## 12244                      Afghanistan 1804           0
## 12245                           Africa 1804           0
## 12246                          Albania 1804           0
## 12247                          Algeria 1804           0
## 12248                 Americas (other) 1804       73280
## 12249                          Andorra 1804           0
## 12250                           Angola 1804           0
## 12251                         Anguilla 1804           0
## 12252              Antarctic Fisheries 1804           0
## 12253              Antigua and Barbuda 1804           0
## 12254                        Argentina 1804           0
## 12255                          Armenia 1804           0
## 12256                            Aruba 1804           0
## 12257         Asia and Pacific (other) 1804           0
## 12258                        Australia 1804           0
## 12259                          Austria 1804           0
## 12260                       Azerbaijan 1804           0
## 12261                          Bahamas 1804           0
## 12262                          Bahrain 1804           0
## 12263                       Bangladesh 1804           0
## 12264                         Barbados 1804           0
## 12265                          Belarus 1804           0
## 12266                          Belgium 1804     6397344
## 12267                           Belize 1804           0
## 12268                            Benin 1804           0
## 12269                          Bermuda 1804           0
## 12270                           Bhutan 1804           0
## 12271                          Bolivia 1804           0
## 12272  Bonaire Sint Eustatius and Saba 1804           0
## 12273           Bosnia and Herzegovina 1804           0
## 12274                         Botswana 1804           0
## 12275                           Brazil 1804           0
## 12276           British Virgin Islands 1804           0
## 12277                           Brunei 1804           0
## 12278                         Bulgaria 1804           0
## 12279                     Burkina Faso 1804           0
## 12280                          Burundi 1804           0
## 12281                         Cambodia 1804           0
## 12282                         Cameroon 1804           0
## 12283                           Canada 1804       73280
## 12284                       Cape Verde 1804           0
## 12285                   Cayman Islands 1804           0
## 12286         Central African Republic 1804           0
## 12287                             Chad 1804           0
## 12288                            Chile 1804           0
## 12289                            China 1804           0
## 12290                 Christmas Island 1804           0
## 12291                         Colombia 1804           0
## 12292                          Comoros 1804           0
## 12293                            Congo 1804           0
## 12294                     Cook Islands 1804           0
## 12295                       Costa Rica 1804           0
## 12296                    Cote d'Ivoire 1804           0
## 12297                          Croatia 1804           0
## 12298                             Cuba 1804           0
## 12299                          Curacao 1804           0
## 12300                           Cyprus 1804           0
## 12301                   Czech Republic 1804           0
## 12302                   Czechoslovakia 1804           0
## 12303     Democratic Republic of Congo 1804           0
## 12304                          Denmark 1804           0
## 12305                         Djibouti 1804           0
## 12306                         Dominica 1804           0
## 12307               Dominican Republic 1804           0
## 12308                            EU-28 1804   901190112
## 12309                          Ecuador 1804           0
## 12310                            Egypt 1804           0
## 12311                      El Salvador 1804           0
## 12312                Equatorial Guinea 1804           0
## 12313                          Eritrea 1804           0
## 12314                          Estonia 1804           0
## 12315                         Ethiopia 1804           0
## 12316                   Europe (other) 1804           0
## 12317                   Faeroe Islands 1804           0
## 12318                 Falkland Islands 1804           0
## 12319                             Fiji 1804           0
## 12320                          Finland 1804           0
## 12321                           France 1804     4415120
## 12322                    French Guiana 1804           0
## 12323                 French Polynesia 1804           0
## 12324                            Gabon 1804           0
## 12325                           Gambia 1804           0
## 12326                          Georgia 1804           0
## 12327                          Germany 1804     7551504
## 12328                            Ghana 1804           0
## 12329                        Gibraltar 1804           0
## 12330                           Greece 1804           0
## 12331                        Greenland 1804           0
## 12332                          Grenada 1804           0
## 12333                       Guadeloupe 1804           0
## 12334                        Guatemala 1804           0
## 12335                           Guinea 1804           0
## 12336                    Guinea-Bissau 1804           0
## 12337                           Guyana 1804           0
## 12338                            Haiti 1804           0
## 12339                         Honduras 1804           0
## 12340                        Hong Kong 1804           0
## 12341                          Hungary 1804           0
## 12342                          Iceland 1804           0
## 12343                            India 1804           0
## 12344                        Indonesia 1804           0
## 12345                             Iran 1804           0
## 12346                             Iraq 1804           0
## 12347                          Ireland 1804           0
## 12348                           Israel 1804           0
## 12349                            Italy 1804           0
## 12350                          Jamaica 1804           0
## 12351                            Japan 1804           0
## 12352                           Jordan 1804           0
## 12353                       Kazakhstan 1804           0
## 12354                            Kenya 1804           0
## 12355                         Kiribati 1804           0
## 12356                           Kuwait 1804           0
## 12357                       Kyrgysztan 1804           0
## 12358                       Kyrgyzstan 1804           0
## 12359                             Laos 1804           0
## 12360                           Latvia 1804           0
## 12361                          Lebanon 1804           0
## 12362                          Lesotho 1804           0
## 12363                          Liberia 1804           0
## 12364                            Libya 1804           0
## 12365                    Liechtenstein 1804           0
## 12366                        Lithuania 1804           0
## 12367                       Luxembourg 1804           0
## 12368                            Macao 1804           0
## 12369                        Macedonia 1804           0
## 12370                       Madagascar 1804           0
## 12371                           Malawi 1804           0
## 12372                         Malaysia 1804           0
## 12373                         Maldives 1804           0
## 12374                             Mali 1804           0
## 12375                            Malta 1804           0
## 12376                 Marshall Islands 1804           0
## 12377                       Martinique 1804           0
## 12378                       Mauritania 1804           0
## 12379                        Mauritius 1804           0
## 12380                           Mexico 1804           0
## 12381             Micronesia (country) 1804           0
## 12382                      Middle East 1804           0
## 12383                          Moldova 1804           0
## 12384                         Mongolia 1804           0
## 12385                       Montenegro 1804           0
## 12386                       Montserrat 1804           0
## 12387                          Morocco 1804           0
## 12388                       Mozambique 1804           0
## 12389                          Myanmar 1804           0
## 12390                          Namibia 1804           0
## 12391                            Nauru 1804           0
## 12392                            Nepal 1804           0
## 12393                      Netherlands 1804           0
## 12394                    New Caledonia 1804           0
## 12395                      New Zealand 1804           0
## 12396                        Nicaragua 1804           0
## 12397                            Niger 1804           0
## 12398                          Nigeria 1804           0
## 12399                             Niue 1804           0
## 12400                      North Korea 1804           0
## 12401                           Norway 1804           0
## 12402                             Oman 1804           0
## 12403                         Pakistan 1804           0
## 12404                            Palau 1804           0
## 12405                        Palestine 1804           0
## 12406                           Panama 1804           0
## 12407                 Papua New Guinea 1804           0
## 12408                         Paraguay 1804           0
## 12409                             Peru 1804           0
## 12410                      Philippines 1804           0
## 12411                           Poland 1804     2220384
## 12412                         Portugal 1804           0
## 12413                            Qatar 1804           0
## 12414                          Reunion 1804           0
## 12415                          Romania 1804           0
## 12416                           Russia 1804           0
## 12417                           Rwanda 1804           0
## 12418                     Saint Helena 1804           0
## 12419            Saint Kitts and Nevis 1804           0
## 12420                      Saint Lucia 1804           0
## 12421        Saint Pierre and Miquelon 1804           0
## 12422 Saint Vincent and the Grenadines 1804           0
## 12423                            Samoa 1804           0
## 12424            Sao Tome and Principe 1804           0
## 12425                     Saudi Arabia 1804           0
## 12426                          Senegal 1804           0
## 12427                           Serbia 1804           0
## 12428                       Seychelles 1804           0
## 12429                     Sierra Leone 1804           0
## 12430                        Singapore 1804           0
## 12431        Sint Maarten (Dutch part) 1804           0
## 12432                         Slovakia 1804           0
## 12433                         Slovenia 1804           0
## 12434                  Solomon Islands 1804           0
## 12435                          Somalia 1804           0
## 12436                     South Africa 1804           0
## 12437                      South Korea 1804           0
## 12438                      South Sudan 1804           0
## 12439                            Spain 1804           0
## 12440                        Sri Lanka 1804           0
## 12441                            Sudan 1804           0
## 12442                         Suriname 1804           0
## 12443                        Swaziland 1804           0
## 12444                           Sweden 1804           0
## 12445                      Switzerland 1804           0
## 12446                            Syria 1804           0
## 12447                           Taiwan 1804           0
## 12448                       Tajikistan 1804           0
## 12449                         Tanzania 1804           0
## 12450                         Thailand 1804           0
## 12451                            Timor 1804           0
## 12452                             Togo 1804           0
## 12453                            Tonga 1804           0
## 12454              Trinidad and Tobago 1804           0
## 12455                          Tunisia 1804           0
## 12456                           Turkey 1804           0
## 12457                     Turkmenistan 1804           0
## 12458         Turks and Caicos Islands 1804           0
## 12459                           Tuvalu 1804           0
## 12460                           Uganda 1804           0
## 12461                          Ukraine 1804           0
## 12462             United Arab Emirates 1804           0
## 12463                   United Kingdom 1804   880605760
## 12464                    United States 1804     1439952
## 12465                          Uruguay 1804           0
## 12466                       Uzbekistan 1804           0
## 12467                          Vanuatu 1804           0
## 12468                        Venezuela 1804           0
## 12469                          Vietnam 1804           0
## 12470        Wallis and Futuna Islands 1804           0
## 12471                            World 1804   902703344
## 12472                            Yemen 1804           0
## 12473                           Zambia 1804           0
## 12474                         Zimbabwe 1804           0
## 12475                      Afghanistan 1805           0
## 12476                           Africa 1805           0
## 12477                          Albania 1805           0
## 12478                          Algeria 1805           0
## 12479                 Americas (other) 1805       76944
## 12480                          Andorra 1805           0
## 12481                           Angola 1805           0
## 12482                         Anguilla 1805           0
## 12483              Antarctic Fisheries 1805           0
## 12484              Antigua and Barbuda 1805           0
## 12485                        Argentina 1805           0
## 12486                          Armenia 1805           0
## 12487                            Aruba 1805           0
## 12488         Asia and Pacific (other) 1805           0
## 12489                        Australia 1805           0
## 12490                          Austria 1805           0
## 12491                       Azerbaijan 1805           0
## 12492                          Bahamas 1805           0
## 12493                          Bahrain 1805           0
## 12494                       Bangladesh 1805           0
## 12495                         Barbados 1805           0
## 12496                          Belarus 1805           0
## 12497                          Belgium 1805     6397344
## 12498                           Belize 1805           0
## 12499                            Benin 1805           0
## 12500                          Bermuda 1805           0
## 12501                           Bhutan 1805           0
## 12502                          Bolivia 1805           0
## 12503  Bonaire Sint Eustatius and Saba 1805           0
## 12504           Bosnia and Herzegovina 1805           0
## 12505                         Botswana 1805           0
## 12506                           Brazil 1805           0
## 12507           British Virgin Islands 1805           0
## 12508                           Brunei 1805           0
## 12509                         Bulgaria 1805           0
## 12510                     Burkina Faso 1805           0
## 12511                          Burundi 1805           0
## 12512                         Cambodia 1805           0
## 12513                         Cameroon 1805           0
## 12514                           Canada 1805       76944
## 12515                       Cape Verde 1805           0
## 12516                   Cayman Islands 1805           0
## 12517         Central African Republic 1805           0
## 12518                             Chad 1805           0
## 12519                            Chile 1805           0
## 12520                            China 1805           0
## 12521                 Christmas Island 1805           0
## 12522                         Colombia 1805           0
## 12523                          Comoros 1805           0
## 12524                            Congo 1805           0
## 12525                     Cook Islands 1805           0
## 12526                       Costa Rica 1805           0
## 12527                    Cote d'Ivoire 1805           0
## 12528                          Croatia 1805           0
## 12529                             Cuba 1805           0
## 12530                          Curacao 1805           0
## 12531                           Cyprus 1805           0
## 12532                   Czech Republic 1805           0
## 12533                   Czechoslovakia 1805           0
## 12534     Democratic Republic of Congo 1805           0
## 12535                          Denmark 1805           0
## 12536                         Djibouti 1805           0
## 12537                         Dominica 1805           0
## 12538               Dominican Republic 1805           0
## 12539                            EU-28 1805   934265040
## 12540                          Ecuador 1805           0
## 12541                            Egypt 1805           0
## 12542                      El Salvador 1805           0
## 12543                Equatorial Guinea 1805           0
## 12544                          Eritrea 1805           0
## 12545                          Estonia 1805           0
## 12546                         Ethiopia 1805           0
## 12547                   Europe (other) 1805           0
## 12548                   Faeroe Islands 1805           0
## 12549                 Falkland Islands 1805           0
## 12550                             Fiji 1805           0
## 12551                          Finland 1805           0
## 12552                           France 1805     4415120
## 12553                    French Guiana 1805           0
## 12554                 French Polynesia 1805           0
## 12555                            Gabon 1805           0
## 12556                           Gambia 1805           0
## 12557                          Georgia 1805           0
## 12558                          Germany 1805     8592080
## 12559                            Ghana 1805           0
## 12560                        Gibraltar 1805           0
## 12561                           Greece 1805           0
## 12562                        Greenland 1805           0
## 12563                          Grenada 1805           0
## 12564                       Guadeloupe 1805           0
## 12565                        Guatemala 1805           0
## 12566                           Guinea 1805           0
## 12567                    Guinea-Bissau 1805           0
## 12568                           Guyana 1805           0
## 12569                            Haiti 1805           0
## 12570                         Honduras 1805           0
## 12571                        Hong Kong 1805           0
## 12572                          Hungary 1805           0
## 12573                          Iceland 1805           0
## 12574                            India 1805           0
## 12575                        Indonesia 1805           0
## 12576                             Iran 1805           0
## 12577                             Iraq 1805           0
## 12578                          Ireland 1805           0
## 12579                           Israel 1805           0
## 12580                            Italy 1805           0
## 12581                          Jamaica 1805           0
## 12582                            Japan 1805           0
## 12583                           Jordan 1805           0
## 12584                       Kazakhstan 1805           0
## 12585                            Kenya 1805           0
## 12586                         Kiribati 1805           0
## 12587                           Kuwait 1805           0
## 12588                       Kyrgysztan 1805           0
## 12589                       Kyrgyzstan 1805           0
## 12590                             Laos 1805           0
## 12591                           Latvia 1805           0
## 12592                          Lebanon 1805           0
## 12593                          Lesotho 1805           0
## 12594                          Liberia 1805           0
## 12595                            Libya 1805           0
## 12596                    Liechtenstein 1805           0
## 12597                        Lithuania 1805           0
## 12598                       Luxembourg 1805           0
## 12599                            Macao 1805           0
## 12600                        Macedonia 1805           0
## 12601                       Madagascar 1805           0
## 12602                           Malawi 1805           0
## 12603                         Malaysia 1805           0
## 12604                         Maldives 1805           0
## 12605                             Mali 1805           0
## 12606                            Malta 1805           0
## 12607                 Marshall Islands 1805           0
## 12608                       Martinique 1805           0
## 12609                       Mauritania 1805           0
## 12610                        Mauritius 1805           0
## 12611                           Mexico 1805           0
## 12612             Micronesia (country) 1805           0
## 12613                      Middle East 1805           0
## 12614                          Moldova 1805           0
## 12615                         Mongolia 1805           0
## 12616                       Montenegro 1805           0
## 12617                       Montserrat 1805           0
## 12618                          Morocco 1805           0
## 12619                       Mozambique 1805           0
## 12620                          Myanmar 1805           0
## 12621                          Namibia 1805           0
## 12622                            Nauru 1805           0
## 12623                            Nepal 1805           0
## 12624                      Netherlands 1805           0
## 12625                    New Caledonia 1805           0
## 12626                      New Zealand 1805           0
## 12627                        Nicaragua 1805           0
## 12628                            Niger 1805           0
## 12629                          Nigeria 1805           0
## 12630                             Niue 1805           0
## 12631                      North Korea 1805           0
## 12632                           Norway 1805           0
## 12633                             Oman 1805           0
## 12634                         Pakistan 1805           0
## 12635                            Palau 1805           0
## 12636                        Palestine 1805           0
## 12637                           Panama 1805           0
## 12638                 Papua New Guinea 1805           0
## 12639                         Paraguay 1805           0
## 12640                             Peru 1805           0
## 12641                      Philippines 1805           0
## 12642                           Poland 1805     2791968
## 12643                         Portugal 1805           0
## 12644                            Qatar 1805           0
## 12645                          Reunion 1805           0
## 12646                          Romania 1805           0
## 12647                           Russia 1805           0
## 12648                           Rwanda 1805           0
## 12649                     Saint Helena 1805           0
## 12650            Saint Kitts and Nevis 1805           0
## 12651                      Saint Lucia 1805           0
## 12652        Saint Pierre and Miquelon 1805           0
## 12653 Saint Vincent and the Grenadines 1805           0
## 12654                            Samoa 1805           0
## 12655            Sao Tome and Principe 1805           0
## 12656                     Saudi Arabia 1805           0
## 12657                          Senegal 1805           0
## 12658                           Serbia 1805           0
## 12659                       Seychelles 1805           0
## 12660                     Sierra Leone 1805           0
## 12661                        Singapore 1805           0
## 12662        Sint Maarten (Dutch part) 1805           0
## 12663                         Slovakia 1805           0
## 12664                         Slovenia 1805           0
## 12665                  Solomon Islands 1805           0
## 12666                          Somalia 1805           0
## 12667                     South Africa 1805           0
## 12668                      South Korea 1805           0
## 12669                      South Sudan 1805           0
## 12670                            Spain 1805           0
## 12671                        Sri Lanka 1805           0
## 12672                            Sudan 1805           0
## 12673                         Suriname 1805           0
## 12674                        Swaziland 1805           0
## 12675                           Sweden 1805           0
## 12676                      Switzerland 1805           0
## 12677                            Syria 1805           0
## 12678                           Taiwan 1805           0
## 12679                       Tajikistan 1805           0
## 12680                         Tanzania 1805           0
## 12681                         Thailand 1805           0
## 12682                            Timor 1805           0
## 12683                             Togo 1805           0
## 12684                            Tonga 1805           0
## 12685              Trinidad and Tobago 1805           0
## 12686                          Tunisia 1805           0
## 12687                           Turkey 1805           0
## 12688                     Turkmenistan 1805           0
## 12689         Turks and Caicos Islands 1805           0
## 12690                           Tuvalu 1805           0
## 12691                           Uganda 1805           0
## 12692                          Ukraine 1805           0
## 12693             United Arab Emirates 1805           0
## 12694                   United Kingdom 1805   912068528
## 12695                    United States 1805     1780704
## 12696                          Uruguay 1805           0
## 12697                       Uzbekistan 1805           0
## 12698                          Vanuatu 1805           0
## 12699                        Venezuela 1805           0
## 12700                          Vietnam 1805           0
## 12701        Wallis and Futuna Islands 1805           0
## 12702                            World 1805   936122688
## 12703                            Yemen 1805           0
## 12704                           Zambia 1805           0
## 12705                         Zimbabwe 1805           0
## 12706                      Afghanistan 1806           0
## 12707                           Africa 1806           0
## 12708                          Albania 1806           0
## 12709                          Algeria 1806           0
## 12710                 Americas (other) 1806       80608
## 12711                          Andorra 1806           0
## 12712                           Angola 1806           0
## 12713                         Anguilla 1806           0
## 12714              Antarctic Fisheries 1806           0
## 12715              Antigua and Barbuda 1806           0
## 12716                        Argentina 1806           0
## 12717                          Armenia 1806           0
## 12718                            Aruba 1806           0
## 12719         Asia and Pacific (other) 1806           0
## 12720                        Australia 1806           0
## 12721                          Austria 1806           0
## 12722                       Azerbaijan 1806           0
## 12723                          Bahamas 1806           0
## 12724                          Bahrain 1806           0
## 12725                       Bangladesh 1806           0
## 12726                         Barbados 1806           0
## 12727                          Belarus 1806           0
## 12728                          Belgium 1806     6397344
## 12729                           Belize 1806           0
## 12730                            Benin 1806           0
## 12731                          Bermuda 1806           0
## 12732                           Bhutan 1806           0
## 12733                          Bolivia 1806           0
## 12734  Bonaire Sint Eustatius and Saba 1806           0
## 12735           Bosnia and Herzegovina 1806           0
## 12736                         Botswana 1806           0
## 12737                           Brazil 1806           0
## 12738           British Virgin Islands 1806           0
## 12739                           Brunei 1806           0
## 12740                         Bulgaria 1806           0
## 12741                     Burkina Faso 1806           0
## 12742                          Burundi 1806           0
## 12743                         Cambodia 1806           0
## 12744                         Cameroon 1806           0
## 12745                           Canada 1806       80608
## 12746                       Cape Verde 1806           0
## 12747                   Cayman Islands 1806           0
## 12748         Central African Republic 1806           0
## 12749                             Chad 1806           0
## 12750                            Chile 1806           0
## 12751                            China 1806           0
## 12752                 Christmas Island 1806           0
## 12753                         Colombia 1806           0
## 12754                          Comoros 1806           0
## 12755                            Congo 1806           0
## 12756                     Cook Islands 1806           0
## 12757                       Costa Rica 1806           0
## 12758                    Cote d'Ivoire 1806           0
## 12759                          Croatia 1806           0
## 12760                             Cuba 1806           0
## 12761                          Curacao 1806           0
## 12762                           Cyprus 1806           0
## 12763                   Czech Republic 1806           0
## 12764                   Czechoslovakia 1806           0
## 12765     Democratic Republic of Congo 1806           0
## 12766                          Denmark 1806           0
## 12767                         Djibouti 1806           0
## 12768                         Dominica 1806           0
## 12769               Dominican Republic 1806           0
## 12770                            EU-28 1806   968974112
## 12771                          Ecuador 1806           0
## 12772                            Egypt 1806           0
## 12773                      El Salvador 1806           0
## 12774                Equatorial Guinea 1806           0
## 12775                          Eritrea 1806           0
## 12776                          Estonia 1806           0
## 12777                         Ethiopia 1806           0
## 12778                   Europe (other) 1806           0
## 12779                   Faeroe Islands 1806           0
## 12780                 Falkland Islands 1806           0
## 12781                             Fiji 1806           0
## 12782                          Finland 1806           0
## 12783                           France 1806     4415120
## 12784                    French Guiana 1806           0
## 12785                 French Polynesia 1806           0
## 12786                            Gabon 1806           0
## 12787                           Gambia 1806           0
## 12788                          Georgia 1806           0
## 12789                          Germany 1806     9530064
## 12790                            Ghana 1806           0
## 12791                        Gibraltar 1806           0
## 12792                           Greece 1806           0
## 12793                        Greenland 1806           0
## 12794                          Grenada 1806           0
## 12795                       Guadeloupe 1806           0
## 12796                        Guatemala 1806           0
## 12797                           Guinea 1806           0
## 12798                    Guinea-Bissau 1806           0
## 12799                           Guyana 1806           0
## 12800                            Haiti 1806           0
## 12801                         Honduras 1806           0
## 12802                        Hong Kong 1806           0
## 12803                          Hungary 1806           0
## 12804                          Iceland 1806           0
## 12805                            India 1806           0
## 12806                        Indonesia 1806           0
## 12807                             Iran 1806           0
## 12808                             Iraq 1806           0
## 12809                          Ireland 1806           0
## 12810                           Israel 1806           0
## 12811                            Italy 1806           0
## 12812                          Jamaica 1806           0
## 12813                            Japan 1806           0
## 12814                           Jordan 1806           0
## 12815                       Kazakhstan 1806           0
## 12816                            Kenya 1806           0
## 12817                         Kiribati 1806           0
## 12818                           Kuwait 1806           0
## 12819                       Kyrgysztan 1806           0
## 12820                       Kyrgyzstan 1806           0
## 12821                             Laos 1806           0
## 12822                           Latvia 1806           0
## 12823                          Lebanon 1806           0
## 12824                          Lesotho 1806           0
## 12825                          Liberia 1806           0
## 12826                            Libya 1806           0
## 12827                    Liechtenstein 1806           0
## 12828                        Lithuania 1806           0
## 12829                       Luxembourg 1806           0
## 12830                            Macao 1806           0
## 12831                        Macedonia 1806           0
## 12832                       Madagascar 1806           0
## 12833                           Malawi 1806           0
## 12834                         Malaysia 1806           0
## 12835                         Maldives 1806           0
## 12836                             Mali 1806           0
## 12837                            Malta 1806           0
## 12838                 Marshall Islands 1806           0
## 12839                       Martinique 1806           0
## 12840                       Mauritania 1806           0
## 12841                        Mauritius 1806           0
## 12842                           Mexico 1806           0
## 12843             Micronesia (country) 1806           0
## 12844                      Middle East 1806           0
## 12845                          Moldova 1806           0
## 12846                         Mongolia 1806           0
## 12847                       Montenegro 1806           0
## 12848                       Montserrat 1806           0
## 12849                          Morocco 1806           0
## 12850                       Mozambique 1806           0
## 12851                          Myanmar 1806           0
## 12852                          Namibia 1806           0
## 12853                            Nauru 1806           0
## 12854                            Nepal 1806           0
## 12855                      Netherlands 1806           0
## 12856                    New Caledonia 1806           0
## 12857                      New Zealand 1806           0
## 12858                        Nicaragua 1806           0
## 12859                            Niger 1806           0
## 12860                          Nigeria 1806           0
## 12861                             Niue 1806           0
## 12862                      North Korea 1806           0
## 12863                           Norway 1806           0
## 12864                             Oman 1806           0
## 12865                         Pakistan 1806           0
## 12866                            Palau 1806           0
## 12867                        Palestine 1806           0
## 12868                           Panama 1806           0
## 12869                 Papua New Guinea 1806           0
## 12870                         Paraguay 1806           0
## 12871                             Peru 1806           0
## 12872                      Philippines 1806           0
## 12873                           Poland 1806     3312256
## 12874                         Portugal 1806           0
## 12875                            Qatar 1806           0
## 12876                          Reunion 1806           0
## 12877                          Romania 1806           0
## 12878                           Russia 1806           0
## 12879                           Rwanda 1806           0
## 12880                     Saint Helena 1806           0
## 12881            Saint Kitts and Nevis 1806           0
## 12882                      Saint Lucia 1806           0
## 12883        Saint Pierre and Miquelon 1806           0
## 12884 Saint Vincent and the Grenadines 1806           0
## 12885                            Samoa 1806           0
## 12886            Sao Tome and Principe 1806           0
## 12887                     Saudi Arabia 1806           0
## 12888                          Senegal 1806           0
## 12889                           Serbia 1806           0
## 12890                       Seychelles 1806           0
## 12891                     Sierra Leone 1806           0
## 12892                        Singapore 1806           0
## 12893        Sint Maarten (Dutch part) 1806           0
## 12894                         Slovakia 1806           0
## 12895                         Slovenia 1806           0
## 12896                  Solomon Islands 1806           0
## 12897                          Somalia 1806           0
## 12898                     South Africa 1806           0
## 12899                      South Korea 1806           0
## 12900                      South Sudan 1806           0
## 12901                            Spain 1806           0
## 12902                        Sri Lanka 1806           0
## 12903                            Sudan 1806           0
## 12904                         Suriname 1806           0
## 12905                        Swaziland 1806           0
## 12906                           Sweden 1806           0
## 12907                      Switzerland 1806           0
## 12908                            Syria 1806           0
## 12909                           Taiwan 1806           0
## 12910                       Tajikistan 1806           0
## 12911                         Tanzania 1806           0
## 12912                         Thailand 1806           0
## 12913                            Timor 1806           0
## 12914                             Togo 1806           0
## 12915                            Tonga 1806           0
## 12916              Trinidad and Tobago 1806           0
## 12917                          Tunisia 1806           0
## 12918                           Turkey 1806           0
## 12919                     Turkmenistan 1806           0
## 12920         Turks and Caicos Islands 1806           0
## 12921                           Tuvalu 1806           0
## 12922                           Uganda 1806           0
## 12923                          Ukraine 1806           0
## 12924             United Arab Emirates 1806           0
## 12925                   United Kingdom 1806   945319328
## 12926                    United States 1806     2114128
## 12927                          Uruguay 1806           0
## 12928                       Uzbekistan 1806           0
## 12929                          Vanuatu 1806           0
## 12930                        Venezuela 1806           0
## 12931                          Vietnam 1806           0
## 12932        Wallis and Futuna Islands 1806           0
## 12933                            World 1806   971168848
## 12934                            Yemen 1806           0
## 12935                           Zambia 1806           0
## 12936                         Zimbabwe 1806           0
## 12937                      Afghanistan 1807           0
## 12938                           Africa 1807           0
## 12939                          Albania 1807           0
## 12940                          Algeria 1807           0
## 12941                 Americas (other) 1807       84272
## 12942                          Andorra 1807           0
## 12943                           Angola 1807           0
## 12944                         Anguilla 1807           0
## 12945              Antarctic Fisheries 1807           0
## 12946              Antigua and Barbuda 1807           0
## 12947                        Argentina 1807           0
## 12948                          Armenia 1807           0
## 12949                            Aruba 1807           0
## 12950         Asia and Pacific (other) 1807           0
## 12951                        Australia 1807           0
## 12952                          Austria 1807      168544
## 12953                       Azerbaijan 1807           0
## 12954                          Bahamas 1807           0
## 12955                          Bahrain 1807           0
## 12956                       Bangladesh 1807           0
## 12957                         Barbados 1807           0
## 12958                          Belarus 1807           0
## 12959                          Belgium 1807     6397344
## 12960                           Belize 1807           0
## 12961                            Benin 1807           0
## 12962                          Bermuda 1807           0
## 12963                           Bhutan 1807           0
## 12964                          Bolivia 1807           0
## 12965  Bonaire Sint Eustatius and Saba 1807           0
## 12966           Bosnia and Herzegovina 1807           0
## 12967                         Botswana 1807           0
## 12968                           Brazil 1807           0
## 12969           British Virgin Islands 1807           0
## 12970                           Brunei 1807           0
## 12971                         Bulgaria 1807           0
## 12972                     Burkina Faso 1807           0
## 12973                          Burundi 1807           0
## 12974                         Cambodia 1807           0
## 12975                         Cameroon 1807           0
## 12976                           Canada 1807       84272
## 12977                       Cape Verde 1807           0
## 12978                   Cayman Islands 1807           0
## 12979         Central African Republic 1807           0
## 12980                             Chad 1807           0
## 12981                            Chile 1807           0
## 12982                            China 1807           0
## 12983                 Christmas Island 1807           0
## 12984                         Colombia 1807           0
## 12985                          Comoros 1807           0
## 12986                            Congo 1807           0
## 12987                     Cook Islands 1807           0
## 12988                       Costa Rica 1807           0
## 12989                    Cote d'Ivoire 1807           0
## 12990                          Croatia 1807           0
## 12991                             Cuba 1807           0
## 12992                          Curacao 1807           0
## 12993                           Cyprus 1807           0
## 12994                   Czech Republic 1807           0
## 12995                   Czechoslovakia 1807           0
## 12996     Democratic Republic of Congo 1807           0
## 12997                          Denmark 1807           0
## 12998                         Djibouti 1807           0
## 12999                         Dominica 1807           0
## 13000               Dominican Republic 1807           0
## 13001                            EU-28 1807  1005467552
## 13002                          Ecuador 1807           0
## 13003                            Egypt 1807           0
## 13004                      El Salvador 1807           0
## 13005                Equatorial Guinea 1807           0
## 13006                          Eritrea 1807           0
## 13007                          Estonia 1807           0
## 13008                         Ethiopia 1807           0
## 13009                   Europe (other) 1807           0
## 13010                   Faeroe Islands 1807           0
## 13011                 Falkland Islands 1807           0
## 13012                             Fiji 1807           0
## 13013                          Finland 1807           0
## 13014                           France 1807     4415120
## 13015                    French Guiana 1807           0
## 13016                 French Polynesia 1807           0
## 13017                            Gabon 1807           0
## 13018                           Gambia 1807           0
## 13019                          Georgia 1807           0
## 13020                          Germany 1807    12219440
## 13021                            Ghana 1807           0
## 13022                        Gibraltar 1807           0
## 13023                           Greece 1807           0
## 13024                        Greenland 1807           0
## 13025                          Grenada 1807           0
## 13026                       Guadeloupe 1807           0
## 13027                        Guatemala 1807           0
## 13028                           Guinea 1807           0
## 13029                    Guinea-Bissau 1807           0
## 13030                           Guyana 1807           0
## 13031                            Haiti 1807           0
## 13032                         Honduras 1807           0
## 13033                        Hong Kong 1807           0
## 13034                          Hungary 1807           0
## 13035                          Iceland 1807           0
## 13036                            India 1807           0
## 13037                        Indonesia 1807           0
## 13038                             Iran 1807           0
## 13039                             Iraq 1807           0
## 13040                          Ireland 1807           0
## 13041                           Israel 1807           0
## 13042                            Italy 1807           0
## 13043                          Jamaica 1807           0
## 13044                            Japan 1807           0
## 13045                           Jordan 1807           0
## 13046                       Kazakhstan 1807           0
## 13047                            Kenya 1807           0
## 13048                         Kiribati 1807           0
## 13049                           Kuwait 1807           0
## 13050                       Kyrgysztan 1807           0
## 13051                       Kyrgyzstan 1807           0
## 13052                             Laos 1807           0
## 13053                           Latvia 1807           0
## 13054                          Lebanon 1807           0
## 13055                          Lesotho 1807           0
## 13056                          Liberia 1807           0
## 13057                            Libya 1807           0
## 13058                    Liechtenstein 1807           0
## 13059                        Lithuania 1807           0
## 13060                       Luxembourg 1807           0
## 13061                            Macao 1807           0
## 13062                        Macedonia 1807           0
## 13063                       Madagascar 1807           0
## 13064                           Malawi 1807           0
## 13065                         Malaysia 1807           0
## 13066                         Maldives 1807           0
## 13067                             Mali 1807           0
## 13068                            Malta 1807           0
## 13069                 Marshall Islands 1807           0
## 13070                       Martinique 1807           0
## 13071                       Mauritania 1807           0
## 13072                        Mauritius 1807           0
## 13073                           Mexico 1807           0
## 13074             Micronesia (country) 1807           0
## 13075                      Middle East 1807           0
## 13076                          Moldova 1807           0
## 13077                         Mongolia 1807           0
## 13078                       Montenegro 1807           0
## 13079                       Montserrat 1807           0
## 13080                          Morocco 1807           0
## 13081                       Mozambique 1807           0
## 13082                          Myanmar 1807           0
## 13083                          Namibia 1807           0
## 13084                            Nauru 1807           0
## 13085                            Nepal 1807           0
## 13086                      Netherlands 1807           0
## 13087                    New Caledonia 1807           0
## 13088                      New Zealand 1807           0
## 13089                        Nicaragua 1807           0
## 13090                            Niger 1807           0
## 13091                          Nigeria 1807           0
## 13092                             Niue 1807           0
## 13093                      North Korea 1807           0
## 13094                           Norway 1807           0
## 13095                             Oman 1807           0
## 13096                         Pakistan 1807           0
## 13097                            Palau 1807           0
## 13098                        Palestine 1807           0
## 13099                           Panama 1807           0
## 13100                 Papua New Guinea 1807           0
## 13101                         Paraguay 1807           0
## 13102                             Peru 1807           0
## 13103                      Philippines 1807           0
## 13104                           Poland 1807     3689648
## 13105                         Portugal 1807           0
## 13106                            Qatar 1807           0
## 13107                          Reunion 1807           0
## 13108                          Romania 1807           0
## 13109                           Russia 1807           0
## 13110                           Rwanda 1807           0
## 13111                     Saint Helena 1807           0
## 13112            Saint Kitts and Nevis 1807           0
## 13113                      Saint Lucia 1807           0
## 13114        Saint Pierre and Miquelon 1807           0
## 13115 Saint Vincent and the Grenadines 1807           0
## 13116                            Samoa 1807           0
## 13117            Sao Tome and Principe 1807           0
## 13118                     Saudi Arabia 1807           0
## 13119                          Senegal 1807           0
## 13120                           Serbia 1807           0
## 13121                       Seychelles 1807           0
## 13122                     Sierra Leone 1807           0
## 13123                        Singapore 1807           0
## 13124        Sint Maarten (Dutch part) 1807           0
## 13125                         Slovakia 1807           0
## 13126                         Slovenia 1807           0
## 13127                  Solomon Islands 1807           0
## 13128                          Somalia 1807           0
## 13129                     South Africa 1807           0
## 13130                      South Korea 1807           0
## 13131                      South Sudan 1807           0
## 13132                            Spain 1807           0
## 13133                        Sri Lanka 1807           0
## 13134                            Sudan 1807           0
## 13135                         Suriname 1807           0
## 13136                        Swaziland 1807           0
## 13137                           Sweden 1807           0
## 13138                      Switzerland 1807           0
## 13139                            Syria 1807           0
## 13140                           Taiwan 1807           0
## 13141                       Tajikistan 1807           0
## 13142                         Tanzania 1807           0
## 13143                         Thailand 1807           0
## 13144                            Timor 1807           0
## 13145                             Togo 1807           0
## 13146                            Tonga 1807           0
## 13147              Trinidad and Tobago 1807           0
## 13148                          Tunisia 1807           0
## 13149                           Turkey 1807           0
## 13150                     Turkmenistan 1807           0
## 13151         Turks and Caicos Islands 1807           0
## 13152                           Tuvalu 1807           0
## 13153                           Uganda 1807           0
## 13154                          Ukraine 1807           0
## 13155             United Arab Emirates 1807           0
## 13156                   United Kingdom 1807   978577456
## 13157                    United States 1807     2491520
## 13158                          Uruguay 1807           0
## 13159                       Uzbekistan 1807           0
## 13160                          Vanuatu 1807           0
## 13161                        Venezuela 1807           0
## 13162                          Vietnam 1807           0
## 13163        Wallis and Futuna Islands 1807           0
## 13164                            World 1807  1008043344
## 13165                            Yemen 1807           0
## 13166                           Zambia 1807           0
## 13167                         Zimbabwe 1807           0
## 13168                      Afghanistan 1808           0
## 13169                           Africa 1808           0
## 13170                          Albania 1808           0
## 13171                          Algeria 1808           0
## 13172                 Americas (other) 1808       87936
## 13173                          Andorra 1808           0
## 13174                           Angola 1808           0
## 13175                         Anguilla 1808           0
## 13176              Antarctic Fisheries 1808           0
## 13177              Antigua and Barbuda 1808           0
## 13178                        Argentina 1808           0
## 13179                          Armenia 1808           0
## 13180                            Aruba 1808           0
## 13181         Asia and Pacific (other) 1808           0
## 13182                        Australia 1808           0
## 13183                          Austria 1808      168544
## 13184                       Azerbaijan 1808           0
## 13185                          Bahamas 1808           0
## 13186                          Bahrain 1808           0
## 13187                       Bangladesh 1808           0
## 13188                         Barbados 1808           0
## 13189                          Belarus 1808           0
## 13190                          Belgium 1808     6397344
## 13191                           Belize 1808           0
## 13192                            Benin 1808           0
## 13193                          Bermuda 1808           0
## 13194                           Bhutan 1808           0
## 13195                          Bolivia 1808           0
## 13196  Bonaire Sint Eustatius and Saba 1808           0
## 13197           Bosnia and Herzegovina 1808           0
## 13198                         Botswana 1808           0
## 13199                           Brazil 1808           0
## 13200           British Virgin Islands 1808           0
## 13201                           Brunei 1808           0
## 13202                         Bulgaria 1808           0
## 13203                     Burkina Faso 1808           0
## 13204                          Burundi 1808           0
## 13205                         Cambodia 1808           0
## 13206                         Cameroon 1808           0
## 13207                           Canada 1808       87936
## 13208                       Cape Verde 1808           0
## 13209                   Cayman Islands 1808           0
## 13210         Central African Republic 1808           0
## 13211                             Chad 1808           0
## 13212                            Chile 1808           0
## 13213                            China 1808           0
## 13214                 Christmas Island 1808           0
## 13215                         Colombia 1808           0
## 13216                          Comoros 1808           0
## 13217                            Congo 1808           0
## 13218                     Cook Islands 1808           0
## 13219                       Costa Rica 1808           0
## 13220                    Cote d'Ivoire 1808           0
## 13221                          Croatia 1808           0
## 13222                             Cuba 1808           0
## 13223                          Curacao 1808           0
## 13224                           Cyprus 1808           0
## 13225                   Czech Republic 1808           0
## 13226                   Czechoslovakia 1808           0
## 13227     Democratic Republic of Congo 1808           0
## 13228                          Denmark 1808           0
## 13229                         Djibouti 1808           0
## 13230                         Dominica 1808           0
## 13231               Dominican Republic 1808           0
## 13232                            EU-28 1808  1040136320
## 13233                          Ecuador 1808           0
## 13234                            Egypt 1808           0
## 13235                      El Salvador 1808           0
## 13236                Equatorial Guinea 1808           0
## 13237                          Eritrea 1808           0
## 13238                          Estonia 1808           0
## 13239                         Ethiopia 1808           0
## 13240                   Europe (other) 1808           0
## 13241                   Faeroe Islands 1808           0
## 13242                 Falkland Islands 1808           0
## 13243                             Fiji 1808           0
## 13244                          Finland 1808           0
## 13245                           France 1808     4415120
## 13246                    French Guiana 1808           0
## 13247                 French Polynesia 1808           0
## 13248                            Gabon 1808           0
## 13249                           Gambia 1808           0
## 13250                          Georgia 1808           0
## 13251                          Germany 1808    13117120
## 13252                            Ghana 1808           0
## 13253                        Gibraltar 1808           0
## 13254                           Greece 1808           0
## 13255                        Greenland 1808           0
## 13256                          Grenada 1808           0
## 13257                       Guadeloupe 1808           0
## 13258                        Guatemala 1808           0
## 13259                           Guinea 1808           0
## 13260                    Guinea-Bissau 1808           0
## 13261                           Guyana 1808           0
## 13262                            Haiti 1808           0
## 13263                         Honduras 1808           0
## 13264                        Hong Kong 1808           0
## 13265                          Hungary 1808           0
## 13266                          Iceland 1808           0
## 13267                            India 1808           0
## 13268                        Indonesia 1808           0
## 13269                             Iran 1808           0
## 13270                             Iraq 1808           0
## 13271                          Ireland 1808           0
## 13272                           Israel 1808           0
## 13273                            Italy 1808           0
## 13274                          Jamaica 1808           0
## 13275                            Japan 1808           0
## 13276                           Jordan 1808           0
## 13277                       Kazakhstan 1808           0
## 13278                            Kenya 1808           0
## 13279                         Kiribati 1808           0
## 13280                           Kuwait 1808           0
## 13281                       Kyrgysztan 1808           0
## 13282                       Kyrgyzstan 1808           0
## 13283                             Laos 1808           0
## 13284                           Latvia 1808           0
## 13285                          Lebanon 1808           0
## 13286                          Lesotho 1808           0
## 13287                          Liberia 1808           0
## 13288                            Libya 1808           0
## 13289                    Liechtenstein 1808           0
## 13290                        Lithuania 1808           0
## 13291                       Luxembourg 1808           0
## 13292                            Macao 1808           0
## 13293                        Macedonia 1808           0
## 13294                       Madagascar 1808           0
## 13295                           Malawi 1808           0
## 13296                         Malaysia 1808           0
## 13297                         Maldives 1808           0
## 13298                             Mali 1808           0
## 13299                            Malta 1808           0
## 13300                 Marshall Islands 1808           0
## 13301                       Martinique 1808           0
## 13302                       Mauritania 1808           0
## 13303                        Mauritius 1808           0
## 13304                           Mexico 1808           0
## 13305             Micronesia (country) 1808           0
## 13306                      Middle East 1808           0
## 13307                          Moldova 1808           0
## 13308                         Mongolia 1808           0
## 13309                       Montenegro 1808           0
## 13310                       Montserrat 1808           0
## 13311                          Morocco 1808           0
## 13312                       Mozambique 1808           0
## 13313                          Myanmar 1808           0
## 13314                          Namibia 1808           0
## 13315                            Nauru 1808           0
## 13316                            Nepal 1808           0
## 13317                      Netherlands 1808           0
## 13318                    New Caledonia 1808           0
## 13319                      New Zealand 1808           0
## 13320                        Nicaragua 1808           0
## 13321                            Niger 1808           0
## 13322                          Nigeria 1808           0
## 13323                             Niue 1808           0
## 13324                      North Korea 1808           0
## 13325                           Norway 1808           0
## 13326                             Oman 1808           0
## 13327                         Pakistan 1808           0
## 13328                            Palau 1808           0
## 13329                        Palestine 1808           0
## 13330                           Panama 1808           0
## 13331                 Papua New Guinea 1808           0
## 13332                         Paraguay 1808           0
## 13333                             Peru 1808           0
## 13334                      Philippines 1808           0
## 13335                           Poland 1808     4191616
## 13336                         Portugal 1808           0
## 13337                            Qatar 1808           0
## 13338                          Reunion 1808           0
## 13339                          Romania 1808           0
## 13340                           Russia 1808           0
## 13341                           Rwanda 1808           0
## 13342                     Saint Helena 1808           0
## 13343            Saint Kitts and Nevis 1808           0
## 13344                      Saint Lucia 1808           0
## 13345        Saint Pierre and Miquelon 1808           0
## 13346 Saint Vincent and the Grenadines 1808           0
## 13347                            Samoa 1808           0
## 13348            Sao Tome and Principe 1808           0
## 13349                     Saudi Arabia 1808           0
## 13350                          Senegal 1808           0
## 13351                           Serbia 1808           0
## 13352                       Seychelles 1808           0
## 13353                     Sierra Leone 1808           0
## 13354                        Singapore 1808           0
## 13355        Sint Maarten (Dutch part) 1808           0
## 13356                         Slovakia 1808           0
## 13357                         Slovenia 1808           0
## 13358                  Solomon Islands 1808           0
## 13359                          Somalia 1808           0
## 13360                     South Africa 1808           0
## 13361                      South Korea 1808           0
## 13362                      South Sudan 1808           0
## 13363                            Spain 1808           0
## 13364                        Sri Lanka 1808           0
## 13365                            Sudan 1808           0
## 13366                         Suriname 1808           0
## 13367                        Swaziland 1808           0
## 13368                           Sweden 1808           0
## 13369                      Switzerland 1808           0
## 13370                            Syria 1808           0
## 13371                           Taiwan 1808           0
## 13372                       Tajikistan 1808           0
## 13373                         Tanzania 1808           0
## 13374                         Thailand 1808           0
## 13375                            Timor 1808           0
## 13376                             Togo 1808           0
## 13377                            Tonga 1808           0
## 13378              Trinidad and Tobago 1808           0
## 13379                          Tunisia 1808           0
## 13380                           Turkey 1808           0
## 13381                     Turkmenistan 1808           0
## 13382         Turks and Caicos Islands 1808           0
## 13383                           Tuvalu 1808           0
## 13384                           Uganda 1808           0
## 13385                          Ukraine 1808           0
## 13386             United Arab Emirates 1808           0
## 13387                   United Kingdom 1808  1011846576
## 13388                    United States 1808     2883568
## 13389                          Uruguay 1808           0
## 13390                       Uzbekistan 1808           0
## 13391                          Vanuatu 1808           0
## 13392                        Venezuela 1808           0
## 13393                          Vietnam 1808           0
## 13394        Wallis and Futuna Islands 1808           0
## 13395                            World 1808  1043107824
## 13396                            Yemen 1808           0
## 13397                           Zambia 1808           0
## 13398                         Zimbabwe 1808           0
## 13399                      Afghanistan 1809           0
## 13400                           Africa 1809           0
## 13401                          Albania 1809           0
## 13402                          Algeria 1809           0
## 13403                 Americas (other) 1809       91600
## 13404                          Andorra 1809           0
## 13405                           Angola 1809           0
## 13406                         Anguilla 1809           0
## 13407              Antarctic Fisheries 1809           0
## 13408              Antigua and Barbuda 1809           0
## 13409                        Argentina 1809           0
## 13410                          Armenia 1809           0
## 13411                            Aruba 1809           0
## 13412         Asia and Pacific (other) 1809           0
## 13413                        Australia 1809           0
## 13414                          Austria 1809      168544
## 13415                       Azerbaijan 1809           0
## 13416                          Bahamas 1809           0
## 13417                          Bahrain 1809           0
## 13418                       Bangladesh 1809           0
## 13419                         Barbados 1809           0
## 13420                          Belarus 1809           0
## 13421                          Belgium 1809     6397344
## 13422                           Belize 1809           0
## 13423                            Benin 1809           0
## 13424                          Bermuda 1809           0
## 13425                           Bhutan 1809           0
## 13426                          Bolivia 1809           0
## 13427  Bonaire Sint Eustatius and Saba 1809           0
## 13428           Bosnia and Herzegovina 1809           0
## 13429                         Botswana 1809           0
## 13430                           Brazil 1809           0
## 13431           British Virgin Islands 1809           0
## 13432                           Brunei 1809           0
## 13433                         Bulgaria 1809           0
## 13434                     Burkina Faso 1809           0
## 13435                          Burundi 1809           0
## 13436                         Cambodia 1809           0
## 13437                         Cameroon 1809           0
## 13438                           Canada 1809       91600
## 13439                       Cape Verde 1809           0
## 13440                   Cayman Islands 1809           0
## 13441         Central African Republic 1809           0
## 13442                             Chad 1809           0
## 13443                            Chile 1809           0
## 13444                            China 1809           0
## 13445                 Christmas Island 1809           0
## 13446                         Colombia 1809           0
## 13447                          Comoros 1809           0
## 13448                            Congo 1809           0
## 13449                     Cook Islands 1809           0
## 13450                       Costa Rica 1809           0
## 13451                    Cote d'Ivoire 1809           0
## 13452                          Croatia 1809           0
## 13453                             Cuba 1809           0
## 13454                          Curacao 1809           0
## 13455                           Cyprus 1809           0
## 13456                   Czech Republic 1809           0
## 13457                   Czechoslovakia 1809           0
## 13458     Democratic Republic of Congo 1809           0
## 13459                          Denmark 1809           0
## 13460                         Djibouti 1809           0
## 13461                         Dominica 1809           0
## 13462               Dominican Republic 1809           0
## 13463                            EU-28 1809  1074819744
## 13464                          Ecuador 1809           0
## 13465                            Egypt 1809           0
## 13466                      El Salvador 1809           0
## 13467                Equatorial Guinea 1809           0
## 13468                          Eritrea 1809           0
## 13469                          Estonia 1809           0
## 13470                         Ethiopia 1809           0
## 13471                   Europe (other) 1809           0
## 13472                   Faeroe Islands 1809           0
## 13473                 Falkland Islands 1809           0
## 13474                             Fiji 1809           0
## 13475                          Finland 1809           0
## 13476                           France 1809     4415120
## 13477                    French Guiana 1809           0
## 13478                 French Polynesia 1809           0
## 13479                            Gabon 1809           0
## 13480                           Gambia 1809           0
## 13481                          Georgia 1809           0
## 13482                          Germany 1809    14047776
## 13483                            Ghana 1809           0
## 13484                        Gibraltar 1809           0
## 13485                           Greece 1809           0
## 13486                        Greenland 1809           0
## 13487                          Grenada 1809           0
## 13488                       Guadeloupe 1809           0
## 13489                        Guatemala 1809           0
## 13490                           Guinea 1809           0
## 13491                    Guinea-Bissau 1809           0
## 13492                           Guyana 1809           0
## 13493                            Haiti 1809           0
## 13494                         Honduras 1809           0
## 13495                        Hong Kong 1809           0
## 13496                          Hungary 1809           0
## 13497                          Iceland 1809           0
## 13498                            India 1809           0
## 13499                        Indonesia 1809           0
## 13500                             Iran 1809           0
## 13501                             Iraq 1809           0
## 13502                          Ireland 1809           0
## 13503                           Israel 1809           0
## 13504                            Italy 1809           0
## 13505                          Jamaica 1809           0
## 13506                            Japan 1809           0
## 13507                           Jordan 1809           0
## 13508                       Kazakhstan 1809           0
## 13509                            Kenya 1809           0
## 13510                         Kiribati 1809           0
## 13511                           Kuwait 1809           0
## 13512                       Kyrgysztan 1809           0
## 13513                       Kyrgyzstan 1809           0
## 13514                             Laos 1809           0
## 13515                           Latvia 1809           0
## 13516                          Lebanon 1809           0
## 13517                          Lesotho 1809           0
## 13518                          Liberia 1809           0
## 13519                            Libya 1809           0
## 13520                    Liechtenstein 1809           0
## 13521                        Lithuania 1809           0
## 13522                       Luxembourg 1809           0
## 13523                            Macao 1809           0
## 13524                        Macedonia 1809           0
## 13525                       Madagascar 1809           0
## 13526                           Malawi 1809           0
## 13527                         Malaysia 1809           0
## 13528                         Maldives 1809           0
## 13529                             Mali 1809           0
## 13530                            Malta 1809           0
## 13531                 Marshall Islands 1809           0
## 13532                       Martinique 1809           0
## 13533                       Mauritania 1809           0
## 13534                        Mauritius 1809           0
## 13535                           Mexico 1809           0
## 13536             Micronesia (country) 1809           0
## 13537                      Middle East 1809           0
## 13538                          Moldova 1809           0
## 13539                         Mongolia 1809           0
## 13540                       Montenegro 1809           0
## 13541                       Montserrat 1809           0
## 13542                          Morocco 1809           0
## 13543                       Mozambique 1809           0
## 13544                          Myanmar 1809           0
## 13545                          Namibia 1809           0
## 13546                            Nauru 1809           0
## 13547                            Nepal 1809           0
## 13548                      Netherlands 1809           0
## 13549                    New Caledonia 1809           0
## 13550                      New Zealand 1809           0
## 13551                        Nicaragua 1809           0
## 13552                            Niger 1809           0
## 13553                          Nigeria 1809           0
## 13554                             Niue 1809           0
## 13555                      North Korea 1809           0
## 13556                           Norway 1809           0
## 13557                             Oman 1809           0
## 13558                         Pakistan 1809           0
## 13559                            Palau 1809           0
## 13560                        Palestine 1809           0
## 13561                           Panama 1809           0
## 13562                 Papua New Guinea 1809           0
## 13563                         Paraguay 1809           0
## 13564                             Peru 1809           0
## 13565                      Philippines 1809           0
## 13566                           Poland 1809     4664272
## 13567                         Portugal 1809           0
## 13568                            Qatar 1809           0
## 13569                          Reunion 1809           0
## 13570                          Romania 1809           0
## 13571                           Russia 1809           0
## 13572                           Rwanda 1809           0
## 13573                     Saint Helena 1809           0
## 13574            Saint Kitts and Nevis 1809           0
## 13575                      Saint Lucia 1809           0
## 13576        Saint Pierre and Miquelon 1809           0
## 13577 Saint Vincent and the Grenadines 1809           0
## 13578                            Samoa 1809           0
## 13579            Sao Tome and Principe 1809           0
## 13580                     Saudi Arabia 1809           0
## 13581                          Senegal 1809           0
## 13582                           Serbia 1809           0
## 13583                       Seychelles 1809           0
## 13584                     Sierra Leone 1809           0
## 13585                        Singapore 1809           0
## 13586        Sint Maarten (Dutch part) 1809           0
## 13587                         Slovakia 1809           0
## 13588                         Slovenia 1809           0
## 13589                  Solomon Islands 1809           0
## 13590                          Somalia 1809           0
## 13591                     South Africa 1809           0
## 13592                      South Korea 1809           0
## 13593                      South Sudan 1809           0
## 13594                            Spain 1809           0
## 13595                        Sri Lanka 1809           0
## 13596                            Sudan 1809           0
## 13597                         Suriname 1809           0
## 13598                        Swaziland 1809           0
## 13599                           Sweden 1809           0
## 13600                      Switzerland 1809           0
## 13601                            Syria 1809           0
## 13602                           Taiwan 1809           0
## 13603                       Tajikistan 1809           0
## 13604                         Tanzania 1809           0
## 13605                         Thailand 1809           0
## 13606                            Timor 1809           0
## 13607                             Togo 1809           0
## 13608                            Tonga 1809           0
## 13609              Trinidad and Tobago 1809           0
## 13610                          Tunisia 1809           0
## 13611                           Turkey 1809           0
## 13612                     Turkmenistan 1809           0
## 13613         Turks and Caicos Islands 1809           0
## 13614                           Tuvalu 1809           0
## 13615                           Uganda 1809           0
## 13616                          Ukraine 1809           0
## 13617             United Arab Emirates 1809           0
## 13618                   United Kingdom 1809  1045126688
## 13619                    United States 1809     3286608
## 13620                          Uruguay 1809           0
## 13621                       Uzbekistan 1809           0
## 13622                          Vanuatu 1809           0
## 13623                        Venezuela 1809           0
## 13624                          Vietnam 1809           0
## 13625        Wallis and Futuna Islands 1809           0
## 13626                            World 1809  1078197952
## 13627                            Yemen 1809           0
## 13628                           Zambia 1809           0
## 13629                         Zimbabwe 1809           0
## 13630                      Afghanistan 1810           0
## 13631                           Africa 1810           0
## 13632                          Albania 1810           0
## 13633                          Algeria 1810           0
## 13634                 Americas (other) 1810       95264
## 13635                          Andorra 1810           0
## 13636                           Angola 1810           0
## 13637                         Anguilla 1810           0
## 13638              Antarctic Fisheries 1810           0
## 13639              Antigua and Barbuda 1810           0
## 13640                        Argentina 1810           0
## 13641                          Armenia 1810           0
## 13642                            Aruba 1810           0
## 13643         Asia and Pacific (other) 1810           0
## 13644                        Australia 1810           0
## 13645                          Austria 1810      168544
## 13646                       Azerbaijan 1810           0
## 13647                          Bahamas 1810           0
## 13648                          Bahrain 1810           0
## 13649                       Bangladesh 1810           0
## 13650                         Barbados 1810           0
## 13651                          Belarus 1810           0
## 13652                          Belgium 1810     6397344
## 13653                           Belize 1810           0
## 13654                            Benin 1810           0
## 13655                          Bermuda 1810           0
## 13656                           Bhutan 1810           0
## 13657                          Bolivia 1810           0
## 13658  Bonaire Sint Eustatius and Saba 1810           0
## 13659           Bosnia and Herzegovina 1810           0
## 13660                         Botswana 1810           0
## 13661                           Brazil 1810           0
## 13662           British Virgin Islands 1810           0
## 13663                           Brunei 1810           0
## 13664                         Bulgaria 1810           0
## 13665                     Burkina Faso 1810           0
## 13666                          Burundi 1810           0
## 13667                         Cambodia 1810           0
## 13668                         Cameroon 1810           0
## 13669                           Canada 1810       95264
## 13670                       Cape Verde 1810           0
## 13671                   Cayman Islands 1810           0
## 13672         Central African Republic 1810           0
## 13673                             Chad 1810           0
## 13674                            Chile 1810           0
## 13675                            China 1810           0
## 13676                 Christmas Island 1810           0
## 13677                         Colombia 1810           0
## 13678                          Comoros 1810           0
## 13679                            Congo 1810           0
## 13680                     Cook Islands 1810           0
## 13681                       Costa Rica 1810           0
## 13682                    Cote d'Ivoire 1810           0
## 13683                          Croatia 1810           0
## 13684                             Cuba 1810           0
## 13685                          Curacao 1810           0
## 13686                           Cyprus 1810           0
## 13687                   Czech Republic 1810           0
## 13688                   Czechoslovakia 1810           0
## 13689     Democratic Republic of Congo 1810           0
## 13690                          Denmark 1810           0
## 13691                         Djibouti 1810           0
## 13692                         Dominica 1810           0
## 13693               Dominican Republic 1810           0
## 13694                            EU-28 1810  1111778512
## 13695                          Ecuador 1810           0
## 13696                            Egypt 1810           0
## 13697                      El Salvador 1810           0
## 13698                Equatorial Guinea 1810           0
## 13699                          Eritrea 1810           0
## 13700                          Estonia 1810           0
## 13701                         Ethiopia 1810           0
## 13702                   Europe (other) 1810           0
## 13703                   Faeroe Islands 1810           0
## 13704                 Falkland Islands 1810           0
## 13705                             Fiji 1810           0
## 13706                          Finland 1810           0
## 13707                           France 1810     6536576
## 13708                    French Guiana 1810           0
## 13709                 French Polynesia 1810           0
## 13710                            Gabon 1810           0
## 13711                           Gambia 1810           0
## 13712                          Georgia 1810           0
## 13713                          Germany 1810    15026064
## 13714                            Ghana 1810           0
## 13715                        Gibraltar 1810           0
## 13716                           Greece 1810           0
## 13717                        Greenland 1810           0
## 13718                          Grenada 1810           0
## 13719                       Guadeloupe 1810           0
## 13720                        Guatemala 1810           0
## 13721                           Guinea 1810           0
## 13722                    Guinea-Bissau 1810           0
## 13723                           Guyana 1810           0
## 13724                            Haiti 1810           0
## 13725                         Honduras 1810           0
## 13726                        Hong Kong 1810           0
## 13727                          Hungary 1810           0
## 13728                          Iceland 1810           0
## 13729                            India 1810           0
## 13730                        Indonesia 1810           0
## 13731                             Iran 1810           0
## 13732                             Iraq 1810           0
## 13733                          Ireland 1810           0
## 13734                           Israel 1810           0
## 13735                            Italy 1810           0
## 13736                          Jamaica 1810           0
## 13737                            Japan 1810           0
## 13738                           Jordan 1810           0
## 13739                       Kazakhstan 1810           0
## 13740                            Kenya 1810           0
## 13741                         Kiribati 1810           0
## 13742                           Kuwait 1810           0
## 13743                       Kyrgysztan 1810           0
## 13744                       Kyrgyzstan 1810           0
## 13745                             Laos 1810           0
## 13746                           Latvia 1810           0
## 13747                          Lebanon 1810           0
## 13748                          Lesotho 1810           0
## 13749                          Liberia 1810           0
## 13750                            Libya 1810           0
## 13751                    Liechtenstein 1810           0
## 13752                        Lithuania 1810           0
## 13753                       Luxembourg 1810           0
## 13754                            Macao 1810           0
## 13755                        Macedonia 1810           0
## 13756                       Madagascar 1810           0
## 13757                           Malawi 1810           0
## 13758                         Malaysia 1810           0
## 13759                         Maldives 1810           0
## 13760                             Mali 1810           0
## 13761                            Malta 1810           0
## 13762                 Marshall Islands 1810           0
## 13763                       Martinique 1810           0
## 13764                       Mauritania 1810           0
## 13765                        Mauritius 1810           0
## 13766                           Mexico 1810           0
## 13767             Micronesia (country) 1810           0
## 13768                      Middle East 1810           0
## 13769                          Moldova 1810           0
## 13770                         Mongolia 1810           0
## 13771                       Montenegro 1810           0
## 13772                       Montserrat 1810           0
## 13773                          Morocco 1810           0
## 13774                       Mozambique 1810           0
## 13775                          Myanmar 1810           0
## 13776                          Namibia 1810           0
## 13777                            Nauru 1810           0
## 13778                            Nepal 1810           0
## 13779                      Netherlands 1810           0
## 13780                    New Caledonia 1810           0
## 13781                      New Zealand 1810           0
## 13782                        Nicaragua 1810           0
## 13783                            Niger 1810           0
## 13784                          Nigeria 1810           0
## 13785                             Niue 1810           0
## 13786                      North Korea 1810           0
## 13787                           Norway 1810           0
## 13788                             Oman 1810           0
## 13789                         Pakistan 1810           0
## 13790                            Palau 1810           0
## 13791                        Palestine 1810           0
## 13792                           Panama 1810           0
## 13793                 Papua New Guinea 1810           0
## 13794                         Paraguay 1810           0
## 13795                             Peru 1810           0
## 13796                      Philippines 1810           0
## 13797                           Poland 1810     5232192
## 13798                         Portugal 1810           0
## 13799                            Qatar 1810           0
## 13800                          Reunion 1810           0
## 13801                          Romania 1810           0
## 13802                           Russia 1810           0
## 13803                           Rwanda 1810           0
## 13804                     Saint Helena 1810           0
## 13805            Saint Kitts and Nevis 1810           0
## 13806                      Saint Lucia 1810           0
## 13807        Saint Pierre and Miquelon 1810           0
## 13808 Saint Vincent and the Grenadines 1810           0
## 13809                            Samoa 1810           0
## 13810            Sao Tome and Principe 1810           0
## 13811                     Saudi Arabia 1810           0
## 13812                          Senegal 1810           0
## 13813                           Serbia 1810           0
## 13814                       Seychelles 1810           0
## 13815                     Sierra Leone 1810           0
## 13816                        Singapore 1810           0
## 13817        Sint Maarten (Dutch part) 1810           0
## 13818                         Slovakia 1810           0
## 13819                         Slovenia 1810           0
## 13820                  Solomon Islands 1810           0
## 13821                          Somalia 1810           0
## 13822                     South Africa 1810           0
## 13823                      South Korea 1810           0
## 13824                      South Sudan 1810           0
## 13825                            Spain 1810           0
## 13826                        Sri Lanka 1810           0
## 13827                            Sudan 1810           0
## 13828                         Suriname 1810           0
## 13829                        Swaziland 1810           0
## 13830                           Sweden 1810           0
## 13831                      Switzerland 1810           0
## 13832                            Syria 1810           0
## 13833                           Taiwan 1810           0
## 13834                       Tajikistan 1810           0
## 13835                         Tanzania 1810           0
## 13836                         Thailand 1810           0
## 13837                            Timor 1810           0
## 13838                             Togo 1810           0
## 13839                            Tonga 1810           0
## 13840              Trinidad and Tobago 1810           0
## 13841                          Tunisia 1810           0
## 13842                           Turkey 1810           0
## 13843                     Turkmenistan 1810           0
## 13844         Turks and Caicos Islands 1810           0
## 13845                           Tuvalu 1810           0
## 13846                           Uganda 1810           0
## 13847                          Ukraine 1810           0
## 13848             United Arab Emirates 1810           0
## 13849                   United Kingdom 1810  1078417792
## 13850                    United States 1810     3704304
## 13851                          Uruguay 1810           0
## 13852                       Uzbekistan 1810           0
## 13853                          Vanuatu 1810           0
## 13854                        Venezuela 1810           0
## 13855                          Vietnam 1810           0
## 13856        Wallis and Futuna Islands 1810           0
## 13857                            World 1810  1115578080
## 13858                            Yemen 1810           0
## 13859                           Zambia 1810           0
## 13860                         Zimbabwe 1810           0
## 13861                      Afghanistan 1811           0
## 13862                           Africa 1811           0
## 13863                          Albania 1811           0
## 13864                          Algeria 1811           0
## 13865                 Americas (other) 1811       98928
## 13866                          Andorra 1811           0
## 13867                           Angola 1811           0
## 13868                         Anguilla 1811           0
## 13869              Antarctic Fisheries 1811           0
## 13870              Antigua and Barbuda 1811           0
## 13871                        Argentina 1811           0
## 13872                          Armenia 1811           0
## 13873                            Aruba 1811           0
## 13874         Asia and Pacific (other) 1811           0
## 13875                        Australia 1811           0
## 13876                          Austria 1811      168544
## 13877                       Azerbaijan 1811           0
## 13878                          Bahamas 1811           0
## 13879                          Bahrain 1811           0
## 13880                       Bangladesh 1811           0
## 13881                         Barbados 1811           0
## 13882                          Belarus 1811           0
## 13883                          Belgium 1811     6397344
## 13884                           Belize 1811           0
## 13885                            Benin 1811           0
## 13886                          Bermuda 1811           0
## 13887                           Bhutan 1811           0
## 13888                          Bolivia 1811           0
## 13889  Bonaire Sint Eustatius and Saba 1811           0
## 13890           Bosnia and Herzegovina 1811           0
## 13891                         Botswana 1811           0
## 13892                           Brazil 1811           0
## 13893           British Virgin Islands 1811           0
## 13894                           Brunei 1811           0
## 13895                         Bulgaria 1811           0
## 13896                     Burkina Faso 1811           0
## 13897                          Burundi 1811           0
## 13898                         Cambodia 1811           0
## 13899                         Cameroon 1811           0
## 13900                           Canada 1811       98928
## 13901                       Cape Verde 1811           0
## 13902                   Cayman Islands 1811           0
## 13903         Central African Republic 1811           0
## 13904                             Chad 1811           0
## 13905                            Chile 1811           0
## 13906                            China 1811           0
## 13907                 Christmas Island 1811           0
## 13908                         Colombia 1811           0
## 13909                          Comoros 1811           0
## 13910                            Congo 1811           0
## 13911                     Cook Islands 1811           0
## 13912                       Costa Rica 1811           0
## 13913                    Cote d'Ivoire 1811           0
## 13914                          Croatia 1811           0
## 13915                             Cuba 1811           0
## 13916                          Curacao 1811           0
## 13917                           Cyprus 1811           0
## 13918                   Czech Republic 1811           0
## 13919                   Czechoslovakia 1811           0
## 13920     Democratic Republic of Congo 1811           0
## 13921                          Denmark 1811           0
## 13922                         Djibouti 1811           0
## 13923                         Dominica 1811           0
## 13924               Dominican Republic 1811           0
## 13925                            EU-28 1811  1150910032
## 13926                          Ecuador 1811           0
## 13927                            Egypt 1811           0
## 13928                      El Salvador 1811           0
## 13929                Equatorial Guinea 1811           0
## 13930                          Eritrea 1811           0
## 13931                          Estonia 1811           0
## 13932                         Ethiopia 1811           0
## 13933                   Europe (other) 1811           0
## 13934                   Faeroe Islands 1811           0
## 13935                 Falkland Islands 1811           0
## 13936                             Fiji 1811           0
## 13937                          Finland 1811           0
## 13938                           France 1811     8588416
## 13939                    French Guiana 1811           0
## 13940                 French Polynesia 1811           0
## 13941                            Gabon 1811           0
## 13942                           Gambia 1811           0
## 13943                          Georgia 1811           0
## 13944                          Germany 1811    15953056
## 13945                            Ghana 1811           0
## 13946                        Gibraltar 1811           0
## 13947                           Greece 1811           0
## 13948                        Greenland 1811           0
## 13949                          Grenada 1811           0
## 13950                       Guadeloupe 1811           0
## 13951                        Guatemala 1811           0
## 13952                           Guinea 1811           0
## 13953                    Guinea-Bissau 1811           0
## 13954                           Guyana 1811           0
## 13955                            Haiti 1811           0
## 13956                         Honduras 1811           0
## 13957                        Hong Kong 1811           0
## 13958                          Hungary 1811           0
## 13959                          Iceland 1811           0
## 13960                            India 1811           0
## 13961                        Indonesia 1811           0
## 13962                             Iran 1811           0
## 13963                             Iraq 1811           0
## 13964                          Ireland 1811           0
## 13965                           Israel 1811           0
## 13966                            Italy 1811           0
## 13967                          Jamaica 1811           0
## 13968                            Japan 1811           0
## 13969                           Jordan 1811           0
## 13970                       Kazakhstan 1811           0
## 13971                            Kenya 1811           0
## 13972                         Kiribati 1811           0
## 13973                           Kuwait 1811           0
## 13974                       Kyrgysztan 1811           0
## 13975                       Kyrgyzstan 1811           0
## 13976                             Laos 1811           0
## 13977                           Latvia 1811           0
## 13978                          Lebanon 1811           0
## 13979                          Lesotho 1811           0
## 13980                          Liberia 1811           0
## 13981                            Libya 1811           0
## 13982                    Liechtenstein 1811           0
## 13983                        Lithuania 1811           0
## 13984                       Luxembourg 1811           0
## 13985                            Macao 1811           0
## 13986                        Macedonia 1811           0
## 13987                       Madagascar 1811           0
## 13988                           Malawi 1811           0
## 13989                         Malaysia 1811           0
## 13990                         Maldives 1811           0
## 13991                             Mali 1811           0
## 13992                            Malta 1811           0
## 13993                 Marshall Islands 1811           0
## 13994                       Martinique 1811           0
## 13995                       Mauritania 1811           0
## 13996                        Mauritius 1811           0
## 13997                           Mexico 1811           0
## 13998             Micronesia (country) 1811           0
## 13999                      Middle East 1811           0
## 14000                          Moldova 1811           0
## 14001                         Mongolia 1811           0
## 14002                       Montenegro 1811           0
## 14003                       Montserrat 1811           0
## 14004                          Morocco 1811           0
## 14005                       Mozambique 1811           0
## 14006                          Myanmar 1811           0
## 14007                          Namibia 1811           0
## 14008                            Nauru 1811           0
## 14009                            Nepal 1811           0
## 14010                      Netherlands 1811           0
## 14011                    New Caledonia 1811           0
## 14012                      New Zealand 1811           0
## 14013                        Nicaragua 1811           0
## 14014                            Niger 1811           0
## 14015                          Nigeria 1811           0
## 14016                             Niue 1811           0
## 14017                      North Korea 1811           0
## 14018                           Norway 1811           0
## 14019                             Oman 1811           0
## 14020                         Pakistan 1811           0
## 14021                            Palau 1811           0
## 14022                        Palestine 1811           0
## 14023                           Panama 1811           0
## 14024                 Papua New Guinea 1811           0
## 14025                         Paraguay 1811           0
## 14026                             Peru 1811           0
## 14027                      Philippines 1811           0
## 14028                           Poland 1811     5822096
## 14029                         Portugal 1811           0
## 14030                            Qatar 1811           0
## 14031                          Reunion 1811           0
## 14032                          Romania 1811           0
## 14033                           Russia 1811           0
## 14034                           Rwanda 1811           0
## 14035                     Saint Helena 1811           0
## 14036            Saint Kitts and Nevis 1811           0
## 14037                      Saint Lucia 1811           0
## 14038        Saint Pierre and Miquelon 1811           0
## 14039 Saint Vincent and the Grenadines 1811           0
## 14040                            Samoa 1811           0
## 14041            Sao Tome and Principe 1811           0
## 14042                     Saudi Arabia 1811           0
## 14043                          Senegal 1811           0
## 14044                           Serbia 1811           0
## 14045                       Seychelles 1811           0
## 14046                     Sierra Leone 1811           0
## 14047                        Singapore 1811           0
## 14048        Sint Maarten (Dutch part) 1811           0
## 14049                         Slovakia 1811           0
## 14050                         Slovenia 1811           0
## 14051                  Solomon Islands 1811           0
## 14052                          Somalia 1811           0
## 14053                     South Africa 1811           0
## 14054                      South Korea 1811           0
## 14055                      South Sudan 1811           0
## 14056                            Spain 1811           0
## 14057                        Sri Lanka 1811           0
## 14058                            Sudan 1811           0
## 14059                         Suriname 1811           0
## 14060                        Swaziland 1811           0
## 14061                           Sweden 1811           0
## 14062                      Switzerland 1811           0
## 14063                            Syria 1811           0
## 14064                           Taiwan 1811           0
## 14065                       Tajikistan 1811           0
## 14066                         Tanzania 1811           0
## 14067                         Thailand 1811           0
## 14068                            Timor 1811           0
## 14069                             Togo 1811           0
## 14070                            Tonga 1811           0
## 14071              Trinidad and Tobago 1811           0
## 14072                          Tunisia 1811           0
## 14073                           Turkey 1811           0
## 14074                     Turkmenistan 1811           0
## 14075         Turks and Caicos Islands 1811           0
## 14076                           Tuvalu 1811           0
## 14077                           Uganda 1811           0
## 14078                          Ukraine 1811           0
## 14079             United Arab Emirates 1811           0
## 14080                   United Kingdom 1811  1113980576
## 14081                    United States 1811     4151312
## 14082                          Uruguay 1811           0
## 14083                       Uzbekistan 1811           0
## 14084                          Vanuatu 1811           0
## 14085                        Venezuela 1811           0
## 14086                          Vietnam 1811           0
## 14087        Wallis and Futuna Islands 1811           0
## 14088                            World 1811  1155160272
## 14089                            Yemen 1811           0
## 14090                           Zambia 1811           0
## 14091                         Zimbabwe 1811           0
## 14092                      Afghanistan 1812           0
## 14093                           Africa 1812           0
## 14094                          Albania 1812           0
## 14095                          Algeria 1812           0
## 14096                 Americas (other) 1812      102592
## 14097                          Andorra 1812           0
## 14098                           Angola 1812           0
## 14099                         Anguilla 1812           0
## 14100              Antarctic Fisheries 1812           0
## 14101              Antigua and Barbuda 1812           0
## 14102                        Argentina 1812           0
## 14103                          Armenia 1812           0
## 14104                            Aruba 1812           0
## 14105         Asia and Pacific (other) 1812           0
## 14106                        Australia 1812           0
## 14107                          Austria 1812      168544
## 14108                       Azerbaijan 1812           0
## 14109                          Bahamas 1812           0
## 14110                          Bahrain 1812           0
## 14111                       Bangladesh 1812           0
## 14112                         Barbados 1812           0
## 14113                          Belarus 1812           0
## 14114                          Belgium 1812     6397344
## 14115                           Belize 1812           0
## 14116                            Benin 1812           0
## 14117                          Bermuda 1812           0
## 14118                           Bhutan 1812           0
## 14119                          Bolivia 1812           0
## 14120  Bonaire Sint Eustatius and Saba 1812           0
## 14121           Bosnia and Herzegovina 1812           0
## 14122                         Botswana 1812           0
## 14123                           Brazil 1812           0
## 14124           British Virgin Islands 1812           0
## 14125                           Brunei 1812           0
## 14126                         Bulgaria 1812           0
## 14127                     Burkina Faso 1812           0
## 14128                          Burundi 1812           0
## 14129                         Cambodia 1812           0
## 14130                         Cameroon 1812           0
## 14131                           Canada 1812      102592
## 14132                       Cape Verde 1812           0
## 14133                   Cayman Islands 1812           0
## 14134         Central African Republic 1812           0
## 14135                             Chad 1812           0
## 14136                            Chile 1812           0
## 14137                            China 1812           0
## 14138                 Christmas Island 1812           0
## 14139                         Colombia 1812           0
## 14140                          Comoros 1812           0
## 14141                            Congo 1812           0
## 14142                     Cook Islands 1812           0
## 14143                       Costa Rica 1812           0
## 14144                    Cote d'Ivoire 1812           0
## 14145                          Croatia 1812           0
## 14146                             Cuba 1812           0
## 14147                          Curacao 1812           0
## 14148                           Cyprus 1812           0
## 14149                   Czech Republic 1812           0
## 14150                   Czechoslovakia 1812           0
## 14151     Democratic Republic of Congo 1812           0
## 14152                          Denmark 1812           0
## 14153                         Djibouti 1812           0
## 14154                         Dominica 1812           0
## 14155               Dominican Republic 1812           0
## 14156                            EU-28 1812  1191430208
## 14157                          Ecuador 1812           0
## 14158                            Egypt 1812           0
## 14159                      El Salvador 1812           0
## 14160                Equatorial Guinea 1812           0
## 14161                          Eritrea 1812           0
## 14162                          Estonia 1812           0
## 14163                         Ethiopia 1812           0
## 14164                   Europe (other) 1812           0
## 14165                   Faeroe Islands 1812           0
## 14166                 Falkland Islands 1812           0
## 14167                             Fiji 1812           0
## 14168                          Finland 1812           0
## 14169                           France 1812    10805136
## 14170                    French Guiana 1812           0
## 14171                 French Polynesia 1812           0
## 14172                            Gabon 1812           0
## 14173                           Gambia 1812           0
## 14174                          Georgia 1812           0
## 14175                          Germany 1812    16865392
## 14176                            Ghana 1812           0
## 14177                        Gibraltar 1812           0
## 14178                           Greece 1812           0
## 14179                        Greenland 1812           0
## 14180                          Grenada 1812           0
## 14181                       Guadeloupe 1812           0
## 14182                        Guatemala 1812           0
## 14183                           Guinea 1812           0
## 14184                    Guinea-Bissau 1812           0
## 14185                           Guyana 1812           0
## 14186                            Haiti 1812           0
## 14187                         Honduras 1812           0
## 14188                        Hong Kong 1812           0
## 14189                          Hungary 1812           0
## 14190                          Iceland 1812           0
## 14191                            India 1812           0
## 14192                        Indonesia 1812           0
## 14193                             Iran 1812           0
## 14194                             Iraq 1812           0
## 14195                          Ireland 1812           0
## 14196                           Israel 1812           0
## 14197                            Italy 1812           0
## 14198                          Jamaica 1812           0
## 14199                            Japan 1812           0
## 14200                           Jordan 1812           0
## 14201                       Kazakhstan 1812           0
## 14202                            Kenya 1812           0
## 14203                         Kiribati 1812           0
## 14204                           Kuwait 1812           0
## 14205                       Kyrgysztan 1812           0
## 14206                       Kyrgyzstan 1812           0
## 14207                             Laos 1812           0
## 14208                           Latvia 1812           0
## 14209                          Lebanon 1812           0
## 14210                          Lesotho 1812           0
## 14211                          Liberia 1812           0
## 14212                            Libya 1812           0
## 14213                    Liechtenstein 1812           0
## 14214                        Lithuania 1812           0
## 14215                       Luxembourg 1812           0
## 14216                            Macao 1812           0
## 14217                        Macedonia 1812           0
## 14218                       Madagascar 1812           0
## 14219                           Malawi 1812           0
## 14220                         Malaysia 1812           0
## 14221                         Maldives 1812           0
## 14222                             Mali 1812           0
## 14223                            Malta 1812           0
## 14224                 Marshall Islands 1812           0
## 14225                       Martinique 1812           0
## 14226                       Mauritania 1812           0
## 14227                        Mauritius 1812           0
## 14228                           Mexico 1812           0
## 14229             Micronesia (country) 1812           0
## 14230                      Middle East 1812           0
## 14231                          Moldova 1812           0
## 14232                         Mongolia 1812           0
## 14233                       Montenegro 1812           0
## 14234                       Montserrat 1812           0
## 14235                          Morocco 1812           0
## 14236                       Mozambique 1812           0
## 14237                          Myanmar 1812           0
## 14238                          Namibia 1812           0
## 14239                            Nauru 1812           0
## 14240                            Nepal 1812           0
## 14241                      Netherlands 1812           0
## 14242                    New Caledonia 1812           0
## 14243                      New Zealand 1812           0
## 14244                        Nicaragua 1812           0
## 14245                            Niger 1812           0
## 14246                          Nigeria 1812           0
## 14247                             Niue 1812           0
## 14248                      North Korea 1812           0
## 14249                           Norway 1812           0
## 14250                             Oman 1812           0
## 14251                         Pakistan 1812           0
## 14252                            Palau 1812           0
## 14253                        Palestine 1812           0
## 14254                           Panama 1812           0
## 14255                 Papua New Guinea 1812           0
## 14256                         Paraguay 1812           0
## 14257                             Peru 1812           0
## 14258                      Philippines 1812           0
## 14259                           Poland 1812     6276432
## 14260                         Portugal 1812           0
## 14261                            Qatar 1812           0
## 14262                          Reunion 1812           0
## 14263                          Romania 1812           0
## 14264                           Russia 1812           0
## 14265                           Rwanda 1812           0
## 14266                     Saint Helena 1812           0
## 14267            Saint Kitts and Nevis 1812           0
## 14268                      Saint Lucia 1812           0
## 14269        Saint Pierre and Miquelon 1812           0
## 14270 Saint Vincent and the Grenadines 1812           0
## 14271                            Samoa 1812           0
## 14272            Sao Tome and Principe 1812           0
## 14273                     Saudi Arabia 1812           0
## 14274                          Senegal 1812           0
## 14275                           Serbia 1812           0
## 14276                       Seychelles 1812           0
## 14277                     Sierra Leone 1812           0
## 14278                        Singapore 1812           0
## 14279        Sint Maarten (Dutch part) 1812           0
## 14280                         Slovakia 1812           0
## 14281                         Slovenia 1812           0
## 14282                  Solomon Islands 1812           0
## 14283                          Somalia 1812           0
## 14284                     South Africa 1812           0
## 14285                      South Korea 1812           0
## 14286                      South Sudan 1812           0
## 14287                            Spain 1812           0
## 14288                        Sri Lanka 1812           0
## 14289                            Sudan 1812           0
## 14290                         Suriname 1812           0
## 14291                        Swaziland 1812           0
## 14292                           Sweden 1812           0
## 14293                      Switzerland 1812           0
## 14294                            Syria 1812           0
## 14295                           Taiwan 1812           0
## 14296                       Tajikistan 1812           0
## 14297                         Tanzania 1812           0
## 14298                         Thailand 1812           0
## 14299                            Timor 1812           0
## 14300                             Togo 1812           0
## 14301                            Tonga 1812           0
## 14302              Trinidad and Tobago 1812           0
## 14303                          Tunisia 1812           0
## 14304                           Turkey 1812           0
## 14305                     Turkmenistan 1812           0
## 14306         Turks and Caicos Islands 1812           0
## 14307                           Tuvalu 1812           0
## 14308                           Uganda 1812           0
## 14309                          Ukraine 1812           0
## 14310             United Arab Emirates 1812           0
## 14311                   United Kingdom 1812  1150917360
## 14312                    United States 1812     4634960
## 14313                          Uruguay 1812           0
## 14314                       Uzbekistan 1812           0
## 14315                          Vanuatu 1812           0
## 14316                        Venezuela 1812           0
## 14317                          Vietnam 1812           0
## 14318        Wallis and Futuna Islands 1812           0
## 14319                            World 1812  1196167760
## 14320                            Yemen 1812           0
## 14321                           Zambia 1812           0
## 14322                         Zimbabwe 1812           0
## 14323                      Afghanistan 1813           0
## 14324                           Africa 1813           0
## 14325                          Albania 1813           0
## 14326                          Algeria 1813           0
## 14327                 Americas (other) 1813      106256
## 14328                          Andorra 1813           0
## 14329                           Angola 1813           0
## 14330                         Anguilla 1813           0
## 14331              Antarctic Fisheries 1813           0
## 14332              Antigua and Barbuda 1813           0
## 14333                        Argentina 1813           0
## 14334                          Armenia 1813           0
## 14335                            Aruba 1813           0
## 14336         Asia and Pacific (other) 1813           0
## 14337                        Australia 1813           0
## 14338                          Austria 1813      168544
## 14339                       Azerbaijan 1813           0
## 14340                          Bahamas 1813           0
## 14341                          Bahrain 1813           0
## 14342                       Bangladesh 1813           0
## 14343                         Barbados 1813           0
## 14344                          Belarus 1813           0
## 14345                          Belgium 1813     6397344
## 14346                           Belize 1813           0
## 14347                            Benin 1813           0
## 14348                          Bermuda 1813           0
## 14349                           Bhutan 1813           0
## 14350                          Bolivia 1813           0
## 14351  Bonaire Sint Eustatius and Saba 1813           0
## 14352           Bosnia and Herzegovina 1813           0
## 14353                         Botswana 1813           0
## 14354                           Brazil 1813           0
## 14355           British Virgin Islands 1813           0
## 14356                           Brunei 1813           0
## 14357                         Bulgaria 1813           0
## 14358                     Burkina Faso 1813           0
## 14359                          Burundi 1813           0
## 14360                         Cambodia 1813           0
## 14361                         Cameroon 1813           0
## 14362                           Canada 1813      106256
## 14363                       Cape Verde 1813           0
## 14364                   Cayman Islands 1813           0
## 14365         Central African Republic 1813           0
## 14366                             Chad 1813           0
## 14367                            Chile 1813           0
## 14368                            China 1813           0
## 14369                 Christmas Island 1813           0
## 14370                         Colombia 1813           0
## 14371                          Comoros 1813           0
## 14372                            Congo 1813           0
## 14373                     Cook Islands 1813           0
## 14374                       Costa Rica 1813           0
## 14375                    Cote d'Ivoire 1813           0
## 14376                          Croatia 1813           0
## 14377                             Cuba 1813           0
## 14378                          Curacao 1813           0
## 14379                           Cyprus 1813           0
## 14380                   Czech Republic 1813           0
## 14381                   Czechoslovakia 1813           0
## 14382     Democratic Republic of Congo 1813           0
## 14383                          Denmark 1813           0
## 14384                         Djibouti 1813           0
## 14385                         Dominica 1813           0
## 14386               Dominican Republic 1813           0
## 14387                            EU-28 1813  1232126256
## 14388                          Ecuador 1813           0
## 14389                            Egypt 1813           0
## 14390                      El Salvador 1813           0
## 14391                Equatorial Guinea 1813           0
## 14392                          Eritrea 1813           0
## 14393                          Estonia 1813           0
## 14394                         Ethiopia 1813           0
## 14395                   Europe (other) 1813           0
## 14396                   Faeroe Islands 1813           0
## 14397                 Falkland Islands 1813           0
## 14398                             Fiji 1813           0
## 14399                          Finland 1813           0
## 14400                           France 1813    12853312
## 14401                    French Guiana 1813           0
## 14402                 French Polynesia 1813           0
## 14403                            Gabon 1813           0
## 14404                           Gambia 1813           0
## 14405                          Georgia 1813           0
## 14406                          Germany 1813    17755744
## 14407                            Ghana 1813           0
## 14408                        Gibraltar 1813           0
## 14409                           Greece 1813           0
## 14410                        Greenland 1813           0
## 14411                          Grenada 1813           0
## 14412                       Guadeloupe 1813           0
## 14413                        Guatemala 1813           0
## 14414                           Guinea 1813           0
## 14415                    Guinea-Bissau 1813           0
## 14416                           Guyana 1813           0
## 14417                            Haiti 1813           0
## 14418                         Honduras 1813           0
## 14419                        Hong Kong 1813           0
## 14420                          Hungary 1813           0
## 14421                          Iceland 1813           0
## 14422                            India 1813           0
## 14423                        Indonesia 1813           0
## 14424                             Iran 1813           0
## 14425                             Iraq 1813           0
## 14426                          Ireland 1813           0
## 14427                           Israel 1813           0
## 14428                            Italy 1813           0
## 14429                          Jamaica 1813           0
## 14430                            Japan 1813           0
## 14431                           Jordan 1813           0
## 14432                       Kazakhstan 1813           0
## 14433                            Kenya 1813           0
## 14434                         Kiribati 1813           0
## 14435                           Kuwait 1813           0
## 14436                       Kyrgysztan 1813           0
## 14437                       Kyrgyzstan 1813           0
## 14438                             Laos 1813           0
## 14439                           Latvia 1813           0
## 14440                          Lebanon 1813           0
## 14441                          Lesotho 1813           0
## 14442                          Liberia 1813           0
## 14443                            Libya 1813           0
## 14444                    Liechtenstein 1813           0
## 14445                        Lithuania 1813           0
## 14446                       Luxembourg 1813           0
## 14447                            Macao 1813           0
## 14448                        Macedonia 1813           0
## 14449                       Madagascar 1813           0
## 14450                           Malawi 1813           0
## 14451                         Malaysia 1813           0
## 14452                         Maldives 1813           0
## 14453                             Mali 1813           0
## 14454                            Malta 1813           0
## 14455                 Marshall Islands 1813           0
## 14456                       Martinique 1813           0
## 14457                       Mauritania 1813           0
## 14458                        Mauritius 1813           0
## 14459                           Mexico 1813           0
## 14460             Micronesia (country) 1813           0
## 14461                      Middle East 1813           0
## 14462                          Moldova 1813           0
## 14463                         Mongolia 1813           0
## 14464                       Montenegro 1813           0
## 14465                       Montserrat 1813           0
## 14466                          Morocco 1813           0
## 14467                       Mozambique 1813           0
## 14468                          Myanmar 1813           0
## 14469                          Namibia 1813           0
## 14470                            Nauru 1813           0
## 14471                            Nepal 1813           0
## 14472                      Netherlands 1813           0
## 14473                    New Caledonia 1813           0
## 14474                      New Zealand 1813           0
## 14475                        Nicaragua 1813           0
## 14476                            Niger 1813           0
## 14477                          Nigeria 1813           0
## 14478                             Niue 1813           0
## 14479                      North Korea 1813           0
## 14480                           Norway 1813           0
## 14481                             Oman 1813           0
## 14482                         Pakistan 1813           0
## 14483                            Palau 1813           0
## 14484                        Palestine 1813           0
## 14485                           Panama 1813           0
## 14486                 Papua New Guinea 1813           0
## 14487                         Paraguay 1813           0
## 14488                             Peru 1813           0
## 14489                      Philippines 1813           0
## 14490                           Poland 1813     6657488
## 14491                         Portugal 1813           0
## 14492                            Qatar 1813           0
## 14493                          Reunion 1813           0
## 14494                          Romania 1813           0
## 14495                           Russia 1813           0
## 14496                           Rwanda 1813           0
## 14497                     Saint Helena 1813           0
## 14498            Saint Kitts and Nevis 1813           0
## 14499                      Saint Lucia 1813           0
## 14500        Saint Pierre and Miquelon 1813           0
## 14501 Saint Vincent and the Grenadines 1813           0
## 14502                            Samoa 1813           0
## 14503            Sao Tome and Principe 1813           0
## 14504                     Saudi Arabia 1813           0
## 14505                          Senegal 1813           0
## 14506                           Serbia 1813           0
## 14507                       Seychelles 1813           0
## 14508                     Sierra Leone 1813           0
## 14509                        Singapore 1813           0
## 14510        Sint Maarten (Dutch part) 1813           0
## 14511                         Slovakia 1813           0
## 14512                         Slovenia 1813           0
## 14513                  Solomon Islands 1813           0
## 14514                          Somalia 1813           0
## 14515                     South Africa 1813           0
## 14516                      South Korea 1813           0
## 14517                      South Sudan 1813           0
## 14518                            Spain 1813           0
## 14519                        Sri Lanka 1813           0
## 14520                            Sudan 1813           0
## 14521                         Suriname 1813           0
## 14522                        Swaziland 1813           0
## 14523                           Sweden 1813           0
## 14524                      Switzerland 1813           0
## 14525                            Syria 1813           0
## 14526                           Taiwan 1813           0
## 14527                       Tajikistan 1813           0
## 14528                         Tanzania 1813           0
## 14529                         Thailand 1813           0
## 14530                            Timor 1813           0
## 14531                             Togo 1813           0
## 14532                            Tonga 1813           0
## 14533              Trinidad and Tobago 1813           0
## 14534                          Tunisia 1813           0
## 14535                           Turkey 1813           0
## 14536                     Turkmenistan 1813           0
## 14537         Turks and Caicos Islands 1813           0
## 14538                           Tuvalu 1813           0
## 14539                           Uganda 1813           0
## 14540                          Ukraine 1813           0
## 14541             United Arab Emirates 1813           0
## 14542                   United Kingdom 1813  1188293824
## 14543                    United States 1813     5155248
## 14544                          Uruguay 1813           0
## 14545                       Uzbekistan 1813           0
## 14546                          Vanuatu 1813           0
## 14547                        Venezuela 1813           0
## 14548                          Vietnam 1813           0
## 14549        Wallis and Futuna Islands 1813           0
## 14550                            World 1813  1237387760
## 14551                            Yemen 1813           0
## 14552                           Zambia 1813           0
## 14553                         Zimbabwe 1813           0
## 14554                      Afghanistan 1814           0
## 14555                           Africa 1814           0
## 14556                          Albania 1814           0
## 14557                          Algeria 1814           0
## 14558                 Americas (other) 1814      109920
## 14559                          Andorra 1814           0
## 14560                           Angola 1814           0
## 14561                         Anguilla 1814           0
## 14562              Antarctic Fisheries 1814           0
## 14563              Antigua and Barbuda 1814           0
## 14564                        Argentina 1814           0
## 14565                          Armenia 1814           0
## 14566                            Aruba 1814           0
## 14567         Asia and Pacific (other) 1814           0
## 14568                        Australia 1814           0
## 14569                          Austria 1814      168544
## 14570                       Azerbaijan 1814           0
## 14571                          Bahamas 1814           0
## 14572                          Bahrain 1814           0
## 14573                       Bangladesh 1814           0
## 14574                         Barbados 1814           0
## 14575                          Belarus 1814           0
## 14576                          Belgium 1814     6397344
## 14577                           Belize 1814           0
## 14578                            Benin 1814           0
## 14579                          Bermuda 1814           0
## 14580                           Bhutan 1814           0
## 14581                          Bolivia 1814           0
## 14582  Bonaire Sint Eustatius and Saba 1814           0
## 14583           Bosnia and Herzegovina 1814           0
## 14584                         Botswana 1814           0
## 14585                           Brazil 1814           0
## 14586           British Virgin Islands 1814           0
## 14587                           Brunei 1814           0
## 14588                         Bulgaria 1814           0
## 14589                     Burkina Faso 1814           0
## 14590                          Burundi 1814           0
## 14591                         Cambodia 1814           0
## 14592                         Cameroon 1814           0
## 14593                           Canada 1814      109920
## 14594                       Cape Verde 1814           0
## 14595                   Cayman Islands 1814           0
## 14596         Central African Republic 1814           0
## 14597                             Chad 1814           0
## 14598                            Chile 1814           0
## 14599                            China 1814           0
## 14600                 Christmas Island 1814           0
## 14601                         Colombia 1814           0
## 14602                          Comoros 1814           0
## 14603                            Congo 1814           0
## 14604                     Cook Islands 1814           0
## 14605                       Costa Rica 1814           0
## 14606                    Cote d'Ivoire 1814           0
## 14607                          Croatia 1814           0
## 14608                             Cuba 1814           0
## 14609                          Curacao 1814           0
## 14610                           Cyprus 1814           0
## 14611                   Czech Republic 1814           0
## 14612                   Czechoslovakia 1814           0
## 14613     Democratic Republic of Congo 1814           0
## 14614                          Denmark 1814           0
## 14615                         Djibouti 1814           0
## 14616                         Dominica 1814           0
## 14617               Dominican Republic 1814           0
## 14618                            EU-28 1814  1273690672
## 14619                          Ecuador 1814           0
## 14620                            Egypt 1814           0
## 14621                      El Salvador 1814           0
## 14622                Equatorial Guinea 1814           0
## 14623                          Eritrea 1814           0
## 14624                          Estonia 1814           0
## 14625                         Ethiopia 1814           0
## 14626                   Europe (other) 1814           0
## 14627                   Faeroe Islands 1814           0
## 14628                 Falkland Islands 1814           0
## 14629                             Fiji 1814           0
## 14630                          Finland 1814           0
## 14631                           France 1814    14945456
## 14632                    French Guiana 1814           0
## 14633                 French Polynesia 1814           0
## 14634                            Gabon 1814           0
## 14635                           Gambia 1814           0
## 14636                          Georgia 1814           0
## 14637                          Germany 1814    18638768
## 14638                            Ghana 1814           0
## 14639                        Gibraltar 1814           0
## 14640                           Greece 1814           0
## 14641                        Greenland 1814           0
## 14642                          Grenada 1814           0
## 14643                       Guadeloupe 1814           0
## 14644                        Guatemala 1814           0
## 14645                           Guinea 1814           0
## 14646                    Guinea-Bissau 1814           0
## 14647                           Guyana 1814           0
## 14648                            Haiti 1814           0
## 14649                         Honduras 1814           0
## 14650                        Hong Kong 1814           0
## 14651                          Hungary 1814           0
## 14652                          Iceland 1814           0
## 14653                            India 1814           0
## 14654                        Indonesia 1814           0
## 14655                             Iran 1814           0
## 14656                             Iraq 1814           0
## 14657                          Ireland 1814           0
## 14658                           Israel 1814           0
## 14659                            Italy 1814           0
## 14660                          Jamaica 1814           0
## 14661                            Japan 1814           0
## 14662                           Jordan 1814           0
## 14663                       Kazakhstan 1814           0
## 14664                            Kenya 1814           0
## 14665                         Kiribati 1814           0
## 14666                           Kuwait 1814           0
## 14667                       Kyrgysztan 1814           0
## 14668                       Kyrgyzstan 1814           0
## 14669                             Laos 1814           0
## 14670                           Latvia 1814           0
## 14671                          Lebanon 1814           0
## 14672                          Lesotho 1814           0
## 14673                          Liberia 1814           0
## 14674                            Libya 1814           0
## 14675                    Liechtenstein 1814           0
## 14676                        Lithuania 1814           0
## 14677                       Luxembourg 1814           0
## 14678                            Macao 1814           0
## 14679                        Macedonia 1814           0
## 14680                       Madagascar 1814           0
## 14681                           Malawi 1814           0
## 14682                         Malaysia 1814           0
## 14683                         Maldives 1814           0
## 14684                             Mali 1814           0
## 14685                            Malta 1814           0
## 14686                 Marshall Islands 1814           0
## 14687                       Martinique 1814           0
## 14688                       Mauritania 1814           0
## 14689                        Mauritius 1814           0
## 14690                           Mexico 1814           0
## 14691             Micronesia (country) 1814           0
## 14692                      Middle East 1814           0
## 14693                          Moldova 1814           0
## 14694                         Mongolia 1814           0
## 14695                       Montenegro 1814           0
## 14696                       Montserrat 1814           0
## 14697                          Morocco 1814           0
## 14698                       Mozambique 1814           0
## 14699                          Myanmar 1814           0
## 14700                          Namibia 1814           0
## 14701                            Nauru 1814           0
## 14702                            Nepal 1814           0
## 14703                      Netherlands 1814           0
## 14704                    New Caledonia 1814           0
## 14705                      New Zealand 1814           0
## 14706                        Nicaragua 1814           0
## 14707                            Niger 1814           0
## 14708                          Nigeria 1814           0
## 14709                             Niue 1814           0
## 14710                      North Korea 1814           0
## 14711                           Norway 1814           0
## 14712                             Oman 1814           0
## 14713                         Pakistan 1814           0
## 14714                            Palau 1814           0
## 14715                        Palestine 1814           0
## 14716                           Panama 1814           0
## 14717                 Papua New Guinea 1814           0
## 14718                         Paraguay 1814           0
## 14719                             Peru 1814           0
## 14720                      Philippines 1814           0
## 14721                           Poland 1814     7159456
## 14722                         Portugal 1814           0
## 14723                            Qatar 1814           0
## 14724                          Reunion 1814           0
## 14725                          Romania 1814           0
## 14726                           Russia 1814           0
## 14727                           Rwanda 1814           0
## 14728                     Saint Helena 1814           0
## 14729            Saint Kitts and Nevis 1814           0
## 14730                      Saint Lucia 1814           0
## 14731        Saint Pierre and Miquelon 1814           0
## 14732 Saint Vincent and the Grenadines 1814           0
## 14733                            Samoa 1814           0
## 14734            Sao Tome and Principe 1814           0
## 14735                     Saudi Arabia 1814           0
## 14736                          Senegal 1814           0
## 14737                           Serbia 1814           0
## 14738                       Seychelles 1814           0
## 14739                     Sierra Leone 1814           0
## 14740                        Singapore 1814           0
## 14741        Sint Maarten (Dutch part) 1814           0
## 14742                         Slovakia 1814           0
## 14743                         Slovenia 1814           0
## 14744                  Solomon Islands 1814           0
## 14745                          Somalia 1814           0
## 14746                     South Africa 1814           0
## 14747                      South Korea 1814           0
## 14748                      South Sudan 1814           0
## 14749                            Spain 1814           0
## 14750                        Sri Lanka 1814           0
## 14751                            Sudan 1814           0
## 14752                         Suriname 1814           0
## 14753                        Swaziland 1814           0
## 14754                           Sweden 1814           0
## 14755                      Switzerland 1814           0
## 14756                            Syria 1814           0
## 14757                           Taiwan 1814           0
## 14758                       Tajikistan 1814           0
## 14759                         Tanzania 1814           0
## 14760                         Thailand 1814           0
## 14761                            Timor 1814           0
## 14762                             Togo 1814           0
## 14763                            Tonga 1814           0
## 14764              Trinidad and Tobago 1814           0
## 14765                          Tunisia 1814           0
## 14766                           Turkey 1814           0
## 14767                     Turkmenistan 1814           0
## 14768         Turks and Caicos Islands 1814           0
## 14769                           Tuvalu 1814           0
## 14770                           Uganda 1814           0
## 14771                          Ukraine 1814           0
## 14772             United Arab Emirates 1814           0
## 14773                   United Kingdom 1814  1226381104
## 14774                    United States 1814     5715840
## 14775                          Uruguay 1814           0
## 14776                       Uzbekistan 1814           0
## 14777                          Vanuatu 1814           0
## 14778                        Venezuela 1814           0
## 14779                          Vietnam 1814           0
## 14780        Wallis and Futuna Islands 1814           0
## 14781                            World 1814  1279516432
## 14782                            Yemen 1814           0
## 14783                           Zambia 1814           0
## 14784                         Zimbabwe 1814           0
## 14785                      Afghanistan 1815           0
## 14786                           Africa 1815           0
## 14787                          Albania 1815           0
## 14788                          Algeria 1815           0
## 14789                 Americas (other) 1815      113584
## 14790                          Andorra 1815           0
## 14791                           Angola 1815           0
## 14792                         Anguilla 1815           0
## 14793              Antarctic Fisheries 1815           0
## 14794              Antigua and Barbuda 1815           0
## 14795                        Argentina 1815           0
## 14796                          Armenia 1815           0
## 14797                            Aruba 1815           0
## 14798         Asia and Pacific (other) 1815           0
## 14799                        Australia 1815           0
## 14800                          Austria 1815      168544
## 14801                       Azerbaijan 1815           0
## 14802                          Bahamas 1815           0
## 14803                          Bahrain 1815           0
## 14804                       Bangladesh 1815           0
## 14805                         Barbados 1815           0
## 14806                          Belarus 1815           0
## 14807                          Belgium 1815     6397344
## 14808                           Belize 1815           0
## 14809                            Benin 1815           0
## 14810                          Bermuda 1815           0
## 14811                           Bhutan 1815           0
## 14812                          Bolivia 1815           0
## 14813  Bonaire Sint Eustatius and Saba 1815           0
## 14814           Bosnia and Herzegovina 1815           0
## 14815                         Botswana 1815           0
## 14816                           Brazil 1815           0
## 14817           British Virgin Islands 1815           0
## 14818                           Brunei 1815           0
## 14819                         Bulgaria 1815           0
## 14820                     Burkina Faso 1815           0
## 14821                          Burundi 1815           0
## 14822                         Cambodia 1815           0
## 14823                         Cameroon 1815           0
## 14824                           Canada 1815      113584
## 14825                       Cape Verde 1815           0
## 14826                   Cayman Islands 1815           0
## 14827         Central African Republic 1815           0
## 14828                             Chad 1815           0
## 14829                            Chile 1815           0
## 14830                            China 1815           0
## 14831                 Christmas Island 1815           0
## 14832                         Colombia 1815           0
## 14833                          Comoros 1815           0
## 14834                            Congo 1815           0
## 14835                     Cook Islands 1815           0
## 14836                       Costa Rica 1815           0
## 14837                    Cote d'Ivoire 1815           0
## 14838                          Croatia 1815           0
## 14839                             Cuba 1815           0
## 14840                          Curacao 1815           0
## 14841                           Cyprus 1815           0
## 14842                   Czech Republic 1815           0
## 14843                   Czechoslovakia 1815           0
## 14844     Democratic Republic of Congo 1815           0
## 14845                          Denmark 1815           0
## 14846                         Djibouti 1815           0
## 14847                         Dominica 1815           0
## 14848               Dominican Republic 1815           0
## 14849                            EU-28 1815  1316574128
## 14850                          Ecuador 1815           0
## 14851                            Egypt 1815           0
## 14852                      El Salvador 1815           0
## 14853                Equatorial Guinea 1815           0
## 14854                          Eritrea 1815           0
## 14855                          Estonia 1815           0
## 14856                         Ethiopia 1815           0
## 14857                   Europe (other) 1815           0
## 14858                   Faeroe Islands 1815           0
## 14859                 Falkland Islands 1815           0
## 14860                             Fiji 1815           0
## 14861                          Finland 1815           0
## 14862                           France 1815    17286752
## 14863                    French Guiana 1815           0
## 14864                 French Polynesia 1815           0
## 14865                            Gabon 1815           0
## 14866                           Gambia 1815           0
## 14867                          Georgia 1815           0
## 14868                          Germany 1815    19668352
## 14869                            Ghana 1815           0
## 14870                        Gibraltar 1815           0
## 14871                           Greece 1815           0
## 14872                        Greenland 1815           0
## 14873                          Grenada 1815           0
## 14874                       Guadeloupe 1815           0
## 14875                        Guatemala 1815           0
## 14876                           Guinea 1815           0
## 14877                    Guinea-Bissau 1815           0
## 14878                           Guyana 1815           0
## 14879                            Haiti 1815           0
## 14880                         Honduras 1815           0
## 14881                        Hong Kong 1815           0
## 14882                          Hungary 1815           0
## 14883                          Iceland 1815           0
## 14884                            India 1815           0
## 14885                        Indonesia 1815           0
## 14886                             Iran 1815           0
## 14887                             Iraq 1815           0
## 14888                          Ireland 1815           0
## 14889                           Israel 1815           0
## 14890                            Italy 1815           0
## 14891                          Jamaica 1815           0
## 14892                            Japan 1815           0
## 14893                           Jordan 1815           0
## 14894                       Kazakhstan 1815           0
## 14895                            Kenya 1815           0
## 14896                         Kiribati 1815           0
## 14897                           Kuwait 1815           0
## 14898                       Kyrgysztan 1815           0
## 14899                       Kyrgyzstan 1815           0
## 14900                             Laos 1815           0
## 14901                           Latvia 1815           0
## 14902                          Lebanon 1815           0
## 14903                          Lesotho 1815           0
## 14904                          Liberia 1815           0
## 14905                            Libya 1815           0
## 14906                    Liechtenstein 1815           0
## 14907                        Lithuania 1815           0
## 14908                       Luxembourg 1815           0
## 14909                            Macao 1815           0
## 14910                        Macedonia 1815           0
## 14911                       Madagascar 1815           0
## 14912                           Malawi 1815           0
## 14913                         Malaysia 1815           0
## 14914                         Maldives 1815           0
## 14915                             Mali 1815           0
## 14916                            Malta 1815           0
## 14917                 Marshall Islands 1815           0
## 14918                       Martinique 1815           0
## 14919                       Mauritania 1815           0
## 14920                        Mauritius 1815           0
## 14921                           Mexico 1815           0
## 14922             Micronesia (country) 1815           0
## 14923                      Middle East 1815           0
## 14924                          Moldova 1815           0
## 14925                         Mongolia 1815           0
## 14926                       Montenegro 1815           0
## 14927                       Montserrat 1815           0
## 14928                          Morocco 1815           0
## 14929                       Mozambique 1815           0
## 14930                          Myanmar 1815           0
## 14931                          Namibia 1815           0
## 14932                            Nauru 1815           0
## 14933                            Nepal 1815           0
## 14934                      Netherlands 1815           0
## 14935                    New Caledonia 1815           0
## 14936                      New Zealand 1815           0
## 14937                        Nicaragua 1815           0
## 14938                            Niger 1815           0
## 14939                          Nigeria 1815           0
## 14940                             Niue 1815           0
## 14941                      North Korea 1815           0
## 14942                           Norway 1815           0
## 14943                             Oman 1815           0
## 14944                         Pakistan 1815           0
## 14945                            Palau 1815           0
## 14946                        Palestine 1815           0
## 14947                           Panama 1815           0
## 14948                 Papua New Guinea 1815           0
## 14949                         Paraguay 1815           0
## 14950                             Peru 1815           0
## 14951                      Philippines 1815           0
## 14952                           Poland 1815     7749360
## 14953                         Portugal 1815           0
## 14954                            Qatar 1815           0
## 14955                          Reunion 1815           0
## 14956                          Romania 1815           0
## 14957                           Russia 1815           0
## 14958                           Rwanda 1815           0
## 14959                     Saint Helena 1815           0
## 14960            Saint Kitts and Nevis 1815           0
## 14961                      Saint Lucia 1815           0
## 14962        Saint Pierre and Miquelon 1815           0
## 14963 Saint Vincent and the Grenadines 1815           0
## 14964                            Samoa 1815           0
## 14965            Sao Tome and Principe 1815           0
## 14966                     Saudi Arabia 1815           0
## 14967                          Senegal 1815           0
## 14968                           Serbia 1815           0
## 14969                       Seychelles 1815           0
## 14970                     Sierra Leone 1815           0
## 14971                        Singapore 1815           0
## 14972        Sint Maarten (Dutch part) 1815           0
## 14973                         Slovakia 1815           0
## 14974                         Slovenia 1815           0
## 14975                  Solomon Islands 1815           0
## 14976                          Somalia 1815           0
## 14977                     South Africa 1815           0
## 14978                      South Korea 1815           0
## 14979                      South Sudan 1815           0
## 14980                            Spain 1815           0
## 14981                        Sri Lanka 1815           0
## 14982                            Sudan 1815           0
## 14983                         Suriname 1815           0
## 14984                        Swaziland 1815           0
## 14985                           Sweden 1815           0
## 14986                      Switzerland 1815           0
## 14987                            Syria 1815           0
## 14988                           Taiwan 1815           0
## 14989                       Tajikistan 1815           0
## 14990                         Tanzania 1815           0
## 14991                         Thailand 1815           0
## 14992                            Timor 1815           0
## 14993                             Togo 1815           0
## 14994                            Tonga 1815           0
## 14995              Trinidad and Tobago 1815           0
## 14996                          Tunisia 1815           0
## 14997                           Turkey 1815           0
## 14998                     Turkmenistan 1815           0
## 14999         Turks and Caicos Islands 1815           0
## 15000                           Tuvalu 1815           0
## 15001                           Uganda 1815           0
## 15002                          Ukraine 1815           0
## 15003             United Arab Emirates 1815           0
## 15004                   United Kingdom 1815  1265303776
## 15005                    United States 1815     6316736
## 15006                          Uruguay 1815           0
## 15007                       Uzbekistan 1815           0
## 15008                          Vanuatu 1815           0
## 15009                        Venezuela 1815           0
## 15010                          Vietnam 1815           0
## 15011        Wallis and Futuna Islands 1815           0
## 15012                            World 1815  1323004448
## 15013                            Yemen 1815           0
## 15014                           Zambia 1815           0
## 15015                         Zimbabwe 1815           0
## 15016                      Afghanistan 1816           0
## 15017                           Africa 1816           0
## 15018                          Albania 1816           0
## 15019                          Algeria 1816           0
## 15020                 Americas (other) 1816      117248
## 15021                          Andorra 1816           0
## 15022                           Angola 1816           0
## 15023                         Anguilla 1816           0
## 15024              Antarctic Fisheries 1816           0
## 15025              Antigua and Barbuda 1816           0
## 15026                        Argentina 1816           0
## 15027                          Armenia 1816           0
## 15028                            Aruba 1816           0
## 15029         Asia and Pacific (other) 1816           0
## 15030                        Australia 1816           0
## 15031                          Austria 1816      168544
## 15032                       Azerbaijan 1816           0
## 15033                          Bahamas 1816           0
## 15034                          Bahrain 1816           0
## 15035                       Bangladesh 1816           0
## 15036                         Barbados 1816           0
## 15037                          Belarus 1816           0
## 15038                          Belgium 1816     6397344
## 15039                           Belize 1816           0
## 15040                            Benin 1816           0
## 15041                          Bermuda 1816           0
## 15042                           Bhutan 1816           0
## 15043                          Bolivia 1816           0
## 15044  Bonaire Sint Eustatius and Saba 1816           0
## 15045           Bosnia and Herzegovina 1816           0
## 15046                         Botswana 1816           0
## 15047                           Brazil 1816           0
## 15048           British Virgin Islands 1816           0
## 15049                           Brunei 1816           0
## 15050                         Bulgaria 1816           0
## 15051                     Burkina Faso 1816           0
## 15052                          Burundi 1816           0
## 15053                         Cambodia 1816           0
## 15054                         Cameroon 1816           0
## 15055                           Canada 1816      117248
## 15056                       Cape Verde 1816           0
## 15057                   Cayman Islands 1816           0
## 15058         Central African Republic 1816           0
## 15059                             Chad 1816           0
## 15060                            Chile 1816           0
## 15061                            China 1816           0
## 15062                 Christmas Island 1816           0
## 15063                         Colombia 1816           0
## 15064                          Comoros 1816           0
## 15065                            Congo 1816           0
## 15066                     Cook Islands 1816           0
## 15067                       Costa Rica 1816           0
## 15068                    Cote d'Ivoire 1816           0
## 15069                          Croatia 1816           0
## 15070                             Cuba 1816           0
## 15071                          Curacao 1816           0
## 15072                           Cyprus 1816           0
## 15073                   Czech Republic 1816           0
## 15074                   Czechoslovakia 1816           0
## 15075     Democratic Republic of Congo 1816           0
## 15076                          Denmark 1816           0
## 15077                         Djibouti 1816           0
## 15078                         Dominica 1816           0
## 15079               Dominican Republic 1816           0
## 15080                            EU-28 1816  1363572256
## 15081                          Ecuador 1816           0
## 15082                            Egypt 1816           0
## 15083                      El Salvador 1816           0
## 15084                Equatorial Guinea 1816           0
## 15085                          Eritrea 1816           0
## 15086                          Estonia 1816           0
## 15087                         Ethiopia 1816           0
## 15088                   Europe (other) 1816           0
## 15089                   Faeroe Islands 1816           0
## 15090                 Falkland Islands 1816           0
## 15091                             Fiji 1816           0
## 15092                          Finland 1816           0
## 15093                           France 1816    19785600
## 15094                    French Guiana 1816           0
## 15095                 French Polynesia 1816           0
## 15096                            Gabon 1816           0
## 15097                           Gambia 1816           0
## 15098                          Georgia 1816           0
## 15099                          Germany 1816    22053616
## 15100                            Ghana 1816           0
## 15101                        Gibraltar 1816           0
## 15102                           Greece 1816           0
## 15103                        Greenland 1816           0
## 15104                          Grenada 1816           0
## 15105                       Guadeloupe 1816           0
## 15106                        Guatemala 1816           0
## 15107                           Guinea 1816           0
## 15108                    Guinea-Bissau 1816           0
## 15109                           Guyana 1816           0
## 15110                            Haiti 1816           0
## 15111                         Honduras 1816           0
## 15112                        Hong Kong 1816           0
## 15113                          Hungary 1816           0
## 15114                          Iceland 1816           0
## 15115                            India 1816           0
## 15116                        Indonesia 1816           0
## 15117                             Iran 1816           0
## 15118                             Iraq 1816           0
## 15119                          Ireland 1816           0
## 15120                           Israel 1816           0
## 15121                            Italy 1816           0
## 15122                          Jamaica 1816           0
## 15123                            Japan 1816           0
## 15124                           Jordan 1816           0
## 15125                       Kazakhstan 1816           0
## 15126                            Kenya 1816           0
## 15127                         Kiribati 1816           0
## 15128                           Kuwait 1816           0
## 15129                       Kyrgysztan 1816           0
## 15130                       Kyrgyzstan 1816           0
## 15131                             Laos 1816           0
## 15132                           Latvia 1816           0
## 15133                          Lebanon 1816           0
## 15134                          Lesotho 1816           0
## 15135                          Liberia 1816           0
## 15136                            Libya 1816           0
## 15137                    Liechtenstein 1816           0
## 15138                        Lithuania 1816           0
## 15139                       Luxembourg 1816           0
## 15140                            Macao 1816           0
## 15141                        Macedonia 1816           0
## 15142                       Madagascar 1816           0
## 15143                           Malawi 1816           0
## 15144                         Malaysia 1816           0
## 15145                         Maldives 1816           0
## 15146                             Mali 1816           0
## 15147                            Malta 1816           0
## 15148                 Marshall Islands 1816           0
## 15149                       Martinique 1816           0
## 15150                       Mauritania 1816           0
## 15151                        Mauritius 1816           0
## 15152                           Mexico 1816           0
## 15153             Micronesia (country) 1816           0
## 15154                      Middle East 1816           0
## 15155                          Moldova 1816           0
## 15156                         Mongolia 1816           0
## 15157                       Montenegro 1816           0
## 15158                       Montserrat 1816           0
## 15159                          Morocco 1816           0
## 15160                       Mozambique 1816           0
## 15161                          Myanmar 1816           0
## 15162                          Namibia 1816           0
## 15163                            Nauru 1816           0
## 15164                            Nepal 1816           0
## 15165                      Netherlands 1816           0
## 15166                    New Caledonia 1816           0
## 15167                      New Zealand 1816           0
## 15168                        Nicaragua 1816           0
## 15169                            Niger 1816           0
## 15170                          Nigeria 1816           0
## 15171                             Niue 1816           0
## 15172                      North Korea 1816           0
## 15173                           Norway 1816           0
## 15174                             Oman 1816           0
## 15175                         Pakistan 1816           0
## 15176                            Palau 1816           0
## 15177                        Palestine 1816           0
## 15178                           Panama 1816           0
## 15179                 Papua New Guinea 1816           0
## 15180                         Paraguay 1816           0
## 15181                             Peru 1816           0
## 15182                      Philippines 1816           0
## 15183                           Poland 1816     8427200
## 15184                         Portugal 1816           0
## 15185                            Qatar 1816           0
## 15186                          Reunion 1816           0
## 15187                          Romania 1816           0
## 15188                           Russia 1816           0
## 15189                           Rwanda 1816           0
## 15190                     Saint Helena 1816           0
## 15191            Saint Kitts and Nevis 1816           0
## 15192                      Saint Lucia 1816           0
## 15193        Saint Pierre and Miquelon 1816           0
## 15194 Saint Vincent and the Grenadines 1816           0
## 15195                            Samoa 1816           0
## 15196            Sao Tome and Principe 1816           0
## 15197                     Saudi Arabia 1816           0
## 15198                          Senegal 1816           0
## 15199                           Serbia 1816           0
## 15200                       Seychelles 1816           0
## 15201                     Sierra Leone 1816           0
## 15202                        Singapore 1816           0
## 15203        Sint Maarten (Dutch part) 1816           0
## 15204                         Slovakia 1816           0
## 15205                         Slovenia 1816           0
## 15206                  Solomon Islands 1816           0
## 15207                          Somalia 1816           0
## 15208                     South Africa 1816           0
## 15209                      South Korea 1816           0
## 15210                      South Sudan 1816           0
## 15211                            Spain 1816           0
## 15212                        Sri Lanka 1816           0
## 15213                            Sudan 1816           0
## 15214                         Suriname 1816           0
## 15215                        Swaziland 1816           0
## 15216                           Sweden 1816           0
## 15217                      Switzerland 1816           0
## 15218                            Syria 1816           0
## 15219                           Taiwan 1816           0
## 15220                       Tajikistan 1816           0
## 15221                         Tanzania 1816           0
## 15222                         Thailand 1816           0
## 15223                            Timor 1816           0
## 15224                             Togo 1816           0
## 15225                            Tonga 1816           0
## 15226              Trinidad and Tobago 1816           0
## 15227                          Tunisia 1816           0
## 15228                           Turkey 1816           0
## 15229                     Turkmenistan 1816           0
## 15230         Turks and Caicos Islands 1816           0
## 15231                           Tuvalu 1816           0
## 15232                           Uganda 1816           0
## 15233                          Ukraine 1816           0
## 15234             United Arab Emirates 1816           0
## 15235                   United Kingdom 1816  1306739952
## 15236                    United States 1816     6979920
## 15237                          Uruguay 1816           0
## 15238                       Uzbekistan 1816           0
## 15239                          Vanuatu 1816           0
## 15240                        Venezuela 1816           0
## 15241                          Vietnam 1816           0
## 15242        Wallis and Futuna Islands 1816           0
## 15243                            World 1816  1370669424
## 15244                            Yemen 1816           0
## 15245                           Zambia 1816           0
## 15246                         Zimbabwe 1816           0
## 15247                      Afghanistan 1817           0
## 15248                           Africa 1817           0
## 15249                          Albania 1817           0
## 15250                          Algeria 1817           0
## 15251                 Americas (other) 1817      120912
## 15252                          Andorra 1817           0
## 15253                           Angola 1817           0
## 15254                         Anguilla 1817           0
## 15255              Antarctic Fisheries 1817           0
## 15256              Antigua and Barbuda 1817           0
## 15257                        Argentina 1817           0
## 15258                          Armenia 1817           0
## 15259                            Aruba 1817           0
## 15260         Asia and Pacific (other) 1817           0
## 15261                        Australia 1817           0
## 15262                          Austria 1817      168544
## 15263                       Azerbaijan 1817           0
## 15264                          Bahamas 1817           0
## 15265                          Bahrain 1817           0
## 15266                       Bangladesh 1817           0
## 15267                         Barbados 1817           0
## 15268                          Belarus 1817           0
## 15269                          Belgium 1817     6397344
## 15270                           Belize 1817           0
## 15271                            Benin 1817           0
## 15272                          Bermuda 1817           0
## 15273                           Bhutan 1817           0
## 15274                          Bolivia 1817           0
## 15275  Bonaire Sint Eustatius and Saba 1817           0
## 15276           Bosnia and Herzegovina 1817           0
## 15277                         Botswana 1817           0
## 15278                           Brazil 1817           0
## 15279           British Virgin Islands 1817           0
## 15280                           Brunei 1817           0
## 15281                         Bulgaria 1817           0
## 15282                     Burkina Faso 1817           0
## 15283                          Burundi 1817           0
## 15284                         Cambodia 1817           0
## 15285                         Cameroon 1817           0
## 15286                           Canada 1817      120912
## 15287                       Cape Verde 1817           0
## 15288                   Cayman Islands 1817           0
## 15289         Central African Republic 1817           0
## 15290                             Chad 1817           0
## 15291                            Chile 1817           0
## 15292                            China 1817           0
## 15293                 Christmas Island 1817           0
## 15294                         Colombia 1817           0
## 15295                          Comoros 1817           0
## 15296                            Congo 1817           0
## 15297                     Cook Islands 1817           0
## 15298                       Costa Rica 1817           0
## 15299                    Cote d'Ivoire 1817           0
## 15300                          Croatia 1817           0
## 15301                             Cuba 1817           0
## 15302                          Curacao 1817           0
## 15303                           Cyprus 1817           0
## 15304                   Czech Republic 1817           0
## 15305                   Czechoslovakia 1817           0
## 15306     Democratic Republic of Congo 1817           0
## 15307                          Denmark 1817           0
## 15308                         Djibouti 1817           0
## 15309                         Dominica 1817           0
## 15310               Dominican Republic 1817           0
## 15311                            EU-28 1817  1412281472
## 15312                          Ecuador 1817           0
## 15313                            Egypt 1817           0
## 15314                      El Salvador 1817           0
## 15315                Equatorial Guinea 1817           0
## 15316                          Eritrea 1817           0
## 15317                          Estonia 1817           0
## 15318                         Ethiopia 1817           0
## 15319                   Europe (other) 1817           0
## 15320                   Faeroe Islands 1817           0
## 15321                 Falkland Islands 1817           0
## 15322                             Fiji 1817           0
## 15323                          Finland 1817           0
## 15324                           France 1817    22445664
## 15325                    French Guiana 1817           0
## 15326                 French Polynesia 1817           0
## 15327                            Gabon 1817           0
## 15328                           Gambia 1817           0
## 15329                          Georgia 1817           0
## 15330                          Germany 1817    25435488
## 15331                            Ghana 1817           0
## 15332                        Gibraltar 1817           0
## 15333                           Greece 1817           0
## 15334                        Greenland 1817           0
## 15335                          Grenada 1817           0
## 15336                       Guadeloupe 1817           0
## 15337                        Guatemala 1817           0
## 15338                           Guinea 1817           0
## 15339                    Guinea-Bissau 1817           0
## 15340                           Guyana 1817           0
## 15341                            Haiti 1817           0
## 15342                         Honduras 1817           0
## 15343                        Hong Kong 1817           0
## 15344                          Hungary 1817           0
## 15345                          Iceland 1817           0
## 15346                            India 1817           0
## 15347                        Indonesia 1817           0
## 15348                             Iran 1817           0
## 15349                             Iraq 1817           0
## 15350                          Ireland 1817           0
## 15351                           Israel 1817           0
## 15352                            Italy 1817           0
## 15353                          Jamaica 1817           0
## 15354                            Japan 1817           0
## 15355                           Jordan 1817           0
## 15356                       Kazakhstan 1817           0
## 15357                            Kenya 1817           0
## 15358                         Kiribati 1817           0
## 15359                           Kuwait 1817           0
## 15360                       Kyrgysztan 1817           0
## 15361                       Kyrgyzstan 1817           0
## 15362                             Laos 1817           0
## 15363                           Latvia 1817           0
## 15364                          Lebanon 1817           0
## 15365                          Lesotho 1817           0
## 15366                          Liberia 1817           0
## 15367                            Libya 1817           0
## 15368                    Liechtenstein 1817           0
## 15369                        Lithuania 1817           0
## 15370                       Luxembourg 1817           0
## 15371                            Macao 1817           0
## 15372                        Macedonia 1817           0
## 15373                       Madagascar 1817           0
## 15374                           Malawi 1817           0
## 15375                         Malaysia 1817           0
## 15376                         Maldives 1817           0
## 15377                             Mali 1817           0
## 15378                            Malta 1817           0
## 15379                 Marshall Islands 1817           0
## 15380                       Martinique 1817           0
## 15381                       Mauritania 1817           0
## 15382                        Mauritius 1817           0
## 15383                           Mexico 1817           0
## 15384             Micronesia (country) 1817           0
## 15385                      Middle East 1817           0
## 15386                          Moldova 1817           0
## 15387                         Mongolia 1817           0
## 15388                       Montenegro 1817           0
## 15389                       Montserrat 1817           0
## 15390                          Morocco 1817           0
## 15391                       Mozambique 1817           0
## 15392                          Myanmar 1817           0
## 15393                          Namibia 1817           0
## 15394                            Nauru 1817           0
## 15395                            Nepal 1817           0
## 15396                      Netherlands 1817           0
## 15397                    New Caledonia 1817           0
## 15398                      New Zealand 1817           0
## 15399                        Nicaragua 1817           0
## 15400                            Niger 1817           0
## 15401                          Nigeria 1817           0
## 15402                             Niue 1817           0
## 15403                      North Korea 1817           0
## 15404                           Norway 1817           0
## 15405                             Oman 1817           0
## 15406                         Pakistan 1817           0
## 15407                            Palau 1817           0
## 15408                        Palestine 1817           0
## 15409                           Panama 1817           0
## 15410                 Papua New Guinea 1817           0
## 15411                         Paraguay 1817           0
## 15412                             Peru 1817           0
## 15413                      Philippines 1817           0
## 15414                           Poland 1817     9170992
## 15415                         Portugal 1817           0
## 15416                            Qatar 1817           0
## 15417                          Reunion 1817           0
## 15418                          Romania 1817           0
## 15419                           Russia 1817           0
## 15420                           Rwanda 1817           0
## 15421                     Saint Helena 1817           0
## 15422            Saint Kitts and Nevis 1817           0
## 15423                      Saint Lucia 1817           0
## 15424        Saint Pierre and Miquelon 1817           0
## 15425 Saint Vincent and the Grenadines 1817           0
## 15426                            Samoa 1817           0
## 15427            Sao Tome and Principe 1817           0
## 15428                     Saudi Arabia 1817           0
## 15429                          Senegal 1817           0
## 15430                           Serbia 1817           0
## 15431                       Seychelles 1817           0
## 15432                     Sierra Leone 1817           0
## 15433                        Singapore 1817           0
## 15434        Sint Maarten (Dutch part) 1817           0
## 15435                         Slovakia 1817           0
## 15436                         Slovenia 1817           0
## 15437                  Solomon Islands 1817           0
## 15438                          Somalia 1817           0
## 15439                     South Africa 1817           0
## 15440                      South Korea 1817           0
## 15441                      South Sudan 1817           0
## 15442                            Spain 1817           0
## 15443                        Sri Lanka 1817           0
## 15444                            Sudan 1817           0
## 15445                         Suriname 1817           0
## 15446                        Swaziland 1817           0
## 15447                           Sweden 1817           0
## 15448                      Switzerland 1817           0
## 15449                            Syria 1817           0
## 15450                           Taiwan 1817           0
## 15451                       Tajikistan 1817           0
## 15452                         Tanzania 1817           0
## 15453                         Thailand 1817           0
## 15454                            Timor 1817           0
## 15455                             Togo 1817           0
## 15456                            Tonga 1817           0
## 15457              Trinidad and Tobago 1817           0
## 15458                          Tunisia 1817           0
## 15459                           Turkey 1817           0
## 15460                     Turkmenistan 1817           0
## 15461         Turks and Caicos Islands 1817           0
## 15462                           Tuvalu 1817           0
## 15463                           Uganda 1817           0
## 15464                          Ukraine 1817           0
## 15465             United Arab Emirates 1817           0
## 15466                   United Kingdom 1817  1348663440
## 15467                    United States 1817     7698064
## 15468                          Uruguay 1817           0
## 15469                       Uzbekistan 1817           0
## 15470                          Vanuatu 1817           0
## 15471                        Venezuela 1817           0
## 15472                          Vietnam 1817           0
## 15473        Wallis and Futuna Islands 1817           0
## 15474                            World 1817  1420100448
## 15475                            Yemen 1817           0
## 15476                           Zambia 1817           0
## 15477                         Zimbabwe 1817           0
## 15478                      Afghanistan 1818           0
## 15479                           Africa 1818           0
## 15480                          Albania 1818           0
## 15481                          Algeria 1818           0
## 15482                 Americas (other) 1818      124576
## 15483                          Andorra 1818           0
## 15484                           Angola 1818           0
## 15485                         Anguilla 1818           0
## 15486              Antarctic Fisheries 1818           0
## 15487              Antigua and Barbuda 1818           0
## 15488                        Argentina 1818           0
## 15489                          Armenia 1818           0
## 15490                            Aruba 1818           0
## 15491         Asia and Pacific (other) 1818           0
## 15492                        Australia 1818           0
## 15493                          Austria 1818      168544
## 15494                       Azerbaijan 1818           0
## 15495                          Bahamas 1818           0
## 15496                          Bahrain 1818           0
## 15497                       Bangladesh 1818           0
## 15498                         Barbados 1818           0
## 15499                          Belarus 1818           0
## 15500                          Belgium 1818     6397344
## 15501                           Belize 1818           0
## 15502                            Benin 1818           0
## 15503                          Bermuda 1818           0
## 15504                           Bhutan 1818           0
## 15505                          Bolivia 1818           0
## 15506  Bonaire Sint Eustatius and Saba 1818           0
## 15507           Bosnia and Herzegovina 1818           0
## 15508                         Botswana 1818           0
## 15509                           Brazil 1818           0
## 15510           British Virgin Islands 1818           0
## 15511                           Brunei 1818           0
## 15512                         Bulgaria 1818           0
## 15513                     Burkina Faso 1818           0
## 15514                          Burundi 1818           0
## 15515                         Cambodia 1818           0
## 15516                         Cameroon 1818           0
## 15517                           Canada 1818      124576
## 15518                       Cape Verde 1818           0
## 15519                   Cayman Islands 1818           0
## 15520         Central African Republic 1818           0
## 15521                             Chad 1818           0
## 15522                            Chile 1818           0
## 15523                            China 1818           0
## 15524                 Christmas Island 1818           0
## 15525                         Colombia 1818           0
## 15526                          Comoros 1818           0
## 15527                            Congo 1818           0
## 15528                     Cook Islands 1818           0
## 15529                       Costa Rica 1818           0
## 15530                    Cote d'Ivoire 1818           0
## 15531                          Croatia 1818           0
## 15532                             Cuba 1818           0
## 15533                          Curacao 1818           0
## 15534                           Cyprus 1818           0
## 15535                   Czech Republic 1818           0
## 15536                   Czechoslovakia 1818           0
## 15537     Democratic Republic of Congo 1818           0
## 15538                          Denmark 1818           0
## 15539                         Djibouti 1818           0
## 15540                         Dominica 1818           0
## 15541               Dominican Republic 1818           0
## 15542                            EU-28 1818  1461140912
## 15543                          Ecuador 1818           0
## 15544                            Egypt 1818           0
## 15545                      El Salvador 1818           0
## 15546                Equatorial Guinea 1818           0
## 15547                          Eritrea 1818           0
## 15548                          Estonia 1818           0
## 15549                         Ethiopia 1818           0
## 15550                   Europe (other) 1818           0
## 15551                   Faeroe Islands 1818           0
## 15552                 Falkland Islands 1818           0
## 15553                             Fiji 1818           0
## 15554                          Finland 1818           0
## 15555                           France 1818    24827264
## 15556                    French Guiana 1818           0
## 15557                 French Polynesia 1818           0
## 15558                            Gabon 1818           0
## 15559                           Gambia 1818           0
## 15560                          Georgia 1818           0
## 15561                          Germany 1818    28967584
## 15562                            Ghana 1818           0
## 15563                        Gibraltar 1818           0
## 15564                           Greece 1818           0
## 15565                        Greenland 1818           0
## 15566                          Grenada 1818           0
## 15567                       Guadeloupe 1818           0
## 15568                        Guatemala 1818           0
## 15569                           Guinea 1818           0
## 15570                    Guinea-Bissau 1818           0
## 15571                           Guyana 1818           0
## 15572                            Haiti 1818           0
## 15573                         Honduras 1818           0
## 15574                        Hong Kong 1818           0
## 15575                          Hungary 1818           0
## 15576                          Iceland 1818           0
## 15577                            India 1818           0
## 15578                        Indonesia 1818           0
## 15579                             Iran 1818           0
## 15580                             Iraq 1818           0
## 15581                          Ireland 1818           0
## 15582                           Israel 1818           0
## 15583                            Italy 1818           0
## 15584                          Jamaica 1818           0
## 15585                            Japan 1818           0
## 15586                           Jordan 1818           0
## 15587                       Kazakhstan 1818           0
## 15588                            Kenya 1818           0
## 15589                         Kiribati 1818           0
## 15590                           Kuwait 1818           0
## 15591                       Kyrgysztan 1818           0
## 15592                       Kyrgyzstan 1818           0
## 15593                             Laos 1818           0
## 15594                           Latvia 1818           0
## 15595                          Lebanon 1818           0
## 15596                          Lesotho 1818           0
## 15597                          Liberia 1818           0
## 15598                            Libya 1818           0
## 15599                    Liechtenstein 1818           0
## 15600                        Lithuania 1818           0
## 15601                       Luxembourg 1818           0
## 15602                            Macao 1818           0
## 15603                        Macedonia 1818           0
## 15604                       Madagascar 1818           0
## 15605                           Malawi 1818           0
## 15606                         Malaysia 1818           0
## 15607                         Maldives 1818           0
## 15608                             Mali 1818           0
## 15609                            Malta 1818           0
## 15610                 Marshall Islands 1818           0
## 15611                       Martinique 1818           0
## 15612                       Mauritania 1818           0
## 15613                        Mauritius 1818           0
## 15614                           Mexico 1818           0
## 15615             Micronesia (country) 1818           0
## 15616                      Middle East 1818           0
## 15617                          Moldova 1818           0
## 15618                         Mongolia 1818           0
## 15619                       Montenegro 1818           0
## 15620                       Montserrat 1818           0
## 15621                          Morocco 1818           0
## 15622                       Mozambique 1818           0
## 15623                          Myanmar 1818           0
## 15624                          Namibia 1818           0
## 15625                            Nauru 1818           0
## 15626                            Nepal 1818           0
## 15627                      Netherlands 1818           0
## 15628                    New Caledonia 1818           0
## 15629                      New Zealand 1818           0
## 15630                        Nicaragua 1818           0
## 15631                            Niger 1818           0
## 15632                          Nigeria 1818           0
## 15633                             Niue 1818           0
## 15634                      North Korea 1818           0
## 15635                           Norway 1818           0
## 15636                             Oman 1818           0
## 15637                         Pakistan 1818           0
## 15638                            Palau 1818           0
## 15639                        Palestine 1818           0
## 15640                           Panama 1818           0
## 15641                 Papua New Guinea 1818           0
## 15642                         Paraguay 1818           0
## 15643                             Peru 1818           0
## 15644                      Philippines 1818           0
## 15645                           Poland 1818    10094320
## 15646                         Portugal 1818           0
## 15647                            Qatar 1818           0
## 15648                          Reunion 1818           0
## 15649                          Romania 1818           0
## 15650                           Russia 1818           0
## 15651                           Rwanda 1818           0
## 15652                     Saint Helena 1818           0
## 15653            Saint Kitts and Nevis 1818           0
## 15654                      Saint Lucia 1818           0
## 15655        Saint Pierre and Miquelon 1818           0
## 15656 Saint Vincent and the Grenadines 1818           0
## 15657                            Samoa 1818           0
## 15658            Sao Tome and Principe 1818           0
## 15659                     Saudi Arabia 1818           0
## 15660                          Senegal 1818           0
## 15661                           Serbia 1818           0
## 15662                       Seychelles 1818           0
## 15663                     Sierra Leone 1818           0
## 15664                        Singapore 1818           0
## 15665        Sint Maarten (Dutch part) 1818           0
## 15666                         Slovakia 1818           0
## 15667                         Slovenia 1818           0
## 15668                  Solomon Islands 1818           0
## 15669                          Somalia 1818           0
## 15670                     South Africa 1818           0
## 15671                      South Korea 1818           0
## 15672                      South Sudan 1818           0
## 15673                            Spain 1818           0
## 15674                        Sri Lanka 1818           0
## 15675                            Sudan 1818           0
## 15676                         Suriname 1818           0
## 15677                        Swaziland 1818           0
## 15678                           Sweden 1818           0
## 15679                      Switzerland 1818           0
## 15680                            Syria 1818           0
## 15681                           Taiwan 1818           0
## 15682                       Tajikistan 1818           0
## 15683                         Tanzania 1818           0
## 15684                         Thailand 1818           0
## 15685                            Timor 1818           0
## 15686                             Togo 1818           0
## 15687                            Tonga 1818           0
## 15688              Trinidad and Tobago 1818           0
## 15689                          Tunisia 1818           0
## 15690                           Turkey 1818           0
## 15691                     Turkmenistan 1818           0
## 15692         Turks and Caicos Islands 1818           0
## 15693                           Tuvalu 1818           0
## 15694                           Uganda 1818           0
## 15695                          Ukraine 1818           0
## 15696             United Arab Emirates 1818           0
## 15697                   United Kingdom 1818  1390685856
## 15698                    United States 1818     8478496
## 15699                          Uruguay 1818           0
## 15700                       Uzbekistan 1818           0
## 15701                          Vanuatu 1818           0
## 15702                        Venezuela 1818           0
## 15703                          Vietnam 1818           0
## 15704        Wallis and Futuna Islands 1818           0
## 15705                            World 1818  1469743984
## 15706                            Yemen 1818           0
## 15707                           Zambia 1818           0
## 15708                         Zimbabwe 1818           0
## 15709                      Afghanistan 1819           0
## 15710                           Africa 1819           0
## 15711                          Albania 1819           0
## 15712                          Algeria 1819           0
## 15713                 Americas (other) 1819      128240
## 15714                          Andorra 1819           0
## 15715                           Angola 1819           0
## 15716                         Anguilla 1819           0
## 15717              Antarctic Fisheries 1819           0
## 15718              Antigua and Barbuda 1819           0
## 15719                        Argentina 1819           0
## 15720                          Armenia 1819           0
## 15721                            Aruba 1819           0
## 15722         Asia and Pacific (other) 1819           0
## 15723                        Australia 1819           0
## 15724                          Austria 1819      421360
## 15725                       Azerbaijan 1819           0
## 15726                          Bahamas 1819           0
## 15727                          Bahrain 1819           0
## 15728                       Bangladesh 1819           0
## 15729                         Barbados 1819           0
## 15730                          Belarus 1819           0
## 15731                          Belgium 1819     6397344
## 15732                           Belize 1819           0
## 15733                            Benin 1819           0
## 15734                          Bermuda 1819           0
## 15735                           Bhutan 1819           0
## 15736                          Bolivia 1819           0
## 15737  Bonaire Sint Eustatius and Saba 1819           0
## 15738           Bosnia and Herzegovina 1819           0
## 15739                         Botswana 1819           0
## 15740                           Brazil 1819           0
## 15741           British Virgin Islands 1819           0
## 15742                           Brunei 1819           0
## 15743                         Bulgaria 1819           0
## 15744                     Burkina Faso 1819           0
## 15745                          Burundi 1819           0
## 15746                         Cambodia 1819           0
## 15747                         Cameroon 1819           0
## 15748                           Canada 1819      128240
## 15749                       Cape Verde 1819           0
## 15750                   Cayman Islands 1819           0
## 15751         Central African Republic 1819           0
## 15752                             Chad 1819           0
## 15753                            Chile 1819           0
## 15754                            China 1819           0
## 15755                 Christmas Island 1819           0
## 15756                         Colombia 1819           0
## 15757                          Comoros 1819           0
## 15758                            Congo 1819           0
## 15759                     Cook Islands 1819           0
## 15760                       Costa Rica 1819           0
## 15761                    Cote d'Ivoire 1819           0
## 15762                          Croatia 1819           0
## 15763                             Cuba 1819           0
## 15764                          Curacao 1819           0
## 15765                           Cyprus 1819           0
## 15766                   Czech Republic 1819           0
## 15767                   Czechoslovakia 1819           0
## 15768     Democratic Republic of Congo 1819           0
## 15769                          Denmark 1819           0
## 15770                         Djibouti 1819           0
## 15771                         Dominica 1819           0
## 15772               Dominican Republic 1819           0
## 15773                            EU-28 1819  1510322784
## 15774                          Ecuador 1819           0
## 15775                            Egypt 1819           0
## 15776                      El Salvador 1819           0
## 15777                Equatorial Guinea 1819           0
## 15778                          Eritrea 1819           0
## 15779                          Estonia 1819           0
## 15780                         Ethiopia 1819           0
## 15781                   Europe (other) 1819           0
## 15782                   Faeroe Islands 1819           0
## 15783                 Falkland Islands 1819           0
## 15784                             Fiji 1819           0
## 15785                          Finland 1819           0
## 15786                           France 1819    27384736
## 15787                    French Guiana 1819           0
## 15788                 French Polynesia 1819           0
## 15789                            Gabon 1819           0
## 15790                           Gambia 1819           0
## 15791                          Georgia 1819           0
## 15792                          Germany 1819    32243200
## 15793                            Ghana 1819           0
## 15794                        Gibraltar 1819           0
## 15795                           Greece 1819           0
## 15796                        Greenland 1819           0
## 15797                          Grenada 1819           0
## 15798                       Guadeloupe 1819           0
## 15799                        Guatemala 1819           0
## 15800                           Guinea 1819           0
## 15801                    Guinea-Bissau 1819           0
## 15802                           Guyana 1819           0
## 15803                            Haiti 1819           0
## 15804                         Honduras 1819           0
## 15805                        Hong Kong 1819           0
## 15806                          Hungary 1819           0
## 15807                          Iceland 1819           0
## 15808                            India 1819           0
## 15809                        Indonesia 1819           0
## 15810                             Iran 1819           0
## 15811                             Iraq 1819           0
## 15812                          Ireland 1819           0
## 15813                           Israel 1819           0
## 15814                            Italy 1819           0
## 15815                          Jamaica 1819           0
## 15816                            Japan 1819           0
## 15817                           Jordan 1819           0
## 15818                       Kazakhstan 1819           0
## 15819                            Kenya 1819           0
## 15820                         Kiribati 1819           0
## 15821                           Kuwait 1819           0
## 15822                       Kyrgysztan 1819           0
## 15823                       Kyrgyzstan 1819           0
## 15824                             Laos 1819           0
## 15825                           Latvia 1819           0
## 15826                          Lebanon 1819           0
## 15827                          Lesotho 1819           0
## 15828                          Liberia 1819           0
## 15829                            Libya 1819           0
## 15830                    Liechtenstein 1819           0
## 15831                        Lithuania 1819           0
## 15832                       Luxembourg 1819           0
## 15833                            Macao 1819           0
## 15834                        Macedonia 1819           0
## 15835                       Madagascar 1819           0
## 15836                           Malawi 1819           0
## 15837                         Malaysia 1819           0
## 15838                         Maldives 1819           0
## 15839                             Mali 1819           0
## 15840                            Malta 1819           0
## 15841                 Marshall Islands 1819           0
## 15842                       Martinique 1819           0
## 15843                       Mauritania 1819           0
## 15844                        Mauritius 1819           0
## 15845                           Mexico 1819           0
## 15846             Micronesia (country) 1819           0
## 15847                      Middle East 1819           0
## 15848                          Moldova 1819           0
## 15849                         Mongolia 1819           0
## 15850                       Montenegro 1819           0
## 15851                       Montserrat 1819           0
## 15852                          Morocco 1819           0
## 15853                       Mozambique 1819           0
## 15854                          Myanmar 1819           0
## 15855                          Namibia 1819           0
## 15856                            Nauru 1819           0
## 15857                            Nepal 1819           0
## 15858                      Netherlands 1819           0
## 15859                    New Caledonia 1819           0
## 15860                      New Zealand 1819           0
## 15861                        Nicaragua 1819           0
## 15862                            Niger 1819           0
## 15863                          Nigeria 1819           0
## 15864                             Niue 1819           0
## 15865                      North Korea 1819           0
## 15866                           Norway 1819           0
## 15867                             Oman 1819           0
## 15868                         Pakistan 1819           0
## 15869                            Palau 1819           0
## 15870                        Palestine 1819           0
## 15871                           Panama 1819           0
## 15872                 Papua New Guinea 1819           0
## 15873                         Paraguay 1819           0
## 15874                             Peru 1819           0
## 15875                      Philippines 1819           0
## 15876                           Poland 1819    10852768
## 15877                         Portugal 1819           0
## 15878                            Qatar 1819           0
## 15879                          Reunion 1819           0
## 15880                          Romania 1819           0
## 15881                           Russia 1819           0
## 15882                           Rwanda 1819           0
## 15883                     Saint Helena 1819           0
## 15884            Saint Kitts and Nevis 1819           0
## 15885                      Saint Lucia 1819           0
## 15886        Saint Pierre and Miquelon 1819           0
## 15887 Saint Vincent and the Grenadines 1819           0
## 15888                            Samoa 1819           0
## 15889            Sao Tome and Principe 1819           0
## 15890                     Saudi Arabia 1819           0
## 15891                          Senegal 1819           0
## 15892                           Serbia 1819           0
## 15893                       Seychelles 1819           0
## 15894                     Sierra Leone 1819           0
## 15895                        Singapore 1819           0
## 15896        Sint Maarten (Dutch part) 1819           0
## 15897                         Slovakia 1819           0
## 15898                         Slovenia 1819           0
## 15899                  Solomon Islands 1819           0
## 15900                          Somalia 1819           0
## 15901                     South Africa 1819           0
## 15902                      South Korea 1819           0
## 15903                      South Sudan 1819           0
## 15904                            Spain 1819           0
## 15905                        Sri Lanka 1819           0
## 15906                            Sudan 1819           0
## 15907                         Suriname 1819           0
## 15908                        Swaziland 1819           0
## 15909                           Sweden 1819           0
## 15910                      Switzerland 1819           0
## 15911                            Syria 1819           0
## 15912                           Taiwan 1819           0
## 15913                       Tajikistan 1819           0
## 15914                         Tanzania 1819           0
## 15915                         Thailand 1819           0
## 15916                            Timor 1819           0
## 15917                             Togo 1819           0
## 15918                            Tonga 1819           0
## 15919              Trinidad and Tobago 1819           0
## 15920                          Tunisia 1819           0
## 15921                           Turkey 1819           0
## 15922                     Turkmenistan 1819           0
## 15923         Turks and Caicos Islands 1819           0
## 15924                           Tuvalu 1819           0
## 15925                           Uganda 1819           0
## 15926                          Ukraine 1819           0
## 15927             United Arab Emirates 1819           0
## 15928                   United Kingdom 1819  1433023376
## 15929                    United States 1819     9240608
## 15930                          Uruguay 1819           0
## 15931                       Uzbekistan 1819           0
## 15932                          Vanuatu 1819           0
## 15933                        Venezuela 1819           0
## 15934                          Vietnam 1819           0
## 15935        Wallis and Futuna Islands 1819           0
## 15936                            World 1819  1519691632
## 15937                            Yemen 1819           0
## 15938                           Zambia 1819           0
## 15939                         Zimbabwe 1819           0
## 15940                      Afghanistan 1820           0
## 15941                           Africa 1820           0
## 15942                          Albania 1820           0
## 15943                          Algeria 1820           0
## 15944                 Americas (other) 1820      131904
## 15945                          Andorra 1820           0
## 15946                           Angola 1820           0
## 15947                         Anguilla 1820           0
## 15948              Antarctic Fisheries 1820           0
## 15949              Antigua and Barbuda 1820           0
## 15950                        Argentina 1820           0
## 15951                          Armenia 1820           0
## 15952                            Aruba 1820           0
## 15953         Asia and Pacific (other) 1820           0
## 15954                        Australia 1820           0
## 15955                          Austria 1820      754784
## 15956                       Azerbaijan 1820           0
## 15957                          Bahamas 1820           0
## 15958                          Bahrain 1820           0
## 15959                       Bangladesh 1820           0
## 15960                         Barbados 1820           0
## 15961                          Belarus 1820           0
## 15962                          Belgium 1820     6397344
## 15963                           Belize 1820           0
## 15964                            Benin 1820           0
## 15965                          Bermuda 1820           0
## 15966                           Bhutan 1820           0
## 15967                          Bolivia 1820           0
## 15968  Bonaire Sint Eustatius and Saba 1820           0
## 15969           Bosnia and Herzegovina 1820           0
## 15970                         Botswana 1820           0
## 15971                           Brazil 1820           0
## 15972           British Virgin Islands 1820           0
## 15973                           Brunei 1820           0
## 15974                         Bulgaria 1820           0
## 15975                     Burkina Faso 1820           0
## 15976                          Burundi 1820           0
## 15977                         Cambodia 1820           0
## 15978                         Cameroon 1820           0
## 15979                           Canada 1820      131904
## 15980                       Cape Verde 1820           0
## 15981                   Cayman Islands 1820           0
## 15982         Central African Republic 1820           0
## 15983                             Chad 1820           0
## 15984                            Chile 1820           0
## 15985                            China 1820           0
## 15986                 Christmas Island 1820           0
## 15987                         Colombia 1820           0
## 15988                          Comoros 1820           0
## 15989                            Congo 1820           0
## 15990                     Cook Islands 1820           0
## 15991                       Costa Rica 1820           0
## 15992                    Cote d'Ivoire 1820           0
## 15993                          Croatia 1820           0
## 15994                             Cuba 1820           0
## 15995                          Curacao 1820           0
## 15996                           Cyprus 1820           0
## 15997                   Czech Republic 1820           0
## 15998                   Czechoslovakia 1820           0
## 15999     Democratic Republic of Congo 1820           0
## 16000                          Denmark 1820           0
## 16001                         Djibouti 1820           0
## 16002                         Dominica 1820           0
## 16003               Dominican Republic 1820           0
## 16004                            EU-28 1820  1560215472
## 16005                          Ecuador 1820           0
## 16006                            Egypt 1820           0
## 16007                      El Salvador 1820           0
## 16008                Equatorial Guinea 1820           0
## 16009                          Eritrea 1820           0
## 16010                          Estonia 1820           0
## 16011                         Ethiopia 1820           0
## 16012                   Europe (other) 1820           0
## 16013                   Faeroe Islands 1820           0
## 16014                 Falkland Islands 1820           0
## 16015                             Fiji 1820           0
## 16016                          Finland 1820           0
## 16017                           France 1820    30286624
## 16018                    French Guiana 1820           0
## 16019                 French Polynesia 1820           0
## 16020                            Gabon 1820           0
## 16021                           Gambia 1820           0
## 16022                          Georgia 1820           0
## 16023                          Germany 1820    35625072
## 16024                            Ghana 1820           0
## 16025                        Gibraltar 1820           0
## 16026                           Greece 1820           0
## 16027                        Greenland 1820           0
## 16028                          Grenada 1820           0
## 16029                       Guadeloupe 1820           0
## 16030                        Guatemala 1820           0
## 16031                           Guinea 1820           0
## 16032                    Guinea-Bissau 1820           0
## 16033                           Guyana 1820           0
## 16034                            Haiti 1820           0
## 16035                         Honduras 1820           0
## 16036                        Hong Kong 1820           0
## 16037                          Hungary 1820           0
## 16038                          Iceland 1820           0
## 16039                            India 1820           0
## 16040                        Indonesia 1820           0
## 16041                             Iran 1820           0
## 16042                             Iraq 1820           0
## 16043                          Ireland 1820           0
## 16044                           Israel 1820           0
## 16045                            Italy 1820           0
## 16046                          Jamaica 1820           0
## 16047                            Japan 1820           0
## 16048                           Jordan 1820           0
## 16049                       Kazakhstan 1820           0
## 16050                            Kenya 1820           0
## 16051                         Kiribati 1820           0
## 16052                           Kuwait 1820           0
## 16053                       Kyrgysztan 1820           0
## 16054                       Kyrgyzstan 1820           0
## 16055                             Laos 1820           0
## 16056                           Latvia 1820           0
## 16057                          Lebanon 1820           0
## 16058                          Lesotho 1820           0
## 16059                          Liberia 1820           0
## 16060                            Libya 1820           0
## 16061                    Liechtenstein 1820           0
## 16062                        Lithuania 1820           0
## 16063                       Luxembourg 1820           0
## 16064                            Macao 1820           0
## 16065                        Macedonia 1820           0
## 16066                       Madagascar 1820           0
## 16067                           Malawi 1820           0
## 16068                         Malaysia 1820           0
## 16069                         Maldives 1820           0
## 16070                             Mali 1820           0
## 16071                            Malta 1820           0
## 16072                 Marshall Islands 1820           0
## 16073                       Martinique 1820           0
## 16074                       Mauritania 1820           0
## 16075                        Mauritius 1820           0
## 16076                           Mexico 1820           0
## 16077             Micronesia (country) 1820           0
## 16078                      Middle East 1820           0
## 16079                          Moldova 1820           0
## 16080                         Mongolia 1820           0
## 16081                       Montenegro 1820           0
## 16082                       Montserrat 1820           0
## 16083                          Morocco 1820           0
## 16084                       Mozambique 1820           0
## 16085                          Myanmar 1820           0
## 16086                          Namibia 1820           0
## 16087                            Nauru 1820           0
## 16088                            Nepal 1820           0
## 16089                      Netherlands 1820           0
## 16090                    New Caledonia 1820           0
## 16091                      New Zealand 1820           0
## 16092                        Nicaragua 1820           0
## 16093                            Niger 1820           0
## 16094                          Nigeria 1820           0
## 16095                             Niue 1820           0
## 16096                      North Korea 1820           0
## 16097                           Norway 1820           0
## 16098                             Oman 1820           0
## 16099                         Pakistan 1820           0
## 16100                            Palau 1820           0
## 16101                        Palestine 1820           0
## 16102                           Panama 1820           0
## 16103                 Papua New Guinea 1820           0
## 16104                         Paraguay 1820           0
## 16105                             Peru 1820           0
## 16106                      Philippines 1820           0
## 16107                           Poland 1820    11600224
## 16108                         Portugal 1820           0
## 16109                            Qatar 1820           0
## 16110                          Reunion 1820           0
## 16111                          Romania 1820           0
## 16112                           Russia 1820           0
## 16113                           Rwanda 1820           0
## 16114                     Saint Helena 1820           0
## 16115            Saint Kitts and Nevis 1820           0
## 16116                      Saint Lucia 1820           0
## 16117        Saint Pierre and Miquelon 1820           0
## 16118 Saint Vincent and the Grenadines 1820           0
## 16119                            Samoa 1820           0
## 16120            Sao Tome and Principe 1820           0
## 16121                     Saudi Arabia 1820           0
## 16122                          Senegal 1820           0
## 16123                           Serbia 1820           0
## 16124                       Seychelles 1820           0
## 16125                     Sierra Leone 1820           0
## 16126                        Singapore 1820           0
## 16127        Sint Maarten (Dutch part) 1820           0
## 16128                         Slovakia 1820           0
## 16129                         Slovenia 1820           0
## 16130                  Solomon Islands 1820           0
## 16131                          Somalia 1820           0
## 16132                     South Africa 1820           0
## 16133                      South Korea 1820           0
## 16134                      South Sudan 1820           0
## 16135                            Spain 1820           0
## 16136                        Sri Lanka 1820           0
## 16137                            Sudan 1820           0
## 16138                         Suriname 1820           0
## 16139                        Swaziland 1820           0
## 16140                           Sweden 1820           0
## 16141                      Switzerland 1820           0
## 16142                            Syria 1820           0
## 16143                           Taiwan 1820           0
## 16144                       Tajikistan 1820           0
## 16145                         Tanzania 1820           0
## 16146                         Thailand 1820           0
## 16147                            Timor 1820           0
## 16148                             Togo 1820           0
## 16149                            Tonga 1820           0
## 16150              Trinidad and Tobago 1820           0
## 16151                          Tunisia 1820           0
## 16152                           Turkey 1820           0
## 16153                     Turkmenistan 1820           0
## 16154         Turks and Caicos Islands 1820           0
## 16155                           Tuvalu 1820           0
## 16156                           Uganda 1820           0
## 16157                          Ukraine 1820           0
## 16158             United Arab Emirates 1820           0
## 16159                   United Kingdom 1820  1475551424
## 16160                    United States 1820    10032032
## 16161                          Uruguay 1820           0
## 16162                       Uzbekistan 1820           0
## 16163                          Vanuatu 1820           0
## 16164                        Venezuela 1820           0
## 16165                          Vietnam 1820           0
## 16166        Wallis and Futuna Islands 1820           0
## 16167                            World 1820  1570379408
## 16168                            Yemen 1820           0
## 16169                           Zambia 1820           0
## 16170                         Zimbabwe 1820           0
## 16171                      Afghanistan 1821           0
## 16172                           Africa 1821           0
## 16173                          Albania 1821           0
## 16174                          Algeria 1821           0
## 16175                 Americas (other) 1821      135568
## 16176                          Andorra 1821           0
## 16177                           Angola 1821           0
## 16178                         Anguilla 1821           0
## 16179              Antarctic Fisheries 1821           0
## 16180              Antigua and Barbuda 1821           0
## 16181                        Argentina 1821           0
## 16182                          Armenia 1821           0
## 16183                            Aruba 1821           0
## 16184         Asia and Pacific (other) 1821           0
## 16185                        Australia 1821           0
## 16186                          Austria 1821     1113856
## 16187                       Azerbaijan 1821           0
## 16188                          Bahamas 1821           0
## 16189                          Bahrain 1821           0
## 16190                       Bangladesh 1821           0
## 16191                         Barbados 1821           0
## 16192                          Belarus 1821           0
## 16193                          Belgium 1821     6397344
## 16194                           Belize 1821           0
## 16195                            Benin 1821           0
## 16196                          Bermuda 1821           0
## 16197                           Bhutan 1821           0
## 16198                          Bolivia 1821           0
## 16199  Bonaire Sint Eustatius and Saba 1821           0
## 16200           Bosnia and Herzegovina 1821           0
## 16201                         Botswana 1821           0
## 16202                           Brazil 1821           0
## 16203           British Virgin Islands 1821           0
## 16204                           Brunei 1821           0
## 16205                         Bulgaria 1821           0
## 16206                     Burkina Faso 1821           0
## 16207                          Burundi 1821           0
## 16208                         Cambodia 1821           0
## 16209                         Cameroon 1821           0
## 16210                           Canada 1821      135568
## 16211                       Cape Verde 1821           0
## 16212                   Cayman Islands 1821           0
## 16213         Central African Republic 1821           0
## 16214                             Chad 1821           0
## 16215                            Chile 1821           0
## 16216                            China 1821           0
## 16217                 Christmas Island 1821           0
## 16218                         Colombia 1821           0
## 16219                          Comoros 1821           0
## 16220                            Congo 1821           0
## 16221                     Cook Islands 1821           0
## 16222                       Costa Rica 1821           0
## 16223                    Cote d'Ivoire 1821           0
## 16224                          Croatia 1821           0
## 16225                             Cuba 1821           0
## 16226                          Curacao 1821           0
## 16227                           Cyprus 1821           0
## 16228                   Czech Republic 1821           0
## 16229                   Czechoslovakia 1821           0
## 16230     Democratic Republic of Congo 1821           0
## 16231                          Denmark 1821           0
## 16232                         Djibouti 1821           0
## 16233                         Dominica 1821           0
## 16234               Dominican Republic 1821           0
## 16235                            EU-28 1821  1610818976
## 16236                          Ecuador 1821           0
## 16237                            Egypt 1821           0
## 16238                      El Salvador 1821           0
## 16239                Equatorial Guinea 1821           0
## 16240                          Eritrea 1821           0
## 16241                          Estonia 1821           0
## 16242                         Ethiopia 1821           0
## 16243                   Europe (other) 1821           0
## 16244                   Faeroe Islands 1821           0
## 16245                 Falkland Islands 1821           0
## 16246                             Fiji 1821           0
## 16247                          Finland 1821           0
## 16248                           France 1821    33298432
## 16249                    French Guiana 1821           0
## 16250                 French Polynesia 1821           0
## 16251                            Gabon 1821           0
## 16252                           Gambia 1821           0
## 16253                          Georgia 1821           0
## 16254                          Germany 1821    39157168
## 16255                            Ghana 1821           0
## 16256                        Gibraltar 1821           0
## 16257                           Greece 1821           0
## 16258                        Greenland 1821           0
## 16259                          Grenada 1821           0
## 16260                       Guadeloupe 1821           0
## 16261                        Guatemala 1821           0
## 16262                           Guinea 1821           0
## 16263                    Guinea-Bissau 1821           0
## 16264                           Guyana 1821           0
## 16265                            Haiti 1821           0
## 16266                         Honduras 1821           0
## 16267                        Hong Kong 1821           0
## 16268                          Hungary 1821           0
## 16269                          Iceland 1821           0
## 16270                            India 1821           0
## 16271                        Indonesia 1821           0
## 16272                             Iran 1821           0
## 16273                             Iraq 1821           0
## 16274                          Ireland 1821           0
## 16275                           Israel 1821           0
## 16276                            Italy 1821           0
## 16277                          Jamaica 1821           0
## 16278                            Japan 1821           0
## 16279                           Jordan 1821           0
## 16280                       Kazakhstan 1821           0
## 16281                            Kenya 1821           0
## 16282                         Kiribati 1821           0
## 16283                           Kuwait 1821           0
## 16284                       Kyrgysztan 1821           0
## 16285                       Kyrgyzstan 1821           0
## 16286                             Laos 1821           0
## 16287                           Latvia 1821           0
## 16288                          Lebanon 1821           0
## 16289                          Lesotho 1821           0
## 16290                          Liberia 1821           0
## 16291                            Libya 1821           0
## 16292                    Liechtenstein 1821           0
## 16293                        Lithuania 1821           0
## 16294                       Luxembourg 1821           0
## 16295                            Macao 1821           0
## 16296                        Macedonia 1821           0
## 16297                       Madagascar 1821           0
## 16298                           Malawi 1821           0
## 16299                         Malaysia 1821           0
## 16300                         Maldives 1821           0
## 16301                             Mali 1821           0
## 16302                            Malta 1821           0
## 16303                 Marshall Islands 1821           0
## 16304                       Martinique 1821           0
## 16305                       Mauritania 1821           0
## 16306                        Mauritius 1821           0
## 16307                           Mexico 1821           0
## 16308             Micronesia (country) 1821           0
## 16309                      Middle East 1821           0
## 16310                          Moldova 1821           0
## 16311                         Mongolia 1821           0
## 16312                       Montenegro 1821           0
## 16313                       Montserrat 1821           0
## 16314                          Morocco 1821           0
## 16315                       Mozambique 1821           0
## 16316                          Myanmar 1821           0
## 16317                          Namibia 1821           0
## 16318                            Nauru 1821           0
## 16319                            Nepal 1821           0
## 16320                      Netherlands 1821           0
## 16321                    New Caledonia 1821           0
## 16322                      New Zealand 1821           0
## 16323                        Nicaragua 1821           0
## 16324                            Niger 1821           0
## 16325                          Nigeria 1821           0
## 16326                             Niue 1821           0
## 16327                      North Korea 1821           0
## 16328                           Norway 1821           0
## 16329                             Oman 1821           0
## 16330                         Pakistan 1821           0
## 16331                            Palau 1821           0
## 16332                        Palestine 1821           0
## 16333                           Panama 1821           0
## 16334                 Papua New Guinea 1821           0
## 16335                         Paraguay 1821           0
## 16336                             Peru 1821           0
## 16337                      Philippines 1821           0
## 16338                           Poland 1821    12428288
## 16339                         Portugal 1821           0
## 16340                            Qatar 1821           0
## 16341                          Reunion 1821           0
## 16342                          Romania 1821           0
## 16343                           Russia 1821           0
## 16344                           Rwanda 1821           0
## 16345                     Saint Helena 1821           0
## 16346            Saint Kitts and Nevis 1821           0
## 16347                      Saint Lucia 1821           0
## 16348        Saint Pierre and Miquelon 1821           0
## 16349 Saint Vincent and the Grenadines 1821           0
## 16350                            Samoa 1821           0
## 16351            Sao Tome and Principe 1821           0
## 16352                     Saudi Arabia 1821           0
## 16353                          Senegal 1821           0
## 16354                           Serbia 1821           0
## 16355                       Seychelles 1821           0
## 16356                     Sierra Leone 1821           0
## 16357                        Singapore 1821           0
## 16358        Sint Maarten (Dutch part) 1821           0
## 16359                         Slovakia 1821           0
## 16360                         Slovenia 1821           0
## 16361                  Solomon Islands 1821           0
## 16362                          Somalia 1821           0
## 16363                     South Africa 1821           0
## 16364                      South Korea 1821           0
## 16365                      South Sudan 1821           0
## 16366                            Spain 1821           0
## 16367                        Sri Lanka 1821           0
## 16368                            Sudan 1821           0
## 16369                         Suriname 1821           0
## 16370                        Swaziland 1821           0
## 16371                           Sweden 1821           0
## 16372                      Switzerland 1821           0
## 16373                            Syria 1821           0
## 16374                           Taiwan 1821           0
## 16375                       Tajikistan 1821           0
## 16376                         Tanzania 1821           0
## 16377                         Thailand 1821           0
## 16378                            Timor 1821           0
## 16379                             Togo 1821           0
## 16380                            Tonga 1821           0
## 16381              Trinidad and Tobago 1821           0
## 16382                          Tunisia 1821           0
## 16383                           Turkey 1821           0
## 16384                     Turkmenistan 1821           0
## 16385         Turks and Caicos Islands 1821           0
## 16386                           Tuvalu 1821           0
## 16387                           Uganda 1821           0
## 16388                          Ukraine 1821           0
## 16389             United Arab Emirates 1821           0
## 16390                   United Kingdom 1821  1518423888
## 16391                    United States 1821    10860096
## 16392                          Uruguay 1821           0
## 16393                       Uzbekistan 1821           0
## 16394                          Vanuatu 1821           0
## 16395                        Venezuela 1821           0
## 16396                          Vietnam 1821           0
## 16397        Wallis and Futuna Islands 1821           0
## 16398                            World 1821  1621814640
## 16399                            Yemen 1821           0
## 16400                           Zambia 1821           0
## 16401                         Zimbabwe 1821           0
## 16402                      Afghanistan 1822           0
## 16403                           Africa 1822           0
## 16404                          Albania 1822           0
## 16405                          Algeria 1822           0
## 16406                 Americas (other) 1822      139232
## 16407                          Andorra 1822           0
## 16408                           Angola 1822           0
## 16409                         Anguilla 1822           0
## 16410              Antarctic Fisheries 1822           0
## 16411              Antigua and Barbuda 1822           0
## 16412                        Argentina 1822           0
## 16413                          Armenia 1822           0
## 16414                            Aruba 1822           0
## 16415         Asia and Pacific (other) 1822           0
## 16416                        Australia 1822           0
## 16417                          Austria 1822     1480256
## 16418                       Azerbaijan 1822           0
## 16419                          Bahamas 1822           0
## 16420                          Bahrain 1822           0
## 16421                       Bangladesh 1822           0
## 16422                         Barbados 1822           0
## 16423                          Belarus 1822           0
## 16424                          Belgium 1822     6397344
## 16425                           Belize 1822           0
## 16426                            Benin 1822           0
## 16427                          Bermuda 1822           0
## 16428                           Bhutan 1822           0
## 16429                          Bolivia 1822           0
## 16430  Bonaire Sint Eustatius and Saba 1822           0
## 16431           Bosnia and Herzegovina 1822           0
## 16432                         Botswana 1822           0
## 16433                           Brazil 1822           0
## 16434           British Virgin Islands 1822           0
## 16435                           Brunei 1822           0
## 16436                         Bulgaria 1822           0
## 16437                     Burkina Faso 1822           0
## 16438                          Burundi 1822           0
## 16439                         Cambodia 1822           0
## 16440                         Cameroon 1822           0
## 16441                           Canada 1822      139232
## 16442                       Cape Verde 1822           0
## 16443                   Cayman Islands 1822           0
## 16444         Central African Republic 1822           0
## 16445                             Chad 1822           0
## 16446                            Chile 1822           0
## 16447                            China 1822           0
## 16448                 Christmas Island 1822           0
## 16449                         Colombia 1822           0
## 16450                          Comoros 1822           0
## 16451                            Congo 1822           0
## 16452                     Cook Islands 1822           0
## 16453                       Costa Rica 1822           0
## 16454                    Cote d'Ivoire 1822           0
## 16455                          Croatia 1822           0
## 16456                             Cuba 1822           0
## 16457                          Curacao 1822           0
## 16458                           Cyprus 1822           0
## 16459                   Czech Republic 1822           0
## 16460                   Czechoslovakia 1822           0
## 16461     Democratic Republic of Congo 1822           0
## 16462                          Denmark 1822           0
## 16463                         Djibouti 1822           0
## 16464                         Dominica 1822           0
## 16465               Dominican Republic 1822           0
## 16466                            EU-28 1822  1663415696
## 16467                          Ecuador 1822           0
## 16468                            Egypt 1822           0
## 16469                      El Salvador 1822           0
## 16470                Equatorial Guinea 1822           0
## 16471                          Eritrea 1822           0
## 16472                          Estonia 1822           0
## 16473                         Ethiopia 1822           0
## 16474                   Europe (other) 1822           0
## 16475                   Faeroe Islands 1822           0
## 16476                 Falkland Islands 1822           0
## 16477                             Fiji 1822           0
## 16478                          Finland 1822           0
## 16479                           France 1822    36467792
## 16480                    French Guiana 1822           0
## 16481                 French Polynesia 1822           0
## 16482                            Gabon 1822           0
## 16483                           Gambia 1822           0
## 16484                          Georgia 1822           0
## 16485                          Germany 1822    42788192
## 16486                            Ghana 1822           0
## 16487                        Gibraltar 1822           0
## 16488                           Greece 1822           0
## 16489                        Greenland 1822           0
## 16490                          Grenada 1822           0
## 16491                       Guadeloupe 1822           0
## 16492                        Guatemala 1822           0
## 16493                           Guinea 1822           0
## 16494                    Guinea-Bissau 1822           0
## 16495                           Guyana 1822           0
## 16496                            Haiti 1822           0
## 16497                         Honduras 1822           0
## 16498                        Hong Kong 1822           0
## 16499                          Hungary 1822           0
## 16500                          Iceland 1822           0
## 16501                            India 1822           0
## 16502                        Indonesia 1822           0
## 16503                             Iran 1822           0
## 16504                             Iraq 1822           0
## 16505                          Ireland 1822           0
## 16506                           Israel 1822           0
## 16507                            Italy 1822           0
## 16508                          Jamaica 1822           0
## 16509                            Japan 1822           0
## 16510                           Jordan 1822           0
## 16511                       Kazakhstan 1822           0
## 16512                            Kenya 1822           0
## 16513                         Kiribati 1822           0
## 16514                           Kuwait 1822           0
## 16515                       Kyrgysztan 1822           0
## 16516                       Kyrgyzstan 1822           0
## 16517                             Laos 1822           0
## 16518                           Latvia 1822           0
## 16519                          Lebanon 1822           0
## 16520                          Lesotho 1822           0
## 16521                          Liberia 1822           0
## 16522                            Libya 1822           0
## 16523                    Liechtenstein 1822           0
## 16524                        Lithuania 1822           0
## 16525                       Luxembourg 1822           0
## 16526                            Macao 1822           0
## 16527                        Macedonia 1822           0
## 16528                       Madagascar 1822           0
## 16529                           Malawi 1822           0
## 16530                         Malaysia 1822           0
## 16531                         Maldives 1822           0
## 16532                             Mali 1822           0
## 16533                            Malta 1822           0
## 16534                 Marshall Islands 1822           0
## 16535                       Martinique 1822           0
## 16536                       Mauritania 1822           0
## 16537                        Mauritius 1822           0
## 16538                           Mexico 1822           0
## 16539             Micronesia (country) 1822           0
## 16540                      Middle East 1822           0
## 16541                          Moldova 1822           0
## 16542                         Mongolia 1822           0
## 16543                       Montenegro 1822           0
## 16544                       Montserrat 1822           0
## 16545                          Morocco 1822           0
## 16546                       Mozambique 1822           0
## 16547                          Myanmar 1822           0
## 16548                          Namibia 1822           0
## 16549                            Nauru 1822           0
## 16550                            Nepal 1822           0
## 16551                      Netherlands 1822           0
## 16552                    New Caledonia 1822           0
## 16553                      New Zealand 1822           0
## 16554                        Nicaragua 1822           0
## 16555                            Niger 1822           0
## 16556                          Nigeria 1822           0
## 16557                             Niue 1822           0
## 16558                      North Korea 1822           0
## 16559                           Norway 1822           0
## 16560                             Oman 1822           0
## 16561                         Pakistan 1822           0
## 16562                            Palau 1822           0
## 16563                        Palestine 1822           0
## 16564                           Panama 1822           0
## 16565                 Papua New Guinea 1822           0
## 16566                         Paraguay 1822           0
## 16567                             Peru 1822           0
## 16568                      Philippines 1822           0
## 16569                           Poland 1822    13336960
## 16570                         Portugal 1822           0
## 16571                            Qatar 1822           0
## 16572                          Reunion 1822           0
## 16573                          Romania 1822           0
## 16574                           Russia 1822           0
## 16575                           Rwanda 1822           0
## 16576                     Saint Helena 1822           0
## 16577            Saint Kitts and Nevis 1822           0
## 16578                      Saint Lucia 1822           0
## 16579        Saint Pierre and Miquelon 1822           0
## 16580 Saint Vincent and the Grenadines 1822           0
## 16581                            Samoa 1822           0
## 16582            Sao Tome and Principe 1822           0
## 16583                     Saudi Arabia 1822           0
## 16584                          Senegal 1822           0
## 16585                           Serbia 1822           0
## 16586                       Seychelles 1822           0
## 16587                     Sierra Leone 1822           0
## 16588                        Singapore 1822           0
## 16589        Sint Maarten (Dutch part) 1822           0
## 16590                         Slovakia 1822           0
## 16591                         Slovenia 1822           0
## 16592                  Solomon Islands 1822           0
## 16593                          Somalia 1822           0
## 16594                     South Africa 1822           0
## 16595                      South Korea 1822           0
## 16596                      South Sudan 1822           0
## 16597                            Spain 1822           0
## 16598                        Sri Lanka 1822           0
## 16599                            Sudan 1822           0
## 16600                         Suriname 1822           0
## 16601                        Swaziland 1822           0
## 16602                           Sweden 1822           0
## 16603                      Switzerland 1822           0
## 16604                            Syria 1822           0
## 16605                           Taiwan 1822           0
## 16606                       Tajikistan 1822           0
## 16607                         Tanzania 1822           0
## 16608                         Thailand 1822           0
## 16609                            Timor 1822           0
## 16610                             Togo 1822           0
## 16611                            Tonga 1822           0
## 16612              Trinidad and Tobago 1822           0
## 16613                          Tunisia 1822           0
## 16614                           Turkey 1822           0
## 16615                     Turkmenistan 1822           0
## 16616         Turks and Caicos Islands 1822           0
## 16617                           Tuvalu 1822           0
## 16618                           Uganda 1822           0
## 16619                          Ukraine 1822           0
## 16620             United Arab Emirates 1822           0
## 16621                   United Kingdom 1822  1562945152
## 16622                    United States 1822    11724800
## 16623                          Uruguay 1822           0
## 16624                       Uzbekistan 1822           0
## 16625                          Vanuatu 1822           0
## 16626                        Venezuela 1822           0
## 16627                          Vietnam 1822           0
## 16628        Wallis and Futuna Islands 1822           0
## 16629                            World 1822  1675279728
## 16630                            Yemen 1822           0
## 16631                           Zambia 1822           0
## 16632                         Zimbabwe 1822           0
## 16633                      Afghanistan 1823           0
## 16634                           Africa 1823           0
## 16635                          Albania 1823           0
## 16636                          Algeria 1823           0
## 16637                 Americas (other) 1823      142896
## 16638                          Andorra 1823           0
## 16639                           Angola 1823           0
## 16640                         Anguilla 1823           0
## 16641              Antarctic Fisheries 1823           0
## 16642              Antigua and Barbuda 1823           0
## 16643                        Argentina 1823           0
## 16644                          Armenia 1823           0
## 16645                            Aruba 1823           0
## 16646         Asia and Pacific (other) 1823           0
## 16647                        Australia 1823           0
## 16648                          Austria 1823     1828336
## 16649                       Azerbaijan 1823           0
## 16650                          Bahamas 1823           0
## 16651                          Bahrain 1823           0
## 16652                       Bangladesh 1823           0
## 16653                         Barbados 1823           0
## 16654                          Belarus 1823           0
## 16655                          Belgium 1823     6397344
## 16656                           Belize 1823           0
## 16657                            Benin 1823           0
## 16658                          Bermuda 1823           0
## 16659                           Bhutan 1823           0
## 16660                          Bolivia 1823           0
## 16661  Bonaire Sint Eustatius and Saba 1823           0
## 16662           Bosnia and Herzegovina 1823           0
## 16663                         Botswana 1823           0
## 16664                           Brazil 1823           0
## 16665           British Virgin Islands 1823           0
## 16666                           Brunei 1823           0
## 16667                         Bulgaria 1823           0
## 16668                     Burkina Faso 1823           0
## 16669                          Burundi 1823           0
## 16670                         Cambodia 1823           0
## 16671                         Cameroon 1823           0
## 16672                           Canada 1823      142896
## 16673                       Cape Verde 1823           0
## 16674                   Cayman Islands 1823           0
## 16675         Central African Republic 1823           0
## 16676                             Chad 1823           0
## 16677                            Chile 1823           0
## 16678                            China 1823           0
## 16679                 Christmas Island 1823           0
## 16680                         Colombia 1823           0
## 16681                          Comoros 1823           0
## 16682                            Congo 1823           0
## 16683                     Cook Islands 1823           0
## 16684                       Costa Rica 1823           0
## 16685                    Cote d'Ivoire 1823           0
## 16686                          Croatia 1823           0
## 16687                             Cuba 1823           0
## 16688                          Curacao 1823           0
## 16689                           Cyprus 1823           0
## 16690                   Czech Republic 1823           0
## 16691                   Czechoslovakia 1823           0
## 16692     Democratic Republic of Congo 1823           0
## 16693                          Denmark 1823           0
## 16694                         Djibouti 1823           0
## 16695                         Dominica 1823           0
## 16696               Dominican Republic 1823           0
## 16697                            EU-28 1823  1719060864
## 16698                          Ecuador 1823           0
## 16699                            Egypt 1823           0
## 16700                      El Salvador 1823           0
## 16701                Equatorial Guinea 1823           0
## 16702                          Eritrea 1823           0
## 16703                          Estonia 1823           0
## 16704                         Ethiopia 1823           0
## 16705                   Europe (other) 1823           0
## 16706                   Faeroe Islands 1823           0
## 16707                 Falkland Islands 1823           0
## 16708                             Fiji 1823           0
## 16709                          Finland 1823           0
## 16710                           France 1823    39637152
## 16711                    French Guiana 1823           0
## 16712                 French Polynesia 1823           0
## 16713                            Gabon 1823           0
## 16714                           Gambia 1823           0
## 16715                          Georgia 1823           0
## 16716                          Germany 1823    46822256
## 16717                            Ghana 1823           0
## 16718                        Gibraltar 1823           0
## 16719                           Greece 1823           0
## 16720                        Greenland 1823           0
## 16721                          Grenada 1823           0
## 16722                       Guadeloupe 1823           0
## 16723                        Guatemala 1823           0
## 16724                           Guinea 1823           0
## 16725                    Guinea-Bissau 1823           0
## 16726                           Guyana 1823           0
## 16727                            Haiti 1823           0
## 16728                         Honduras 1823           0
## 16729                        Hong Kong 1823           0
## 16730                          Hungary 1823           0
## 16731                          Iceland 1823           0
## 16732                            India 1823           0
## 16733                        Indonesia 1823           0
## 16734                             Iran 1823           0
## 16735                             Iraq 1823           0
## 16736                          Ireland 1823           0
## 16737                           Israel 1823           0
## 16738                            Italy 1823           0
## 16739                          Jamaica 1823           0
## 16740                            Japan 1823           0
## 16741                           Jordan 1823           0
## 16742                       Kazakhstan 1823           0
## 16743                            Kenya 1823           0
## 16744                         Kiribati 1823           0
## 16745                           Kuwait 1823           0
## 16746                       Kyrgysztan 1823           0
## 16747                       Kyrgyzstan 1823           0
## 16748                             Laos 1823           0
## 16749                           Latvia 1823           0
## 16750                          Lebanon 1823           0
## 16751                          Lesotho 1823           0
## 16752                          Liberia 1823           0
## 16753                            Libya 1823           0
## 16754                    Liechtenstein 1823           0
## 16755                        Lithuania 1823           0
## 16756                       Luxembourg 1823           0
## 16757                            Macao 1823           0
## 16758                        Macedonia 1823           0
## 16759                       Madagascar 1823           0
## 16760                           Malawi 1823           0
## 16761                         Malaysia 1823           0
## 16762                         Maldives 1823           0
## 16763                             Mali 1823           0
## 16764                            Malta 1823           0
## 16765                 Marshall Islands 1823           0
## 16766                       Martinique 1823           0
## 16767                       Mauritania 1823           0
## 16768                        Mauritius 1823           0
## 16769                           Mexico 1823           0
## 16770             Micronesia (country) 1823           0
## 16771                      Middle East 1823           0
## 16772                          Moldova 1823           0
## 16773                         Mongolia 1823           0
## 16774                       Montenegro 1823           0
## 16775                       Montserrat 1823           0
## 16776                          Morocco 1823           0
## 16777                       Mozambique 1823           0
## 16778                          Myanmar 1823           0
## 16779                          Namibia 1823           0
## 16780                            Nauru 1823           0
## 16781                            Nepal 1823           0
## 16782                      Netherlands 1823           0
## 16783                    New Caledonia 1823           0
## 16784                      New Zealand 1823           0
## 16785                        Nicaragua 1823           0
## 16786                            Niger 1823           0
## 16787                          Nigeria 1823           0
## 16788                             Niue 1823           0
## 16789                      North Korea 1823           0
## 16790                           Norway 1823           0
## 16791                             Oman 1823           0
## 16792                         Pakistan 1823           0
## 16793                            Palau 1823           0
## 16794                        Palestine 1823           0
## 16795                           Panama 1823           0
## 16796                 Papua New Guinea 1823           0
## 16797                         Paraguay 1823           0
## 16798                             Peru 1823           0
## 16799                      Philippines 1823           0
## 16800                           Poland 1823    14557072
## 16801                         Portugal 1823           0
## 16802                            Qatar 1823           0
## 16803                          Reunion 1823           0
## 16804                          Romania 1823           0
## 16805                           Russia 1823           0
## 16806                           Rwanda 1823           0
## 16807                     Saint Helena 1823           0
## 16808            Saint Kitts and Nevis 1823           0
## 16809                      Saint Lucia 1823           0
## 16810        Saint Pierre and Miquelon 1823           0
## 16811 Saint Vincent and the Grenadines 1823           0
## 16812                            Samoa 1823           0
## 16813            Sao Tome and Principe 1823           0
## 16814                     Saudi Arabia 1823           0
## 16815                          Senegal 1823           0
## 16816                           Serbia 1823           0
## 16817                       Seychelles 1823           0
## 16818                     Sierra Leone 1823           0
## 16819                        Singapore 1823           0
## 16820        Sint Maarten (Dutch part) 1823           0
## 16821                         Slovakia 1823           0
## 16822                         Slovenia 1823           0
## 16823                  Solomon Islands 1823           0
## 16824                          Somalia 1823           0
## 16825                     South Africa 1823           0
## 16826                      South Korea 1823           0
## 16827                      South Sudan 1823           0
## 16828                            Spain 1823           0
## 16829                        Sri Lanka 1823           0
## 16830                            Sudan 1823           0
## 16831                         Suriname 1823           0
## 16832                        Swaziland 1823           0
## 16833                           Sweden 1823           0
## 16834                      Switzerland 1823           0
## 16835                            Syria 1823           0
## 16836                           Taiwan 1823           0
## 16837                       Tajikistan 1823           0
## 16838                         Tanzania 1823           0
## 16839                         Thailand 1823           0
## 16840                            Timor 1823           0
## 16841                             Togo 1823           0
## 16842                            Tonga 1823           0
## 16843              Trinidad and Tobago 1823           0
## 16844                          Tunisia 1823           0
## 16845                           Turkey 1823           0
## 16846                     Turkmenistan 1823           0
## 16847         Turks and Caicos Islands 1823           0
## 16848                           Tuvalu 1823           0
## 16849                           Uganda 1823           0
## 16850                          Ukraine 1823           0
## 16851             United Arab Emirates 1823           0
## 16852                   United Kingdom 1823  1609818704
## 16853                    United States 1823    12626144
## 16854                          Uruguay 1823           0
## 16855                       Uzbekistan 1823           0
## 16856                          Vanuatu 1823           0
## 16857                        Venezuela 1823           0
## 16858                          Vietnam 1823           0
## 16859        Wallis and Futuna Islands 1823           0
## 16860                            World 1823  1731829904
## 16861                            Yemen 1823           0
## 16862                           Zambia 1823           0
## 16863                         Zimbabwe 1823           0
## 16864                      Afghanistan 1824           0
## 16865                           Africa 1824           0
## 16866                          Albania 1824           0
## 16867                          Algeria 1824           0
## 16868                 Americas (other) 1824      146560
## 16869                          Andorra 1824           0
## 16870                           Angola 1824           0
## 16871                         Anguilla 1824           0
## 16872              Antarctic Fisheries 1824           0
## 16873              Antigua and Barbuda 1824           0
## 16874                        Argentina 1824           0
## 16875                          Armenia 1824           0
## 16876                            Aruba 1824           0
## 16877         Asia and Pacific (other) 1824           0
## 16878                        Australia 1824           0
## 16879                          Austria 1824     2227712
## 16880                       Azerbaijan 1824           0
## 16881                          Bahamas 1824           0
## 16882                          Bahrain 1824           0
## 16883                       Bangladesh 1824           0
## 16884                         Barbados 1824           0
## 16885                          Belarus 1824           0
## 16886                          Belgium 1824     6397344
## 16887                           Belize 1824           0
## 16888                            Benin 1824           0
## 16889                          Bermuda 1824           0
## 16890                           Bhutan 1824           0
## 16891                          Bolivia 1824           0
## 16892  Bonaire Sint Eustatius and Saba 1824           0
## 16893           Bosnia and Herzegovina 1824           0
## 16894                         Botswana 1824           0
## 16895                           Brazil 1824           0
## 16896           British Virgin Islands 1824           0
## 16897                           Brunei 1824           0
## 16898                         Bulgaria 1824           0
## 16899                     Burkina Faso 1824           0
## 16900                          Burundi 1824           0
## 16901                         Cambodia 1824           0
## 16902                         Cameroon 1824           0
## 16903                           Canada 1824      146560
## 16904                       Cape Verde 1824           0
## 16905                   Cayman Islands 1824           0
## 16906         Central African Republic 1824           0
## 16907                             Chad 1824           0
## 16908                            Chile 1824           0
## 16909                            China 1824           0
## 16910                 Christmas Island 1824           0
## 16911                         Colombia 1824           0
## 16912                          Comoros 1824           0
## 16913                            Congo 1824           0
## 16914                     Cook Islands 1824           0
## 16915                       Costa Rica 1824           0
## 16916                    Cote d'Ivoire 1824           0
## 16917                          Croatia 1824           0
## 16918                             Cuba 1824           0
## 16919                          Curacao 1824           0
## 16920                           Cyprus 1824           0
## 16921                   Czech Republic 1824           0
## 16922                   Czechoslovakia 1824           0
## 16923     Democratic Republic of Congo 1824           0
## 16924                          Denmark 1824           0
## 16925                         Djibouti 1824           0
## 16926                         Dominica 1824           0
## 16927               Dominican Republic 1824           0
## 16928                            EU-28 1824  1776567344
## 16929                          Ecuador 1824           0
## 16930                            Egypt 1824           0
## 16931                      El Salvador 1824           0
## 16932                Equatorial Guinea 1824           0
## 16933                          Eritrea 1824           0
## 16934                          Estonia 1824           0
## 16935                         Ethiopia 1824           0
## 16936                   Europe (other) 1824           0
## 16937                   Faeroe Islands 1824           0
## 16938                 Falkland Islands 1824           0
## 16939                             Fiji 1824           0
## 16940                          Finland 1824           0
## 16941                           France 1824    43154592
## 16942                    French Guiana 1824           0
## 16943                 French Polynesia 1824           0
## 16944                            Gabon 1824           0
## 16945                           Gambia 1824           0
## 16946                          Georgia 1824           0
## 16947                          Germany 1824    50053904
## 16948                            Ghana 1824           0
## 16949                        Gibraltar 1824           0
## 16950                           Greece 1824           0
## 16951                        Greenland 1824           0
## 16952                          Grenada 1824           0
## 16953                       Guadeloupe 1824           0
## 16954                        Guatemala 1824           0
## 16955                           Guinea 1824           0
## 16956                    Guinea-Bissau 1824           0
## 16957                           Guyana 1824           0
## 16958                            Haiti 1824           0
## 16959                         Honduras 1824           0
## 16960                        Hong Kong 1824           0
## 16961                          Hungary 1824           0
## 16962                          Iceland 1824           0
## 16963                            India 1824           0
## 16964                        Indonesia 1824           0
## 16965                             Iran 1824           0
## 16966                             Iraq 1824           0
## 16967                          Ireland 1824           0
## 16968                           Israel 1824           0
## 16969                            Italy 1824           0
## 16970                          Jamaica 1824           0
## 16971                            Japan 1824           0
## 16972                           Jordan 1824           0
## 16973                       Kazakhstan 1824           0
## 16974                            Kenya 1824           0
## 16975                         Kiribati 1824           0
## 16976                           Kuwait 1824           0
## 16977                       Kyrgysztan 1824           0
## 16978                       Kyrgyzstan 1824           0
## 16979                             Laos 1824           0
## 16980                           Latvia 1824           0
## 16981                          Lebanon 1824           0
## 16982                          Lesotho 1824           0
## 16983                          Liberia 1824           0
## 16984                            Libya 1824           0
## 16985                    Liechtenstein 1824           0
## 16986                        Lithuania 1824           0
## 16987                       Luxembourg 1824           0
## 16988                            Macao 1824           0
## 16989                        Macedonia 1824           0
## 16990                       Madagascar 1824           0
## 16991                           Malawi 1824           0
## 16992                         Malaysia 1824           0
## 16993                         Maldives 1824           0
## 16994                             Mali 1824           0
## 16995                            Malta 1824           0
## 16996                 Marshall Islands 1824           0
## 16997                       Martinique 1824           0
## 16998                       Mauritania 1824           0
## 16999                        Mauritius 1824           0
## 17000                           Mexico 1824           0
## 17001             Micronesia (country) 1824           0
## 17002                      Middle East 1824           0
## 17003                          Moldova 1824           0
## 17004                         Mongolia 1824           0
## 17005                       Montenegro 1824           0
## 17006                       Montserrat 1824           0
## 17007                          Morocco 1824           0
## 17008                       Mozambique 1824           0
## 17009                          Myanmar 1824           0
## 17010                          Namibia 1824           0
## 17011                            Nauru 1824           0
## 17012                            Nepal 1824           0
## 17013                      Netherlands 1824           0
## 17014                    New Caledonia 1824           0
## 17015                      New Zealand 1824           0
## 17016                        Nicaragua 1824           0
## 17017                            Niger 1824           0
## 17018                          Nigeria 1824           0
## 17019                             Niue 1824           0
## 17020                      North Korea 1824           0
## 17021                           Norway 1824           0
## 17022                             Oman 1824           0
## 17023                         Pakistan 1824           0
## 17024                            Palau 1824           0
## 17025                        Palestine 1824           0
## 17026                           Panama 1824           0
## 17027                 Papua New Guinea 1824           0
## 17028                         Paraguay 1824           0
## 17029                             Peru 1824           0
## 17030                      Philippines 1824           0
## 17031                           Poland 1824    15832144
## 17032                         Portugal 1824           0
## 17033                            Qatar 1824           0
## 17034                          Reunion 1824           0
## 17035                          Romania 1824           0
## 17036                           Russia 1824           0
## 17037                           Rwanda 1824           0
## 17038                     Saint Helena 1824           0
## 17039            Saint Kitts and Nevis 1824           0
## 17040                      Saint Lucia 1824           0
## 17041        Saint Pierre and Miquelon 1824           0
## 17042 Saint Vincent and the Grenadines 1824           0
## 17043                            Samoa 1824           0
## 17044            Sao Tome and Principe 1824           0
## 17045                     Saudi Arabia 1824           0
## 17046                          Senegal 1824           0
## 17047                           Serbia 1824           0
## 17048                       Seychelles 1824           0
## 17049                     Sierra Leone 1824           0
## 17050                        Singapore 1824           0
## 17051        Sint Maarten (Dutch part) 1824           0
## 17052                         Slovakia 1824           0
## 17053                         Slovenia 1824           0
## 17054                  Solomon Islands 1824           0
## 17055                          Somalia 1824           0
## 17056                     South Africa 1824           0
## 17057                      South Korea 1824           0
## 17058                      South Sudan 1824           0
## 17059                            Spain 1824           0
## 17060                        Sri Lanka 1824           0
## 17061                            Sudan 1824           0
## 17062                         Suriname 1824           0
## 17063                        Swaziland 1824           0
## 17064                           Sweden 1824           0
## 17065                      Switzerland 1824           0
## 17066                            Syria 1824           0
## 17067                           Taiwan 1824           0
## 17068                       Tajikistan 1824           0
## 17069                         Tanzania 1824           0
## 17070                         Thailand 1824           0
## 17071                            Timor 1824           0
## 17072                             Togo 1824           0
## 17073                            Tonga 1824           0
## 17074              Trinidad and Tobago 1824           0
## 17075                          Tunisia 1824           0
## 17076                           Turkey 1824           0
## 17077                     Turkmenistan 1824           0
## 17078         Turks and Caicos Islands 1824           0
## 17079                           Tuvalu 1824           0
## 17080                           Uganda 1824           0
## 17081                          Ukraine 1824           0
## 17082             United Arab Emirates 1824           0
## 17083                   United Kingdom 1824  1658901648
## 17084                    United States 1824    13641072
## 17085                          Uruguay 1824           0
## 17086                       Uzbekistan 1824           0
## 17087                          Vanuatu 1824           0
## 17088                        Venezuela 1824           0
## 17089                          Vietnam 1824           0
## 17090        Wallis and Futuna Islands 1824           0
## 17091                            World 1824  1790354976
## 17092                            Yemen 1824           0
## 17093                           Zambia 1824           0
## 17094                         Zimbabwe 1824           0
## 17095                      Afghanistan 1825           0
## 17096                           Africa 1825           0
## 17097                          Albania 1825           0
## 17098                          Algeria 1825           0
## 17099                 Americas (other) 1825      150224
## 17100                          Andorra 1825           0
## 17101                           Angola 1825           0
## 17102                         Anguilla 1825           0
## 17103              Antarctic Fisheries 1825           0
## 17104              Antigua and Barbuda 1825           0
## 17105                        Argentina 1825           0
## 17106                          Armenia 1825           0
## 17107                            Aruba 1825           0
## 17108         Asia and Pacific (other) 1825           0
## 17109                        Australia 1825           0
## 17110                          Austria 1825     2630752
## 17111                       Azerbaijan 1825           0
## 17112                          Bahamas 1825           0
## 17113                          Bahrain 1825           0
## 17114                       Bangladesh 1825           0
## 17115                         Barbados 1825           0
## 17116                          Belarus 1825           0
## 17117                          Belgium 1825     6397344
## 17118                           Belize 1825           0
## 17119                            Benin 1825           0
## 17120                          Bermuda 1825           0
## 17121                           Bhutan 1825           0
## 17122                          Bolivia 1825           0
## 17123  Bonaire Sint Eustatius and Saba 1825           0
## 17124           Bosnia and Herzegovina 1825           0
## 17125                         Botswana 1825           0
## 17126                           Brazil 1825           0
## 17127           British Virgin Islands 1825           0
## 17128                           Brunei 1825           0
## 17129                         Bulgaria 1825           0
## 17130                     Burkina Faso 1825           0
## 17131                          Burundi 1825           0
## 17132                         Cambodia 1825           0
## 17133                         Cameroon 1825           0
## 17134                           Canada 1825      150224
## 17135                       Cape Verde 1825           0
## 17136                   Cayman Islands 1825           0
## 17137         Central African Republic 1825           0
## 17138                             Chad 1825           0
## 17139                            Chile 1825           0
## 17140                            China 1825           0
## 17141                 Christmas Island 1825           0
## 17142                         Colombia 1825           0
## 17143                          Comoros 1825           0
## 17144                            Congo 1825           0
## 17145                     Cook Islands 1825           0
## 17146                       Costa Rica 1825           0
## 17147                    Cote d'Ivoire 1825           0
## 17148                          Croatia 1825           0
## 17149                             Cuba 1825           0
## 17150                          Curacao 1825           0
## 17151                           Cyprus 1825           0
## 17152                   Czech Republic 1825           0
## 17153                   Czechoslovakia 1825           0
## 17154     Democratic Republic of Congo 1825           0
## 17155                          Denmark 1825           0
## 17156                         Djibouti 1825           0
## 17157                         Dominica 1825           0
## 17158               Dominican Republic 1825           0
## 17159                            EU-28 1825  1836184288
## 17160                          Ecuador 1825           0
## 17161                            Egypt 1825           0
## 17162                      El Salvador 1825           0
## 17163                Equatorial Guinea 1825           0
## 17164                          Eritrea 1825           0
## 17165                          Estonia 1825           0
## 17166                         Ethiopia 1825           0
## 17167                   Europe (other) 1825           0
## 17168                   Faeroe Islands 1825           0
## 17169                 Falkland Islands 1825           0
## 17170                             Fiji 1825           0
## 17171                          Finland 1825           0
## 17172                           France 1825    47111712
## 17173                    French Guiana 1825           0
## 17174                 French Polynesia 1825           0
## 17175                            Gabon 1825           0
## 17176                           Gambia 1825           0
## 17177                          Georgia 1825           0
## 17178                          Germany 1825    54392080
## 17179                            Ghana 1825           0
## 17180                        Gibraltar 1825           0
## 17181                           Greece 1825           0
## 17182                        Greenland 1825           0
## 17183                          Grenada 1825           0
## 17184                       Guadeloupe 1825           0
## 17185                        Guatemala 1825           0
## 17186                           Guinea 1825           0
## 17187                    Guinea-Bissau 1825           0
## 17188                           Guyana 1825           0
## 17189                            Haiti 1825           0
## 17190                         Honduras 1825           0
## 17191                        Hong Kong 1825           0
## 17192                          Hungary 1825           0
## 17193                          Iceland 1825           0
## 17194                            India 1825           0
## 17195                        Indonesia 1825           0
## 17196                             Iran 1825           0
## 17197                             Iraq 1825           0
## 17198                          Ireland 1825           0
## 17199                           Israel 1825           0
## 17200                            Italy 1825           0
## 17201                          Jamaica 1825           0
## 17202                            Japan 1825           0
## 17203                           Jordan 1825           0
## 17204                       Kazakhstan 1825           0
## 17205                            Kenya 1825           0
## 17206                         Kiribati 1825           0
## 17207                           Kuwait 1825           0
## 17208                       Kyrgysztan 1825           0
## 17209                       Kyrgyzstan 1825           0
## 17210                             Laos 1825           0
## 17211                           Latvia 1825           0
## 17212                          Lebanon 1825           0
## 17213                          Lesotho 1825           0
## 17214                          Liberia 1825           0
## 17215                            Libya 1825           0
## 17216                    Liechtenstein 1825           0
## 17217                        Lithuania 1825           0
## 17218                       Luxembourg 1825           0
## 17219                            Macao 1825           0
## 17220                        Macedonia 1825           0
## 17221                       Madagascar 1825           0
## 17222                           Malawi 1825           0
## 17223                         Malaysia 1825           0
## 17224                         Maldives 1825           0
## 17225                             Mali 1825           0
## 17226                            Malta 1825           0
## 17227                 Marshall Islands 1825           0
## 17228                       Martinique 1825           0
## 17229                       Mauritania 1825           0
## 17230                        Mauritius 1825           0
## 17231                           Mexico 1825           0
## 17232             Micronesia (country) 1825           0
## 17233                      Middle East 1825           0
## 17234                          Moldova 1825           0
## 17235                         Mongolia 1825           0
## 17236                       Montenegro 1825           0
## 17237                       Montserrat 1825           0
## 17238                          Morocco 1825           0
## 17239                       Mozambique 1825           0
## 17240                          Myanmar 1825           0
## 17241                          Namibia 1825           0
## 17242                            Nauru 1825           0
## 17243                            Nepal 1825           0
## 17244                      Netherlands 1825           0
## 17245                    New Caledonia 1825           0
## 17246                      New Zealand 1825           0
## 17247                        Nicaragua 1825           0
## 17248                            Niger 1825           0
## 17249                          Nigeria 1825           0
## 17250                             Niue 1825           0
## 17251                      North Korea 1825           0
## 17252                           Norway 1825           0
## 17253                             Oman 1825           0
## 17254                         Pakistan 1825           0
## 17255                            Palau 1825           0
## 17256                        Palestine 1825           0
## 17257                           Panama 1825           0
## 17258                 Papua New Guinea 1825           0
## 17259                         Paraguay 1825           0
## 17260                             Peru 1825           0
## 17261                      Philippines 1825           0
## 17262                           Poland 1825    17158512
## 17263                         Portugal 1825           0
## 17264                            Qatar 1825           0
## 17265                          Reunion 1825           0
## 17266                          Romania 1825           0
## 17267                           Russia 1825           0
## 17268                           Rwanda 1825           0
## 17269                     Saint Helena 1825           0
## 17270            Saint Kitts and Nevis 1825           0
## 17271                      Saint Lucia 1825           0
## 17272        Saint Pierre and Miquelon 1825           0
## 17273 Saint Vincent and the Grenadines 1825           0
## 17274                            Samoa 1825           0
## 17275            Sao Tome and Principe 1825           0
## 17276                     Saudi Arabia 1825           0
## 17277                          Senegal 1825           0
## 17278                           Serbia 1825           0
## 17279                       Seychelles 1825           0
## 17280                     Sierra Leone 1825           0
## 17281                        Singapore 1825           0
## 17282        Sint Maarten (Dutch part) 1825           0
## 17283                         Slovakia 1825           0
## 17284                         Slovenia 1825           0
## 17285                  Solomon Islands 1825           0
## 17286                          Somalia 1825           0
## 17287                     South Africa 1825           0
## 17288                      South Korea 1825           0
## 17289                      South Sudan 1825           0
## 17290                            Spain 1825           0
## 17291                        Sri Lanka 1825           0
## 17292                            Sudan 1825           0
## 17293                         Suriname 1825           0
## 17294                        Swaziland 1825           0
## 17295                           Sweden 1825           0
## 17296                      Switzerland 1825           0
## 17297                            Syria 1825           0
## 17298                           Taiwan 1825           0
## 17299                       Tajikistan 1825           0
## 17300                         Tanzania 1825           0
## 17301                         Thailand 1825           0
## 17302                            Timor 1825           0
## 17303                             Togo 1825           0
## 17304                            Tonga 1825           0
## 17305              Trinidad and Tobago 1825           0
## 17306                          Tunisia 1825           0
## 17307                           Turkey 1825           0
## 17308                     Turkmenistan 1825           0
## 17309         Turks and Caicos Islands 1825           0
## 17310                           Tuvalu 1825           0
## 17311                           Uganda 1825           0
## 17312                          Ukraine 1825           0
## 17313             United Arab Emirates 1825           0
## 17314                   United Kingdom 1825  1708493888
## 17315                    United States 1825    14776912
## 17316                          Uruguay 1825           0
## 17317                       Uzbekistan 1825           0
## 17318                          Vanuatu 1825           0
## 17319                        Venezuela 1825           0
## 17320                          Vietnam 1825           0
## 17321        Wallis and Futuna Islands 1825           0
## 17322                            World 1825  1851111424
## 17323                            Yemen 1825           0
## 17324                           Zambia 1825           0
## 17325                         Zimbabwe 1825           0
## 17326                      Afghanistan 1826           0
## 17327                           Africa 1826           0
## 17328                          Albania 1826           0
## 17329                          Algeria 1826           0
## 17330                 Americas (other) 1826      153888
## 17331                          Andorra 1826           0
## 17332                           Angola 1826           0
## 17333                         Anguilla 1826           0
## 17334              Antarctic Fisheries 1826           0
## 17335              Antigua and Barbuda 1826           0
## 17336                        Argentina 1826           0
## 17337                          Armenia 1826           0
## 17338                            Aruba 1826           0
## 17339         Asia and Pacific (other) 1826           0
## 17340                        Australia 1826           0
## 17341                          Austria 1826     3088752
## 17342                       Azerbaijan 1826           0
## 17343                          Bahamas 1826           0
## 17344                          Bahrain 1826           0
## 17345                       Bangladesh 1826           0
## 17346                         Barbados 1826           0
## 17347                          Belarus 1826           0
## 17348                          Belgium 1826     6397344
## 17349                           Belize 1826           0
## 17350                            Benin 1826           0
## 17351                          Bermuda 1826           0
## 17352                           Bhutan 1826           0
## 17353                          Bolivia 1826           0
## 17354  Bonaire Sint Eustatius and Saba 1826           0
## 17355           Bosnia and Herzegovina 1826           0
## 17356                         Botswana 1826           0
## 17357                           Brazil 1826           0
## 17358           British Virgin Islands 1826           0
## 17359                           Brunei 1826           0
## 17360                         Bulgaria 1826           0
## 17361                     Burkina Faso 1826           0
## 17362                          Burundi 1826           0
## 17363                         Cambodia 1826           0
## 17364                         Cameroon 1826           0
## 17365                           Canada 1826      153888
## 17366                       Cape Verde 1826           0
## 17367                   Cayman Islands 1826           0
## 17368         Central African Republic 1826           0
## 17369                             Chad 1826           0
## 17370                            Chile 1826           0
## 17371                            China 1826           0
## 17372                 Christmas Island 1826           0
## 17373                         Colombia 1826           0
## 17374                          Comoros 1826           0
## 17375                            Congo 1826           0
## 17376                     Cook Islands 1826           0
## 17377                       Costa Rica 1826           0
## 17378                    Cote d'Ivoire 1826           0
## 17379                          Croatia 1826           0
## 17380                             Cuba 1826           0
## 17381                          Curacao 1826           0
## 17382                           Cyprus 1826           0
## 17383                   Czech Republic 1826           0
## 17384                   Czechoslovakia 1826           0
## 17385     Democratic Republic of Congo 1826           0
## 17386                          Denmark 1826           0
## 17387                         Djibouti 1826           0
## 17388                         Dominica 1826           0
## 17389               Dominican Republic 1826           0
## 17390                            EU-28 1826  1896284880
## 17391                          Ecuador 1826           0
## 17392                            Egypt 1826           0
## 17393                      El Salvador 1826           0
## 17394                Equatorial Guinea 1826           0
## 17395                          Eritrea 1826           0
## 17396                          Estonia 1826           0
## 17397                         Ethiopia 1826           0
## 17398                   Europe (other) 1826           0
## 17399                   Faeroe Islands 1826           0
## 17400                 Falkland Islands 1826           0
## 17401                             Fiji 1826           0
## 17402                          Finland 1826           0
## 17403                           France 1826    51200736
## 17404                    French Guiana 1826           0
## 17405                 French Polynesia 1826           0
## 17406                            Gabon 1826           0
## 17407                           Gambia 1826           0
## 17408                          Georgia 1826           0
## 17409                          Germany 1826    58580032
## 17410                            Ghana 1826           0
## 17411                        Gibraltar 1826           0
## 17412                           Greece 1826           0
## 17413                        Greenland 1826           0
## 17414                          Grenada 1826           0
## 17415                       Guadeloupe 1826           0
## 17416                        Guatemala 1826           0
## 17417                           Guinea 1826           0
## 17418                    Guinea-Bissau 1826           0
## 17419                           Guyana 1826           0
## 17420                            Haiti 1826           0
## 17421                         Honduras 1826           0
## 17422                        Hong Kong 1826           0
## 17423                          Hungary 1826           0
## 17424                          Iceland 1826           0
## 17425                            India 1826           0
## 17426                        Indonesia 1826           0
## 17427                             Iran 1826           0
## 17428                             Iraq 1826           0
## 17429                          Ireland 1826           0
## 17430                           Israel 1826           0
## 17431                            Italy 1826           0
## 17432                          Jamaica 1826           0
## 17433                            Japan 1826           0
## 17434                           Jordan 1826           0
## 17435                       Kazakhstan 1826           0
## 17436                            Kenya 1826           0
## 17437                         Kiribati 1826           0
## 17438                           Kuwait 1826           0
## 17439                       Kyrgysztan 1826           0
## 17440                       Kyrgyzstan 1826           0
## 17441                             Laos 1826           0
## 17442                           Latvia 1826           0
## 17443                          Lebanon 1826           0
## 17444                          Lesotho 1826           0
## 17445                          Liberia 1826           0
## 17446                            Libya 1826           0
## 17447                    Liechtenstein 1826           0
## 17448                        Lithuania 1826           0
## 17449                       Luxembourg 1826           0
## 17450                            Macao 1826           0
## 17451                        Macedonia 1826           0
## 17452                       Madagascar 1826           0
## 17453                           Malawi 1826           0
## 17454                         Malaysia 1826           0
## 17455                         Maldives 1826           0
## 17456                             Mali 1826           0
## 17457                            Malta 1826           0
## 17458                 Marshall Islands 1826           0
## 17459                       Martinique 1826           0
## 17460                       Mauritania 1826           0
## 17461                        Mauritius 1826           0
## 17462                           Mexico 1826           0
## 17463             Micronesia (country) 1826           0
## 17464                      Middle East 1826           0
## 17465                          Moldova 1826           0
## 17466                         Mongolia 1826           0
## 17467                       Montenegro 1826           0
## 17468                       Montserrat 1826           0
## 17469                          Morocco 1826           0
## 17470                       Mozambique 1826           0
## 17471                          Myanmar 1826           0
## 17472                          Namibia 1826           0
## 17473                            Nauru 1826           0
## 17474                            Nepal 1826           0
## 17475                      Netherlands 1826           0
## 17476                    New Caledonia 1826           0
## 17477                      New Zealand 1826           0
## 17478                        Nicaragua 1826           0
## 17479                            Niger 1826           0
## 17480                          Nigeria 1826           0
## 17481                             Niue 1826           0
## 17482                      North Korea 1826           0
## 17483                           Norway 1826           0
## 17484                             Oman 1826           0
## 17485                         Pakistan 1826           0
## 17486                            Palau 1826           0
## 17487                        Palestine 1826           0
## 17488                           Panama 1826           0
## 17489                 Papua New Guinea 1826           0
## 17490                         Paraguay 1826           0
## 17491                             Peru 1826           0
## 17492                      Philippines 1826           0
## 17493                           Poland 1826    18378624
## 17494                         Portugal 1826           0
## 17495                            Qatar 1826           0
## 17496                          Reunion 1826           0
## 17497                          Romania 1826           0
## 17498                           Russia 1826           0
## 17499                           Rwanda 1826           0
## 17500                     Saint Helena 1826           0
## 17501            Saint Kitts and Nevis 1826           0
## 17502                      Saint Lucia 1826           0
## 17503        Saint Pierre and Miquelon 1826           0
## 17504 Saint Vincent and the Grenadines 1826           0
## 17505                            Samoa 1826           0
## 17506            Sao Tome and Principe 1826           0
## 17507                     Saudi Arabia 1826           0
## 17508                          Senegal 1826           0
## 17509                           Serbia 1826           0
## 17510                       Seychelles 1826           0
## 17511                     Sierra Leone 1826           0
## 17512                        Singapore 1826           0
## 17513        Sint Maarten (Dutch part) 1826           0
## 17514                         Slovakia 1826           0
## 17515                         Slovenia 1826           0
## 17516                  Solomon Islands 1826           0
## 17517                          Somalia 1826           0
## 17518                     South Africa 1826           0
## 17519                      South Korea 1826           0
## 17520                      South Sudan 1826           0
## 17521                            Spain 1826           0
## 17522                        Sri Lanka 1826           0
## 17523                            Sudan 1826           0
## 17524                         Suriname 1826           0
## 17525                        Swaziland 1826           0
## 17526                           Sweden 1826           0
## 17527                      Switzerland 1826           0
## 17528                            Syria 1826           0
## 17529                           Taiwan 1826           0
## 17530                       Tajikistan 1826           0
## 17531                         Tanzania 1826           0
## 17532                         Thailand 1826           0
## 17533                            Timor 1826           0
## 17534                             Togo 1826           0
## 17535                            Tonga 1826           0
## 17536              Trinidad and Tobago 1826           0
## 17537                          Tunisia 1826           0
## 17538                           Turkey 1826           0
## 17539                     Turkmenistan 1826           0
## 17540         Turks and Caicos Islands 1826           0
## 17541                           Tuvalu 1826           0
## 17542                           Uganda 1826           0
## 17543                          Ukraine 1826           0
## 17544             United Arab Emirates 1826           0
## 17545                   United Kingdom 1826  1758639392
## 17546                    United States 1826    16092288
## 17547                          Uruguay 1826           0
## 17548                       Uzbekistan 1826           0
## 17549                          Vanuatu 1826           0
## 17550                        Venezuela 1826           0
## 17551                          Vietnam 1826           0
## 17552        Wallis and Futuna Islands 1826           0
## 17553                            World 1826  1912531056
## 17554                            Yemen 1826           0
## 17555                           Zambia 1826           0
## 17556                         Zimbabwe 1826           0
## 17557                      Afghanistan 1827           0
## 17558                           Africa 1827           0
## 17559                          Albania 1827           0
## 17560                          Algeria 1827           0
## 17561                 Americas (other) 1827      157552
## 17562                          Andorra 1827           0
## 17563                           Angola 1827           0
## 17564                         Anguilla 1827           0
## 17565              Antarctic Fisheries 1827           0
## 17566              Antigua and Barbuda 1827           0
## 17567                        Argentina 1827           0
## 17568                          Armenia 1827           0
## 17569                            Aruba 1827           0
## 17570         Asia and Pacific (other) 1827           0
## 17571                        Australia 1827           0
## 17572                          Austria 1827     3565072
## 17573                       Azerbaijan 1827           0
## 17574                          Bahamas 1827           0
## 17575                          Bahrain 1827           0
## 17576                       Bangladesh 1827           0
## 17577                         Barbados 1827           0
## 17578                          Belarus 1827           0
## 17579                          Belgium 1827     6397344
## 17580                           Belize 1827           0
## 17581                            Benin 1827           0
## 17582                          Bermuda 1827           0
## 17583                           Bhutan 1827           0
## 17584                          Bolivia 1827           0
## 17585  Bonaire Sint Eustatius and Saba 1827           0
## 17586           Bosnia and Herzegovina 1827           0
## 17587                         Botswana 1827           0
## 17588                           Brazil 1827           0
## 17589           British Virgin Islands 1827           0
## 17590                           Brunei 1827           0
## 17591                         Bulgaria 1827           0
## 17592                     Burkina Faso 1827           0
## 17593                          Burundi 1827           0
## 17594                         Cambodia 1827           0
## 17595                         Cameroon 1827           0
## 17596                           Canada 1827      157552
## 17597                       Cape Verde 1827           0
## 17598                   Cayman Islands 1827           0
## 17599         Central African Republic 1827           0
## 17600                             Chad 1827           0
## 17601                            Chile 1827           0
## 17602                            China 1827           0
## 17603                 Christmas Island 1827           0
## 17604                         Colombia 1827           0
## 17605                          Comoros 1827           0
## 17606                            Congo 1827           0
## 17607                     Cook Islands 1827           0
## 17608                       Costa Rica 1827           0
## 17609                    Cote d'Ivoire 1827           0
## 17610                          Croatia 1827           0
## 17611                             Cuba 1827           0
## 17612                          Curacao 1827           0
## 17613                           Cyprus 1827           0
## 17614                   Czech Republic 1827           0
## 17615                   Czechoslovakia 1827           0
## 17616     Democratic Republic of Congo 1827           0
## 17617                          Denmark 1827           0
## 17618                         Djibouti 1827           0
## 17619                         Dominica 1827           0
## 17620               Dominican Republic 1827           0
## 17621                            EU-28 1827  1960749296
## 17622                          Ecuador 1827           0
## 17623                            Egypt 1827           0
## 17624                      El Salvador 1827           0
## 17625                Equatorial Guinea 1827           0
## 17626                          Eritrea 1827           0
## 17627                          Estonia 1827           0
## 17628                         Ethiopia 1827           0
## 17629                   Europe (other) 1827           0
## 17630                   Faeroe Islands 1827           0
## 17631                 Falkland Islands 1827           0
## 17632                             Fiji 1827           0
## 17633                          Finland 1827           0
## 17634                           France 1827    57110768
## 17635                    French Guiana 1827           0
## 17636                 French Polynesia 1827           0
## 17637                            Gabon 1827           0
## 17638                           Gambia 1827           0
## 17639                          Georgia 1827           0
## 17640                          Germany 1827    63119728
## 17641                            Ghana 1827           0
## 17642                        Gibraltar 1827           0
## 17643                           Greece 1827           0
## 17644                        Greenland 1827           0
## 17645                          Grenada 1827           0
## 17646                       Guadeloupe 1827           0
## 17647                        Guatemala 1827           0
## 17648                           Guinea 1827           0
## 17649                    Guinea-Bissau 1827           0
## 17650                           Guyana 1827           0
## 17651                            Haiti 1827           0
## 17652                         Honduras 1827           0
## 17653                        Hong Kong 1827           0
## 17654                          Hungary 1827           0
## 17655                          Iceland 1827           0
## 17656                            India 1827           0
## 17657                        Indonesia 1827           0
## 17658                             Iran 1827           0
## 17659                             Iraq 1827           0
## 17660                          Ireland 1827           0
## 17661                           Israel 1827           0
## 17662                            Italy 1827           0
## 17663                          Jamaica 1827           0
## 17664                            Japan 1827           0
## 17665                           Jordan 1827           0
## 17666                       Kazakhstan 1827           0
## 17667                            Kenya 1827           0
## 17668                         Kiribati 1827           0
## 17669                           Kuwait 1827           0
## 17670                       Kyrgysztan 1827           0
## 17671                       Kyrgyzstan 1827           0
## 17672                             Laos 1827           0
## 17673                           Latvia 1827           0
## 17674                          Lebanon 1827           0
## 17675                          Lesotho 1827           0
## 17676                          Liberia 1827           0
## 17677                            Libya 1827           0
## 17678                    Liechtenstein 1827           0
## 17679                        Lithuania 1827           0
## 17680                       Luxembourg 1827           0
## 17681                            Macao 1827           0
## 17682                        Macedonia 1827           0
## 17683                       Madagascar 1827           0
## 17684                           Malawi 1827           0
## 17685                         Malaysia 1827           0
## 17686                         Maldives 1827           0
## 17687                             Mali 1827           0
## 17688                            Malta 1827           0
## 17689                 Marshall Islands 1827           0
## 17690                       Martinique 1827           0
## 17691                       Mauritania 1827           0
## 17692                        Mauritius 1827           0
## 17693                           Mexico 1827           0
## 17694             Micronesia (country) 1827           0
## 17695                      Middle East 1827           0
## 17696                          Moldova 1827           0
## 17697                         Mongolia 1827           0
## 17698                       Montenegro 1827           0
## 17699                       Montserrat 1827           0
## 17700                          Morocco 1827           0
## 17701                       Mozambique 1827           0
## 17702                          Myanmar 1827           0
## 17703                          Namibia 1827           0
## 17704                            Nauru 1827           0
## 17705                            Nepal 1827           0
## 17706                      Netherlands 1827           0
## 17707                    New Caledonia 1827           0
## 17708                      New Zealand 1827           0
## 17709                        Nicaragua 1827           0
## 17710                            Niger 1827           0
## 17711                          Nigeria 1827           0
## 17712                             Niue 1827           0
## 17713                      North Korea 1827           0
## 17714                           Norway 1827           0
## 17715                             Oman 1827           0
## 17716                         Pakistan 1827           0
## 17717                            Palau 1827           0
## 17718                        Palestine 1827           0
## 17719                           Panama 1827           0
## 17720                 Papua New Guinea 1827           0
## 17721                         Paraguay 1827           0
## 17722                             Peru 1827           0
## 17723                      Philippines 1827           0
## 17724                           Poland 1827    19686672
## 17725                         Portugal 1827           0
## 17726                            Qatar 1827           0
## 17727                          Reunion 1827           0
## 17728                          Romania 1827           0
## 17729                           Russia 1827           0
## 17730                           Rwanda 1827           0
## 17731                     Saint Helena 1827           0
## 17732            Saint Kitts and Nevis 1827           0
## 17733                      Saint Lucia 1827           0
## 17734        Saint Pierre and Miquelon 1827           0
## 17735 Saint Vincent and the Grenadines 1827           0
## 17736                            Samoa 1827           0
## 17737            Sao Tome and Principe 1827           0
## 17738                     Saudi Arabia 1827           0
## 17739                          Senegal 1827           0
## 17740                           Serbia 1827           0
## 17741                       Seychelles 1827           0
## 17742                     Sierra Leone 1827           0
## 17743                        Singapore 1827           0
## 17744        Sint Maarten (Dutch part) 1827           0
## 17745                         Slovakia 1827           0
## 17746                         Slovenia 1827           0
## 17747                  Solomon Islands 1827           0
## 17748                          Somalia 1827           0
## 17749                     South Africa 1827           0
## 17750                      South Korea 1827           0
## 17751                      South Sudan 1827           0
## 17752                            Spain 1827           0
## 17753                        Sri Lanka 1827           0
## 17754                            Sudan 1827           0
## 17755                         Suriname 1827           0
## 17756                        Swaziland 1827           0
## 17757                           Sweden 1827           0
## 17758                      Switzerland 1827           0
## 17759                            Syria 1827           0
## 17760                           Taiwan 1827           0
## 17761                       Tajikistan 1827           0
## 17762                         Tanzania 1827           0
## 17763                         Thailand 1827           0
## 17764                            Timor 1827           0
## 17765                             Togo 1827           0
## 17766                            Tonga 1827           0
## 17767              Trinidad and Tobago 1827           0
## 17768                          Tunisia 1827           0
## 17769                           Turkey 1827           0
## 17770                     Turkmenistan 1827           0
## 17771         Turks and Caicos Islands 1827           0
## 17772                           Tuvalu 1827           0
## 17773                           Uganda 1827           0
## 17774                          Ukraine 1827           0
## 17775             United Arab Emirates 1827           0
## 17776                   United Kingdom 1827  1810869712
## 17777                    United States 1827    17539568
## 17778                          Uruguay 1827           0
## 17779                       Uzbekistan 1827           0
## 17780                          Vanuatu 1827           0
## 17781                        Venezuela 1827           0
## 17782                          Vietnam 1827           0
## 17783        Wallis and Futuna Islands 1827           0
## 17784                            World 1827  1978446416
## 17785                            Yemen 1827           0
## 17786                           Zambia 1827           0
## 17787                         Zimbabwe 1827           0
## 17788                      Afghanistan 1828           0
## 17789                           Africa 1828           0
## 17790                          Albania 1828           0
## 17791                          Algeria 1828           0
## 17792                 Americas (other) 1828      161216
## 17793                          Andorra 1828           0
## 17794                           Angola 1828           0
## 17795                         Anguilla 1828           0
## 17796              Antarctic Fisheries 1828           0
## 17797              Antigua and Barbuda 1828           0
## 17798                        Argentina 1828           0
## 17799                          Armenia 1828           0
## 17800                            Aruba 1828           0
## 17801         Asia and Pacific (other) 1828           0
## 17802                        Australia 1828           0
## 17803                          Austria 1828     4023072
## 17804                       Azerbaijan 1828           0
## 17805                          Bahamas 1828           0
## 17806                          Bahrain 1828           0
## 17807                       Bangladesh 1828           0
## 17808                         Barbados 1828           0
## 17809                          Belarus 1828           0
## 17810                          Belgium 1828     6397344
## 17811                           Belize 1828           0
## 17812                            Benin 1828           0
## 17813                          Bermuda 1828           0
## 17814                           Bhutan 1828           0
## 17815                          Bolivia 1828           0
## 17816  Bonaire Sint Eustatius and Saba 1828           0
## 17817           Bosnia and Herzegovina 1828           0
## 17818                         Botswana 1828           0
## 17819                           Brazil 1828           0
## 17820           British Virgin Islands 1828           0
## 17821                           Brunei 1828           0
## 17822                         Bulgaria 1828           0
## 17823                     Burkina Faso 1828           0
## 17824                          Burundi 1828           0
## 17825                         Cambodia 1828           0
## 17826                         Cameroon 1828           0
## 17827                           Canada 1828      161216
## 17828                       Cape Verde 1828           0
## 17829                   Cayman Islands 1828           0
## 17830         Central African Republic 1828           0
## 17831                             Chad 1828           0
## 17832                            Chile 1828           0
## 17833                            China 1828           0
## 17834                 Christmas Island 1828           0
## 17835                         Colombia 1828           0
## 17836                          Comoros 1828           0
## 17837                            Congo 1828           0
## 17838                     Cook Islands 1828           0
## 17839                       Costa Rica 1828           0
## 17840                    Cote d'Ivoire 1828           0
## 17841                          Croatia 1828           0
## 17842                             Cuba 1828           0
## 17843                          Curacao 1828           0
## 17844                           Cyprus 1828           0
## 17845                   Czech Republic 1828           0
## 17846                   Czechoslovakia 1828           0
## 17847     Democratic Republic of Congo 1828           0
## 17848                          Denmark 1828           0
## 17849                         Djibouti 1828           0
## 17850                         Dominica 1828           0
## 17851               Dominican Republic 1828           0
## 17852                            EU-28 1828  2025788960
## 17853                          Ecuador 1828           0
## 17854                            Egypt 1828           0
## 17855                      El Salvador 1828           0
## 17856                Equatorial Guinea 1828           0
## 17857                          Eritrea 1828           0
## 17858                          Estonia 1828           0
## 17859                         Ethiopia 1828           0
## 17860                   Europe (other) 1828           0
## 17861                   Faeroe Islands 1828           0
## 17862                 Falkland Islands 1828           0
## 17863                             Fiji 1828           0
## 17864                          Finland 1828           0
## 17865                           France 1828    63354224
## 17866                    French Guiana 1828           0
## 17867                 French Polynesia 1828           0
## 17868                            Gabon 1828           0
## 17869                           Gambia 1828           0
## 17870                          Georgia 1828           0
## 17871                          Germany 1828    67659424
## 17872                            Ghana 1828           0
## 17873                        Gibraltar 1828           0
## 17874                           Greece 1828           0
## 17875                        Greenland 1828           0
## 17876                          Grenada 1828           0
## 17877                       Guadeloupe 1828           0
## 17878                        Guatemala 1828           0
## 17879                           Guinea 1828           0
## 17880                    Guinea-Bissau 1828           0
## 17881                           Guyana 1828           0
## 17882                            Haiti 1828           0
## 17883                         Honduras 1828           0
## 17884                        Hong Kong 1828           0
## 17885                          Hungary 1828           0
## 17886                          Iceland 1828           0
## 17887                            India 1828           0
## 17888                        Indonesia 1828           0
## 17889                             Iran 1828           0
## 17890                             Iraq 1828           0
## 17891                          Ireland 1828           0
## 17892                           Israel 1828           0
## 17893                            Italy 1828           0
## 17894                          Jamaica 1828           0
## 17895                            Japan 1828           0
## 17896                           Jordan 1828           0
## 17897                       Kazakhstan 1828           0
## 17898                            Kenya 1828           0
## 17899                         Kiribati 1828           0
## 17900                           Kuwait 1828           0
## 17901                       Kyrgysztan 1828           0
## 17902                       Kyrgyzstan 1828           0
## 17903                             Laos 1828           0
## 17904                           Latvia 1828           0
## 17905                          Lebanon 1828           0
## 17906                          Lesotho 1828           0
## 17907                          Liberia 1828           0
## 17908                            Libya 1828           0
## 17909                    Liechtenstein 1828           0
## 17910                        Lithuania 1828           0
## 17911                       Luxembourg 1828           0
## 17912                            Macao 1828           0
## 17913                        Macedonia 1828           0
## 17914                       Madagascar 1828           0
## 17915                           Malawi 1828           0
## 17916                         Malaysia 1828           0
## 17917                         Maldives 1828           0
## 17918                             Mali 1828           0
## 17919                            Malta 1828           0
## 17920                 Marshall Islands 1828           0
## 17921                       Martinique 1828           0
## 17922                       Mauritania 1828           0
## 17923                        Mauritius 1828           0
## 17924                           Mexico 1828           0
## 17925             Micronesia (country) 1828           0
## 17926                      Middle East 1828           0
## 17927                          Moldova 1828           0
## 17928                         Mongolia 1828           0
## 17929                       Montenegro 1828           0
## 17930                       Montserrat 1828           0
## 17931                          Morocco 1828           0
## 17932                       Mozambique 1828           0
## 17933                          Myanmar 1828           0
## 17934                          Namibia 1828           0
## 17935                            Nauru 1828           0
## 17936                            Nepal 1828           0
## 17937                      Netherlands 1828           0
## 17938                    New Caledonia 1828           0
## 17939                      New Zealand 1828           0
## 17940                        Nicaragua 1828           0
## 17941                            Niger 1828           0
## 17942                          Nigeria 1828           0
## 17943                             Niue 1828           0
## 17944                      North Korea 1828           0
## 17945                           Norway 1828           0
## 17946                             Oman 1828           0
## 17947                         Pakistan 1828           0
## 17948                            Palau 1828           0
## 17949                        Palestine 1828           0
## 17950                           Panama 1828           0
## 17951                 Papua New Guinea 1828           0
## 17952                         Paraguay 1828           0
## 17953                             Peru 1828           0
## 17954                      Philippines 1828           0
## 17955                           Poland 1828    20895792
## 17956                         Portugal 1828           0
## 17957                            Qatar 1828           0
## 17958                          Reunion 1828           0
## 17959                          Romania 1828           0
## 17960                           Russia 1828           0
## 17961                           Rwanda 1828           0
## 17962                     Saint Helena 1828           0
## 17963            Saint Kitts and Nevis 1828           0
## 17964                      Saint Lucia 1828           0
## 17965        Saint Pierre and Miquelon 1828           0
## 17966 Saint Vincent and the Grenadines 1828           0
## 17967                            Samoa 1828           0
## 17968            Sao Tome and Principe 1828           0
## 17969                     Saudi Arabia 1828           0
## 17970                          Senegal 1828           0
## 17971                           Serbia 1828           0
## 17972                       Seychelles 1828           0
## 17973                     Sierra Leone 1828           0
## 17974                        Singapore 1828           0
## 17975        Sint Maarten (Dutch part) 1828           0
## 17976                         Slovakia 1828           0
## 17977                         Slovenia 1828           0
## 17978                  Solomon Islands 1828           0
## 17979                          Somalia 1828           0
## 17980                     South Africa 1828           0
## 17981                      South Korea 1828           0
## 17982                      South Sudan 1828           0
## 17983                            Spain 1828           0
## 17984                        Sri Lanka 1828           0
## 17985                            Sudan 1828           0
## 17986                         Suriname 1828           0
## 17987                        Swaziland 1828           0
## 17988                           Sweden 1828           0
## 17989                      Switzerland 1828           0
## 17990                            Syria 1828           0
## 17991                           Taiwan 1828           0
## 17992                       Tajikistan 1828           0
## 17993                         Tanzania 1828           0
## 17994                         Thailand 1828           0
## 17995                            Timor 1828           0
## 17996                             Togo 1828           0
## 17997                            Tonga 1828           0
## 17998              Trinidad and Tobago 1828           0
## 17999                          Tunisia 1828           0
## 18000                           Turkey 1828           0
## 18001                     Turkmenistan 1828           0
## 18002         Turks and Caicos Islands 1828           0
## 18003                           Tuvalu 1828           0
## 18004                           Uganda 1828           0
## 18005                          Ukraine 1828           0
## 18006             United Arab Emirates 1828           0
## 18007                   United Kingdom 1828  1863459104
## 18008                    United States 1828    19133408
## 18009                          Uruguay 1828           0
## 18010                       Uzbekistan 1828           0
## 18011                          Vanuatu 1828           0
## 18012                        Venezuela 1828           0
## 18013                          Vietnam 1828           0
## 18014        Wallis and Futuna Islands 1828           0
## 18015                            World 1828  2045083584
## 18016                            Yemen 1828           0
## 18017                           Zambia 1828           0
## 18018                         Zimbabwe 1828           0
## 18019                      Afghanistan 1829           0
## 18020                           Africa 1829           0
## 18021                          Albania 1829           0
## 18022                          Algeria 1829           0
## 18023                 Americas (other) 1829      164880
## 18024                          Andorra 1829           0
## 18025                           Angola 1829           0
## 18026                         Anguilla 1829           0
## 18027              Antarctic Fisheries 1829           0
## 18028              Antigua and Barbuda 1829           0
## 18029                        Argentina 1829           0
## 18030                          Armenia 1829           0
## 18031                            Aruba 1829           0
## 18032         Asia and Pacific (other) 1829           0
## 18033                        Australia 1829           0
## 18034                          Austria 1829     4499392
## 18035                       Azerbaijan 1829           0
## 18036                          Bahamas 1829           0
## 18037                          Bahrain 1829           0
## 18038                       Bangladesh 1829           0
## 18039                         Barbados 1829           0
## 18040                          Belarus 1829           0
## 18041                          Belgium 1829     6397344
## 18042                           Belize 1829           0
## 18043                            Benin 1829           0
## 18044                          Bermuda 1829           0
## 18045                           Bhutan 1829           0
## 18046                          Bolivia 1829           0
## 18047  Bonaire Sint Eustatius and Saba 1829           0
## 18048           Bosnia and Herzegovina 1829           0
## 18049                         Botswana 1829           0
## 18050                           Brazil 1829           0
## 18051           British Virgin Islands 1829           0
## 18052                           Brunei 1829           0
## 18053                         Bulgaria 1829           0
## 18054                     Burkina Faso 1829           0
## 18055                          Burundi 1829           0
## 18056                         Cambodia 1829           0
## 18057                         Cameroon 1829           0
## 18058                           Canada 1829      164880
## 18059                       Cape Verde 1829           0
## 18060                   Cayman Islands 1829           0
## 18061         Central African Republic 1829           0
## 18062                             Chad 1829           0
## 18063                            Chile 1829           0
## 18064                            China 1829           0
## 18065                 Christmas Island 1829           0
## 18066                         Colombia 1829           0
## 18067                          Comoros 1829           0
## 18068                            Congo 1829           0
## 18069                     Cook Islands 1829           0
## 18070                       Costa Rica 1829           0
## 18071                    Cote d'Ivoire 1829           0
## 18072                          Croatia 1829           0
## 18073                             Cuba 1829           0
## 18074                          Curacao 1829           0
## 18075                           Cyprus 1829           0
## 18076                   Czech Republic 1829           0
## 18077                   Czechoslovakia 1829           0
## 18078     Democratic Republic of Congo 1829           0
## 18079                          Denmark 1829           0
## 18080                         Djibouti 1829           0
## 18081                         Dominica 1829           0
## 18082               Dominican Republic 1829           0
## 18083                            EU-28 1829  2090374288
## 18084                          Ecuador 1829           0
## 18085                            Egypt 1829           0
## 18086                      El Salvador 1829           0
## 18087                Equatorial Guinea 1829           0
## 18088                          Eritrea 1829           0
## 18089                          Estonia 1829           0
## 18090                         Ethiopia 1829           0
## 18091                   Europe (other) 1829       10992
## 18092                   Faeroe Islands 1829           0
## 18093                 Falkland Islands 1829           0
## 18094                             Fiji 1829           0
## 18095                          Finland 1829           0
## 18096                           France 1829    69429136
## 18097                    French Guiana 1829           0
## 18098                 French Polynesia 1829           0
## 18099                            Gabon 1829           0
## 18100                           Gambia 1829           0
## 18101                          Georgia 1829           0
## 18102                          Germany 1829    71290448
## 18103                            Ghana 1829           0
## 18104                        Gibraltar 1829           0
## 18105                           Greece 1829           0
## 18106                        Greenland 1829           0
## 18107                          Grenada 1829           0
## 18108                       Guadeloupe 1829           0
## 18109                        Guatemala 1829           0
## 18110                           Guinea 1829           0
## 18111                    Guinea-Bissau 1829           0
## 18112                           Guyana 1829           0
## 18113                            Haiti 1829           0
## 18114                         Honduras 1829           0
## 18115                        Hong Kong 1829           0
## 18116                          Hungary 1829           0
## 18117                          Iceland 1829           0
## 18118                            India 1829           0
## 18119                        Indonesia 1829           0
## 18120                             Iran 1829           0
## 18121                             Iraq 1829           0
## 18122                          Ireland 1829           0
## 18123                           Israel 1829           0
## 18124                            Italy 1829           0
## 18125                          Jamaica 1829           0
## 18126                            Japan 1829           0
## 18127                           Jordan 1829           0
## 18128                       Kazakhstan 1829           0
## 18129                            Kenya 1829           0
## 18130                         Kiribati 1829           0
## 18131                           Kuwait 1829           0
## 18132                       Kyrgysztan 1829           0
## 18133                       Kyrgyzstan 1829           0
## 18134                             Laos 1829           0
## 18135                           Latvia 1829           0
## 18136                          Lebanon 1829           0
## 18137                          Lesotho 1829           0
## 18138                          Liberia 1829           0
## 18139                            Libya 1829           0
## 18140                    Liechtenstein 1829           0
## 18141                        Lithuania 1829           0
## 18142                       Luxembourg 1829           0
## 18143                            Macao 1829           0
## 18144                        Macedonia 1829           0
## 18145                       Madagascar 1829           0
## 18146                           Malawi 1829           0
## 18147                         Malaysia 1829           0
## 18148                         Maldives 1829           0
## 18149                             Mali 1829           0
## 18150                            Malta 1829           0
## 18151                 Marshall Islands 1829           0
## 18152                       Martinique 1829           0
## 18153                       Mauritania 1829           0
## 18154                        Mauritius 1829           0
## 18155                           Mexico 1829           0
## 18156             Micronesia (country) 1829           0
## 18157                      Middle East 1829           0
## 18158                          Moldova 1829           0
## 18159                         Mongolia 1829           0
## 18160                       Montenegro 1829           0
## 18161                       Montserrat 1829           0
## 18162                          Morocco 1829           0
## 18163                       Mozambique 1829           0
## 18164                          Myanmar 1829           0
## 18165                          Namibia 1829           0
## 18166                            Nauru 1829           0
## 18167                            Nepal 1829           0
## 18168                      Netherlands 1829           0
## 18169                    New Caledonia 1829           0
## 18170                      New Zealand 1829           0
## 18171                        Nicaragua 1829           0
## 18172                            Niger 1829           0
## 18173                          Nigeria 1829           0
## 18174                             Niue 1829           0
## 18175                      North Korea 1829           0
## 18176                           Norway 1829       10992
## 18177                             Oman 1829           0
## 18178                         Pakistan 1829           0
## 18179                            Palau 1829           0
## 18180                        Palestine 1829           0
## 18181                           Panama 1829           0
## 18182                 Papua New Guinea 1829           0
## 18183                         Paraguay 1829           0
## 18184                             Peru 1829           0
## 18185                      Philippines 1829           0
## 18186                           Poland 1829    21962016
## 18187                         Portugal 1829           0
## 18188                            Qatar 1829           0
## 18189                          Reunion 1829           0
## 18190                          Romania 1829           0
## 18191                           Russia 1829           0
## 18192                           Rwanda 1829           0
## 18193                     Saint Helena 1829           0
## 18194            Saint Kitts and Nevis 1829           0
## 18195                      Saint Lucia 1829           0
## 18196        Saint Pierre and Miquelon 1829           0
## 18197 Saint Vincent and the Grenadines 1829           0
## 18198                            Samoa 1829           0
## 18199            Sao Tome and Principe 1829           0
## 18200                     Saudi Arabia 1829           0
## 18201                          Senegal 1829           0
## 18202                           Serbia 1829           0
## 18203                       Seychelles 1829           0
## 18204                     Sierra Leone 1829           0
## 18205                        Singapore 1829           0
## 18206        Sint Maarten (Dutch part) 1829           0
## 18207                         Slovakia 1829           0
## 18208                         Slovenia 1829           0
## 18209                  Solomon Islands 1829           0
## 18210                          Somalia 1829           0
## 18211                     South Africa 1829           0
## 18212                      South Korea 1829           0
## 18213                      South Sudan 1829           0
## 18214                            Spain 1829           0
## 18215                        Sri Lanka 1829           0
## 18216                            Sudan 1829           0
## 18217                         Suriname 1829           0
## 18218                        Swaziland 1829           0
## 18219                           Sweden 1829           0
## 18220                      Switzerland 1829           0
## 18221                            Syria 1829           0
## 18222                           Taiwan 1829           0
## 18223                       Tajikistan 1829           0
## 18224                         Tanzania 1829           0
## 18225                         Thailand 1829           0
## 18226                            Timor 1829           0
## 18227                             Togo 1829           0
## 18228                            Tonga 1829           0
## 18229              Trinidad and Tobago 1829           0
## 18230                          Tunisia 1829           0
## 18231                           Turkey 1829           0
## 18232                     Turkmenistan 1829           0
## 18233         Turks and Caicos Islands 1829           0
## 18234                           Tuvalu 1829           0
## 18235                           Uganda 1829           0
## 18236                          Ukraine 1829           0
## 18237             United Arab Emirates 1829           0
## 18238                   United Kingdom 1829  1916795952
## 18239                    United States 1829    20928768
## 18240                          Uruguay 1829           0
## 18241                       Uzbekistan 1829           0
## 18242                          Vanuatu 1829           0
## 18243                        Venezuela 1829           0
## 18244                          Vietnam 1829           0
## 18245        Wallis and Futuna Islands 1829           0
## 18246                            World 1829  2111478928
## 18247                            Yemen 1829           0
## 18248                           Zambia 1829           0
## 18249                         Zimbabwe 1829           0
## 18250                      Afghanistan 1830           0
## 18251                           Africa 1830           0
## 18252                          Albania 1830           0
## 18253                          Algeria 1830           0
## 18254                 Americas (other) 1830      168544
## 18255                          Andorra 1830           0
## 18256                           Angola 1830           0
## 18257                         Anguilla 1830           0
## 18258              Antarctic Fisheries 1830           0
## 18259              Antigua and Barbuda 1830           0
## 18260                        Argentina 1830           0
## 18261                          Armenia 1830           0
## 18262                            Aruba 1830           0
## 18263         Asia and Pacific (other) 1830           0
## 18264                        Australia 1830           0
## 18265                          Austria 1830     4994032
## 18266                       Azerbaijan 1830           0
## 18267                          Bahamas 1830           0
## 18268                          Bahrain 1830           0
## 18269                       Bangladesh 1830           0
## 18270                         Barbados 1830           0
## 18271                          Belarus 1830           0
## 18272                          Belgium 1830    12593168
## 18273                           Belize 1830           0
## 18274                            Benin 1830           0
## 18275                          Bermuda 1830           0
## 18276                           Bhutan 1830           0
## 18277                          Bolivia 1830           0
## 18278  Bonaire Sint Eustatius and Saba 1830           0
## 18279           Bosnia and Herzegovina 1830           0
## 18280                         Botswana 1830           0
## 18281                           Brazil 1830           0
## 18282           British Virgin Islands 1830           0
## 18283                           Brunei 1830           0
## 18284                         Bulgaria 1830           0
## 18285                     Burkina Faso 1830           0
## 18286                          Burundi 1830           0
## 18287                         Cambodia 1830           0
## 18288                         Cameroon 1830           0
## 18289                           Canada 1830      168544
## 18290                       Cape Verde 1830           0
## 18291                   Cayman Islands 1830           0
## 18292         Central African Republic 1830           0
## 18293                             Chad 1830           0
## 18294                            Chile 1830           0
## 18295                            China 1830           0
## 18296                 Christmas Island 1830           0
## 18297                         Colombia 1830           0
## 18298                          Comoros 1830           0
## 18299                            Congo 1830           0
## 18300                     Cook Islands 1830           0
## 18301                       Costa Rica 1830           0
## 18302                    Cote d'Ivoire 1830           0
## 18303                          Croatia 1830           0
## 18304                             Cuba 1830           0
## 18305                          Curacao 1830           0
## 18306                           Cyprus 1830           0
## 18307                   Czech Republic 1830           0
## 18308                   Czechoslovakia 1830           0
## 18309     Democratic Republic of Congo 1830           0
## 18310                          Denmark 1830           0
## 18311                         Djibouti 1830           0
## 18312                         Dominica 1830           0
## 18313               Dominican Republic 1830           0
## 18314                            EU-28 1830  2177379632
## 18315                          Ecuador 1830           0
## 18316                            Egypt 1830           0
## 18317                      El Salvador 1830           0
## 18318                Equatorial Guinea 1830           0
## 18319                          Eritrea 1830           0
## 18320                          Estonia 1830           0
## 18321                         Ethiopia 1830           0
## 18322                   Europe (other) 1830       43968
## 18323                   Faeroe Islands 1830           0
## 18324                 Falkland Islands 1830           0
## 18325                             Fiji 1830           0
## 18326                          Finland 1830           0
## 18327                           France 1830    75980368
## 18328                    French Guiana 1830           0
## 18329                 French Polynesia 1830           0
## 18330                            Gabon 1830           0
## 18331                           Gambia 1830           0
## 18332                          Georgia 1830           0
## 18333                          Germany 1830    76082960
## 18334                            Ghana 1830           0
## 18335                        Gibraltar 1830           0
## 18336                           Greece 1830           0
## 18337                        Greenland 1830           0
## 18338                          Grenada 1830           0
## 18339                       Guadeloupe 1830           0
## 18340                        Guatemala 1830           0
## 18341                           Guinea 1830           0
## 18342                    Guinea-Bissau 1830           0
## 18343                           Guyana 1830           0
## 18344                            Haiti 1830           0
## 18345                         Honduras 1830           0
## 18346                        Hong Kong 1830           0
## 18347                          Hungary 1830      113584
## 18348                          Iceland 1830           0
## 18349                            India 1830           0
## 18350                        Indonesia 1830           0
## 18351                             Iran 1830           0
## 18352                             Iraq 1830           0
## 18353                          Ireland 1830           0
## 18354                           Israel 1830           0
## 18355                            Italy 1830           0
## 18356                          Jamaica 1830           0
## 18357                            Japan 1830           0
## 18358                           Jordan 1830           0
## 18359                       Kazakhstan 1830           0
## 18360                            Kenya 1830           0
## 18361                         Kiribati 1830           0
## 18362                           Kuwait 1830           0
## 18363                       Kyrgysztan 1830           0
## 18364                       Kyrgyzstan 1830           0
## 18365                             Laos 1830           0
## 18366                           Latvia 1830           0
## 18367                          Lebanon 1830           0
## 18368                          Lesotho 1830           0
## 18369                          Liberia 1830           0
## 18370                            Libya 1830           0
## 18371                    Liechtenstein 1830           0
## 18372                        Lithuania 1830           0
## 18373                       Luxembourg 1830           0
## 18374                            Macao 1830           0
## 18375                        Macedonia 1830           0
## 18376                       Madagascar 1830           0
## 18377                           Malawi 1830           0
## 18378                         Malaysia 1830           0
## 18379                         Maldives 1830           0
## 18380                             Mali 1830           0
## 18381                            Malta 1830           0
## 18382                 Marshall Islands 1830           0
## 18383                       Martinique 1830           0
## 18384                       Mauritania 1830           0
## 18385                        Mauritius 1830           0
## 18386                           Mexico 1830           0
## 18387             Micronesia (country) 1830           0
## 18388                      Middle East 1830           0
## 18389                          Moldova 1830           0
## 18390                         Mongolia 1830           0
## 18391                       Montenegro 1830           0
## 18392                       Montserrat 1830           0
## 18393                          Morocco 1830           0
## 18394                       Mozambique 1830           0
## 18395                          Myanmar 1830           0
## 18396                          Namibia 1830           0
## 18397                            Nauru 1830           0
## 18398                            Nepal 1830           0
## 18399                      Netherlands 1830           0
## 18400                    New Caledonia 1830           0
## 18401                      New Zealand 1830           0
## 18402                        Nicaragua 1830           0
## 18403                            Niger 1830           0
## 18404                          Nigeria 1830           0
## 18405                             Niue 1830           0
## 18406                      North Korea 1830           0
## 18407                           Norway 1830       18320
## 18408                             Oman 1830           0
## 18409                         Pakistan 1830           0
## 18410                            Palau 1830           0
## 18411                        Palestine 1830           0
## 18412                           Panama 1830           0
## 18413                 Papua New Guinea 1830           0
## 18414                         Paraguay 1830           0
## 18415                             Peru 1830           0
## 18416                      Philippines 1830           0
## 18417                           Poland 1830    22951296
## 18418                         Portugal 1830           0
## 18419                            Qatar 1830           0
## 18420                          Reunion 1830           0
## 18421                          Romania 1830           0
## 18422                           Russia 1830           0
## 18423                           Rwanda 1830           0
## 18424                     Saint Helena 1830           0
## 18425            Saint Kitts and Nevis 1830           0
## 18426                      Saint Lucia 1830           0
## 18427        Saint Pierre and Miquelon 1830           0
## 18428 Saint Vincent and the Grenadines 1830           0
## 18429                            Samoa 1830           0
## 18430            Sao Tome and Principe 1830           0
## 18431                     Saudi Arabia 1830           0
## 18432                          Senegal 1830           0
## 18433                           Serbia 1830           0
## 18434                       Seychelles 1830           0
## 18435                     Sierra Leone 1830           0
## 18436                        Singapore 1830           0
## 18437        Sint Maarten (Dutch part) 1830           0
## 18438                         Slovakia 1830           0
## 18439                         Slovenia 1830           0
## 18440                  Solomon Islands 1830           0
## 18441                          Somalia 1830           0
## 18442                     South Africa 1830           0
## 18443                      South Korea 1830           0
## 18444                      South Sudan 1830           0
## 18445                            Spain 1830        3664
## 18446                        Sri Lanka 1830           0
## 18447                            Sudan 1830           0
## 18448                         Suriname 1830           0
## 18449                        Swaziland 1830           0
## 18450                           Sweden 1830           0
## 18451                      Switzerland 1830           0
## 18452                            Syria 1830           0
## 18453                           Taiwan 1830           0
## 18454                       Tajikistan 1830           0
## 18455                         Tanzania 1830           0
## 18456                         Thailand 1830           0
## 18457                            Timor 1830           0
## 18458                             Togo 1830           0
## 18459                            Tonga 1830           0
## 18460              Trinidad and Tobago 1830           0
## 18461                          Tunisia 1830           0
## 18462                           Turkey 1830           0
## 18463                     Turkmenistan 1830           0
## 18464         Turks and Caicos Islands 1830           0
## 18465                           Tuvalu 1830           0
## 18466                           Uganda 1830           0
## 18467                          Ukraine 1830           0
## 18468             United Arab Emirates 1830           0
## 18469                   United Kingdom 1830  1984660560
## 18470                    United States 1830    23017248
## 18471                          Uruguay 1830           0
## 18472                       Uzbekistan 1830           0
## 18473                          Vanuatu 1830           0
## 18474                        Venezuela 1830           0
## 18475                          Vietnam 1830           0
## 18476        Wallis and Futuna Islands 1830           0
## 18477                            World 1830  2200602064
## 18478                            Yemen 1830           0
## 18479                           Zambia 1830           0
## 18480                         Zimbabwe 1830           0
## 18481                      Afghanistan 1831           0
## 18482                           Africa 1831           0
## 18483                          Albania 1831           0
## 18484                          Algeria 1831           0
## 18485                 Americas (other) 1831      172208
## 18486                          Andorra 1831           0
## 18487                           Angola 1831           0
## 18488                         Anguilla 1831           0
## 18489              Antarctic Fisheries 1831           0
## 18490              Antigua and Barbuda 1831           0
## 18491                        Argentina 1831           0
## 18492                          Armenia 1831           0
## 18493                            Aruba 1831           0
## 18494         Asia and Pacific (other) 1831           0
## 18495                        Australia 1831           0
## 18496                          Austria 1831     5474016
## 18497                       Azerbaijan 1831           0
## 18498                          Bahamas 1831           0
## 18499                          Bahrain 1831           0
## 18500                       Bangladesh 1831           0
## 18501                         Barbados 1831           0
## 18502                          Belarus 1831           0
## 18503                          Belgium 1831    17055920
## 18504                           Belize 1831           0
## 18505                            Benin 1831           0
## 18506                          Bermuda 1831           0
## 18507                           Bhutan 1831           0
## 18508                          Bolivia 1831           0
## 18509  Bonaire Sint Eustatius and Saba 1831           0
## 18510           Bosnia and Herzegovina 1831           0
## 18511                         Botswana 1831           0
## 18512                           Brazil 1831           0
## 18513           British Virgin Islands 1831           0
## 18514                           Brunei 1831           0
## 18515                         Bulgaria 1831           0
## 18516                     Burkina Faso 1831           0
## 18517                          Burundi 1831           0
## 18518                         Cambodia 1831           0
## 18519                         Cameroon 1831           0
## 18520                           Canada 1831      172208
## 18521                       Cape Verde 1831           0
## 18522                   Cayman Islands 1831           0
## 18523         Central African Republic 1831           0
## 18524                             Chad 1831           0
## 18525                            Chile 1831           0
## 18526                            China 1831           0
## 18527                 Christmas Island 1831           0
## 18528                         Colombia 1831           0
## 18529                          Comoros 1831           0
## 18530                            Congo 1831           0
## 18531                     Cook Islands 1831           0
## 18532                       Costa Rica 1831           0
## 18533                    Cote d'Ivoire 1831           0
## 18534                          Croatia 1831           0
## 18535                             Cuba 1831           0
## 18536                          Curacao 1831           0
## 18537                           Cyprus 1831           0
## 18538                   Czech Republic 1831           0
## 18539                   Czechoslovakia 1831           0
## 18540     Democratic Republic of Congo 1831           0
## 18541                          Denmark 1831           0
## 18542                         Djibouti 1831           0
## 18543                         Dominica 1831           0
## 18544               Dominican Republic 1831           0
## 18545                            EU-28 1831  2259614448
## 18546                          Ecuador 1831           0
## 18547                            Egypt 1831           0
## 18548                      El Salvador 1831           0
## 18549                Equatorial Guinea 1831           0
## 18550                          Eritrea 1831           0
## 18551                          Estonia 1831           0
## 18552                         Ethiopia 1831           0
## 18553                   Europe (other) 1831       69616
## 18554                   Faeroe Islands 1831           0
## 18555                 Falkland Islands 1831           0
## 18556                             Fiji 1831           0
## 18557                          Finland 1831           0
## 18558                           France 1831    82033296
## 18559                    French Guiana 1831           0
## 18560                 French Polynesia 1831           0
## 18561                            Gabon 1831           0
## 18562                           Gambia 1831           0
## 18563                          Georgia 1831           0
## 18564                          Germany 1831    80673952
## 18565                            Ghana 1831           0
## 18566                        Gibraltar 1831           0
## 18567                           Greece 1831           0
## 18568                        Greenland 1831           0
## 18569                          Grenada 1831           0
## 18570                       Guadeloupe 1831           0
## 18571                        Guatemala 1831           0
## 18572                           Guinea 1831           0
## 18573                    Guinea-Bissau 1831           0
## 18574                           Guyana 1831           0
## 18575                            Haiti 1831           0
## 18576                         Honduras 1831           0
## 18577                        Hong Kong 1831           0
## 18578                          Hungary 1831      183200
## 18579                          Iceland 1831           0
## 18580                            India 1831           0
## 18581                        Indonesia 1831           0
## 18582                             Iran 1831           0
## 18583                             Iraq 1831           0
## 18584                          Ireland 1831           0
## 18585                           Israel 1831           0
## 18586                            Italy 1831           0
## 18587                          Jamaica 1831           0
## 18588                            Japan 1831           0
## 18589                           Jordan 1831           0
## 18590                       Kazakhstan 1831           0
## 18591                            Kenya 1831           0
## 18592                         Kiribati 1831           0
## 18593                           Kuwait 1831           0
## 18594                       Kyrgysztan 1831           0
## 18595                       Kyrgyzstan 1831           0
## 18596                             Laos 1831           0
## 18597                           Latvia 1831           0
## 18598                          Lebanon 1831           0
## 18599                          Lesotho 1831           0
## 18600                          Liberia 1831           0
## 18601                            Libya 1831           0
## 18602                    Liechtenstein 1831           0
## 18603                        Lithuania 1831           0
## 18604                       Luxembourg 1831           0
## 18605                            Macao 1831           0
## 18606                        Macedonia 1831           0
## 18607                       Madagascar 1831           0
## 18608                           Malawi 1831           0
## 18609                         Malaysia 1831           0
## 18610                         Maldives 1831           0
## 18611                             Mali 1831           0
## 18612                            Malta 1831           0
## 18613                 Marshall Islands 1831           0
## 18614                       Martinique 1831           0
## 18615                       Mauritania 1831           0
## 18616                        Mauritius 1831           0
## 18617                           Mexico 1831           0
## 18618             Micronesia (country) 1831           0
## 18619                      Middle East 1831           0
## 18620                          Moldova 1831           0
## 18621                         Mongolia 1831           0
## 18622                       Montenegro 1831           0
## 18623                       Montserrat 1831           0
## 18624                          Morocco 1831           0
## 18625                       Mozambique 1831           0
## 18626                          Myanmar 1831           0
## 18627                          Namibia 1831           0
## 18628                            Nauru 1831           0
## 18629                            Nepal 1831           0
## 18630                      Netherlands 1831           0
## 18631                    New Caledonia 1831           0
## 18632                      New Zealand 1831           0
## 18633                        Nicaragua 1831           0
## 18634                            Niger 1831           0
## 18635                          Nigeria 1831           0
## 18636                             Niue 1831           0
## 18637                      North Korea 1831           0
## 18638                           Norway 1831       21984
## 18639                             Oman 1831           0
## 18640                         Pakistan 1831           0
## 18641                            Palau 1831           0
## 18642                        Palestine 1831           0
## 18643                           Panama 1831           0
## 18644                 Papua New Guinea 1831           0
## 18645                         Paraguay 1831           0
## 18646                             Peru 1831           0
## 18647                      Philippines 1831           0
## 18648                           Poland 1831    23761040
## 18649                         Portugal 1831           0
## 18650                            Qatar 1831           0
## 18651                          Reunion 1831           0
## 18652                          Romania 1831           0
## 18653                           Russia 1831           0
## 18654                           Rwanda 1831           0
## 18655                     Saint Helena 1831           0
## 18656            Saint Kitts and Nevis 1831           0
## 18657                      Saint Lucia 1831           0
## 18658        Saint Pierre and Miquelon 1831           0
## 18659 Saint Vincent and the Grenadines 1831           0
## 18660                            Samoa 1831           0
## 18661            Sao Tome and Principe 1831           0
## 18662                     Saudi Arabia 1831           0
## 18663                          Senegal 1831           0
## 18664                           Serbia 1831           0
## 18665                       Seychelles 1831           0
## 18666                     Sierra Leone 1831           0
## 18667                        Singapore 1831           0
## 18668        Sint Maarten (Dutch part) 1831           0
## 18669                         Slovakia 1831           0
## 18670                         Slovenia 1831           0
## 18671                  Solomon Islands 1831           0
## 18672                          Somalia 1831           0
## 18673                     South Africa 1831           0
## 18674                      South Korea 1831           0
## 18675                      South Sudan 1831           0
## 18676                            Spain 1831        7328
## 18677                        Sri Lanka 1831           0
## 18678                            Sudan 1831           0
## 18679                         Suriname 1831           0
## 18680                        Swaziland 1831           0
## 18681                           Sweden 1831           0
## 18682                      Switzerland 1831           0
## 18683                            Syria 1831           0
## 18684                           Taiwan 1831           0
## 18685                       Tajikistan 1831           0
## 18686                         Tanzania 1831           0
## 18687                         Thailand 1831           0
## 18688                            Timor 1831           0
## 18689                             Togo 1831           0
## 18690                            Tonga 1831           0
## 18691              Trinidad and Tobago 1831           0
## 18692                          Tunisia 1831           0
## 18693                           Turkey 1831           0
## 18694                     Turkmenistan 1831           0
## 18695         Turks and Caicos Islands 1831           0
## 18696                           Tuvalu 1831           0
## 18697                           Uganda 1831           0
## 18698                          Ukraine 1831           0
## 18699             United Arab Emirates 1831           0
## 18700                   United Kingdom 1831  2050425696
## 18701                    United States 1831    25281600
## 18702                          Uruguay 1831           0
## 18703                       Uzbekistan 1831           0
## 18704                          Vanuatu 1831           0
## 18705                        Venezuela 1831           0
## 18706                          Vietnam 1831           0
## 18707        Wallis and Futuna Islands 1831           0
## 18708                            World 1831  2285130544
## 18709                            Yemen 1831           0
## 18710                           Zambia 1831           0
## 18711                         Zimbabwe 1831           0
## 18712                      Afghanistan 1832           0
## 18713                           Africa 1832           0
## 18714                          Albania 1832           0
## 18715                          Algeria 1832           0
## 18716                 Americas (other) 1832      175872
## 18717                          Andorra 1832           0
## 18718                           Angola 1832           0
## 18719                         Anguilla 1832           0
## 18720              Antarctic Fisheries 1832           0
## 18721              Antigua and Barbuda 1832           0
## 18722                        Argentina 1832           0
## 18723                          Armenia 1832           0
## 18724                            Aruba 1832           0
## 18725         Asia and Pacific (other) 1832           0
## 18726                        Australia 1832           0
## 18727                          Austria 1832     5986976
## 18728                       Azerbaijan 1832           0
## 18729                          Bahamas 1832           0
## 18730                          Bahrain 1832           0
## 18731                       Bangladesh 1832           0
## 18732                         Barbados 1832           0
## 18733                          Belarus 1832           0
## 18734                          Belgium 1832    21771488
## 18735                           Belize 1832           0
## 18736                            Benin 1832           0
## 18737                          Bermuda 1832           0
## 18738                           Bhutan 1832           0
## 18739                          Bolivia 1832           0
## 18740  Bonaire Sint Eustatius and Saba 1832           0
## 18741           Bosnia and Herzegovina 1832           0
## 18742                         Botswana 1832           0
## 18743                           Brazil 1832           0
## 18744           British Virgin Islands 1832           0
## 18745                           Brunei 1832           0
## 18746                         Bulgaria 1832           0
## 18747                     Burkina Faso 1832           0
## 18748                          Burundi 1832           0
## 18749                         Cambodia 1832           0
## 18750                         Cameroon 1832           0
## 18751                           Canada 1832      175872
## 18752                       Cape Verde 1832           0
## 18753                   Cayman Islands 1832           0
## 18754         Central African Republic 1832           0
## 18755                             Chad 1832           0
## 18756                            Chile 1832           0
## 18757                            China 1832           0
## 18758                 Christmas Island 1832           0
## 18759                         Colombia 1832           0
## 18760                          Comoros 1832           0
## 18761                            Congo 1832           0
## 18762                     Cook Islands 1832           0
## 18763                       Costa Rica 1832           0
## 18764                    Cote d'Ivoire 1832           0
## 18765                          Croatia 1832           0
## 18766                             Cuba 1832           0
## 18767                          Curacao 1832           0
## 18768                           Cyprus 1832           0
## 18769                   Czech Republic 1832           0
## 18770                   Czechoslovakia 1832           0
## 18771     Democratic Republic of Congo 1832           0
## 18772                          Denmark 1832           0
## 18773                         Djibouti 1832           0
## 18774                         Dominica 1832           0
## 18775               Dominican Republic 1832           0
## 18776                            EU-28 1832  2341684384
## 18777                          Ecuador 1832           0
## 18778                            Egypt 1832           0
## 18779                      El Salvador 1832           0
## 18780                Equatorial Guinea 1832           0
## 18781                          Eritrea 1832           0
## 18782                          Estonia 1832           0
## 18783                         Ethiopia 1832           0
## 18784                   Europe (other) 1832       84272
## 18785                   Faeroe Islands 1832           0
## 18786                 Falkland Islands 1832           0
## 18787                             Fiji 1832           0
## 18788                          Finland 1832           0
## 18789                           France 1832    88712768
## 18790                    French Guiana 1832           0
## 18791                 French Polynesia 1832           0
## 18792                            Gabon 1832           0
## 18793                           Gambia 1832           0
## 18794                          Georgia 1832           0
## 18795                          Germany 1832    84121776
## 18796                            Ghana 1832           0
## 18797                        Gibraltar 1832           0
## 18798                           Greece 1832           0
## 18799                        Greenland 1832           0
## 18800                          Grenada 1832           0
## 18801                       Guadeloupe 1832           0
## 18802                        Guatemala 1832           0
## 18803                           Guinea 1832           0
## 18804                    Guinea-Bissau 1832           0
## 18805                           Guyana 1832           0
## 18806                            Haiti 1832           0
## 18807                         Honduras 1832           0
## 18808                        Hong Kong 1832           0
## 18809                          Hungary 1832      271136
## 18810                          Iceland 1832           0
## 18811                            India 1832           0
## 18812                        Indonesia 1832           0
## 18813                             Iran 1832           0
## 18814                             Iraq 1832           0
## 18815                          Ireland 1832           0
## 18816                           Israel 1832           0
## 18817                            Italy 1832           0
## 18818                          Jamaica 1832           0
## 18819                            Japan 1832           0
## 18820                           Jordan 1832           0
## 18821                       Kazakhstan 1832           0
## 18822                            Kenya 1832           0
## 18823                         Kiribati 1832           0
## 18824                           Kuwait 1832           0
## 18825                       Kyrgysztan 1832           0
## 18826                       Kyrgyzstan 1832           0
## 18827                             Laos 1832           0
## 18828                           Latvia 1832           0
## 18829                          Lebanon 1832           0
## 18830                          Lesotho 1832           0
## 18831                          Liberia 1832           0
## 18832                            Libya 1832           0
## 18833                    Liechtenstein 1832           0
## 18834                        Lithuania 1832           0
## 18835                       Luxembourg 1832           0
## 18836                            Macao 1832           0
## 18837                        Macedonia 1832           0
## 18838                       Madagascar 1832           0
## 18839                           Malawi 1832           0
## 18840                         Malaysia 1832           0
## 18841                         Maldives 1832           0
## 18842                             Mali 1832           0
## 18843                            Malta 1832           0
## 18844                 Marshall Islands 1832           0
## 18845                       Martinique 1832           0
## 18846                       Mauritania 1832           0
## 18847                        Mauritius 1832           0
## 18848                           Mexico 1832           0
## 18849             Micronesia (country) 1832           0
## 18850                      Middle East 1832           0
## 18851                          Moldova 1832           0
## 18852                         Mongolia 1832           0
## 18853                       Montenegro 1832           0
## 18854                       Montserrat 1832           0
## 18855                          Morocco 1832           0
## 18856                       Mozambique 1832           0
## 18857                          Myanmar 1832           0
## 18858                          Namibia 1832           0
## 18859                            Nauru 1832           0
## 18860                            Nepal 1832           0
## 18861                      Netherlands 1832           0
## 18862                    New Caledonia 1832           0
## 18863                      New Zealand 1832           0
## 18864                        Nicaragua 1832           0
## 18865                            Niger 1832           0
## 18866                          Nigeria 1832           0
## 18867                             Niue 1832           0
## 18868                      North Korea 1832           0
## 18869                           Norway 1832       21984
## 18870                             Oman 1832           0
## 18871                         Pakistan 1832           0
## 18872                            Palau 1832           0
## 18873                        Palestine 1832           0
## 18874                           Panama 1832           0
## 18875                 Papua New Guinea 1832           0
## 18876                         Paraguay 1832           0
## 18877                             Peru 1832           0
## 18878                      Philippines 1832           0
## 18879                           Poland 1832    24794288
## 18880                         Portugal 1832           0
## 18881                            Qatar 1832           0
## 18882                          Reunion 1832           0
## 18883                          Romania 1832           0
## 18884                           Russia 1832           0
## 18885                           Rwanda 1832           0
## 18886                     Saint Helena 1832           0
## 18887            Saint Kitts and Nevis 1832           0
## 18888                      Saint Lucia 1832           0
## 18889        Saint Pierre and Miquelon 1832           0
## 18890 Saint Vincent and the Grenadines 1832           0
## 18891                            Samoa 1832           0
## 18892            Sao Tome and Principe 1832           0
## 18893                     Saudi Arabia 1832           0
## 18894                          Senegal 1832           0
## 18895                           Serbia 1832           0
## 18896                       Seychelles 1832           0
## 18897                     Sierra Leone 1832           0
## 18898                        Singapore 1832           0
## 18899        Sint Maarten (Dutch part) 1832           0
## 18900                         Slovakia 1832           0
## 18901                         Slovenia 1832           0
## 18902                  Solomon Islands 1832           0
## 18903                          Somalia 1832           0
## 18904                     South Africa 1832           0
## 18905                      South Korea 1832           0
## 18906                      South Sudan 1832           0
## 18907                            Spain 1832       10992
## 18908                        Sri Lanka 1832           0
## 18909                            Sudan 1832           0
## 18910                         Suriname 1832           0
## 18911                        Swaziland 1832           0
## 18912                           Sweden 1832           0
## 18913                      Switzerland 1832           0
## 18914                            Syria 1832           0
## 18915                           Taiwan 1832           0
## 18916                       Tajikistan 1832           0
## 18917                         Tanzania 1832           0
## 18918                         Thailand 1832           0
## 18919                            Timor 1832           0
## 18920                             Togo 1832           0
## 18921                            Tonga 1832           0
## 18922              Trinidad and Tobago 1832           0
## 18923                          Tunisia 1832           0
## 18924                           Turkey 1832           0
## 18925                     Turkmenistan 1832           0
## 18926         Turks and Caicos Islands 1832           0
## 18927                           Tuvalu 1832           0
## 18928                           Uganda 1832           0
## 18929                          Ukraine 1832           0
## 18930             United Arab Emirates 1832           0
## 18931                   United Kingdom 1832  2116014960
## 18932                    United States 1832    28304400
## 18933                          Uruguay 1832           0
## 18934                       Uzbekistan 1832           0
## 18935                          Vanuatu 1832           0
## 18936                        Venezuela 1832           0
## 18937                          Vietnam 1832           0
## 18938        Wallis and Futuna Islands 1832           0
## 18939                            World 1832  2370241600
## 18940                            Yemen 1832           0
## 18941                           Zambia 1832           0
## 18942                         Zimbabwe 1832           0
## 18943                      Afghanistan 1833           0
## 18944                           Africa 1833           0
## 18945                          Albania 1833           0
## 18946                          Algeria 1833           0
## 18947                 Americas (other) 1833      179536
## 18948                          Andorra 1833           0
## 18949                           Angola 1833           0
## 18950                         Anguilla 1833           0
## 18951              Antarctic Fisheries 1833           0
## 18952              Antigua and Barbuda 1833           0
## 18953                        Argentina 1833           0
## 18954                          Armenia 1833           0
## 18955                            Aruba 1833           0
## 18956         Asia and Pacific (other) 1833           0
## 18957                        Australia 1833           0
## 18958                          Austria 1833     6415664
## 18959                       Azerbaijan 1833           0
## 18960                          Bahamas 1833           0
## 18961                          Bahrain 1833           0
## 18962                       Bangladesh 1833           0
## 18963                         Barbados 1833           0
## 18964                          Belarus 1833           0
## 18965                          Belgium 1833    26336832
## 18966                           Belize 1833           0
## 18967                            Benin 1833           0
## 18968                          Bermuda 1833           0
## 18969                           Bhutan 1833           0
## 18970                          Bolivia 1833           0
## 18971  Bonaire Sint Eustatius and Saba 1833           0
## 18972           Bosnia and Herzegovina 1833           0
## 18973                         Botswana 1833           0
## 18974                           Brazil 1833           0
## 18975           British Virgin Islands 1833           0
## 18976                           Brunei 1833           0
## 18977                         Bulgaria 1833           0
## 18978                     Burkina Faso 1833           0
## 18979                          Burundi 1833           0
## 18980                         Cambodia 1833           0
## 18981                         Cameroon 1833           0
## 18982                           Canada 1833      179536
## 18983                       Cape Verde 1833           0
## 18984                   Cayman Islands 1833           0
## 18985         Central African Republic 1833           0
## 18986                             Chad 1833           0
## 18987                            Chile 1833           0
## 18988                            China 1833           0
## 18989                 Christmas Island 1833           0
## 18990                         Colombia 1833           0
## 18991                          Comoros 1833           0
## 18992                            Congo 1833           0
## 18993                     Cook Islands 1833           0
## 18994                       Costa Rica 1833           0
## 18995                    Cote d'Ivoire 1833           0
## 18996                          Croatia 1833           0
## 18997                             Cuba 1833           0
## 18998                          Curacao 1833           0
## 18999                           Cyprus 1833           0
## 19000                   Czech Republic 1833           0
## 19001                   Czechoslovakia 1833           0
## 19002     Democratic Republic of Congo 1833           0
## 19003                          Denmark 1833           0
## 19004                         Djibouti 1833           0
## 19005                         Dominica 1833           0
## 19006               Dominican Republic 1833           0
## 19007                            EU-28 1833  2424941456
## 19008                          Ecuador 1833           0
## 19009                            Egypt 1833           0
## 19010                      El Salvador 1833           0
## 19011                Equatorial Guinea 1833           0
## 19012                          Eritrea 1833           0
## 19013                          Estonia 1833           0
## 19014                         Ethiopia 1833           0
## 19015                   Europe (other) 1833      102592
## 19016                   Faeroe Islands 1833           0
## 19017                 Falkland Islands 1833           0
## 19018                             Fiji 1833           0
## 19019                          Finland 1833           0
## 19020                           France 1833    95960160
## 19021                    French Guiana 1833           0
## 19022                 French Polynesia 1833           0
## 19023                            Gabon 1833           0
## 19024                           Gambia 1833           0
## 19025                          Georgia 1833           0
## 19026                          Germany 1833    88500256
## 19027                            Ghana 1833           0
## 19028                        Gibraltar 1833           0
## 19029                           Greece 1833           0
## 19030                        Greenland 1833           0
## 19031                          Grenada 1833           0
## 19032                       Guadeloupe 1833           0
## 19033                        Guatemala 1833           0
## 19034                           Guinea 1833           0
## 19035                    Guinea-Bissau 1833           0
## 19036                           Guyana 1833           0
## 19037                            Haiti 1833           0
## 19038                         Honduras 1833           0
## 19039                        Hong Kong 1833           0
## 19040                          Hungary 1833      337088
## 19041                          Iceland 1833           0
## 19042                            India 1833           0
## 19043                        Indonesia 1833           0
## 19044                             Iran 1833           0
## 19045                             Iraq 1833           0
## 19046                          Ireland 1833           0
## 19047                           Israel 1833           0
## 19048                            Italy 1833           0
## 19049                          Jamaica 1833           0
## 19050                            Japan 1833           0
## 19051                           Jordan 1833           0
## 19052                       Kazakhstan 1833           0
## 19053                            Kenya 1833           0
## 19054                         Kiribati 1833           0
## 19055                           Kuwait 1833           0
## 19056                       Kyrgysztan 1833           0
## 19057                       Kyrgyzstan 1833           0
## 19058                             Laos 1833           0
## 19059                           Latvia 1833           0
## 19060                          Lebanon 1833           0
## 19061                          Lesotho 1833           0
## 19062                          Liberia 1833           0
## 19063                            Libya 1833           0
## 19064                    Liechtenstein 1833           0
## 19065                        Lithuania 1833           0
## 19066                       Luxembourg 1833           0
## 19067                            Macao 1833           0
## 19068                        Macedonia 1833           0
## 19069                       Madagascar 1833           0
## 19070                           Malawi 1833           0
## 19071                         Malaysia 1833           0
## 19072                         Maldives 1833           0
## 19073                             Mali 1833           0
## 19074                            Malta 1833           0
## 19075                 Marshall Islands 1833           0
## 19076                       Martinique 1833           0
## 19077                       Mauritania 1833           0
## 19078                        Mauritius 1833           0
## 19079                           Mexico 1833           0
## 19080             Micronesia (country) 1833           0
## 19081                      Middle East 1833           0
## 19082                          Moldova 1833           0
## 19083                         Mongolia 1833           0
## 19084                       Montenegro 1833           0
## 19085                       Montserrat 1833           0
## 19086                          Morocco 1833           0
## 19087                       Mozambique 1833           0
## 19088                          Myanmar 1833           0
## 19089                          Namibia 1833           0
## 19090                            Nauru 1833           0
## 19091                            Nepal 1833           0
## 19092                      Netherlands 1833           0
## 19093                    New Caledonia 1833           0
## 19094                      New Zealand 1833           0
## 19095                        Nicaragua 1833           0
## 19096                            Niger 1833           0
## 19097                          Nigeria 1833           0
## 19098                             Niue 1833           0
## 19099                      North Korea 1833           0
## 19100                           Norway 1833       21984
## 19101                             Oman 1833           0
## 19102                         Pakistan 1833           0
## 19103                            Palau 1833           0
## 19104                        Palestine 1833           0
## 19105                           Panama 1833           0
## 19106                 Papua New Guinea 1833           0
## 19107                         Paraguay 1833           0
## 19108                             Peru 1833           0
## 19109                      Philippines 1833           0
## 19110                           Poland 1833    25867840
## 19111                         Portugal 1833           0
## 19112                            Qatar 1833           0
## 19113                          Reunion 1833           0
## 19114                          Romania 1833           0
## 19115                           Russia 1833           0
## 19116                           Rwanda 1833           0
## 19117                     Saint Helena 1833           0
## 19118            Saint Kitts and Nevis 1833           0
## 19119                      Saint Lucia 1833           0
## 19120        Saint Pierre and Miquelon 1833           0
## 19121 Saint Vincent and the Grenadines 1833           0
## 19122                            Samoa 1833           0
## 19123            Sao Tome and Principe 1833           0
## 19124                     Saudi Arabia 1833           0
## 19125                          Senegal 1833           0
## 19126                           Serbia 1833           0
## 19127                       Seychelles 1833           0
## 19128                     Sierra Leone 1833           0
## 19129                        Singapore 1833           0
## 19130        Sint Maarten (Dutch part) 1833           0
## 19131                         Slovakia 1833           0
## 19132                         Slovenia 1833           0
## 19133                  Solomon Islands 1833           0
## 19134                          Somalia 1833           0
## 19135                     South Africa 1833           0
## 19136                      South Korea 1833           0
## 19137                      South Sudan 1833           0
## 19138                            Spain 1833       14656
## 19139                        Sri Lanka 1833           0
## 19140                            Sudan 1833           0
## 19141                         Suriname 1833           0
## 19142                        Swaziland 1833           0
## 19143                           Sweden 1833           0
## 19144                      Switzerland 1833           0
## 19145                            Syria 1833           0
## 19146                           Taiwan 1833           0
## 19147                       Tajikistan 1833           0
## 19148                         Tanzania 1833           0
## 19149                         Thailand 1833           0
## 19150                            Timor 1833           0
## 19151                             Togo 1833           0
## 19152                            Tonga 1833           0
## 19153              Trinidad and Tobago 1833           0
## 19154                          Tunisia 1833           0
## 19155                           Turkey 1833           0
## 19156                     Turkmenistan 1833           0
## 19157         Turks and Caicos Islands 1833           0
## 19158                           Tuvalu 1833           0
## 19159                           Uganda 1833           0
## 19160                          Ukraine 1833           0
## 19161             United Arab Emirates 1833           0
## 19162                   United Kingdom 1833  2181508960
## 19163                    United States 1833    31832832
## 19164                          Uruguay 1833           0
## 19165                       Uzbekistan 1833           0
## 19166                          Vanuatu 1833           0
## 19167                        Venezuela 1833           0
## 19168                          Vietnam 1833           0
## 19169        Wallis and Futuna Islands 1833           0
## 19170                            World 1833  2457049088
## 19171                            Yemen 1833           0
## 19172                           Zambia 1833           0
## 19173                         Zimbabwe 1833           0
## 19174                      Afghanistan 1834           0
## 19175                           Africa 1834           0
## 19176                          Albania 1834           0
## 19177                          Algeria 1834           0
## 19178                 Americas (other) 1834      183200
## 19179                          Andorra 1834           0
## 19180                           Angola 1834           0
## 19181                         Anguilla 1834           0
## 19182              Antarctic Fisheries 1834           0
## 19183              Antigua and Barbuda 1834           0
## 19184                        Argentina 1834           0
## 19185                          Armenia 1834           0
## 19186                            Aruba 1834           0
## 19187         Asia and Pacific (other) 1834           0
## 19188                        Australia 1834           0
## 19189                          Austria 1834     7001904
## 19190                       Azerbaijan 1834           0
## 19191                          Bahamas 1834           0
## 19192                          Bahrain 1834           0
## 19193                       Bangladesh 1834           0
## 19194                         Barbados 1834           0
## 19195                          Belarus 1834           0
## 19196                          Belgium 1834    30744624
## 19197                           Belize 1834           0
## 19198                            Benin 1834           0
## 19199                          Bermuda 1834           0
## 19200                           Bhutan 1834           0
## 19201                          Bolivia 1834           0
## 19202  Bonaire Sint Eustatius and Saba 1834           0
## 19203           Bosnia and Herzegovina 1834           0
## 19204                         Botswana 1834           0
## 19205                           Brazil 1834           0
## 19206           British Virgin Islands 1834           0
## 19207                           Brunei 1834           0
## 19208                         Bulgaria 1834           0
## 19209                     Burkina Faso 1834           0
## 19210                          Burundi 1834           0
## 19211                         Cambodia 1834           0
## 19212                         Cameroon 1834           0
## 19213                           Canada 1834      183200
## 19214                       Cape Verde 1834           0
## 19215                   Cayman Islands 1834           0
## 19216         Central African Republic 1834           0
## 19217                             Chad 1834           0
## 19218                            Chile 1834           0
## 19219                            China 1834           0
## 19220                 Christmas Island 1834           0
## 19221                         Colombia 1834           0
## 19222                          Comoros 1834           0
## 19223                            Congo 1834           0
## 19224                     Cook Islands 1834           0
## 19225                       Costa Rica 1834           0
## 19226                    Cote d'Ivoire 1834           0
## 19227                          Croatia 1834           0
## 19228                             Cuba 1834           0
## 19229                          Curacao 1834           0
## 19230                           Cyprus 1834           0
## 19231                   Czech Republic 1834           0
## 19232                   Czechoslovakia 1834           0
## 19233     Democratic Republic of Congo 1834           0
## 19234                          Denmark 1834           0
## 19235                         Djibouti 1834           0
## 19236                         Dominica 1834           0
## 19237               Dominican Republic 1834           0
## 19238                            EU-28 1834  2510041520
## 19239                          Ecuador 1834           0
## 19240                            Egypt 1834           0
## 19241                      El Salvador 1834           0
## 19242                Equatorial Guinea 1834           0
## 19243                          Eritrea 1834           0
## 19244                          Estonia 1834           0
## 19245                         Ethiopia 1834           0
## 19246                   Europe (other) 1834       98928
## 19247                   Faeroe Islands 1834           0
## 19248                 Falkland Islands 1834           0
## 19249                             Fiji 1834           0
## 19250                          Finland 1834           0
## 19251                           France 1834   104882000
## 19252                    French Guiana 1834           0
## 19253                 French Polynesia 1834           0
## 19254                            Gabon 1834           0
## 19255                           Gambia 1834           0
## 19256                          Georgia 1834           0
## 19257                          Germany 1834    92911712
## 19258                            Ghana 1834           0
## 19259                        Gibraltar 1834           0
## 19260                           Greece 1834           0
## 19261                        Greenland 1834           0
## 19262                          Grenada 1834           0
## 19263                       Guadeloupe 1834           0
## 19264                        Guatemala 1834           0
## 19265                           Guinea 1834           0
## 19266                    Guinea-Bissau 1834           0
## 19267                           Guyana 1834           0
## 19268                            Haiti 1834           0
## 19269                         Honduras 1834           0
## 19270                        Hong Kong 1834           0
## 19271                          Hungary 1834      406704
## 19272                          Iceland 1834           0
## 19273                            India 1834           0
## 19274                        Indonesia 1834           0
## 19275                             Iran 1834           0
## 19276                             Iraq 1834           0
## 19277                          Ireland 1834           0
## 19278                           Israel 1834           0
## 19279                            Italy 1834           0
## 19280                          Jamaica 1834           0
## 19281                            Japan 1834           0
## 19282                           Jordan 1834           0
## 19283                       Kazakhstan 1834           0
## 19284                            Kenya 1834           0
## 19285                         Kiribati 1834           0
## 19286                           Kuwait 1834           0
## 19287                       Kyrgysztan 1834           0
## 19288                       Kyrgyzstan 1834           0
## 19289                             Laos 1834           0
## 19290                           Latvia 1834           0
## 19291                          Lebanon 1834           0
## 19292                          Lesotho 1834           0
## 19293                          Liberia 1834           0
## 19294                            Libya 1834           0
## 19295                    Liechtenstein 1834           0
## 19296                        Lithuania 1834           0
## 19297                       Luxembourg 1834           0
## 19298                            Macao 1834           0
## 19299                        Macedonia 1834           0
## 19300                       Madagascar 1834           0
## 19301                           Malawi 1834           0
## 19302                         Malaysia 1834           0
## 19303                         Maldives 1834           0
## 19304                             Mali 1834           0
## 19305                            Malta 1834           0
## 19306                 Marshall Islands 1834           0
## 19307                       Martinique 1834           0
## 19308                       Mauritania 1834           0
## 19309                        Mauritius 1834           0
## 19310                           Mexico 1834           0
## 19311             Micronesia (country) 1834           0
## 19312                      Middle East 1834           0
## 19313                          Moldova 1834           0
## 19314                         Mongolia 1834           0
## 19315                       Montenegro 1834           0
## 19316                       Montserrat 1834           0
## 19317                          Morocco 1834           0
## 19318                       Mozambique 1834           0
## 19319                          Myanmar 1834           0
## 19320                          Namibia 1834           0
## 19321                            Nauru 1834           0
## 19322                            Nepal 1834           0
## 19323                      Netherlands 1834           0
## 19324                    New Caledonia 1834           0
## 19325                      New Zealand 1834           0
## 19326                        Nicaragua 1834           0
## 19327                            Niger 1834           0
## 19328                          Nigeria 1834           0
## 19329                             Niue 1834           0
## 19330                      North Korea 1834           0
## 19331                           Norway 1834       21984
## 19332                             Oman 1834           0
## 19333                         Pakistan 1834           0
## 19334                            Palau 1834           0
## 19335                        Palestine 1834           0
## 19336                           Panama 1834           0
## 19337                 Papua New Guinea 1834           0
## 19338                         Paraguay 1834           0
## 19339                             Peru 1834           0
## 19340                      Philippines 1834           0
## 19341                           Poland 1834    26996352
## 19342                         Portugal 1834           0
## 19343                            Qatar 1834           0
## 19344                          Reunion 1834           0
## 19345                          Romania 1834           0
## 19346                           Russia 1834           0
## 19347                           Rwanda 1834           0
## 19348                     Saint Helena 1834           0
## 19349            Saint Kitts and Nevis 1834           0
## 19350                      Saint Lucia 1834           0
## 19351        Saint Pierre and Miquelon 1834           0
## 19352 Saint Vincent and the Grenadines 1834           0
## 19353                            Samoa 1834           0
## 19354            Sao Tome and Principe 1834           0
## 19355                     Saudi Arabia 1834           0
## 19356                          Senegal 1834           0
## 19357                           Serbia 1834           0
## 19358                       Seychelles 1834           0
## 19359                     Sierra Leone 1834           0
## 19360                        Singapore 1834           0
## 19361        Sint Maarten (Dutch part) 1834           0
## 19362                         Slovakia 1834           0
## 19363                         Slovenia 1834           0
## 19364                  Solomon Islands 1834           0
## 19365                          Somalia 1834           0
## 19366                     South Africa 1834           0
## 19367                      South Korea 1834           0
## 19368                      South Sudan 1834           0
## 19369                            Spain 1834       18320
## 19370                        Sri Lanka 1834           0
## 19371                            Sudan 1834           0
## 19372                         Suriname 1834           0
## 19373                        Swaziland 1834           0
## 19374                           Sweden 1834       32976
## 19375                      Switzerland 1834           0
## 19376                            Syria 1834           0
## 19377                           Taiwan 1834           0
## 19378                       Tajikistan 1834           0
## 19379                         Tanzania 1834           0
## 19380                         Thailand 1834           0
## 19381                            Timor 1834           0
## 19382                             Togo 1834           0
## 19383                            Tonga 1834           0
## 19384              Trinidad and Tobago 1834           0
## 19385                          Tunisia 1834           0
## 19386                           Turkey 1834           0
## 19387                     Turkmenistan 1834           0
## 19388         Turks and Caicos Islands 1834           0
## 19389                           Tuvalu 1834           0
## 19390                           Uganda 1834           0
## 19391                          Ukraine 1834           0
## 19392             United Arab Emirates 1834           0
## 19393                   United Kingdom 1834  2247046928
## 19394                    United States 1834    35214704
## 19395                          Uruguay 1834           0
## 19396                       Uzbekistan 1834           0
## 19397                          Vanuatu 1834           0
## 19398                        Venezuela 1834           0
## 19399                          Vietnam 1834           0
## 19400        Wallis and Futuna Islands 1834           0
## 19401                            World 1834  2545534688
## 19402                            Yemen 1834           0
## 19403                           Zambia 1834           0
## 19404                         Zimbabwe 1834           0
## 19405                      Afghanistan 1835           0
## 19406                           Africa 1835           0
## 19407                          Albania 1835           0
## 19408                          Algeria 1835           0
## 19409                 Americas (other) 1835      186864
## 19410                          Andorra 1835           0
## 19411                           Angola 1835           0
## 19412                         Anguilla 1835           0
## 19413              Antarctic Fisheries 1835           0
## 19414              Antigua and Barbuda 1835           0
## 19415                        Argentina 1835           0
## 19416                          Armenia 1835           0
## 19417                            Aruba 1835           0
## 19418         Asia and Pacific (other) 1835           0
## 19419                        Australia 1835           0
## 19420                          Austria 1835     7635776
## 19421                       Azerbaijan 1835           0
## 19422                          Bahamas 1835           0
## 19423                          Bahrain 1835           0
## 19424                       Bangladesh 1835           0
## 19425                         Barbados 1835           0
## 19426                          Belarus 1835           0
## 19427                          Belgium 1835    35504160
## 19428                           Belize 1835           0
## 19429                            Benin 1835           0
## 19430                          Bermuda 1835           0
## 19431                           Bhutan 1835           0
## 19432                          Bolivia 1835           0
## 19433  Bonaire Sint Eustatius and Saba 1835           0
## 19434           Bosnia and Herzegovina 1835           0
## 19435                         Botswana 1835           0
## 19436                           Brazil 1835           0
## 19437           British Virgin Islands 1835           0
## 19438                           Brunei 1835           0
## 19439                         Bulgaria 1835           0
## 19440                     Burkina Faso 1835           0
## 19441                          Burundi 1835           0
## 19442                         Cambodia 1835           0
## 19443                         Cameroon 1835           0
## 19444                           Canada 1835      186864
## 19445                       Cape Verde 1835           0
## 19446                   Cayman Islands 1835           0
## 19447         Central African Republic 1835           0
## 19448                             Chad 1835           0
## 19449                            Chile 1835           0
## 19450                            China 1835           0
## 19451                 Christmas Island 1835           0
## 19452                         Colombia 1835           0
## 19453                          Comoros 1835           0
## 19454                            Congo 1835           0
## 19455                     Cook Islands 1835           0
## 19456                       Costa Rica 1835           0
## 19457                    Cote d'Ivoire 1835           0
## 19458                          Croatia 1835           0
## 19459                             Cuba 1835           0
## 19460                          Curacao 1835           0
## 19461                           Cyprus 1835           0
## 19462                   Czech Republic 1835           0
## 19463                   Czechoslovakia 1835           0
## 19464     Democratic Republic of Congo 1835           0
## 19465                          Denmark 1835           0
## 19466                         Djibouti 1835           0
## 19467                         Dominica 1835           0
## 19468               Dominican Republic 1835           0
## 19469                            EU-28 1835  2596152848
## 19470                          Ecuador 1835           0
## 19471                            Egypt 1835           0
## 19472                      El Salvador 1835           0
## 19473                Equatorial Guinea 1835           0
## 19474                          Eritrea 1835           0
## 19475                          Estonia 1835           0
## 19476                         Ethiopia 1835           0
## 19477                   Europe (other) 1835      113584
## 19478                   Faeroe Islands 1835           0
## 19479                 Falkland Islands 1835           0
## 19480                             Fiji 1835           0
## 19481                          Finland 1835           0
## 19482                           France 1835   114140928
## 19483                    French Guiana 1835           0
## 19484                 French Polynesia 1835           0
## 19485                            Gabon 1835           0
## 19486                           Gambia 1835           0
## 19487                          Georgia 1835           0
## 19488                          Germany 1835    97843456
## 19489                            Ghana 1835           0
## 19490                        Gibraltar 1835           0
## 19491                           Greece 1835           0
## 19492                        Greenland 1835           0
## 19493                          Grenada 1835           0
## 19494                       Guadeloupe 1835           0
## 19495                        Guatemala 1835           0
## 19496                           Guinea 1835           0
## 19497                    Guinea-Bissau 1835           0
## 19498                           Guyana 1835           0
## 19499                            Haiti 1835           0
## 19500                         Honduras 1835           0
## 19501                        Hong Kong 1835           0
## 19502                          Hungary 1835      458000
## 19503                          Iceland 1835           0
## 19504                            India 1835           0
## 19505                        Indonesia 1835           0
## 19506                             Iran 1835           0
## 19507                             Iraq 1835           0
## 19508                          Ireland 1835           0
## 19509                           Israel 1835           0
## 19510                            Italy 1835           0
## 19511                          Jamaica 1835           0
## 19512                            Japan 1835           0
## 19513                           Jordan 1835           0
## 19514                       Kazakhstan 1835           0
## 19515                            Kenya 1835           0
## 19516                         Kiribati 1835           0
## 19517                           Kuwait 1835           0
## 19518                       Kyrgysztan 1835           0
## 19519                       Kyrgyzstan 1835           0
## 19520                             Laos 1835           0
## 19521                           Latvia 1835           0
## 19522                          Lebanon 1835           0
## 19523                          Lesotho 1835           0
## 19524                          Liberia 1835           0
## 19525                            Libya 1835           0
## 19526                    Liechtenstein 1835           0
## 19527                        Lithuania 1835           0
## 19528                       Luxembourg 1835           0
## 19529                            Macao 1835           0
## 19530                        Macedonia 1835           0
## 19531                       Madagascar 1835           0
## 19532                           Malawi 1835           0
## 19533                         Malaysia 1835           0
## 19534                         Maldives 1835           0
## 19535                             Mali 1835           0
## 19536                            Malta 1835           0
## 19537                 Marshall Islands 1835           0
## 19538                       Martinique 1835           0
## 19539                       Mauritania 1835           0
## 19540                        Mauritius 1835           0
## 19541                           Mexico 1835           0
## 19542             Micronesia (country) 1835           0
## 19543                      Middle East 1835           0
## 19544                          Moldova 1835           0
## 19545                         Mongolia 1835           0
## 19546                       Montenegro 1835           0
## 19547                       Montserrat 1835           0
## 19548                          Morocco 1835           0
## 19549                       Mozambique 1835           0
## 19550                          Myanmar 1835           0
## 19551                          Namibia 1835           0
## 19552                            Nauru 1835           0
## 19553                            Nepal 1835           0
## 19554                      Netherlands 1835           0
## 19555                    New Caledonia 1835           0
## 19556                      New Zealand 1835           0
## 19557                        Nicaragua 1835           0
## 19558                            Niger 1835           0
## 19559                          Nigeria 1835           0
## 19560                             Niue 1835           0
## 19561                      North Korea 1835           0
## 19562                           Norway 1835       36640
## 19563                             Oman 1835           0
## 19564                         Pakistan 1835           0
## 19565                            Palau 1835           0
## 19566                        Palestine 1835           0
## 19567                           Panama 1835           0
## 19568                 Papua New Guinea 1835           0
## 19569                         Paraguay 1835           0
## 19570                             Peru 1835           0
## 19571                      Philippines 1835           0
## 19572                           Poland 1835    28205472
## 19573                         Portugal 1835           0
## 19574                            Qatar 1835           0
## 19575                          Reunion 1835           0
## 19576                          Romania 1835           0
## 19577                           Russia 1835           0
## 19578                           Rwanda 1835           0
## 19579                     Saint Helena 1835           0
## 19580            Saint Kitts and Nevis 1835           0
## 19581                      Saint Lucia 1835           0
## 19582        Saint Pierre and Miquelon 1835           0
## 19583 Saint Vincent and the Grenadines 1835           0
## 19584                            Samoa 1835           0
## 19585            Sao Tome and Principe 1835           0
## 19586                     Saudi Arabia 1835           0
## 19587                          Senegal 1835           0
## 19588                           Serbia 1835           0
## 19589                       Seychelles 1835           0
## 19590                     Sierra Leone 1835           0
## 19591                        Singapore 1835           0
## 19592        Sint Maarten (Dutch part) 1835           0
## 19593                         Slovakia 1835           0
## 19594                         Slovenia 1835           0
## 19595                  Solomon Islands 1835           0
## 19596                          Somalia 1835           0
## 19597                     South Africa 1835           0
## 19598                      South Korea 1835           0
## 19599                      South Sudan 1835           0
## 19600                            Spain 1835       21984
## 19601                        Sri Lanka 1835           0
## 19602                            Sudan 1835           0
## 19603                         Suriname 1835           0
## 19604                        Swaziland 1835           0
## 19605                           Sweden 1835       32976
## 19606                      Switzerland 1835           0
## 19607                            Syria 1835           0
## 19608                           Taiwan 1835           0
## 19609                       Tajikistan 1835           0
## 19610                         Tanzania 1835           0
## 19611                         Thailand 1835           0
## 19612                            Timor 1835           0
## 19613                             Togo 1835           0
## 19614                            Tonga 1835           0
## 19615              Trinidad and Tobago 1835           0
## 19616                          Tunisia 1835           0
## 19617                           Turkey 1835           0
## 19618                     Turkmenistan 1835           0
## 19619         Turks and Caicos Islands 1835           0
## 19620                           Tuvalu 1835           0
## 19621                           Uganda 1835           0
## 19622                          Ukraine 1835           0
## 19623             United Arab Emirates 1835           0
## 19624                   United Kingdom 1835  2312310096
## 19625                    United States 1835    39530896
## 19626                          Uruguay 1835           0
## 19627                       Uzbekistan 1835           0
## 19628                          Vanuatu 1835           0
## 19629                        Venezuela 1835           0
## 19630                          Vietnam 1835           0
## 19631        Wallis and Futuna Islands 1835           0
## 19632                            World 1835  2635980528
## 19633                            Yemen 1835           0
## 19634                           Zambia 1835           0
## 19635                         Zimbabwe 1835           0
## 19636                      Afghanistan 1836           0
## 19637                           Africa 1836           0
## 19638                          Albania 1836           0
## 19639                          Algeria 1836           0
## 19640                 Americas (other) 1836      190528
## 19641                          Andorra 1836           0
## 19642                           Angola 1836           0
## 19643                         Anguilla 1836           0
## 19644              Antarctic Fisheries 1836           0
## 19645              Antigua and Barbuda 1836           0
## 19646                        Argentina 1836           0
## 19647                          Armenia 1836           0
## 19648                            Aruba 1836           0
## 19649         Asia and Pacific (other) 1836           0
## 19650                        Australia 1836           0
## 19651                          Austria 1836     8309952
## 19652                       Azerbaijan 1836           0
## 19653                          Bahamas 1836           0
## 19654                          Bahrain 1836           0
## 19655                       Bangladesh 1836           0
## 19656                         Barbados 1836           0
## 19657                          Belarus 1836           0
## 19658                          Belgium 1836    41102752
## 19659                           Belize 1836           0
## 19660                            Benin 1836           0
## 19661                          Bermuda 1836           0
## 19662                           Bhutan 1836           0
## 19663                          Bolivia 1836           0
## 19664  Bonaire Sint Eustatius and Saba 1836           0
## 19665           Bosnia and Herzegovina 1836           0
## 19666                         Botswana 1836           0
## 19667                           Brazil 1836           0
## 19668           British Virgin Islands 1836           0
## 19669                           Brunei 1836           0
## 19670                         Bulgaria 1836           0
## 19671                     Burkina Faso 1836           0
## 19672                          Burundi 1836           0
## 19673                         Cambodia 1836           0
## 19674                         Cameroon 1836           0
## 19675                           Canada 1836      190528
## 19676                       Cape Verde 1836           0
## 19677                   Cayman Islands 1836           0
## 19678         Central African Republic 1836           0
## 19679                             Chad 1836           0
## 19680                            Chile 1836           0
## 19681                            China 1836           0
## 19682                 Christmas Island 1836           0
## 19683                         Colombia 1836           0
## 19684                          Comoros 1836           0
## 19685                            Congo 1836           0
## 19686                     Cook Islands 1836           0
## 19687                       Costa Rica 1836           0
## 19688                    Cote d'Ivoire 1836           0
## 19689                          Croatia 1836           0
## 19690                             Cuba 1836           0
## 19691                          Curacao 1836           0
## 19692                           Cyprus 1836           0
## 19693                   Czech Republic 1836           0
## 19694                   Czechoslovakia 1836           0
## 19695     Democratic Republic of Congo 1836           0
## 19696                          Denmark 1836           0
## 19697                         Djibouti 1836           0
## 19698                         Dominica 1836           0
## 19699               Dominican Republic 1836           0
## 19700                            EU-28 1836  2696176384
## 19701                          Ecuador 1836           0
## 19702                            Egypt 1836           0
## 19703                      El Salvador 1836           0
## 19704                Equatorial Guinea 1836           0
## 19705                          Eritrea 1836           0
## 19706                          Estonia 1836           0
## 19707                         Ethiopia 1836           0
## 19708                   Europe (other) 1836      128240
## 19709                   Faeroe Islands 1836           0
## 19710                 Falkland Islands 1836           0
## 19711                             Fiji 1836           0
## 19712                          Finland 1836           0
## 19713                           France 1836   124777520
## 19714                    French Guiana 1836           0
## 19715                 French Polynesia 1836           0
## 19716                            Gabon 1836           0
## 19717                           Gambia 1836           0
## 19718                          Georgia 1836           0
## 19719                          Germany 1836   103035344
## 19720                            Ghana 1836           0
## 19721                        Gibraltar 1836           0
## 19722                           Greece 1836           0
## 19723                        Greenland 1836           0
## 19724                          Grenada 1836           0
## 19725                       Guadeloupe 1836           0
## 19726                        Guatemala 1836           0
## 19727                           Guinea 1836           0
## 19728                    Guinea-Bissau 1836           0
## 19729                           Guyana 1836           0
## 19730                            Haiti 1836           0
## 19731                         Honduras 1836           0
## 19732                        Hong Kong 1836           0
## 19733                          Hungary 1836      542272
## 19734                          Iceland 1836           0
## 19735                            India 1836           0
## 19736                        Indonesia 1836           0
## 19737                             Iran 1836           0
## 19738                             Iraq 1836           0
## 19739                          Ireland 1836           0
## 19740                           Israel 1836           0
## 19741                            Italy 1836           0
## 19742                          Jamaica 1836           0
## 19743                            Japan 1836           0
## 19744                           Jordan 1836           0
## 19745                       Kazakhstan 1836           0
## 19746                            Kenya 1836           0
## 19747                         Kiribati 1836           0
## 19748                           Kuwait 1836           0
## 19749                       Kyrgysztan 1836           0
## 19750                       Kyrgyzstan 1836           0
## 19751                             Laos 1836           0
## 19752                           Latvia 1836           0
## 19753                          Lebanon 1836           0
## 19754                          Lesotho 1836           0
## 19755                          Liberia 1836           0
## 19756                            Libya 1836           0
## 19757                    Liechtenstein 1836           0
## 19758                        Lithuania 1836           0
## 19759                       Luxembourg 1836           0
## 19760                            Macao 1836           0
## 19761                        Macedonia 1836           0
## 19762                       Madagascar 1836           0
## 19763                           Malawi 1836           0
## 19764                         Malaysia 1836           0
## 19765                         Maldives 1836           0
## 19766                             Mali 1836           0
## 19767                            Malta 1836           0
## 19768                 Marshall Islands 1836           0
## 19769                       Martinique 1836           0
## 19770                       Mauritania 1836           0
## 19771                        Mauritius 1836           0
## 19772                           Mexico 1836           0
## 19773             Micronesia (country) 1836           0
## 19774                      Middle East 1836           0
## 19775                          Moldova 1836           0
## 19776                         Mongolia 1836           0
## 19777                       Montenegro 1836           0
## 19778                       Montserrat 1836           0
## 19779                          Morocco 1836           0
## 19780                       Mozambique 1836           0
## 19781                          Myanmar 1836           0
## 19782                          Namibia 1836           0
## 19783                            Nauru 1836           0
## 19784                            Nepal 1836           0
## 19785                      Netherlands 1836           0
## 19786                    New Caledonia 1836           0
## 19787                      New Zealand 1836           0
## 19788                        Nicaragua 1836           0
## 19789                            Niger 1836           0
## 19790                          Nigeria 1836           0
## 19791                             Niue 1836           0
## 19792                      North Korea 1836           0
## 19793                           Norway 1836       54960
## 19794                             Oman 1836           0
## 19795                         Pakistan 1836           0
## 19796                            Palau 1836           0
## 19797                        Palestine 1836           0
## 19798                           Panama 1836           0
## 19799                 Papua New Guinea 1836           0
## 19800                         Paraguay 1836           0
## 19801                             Peru 1836           0
## 19802                      Philippines 1836           0
## 19803                           Poland 1836    29575808
## 19804                         Portugal 1836           0
## 19805                            Qatar 1836           0
## 19806                          Reunion 1836           0
## 19807                          Romania 1836           0
## 19808                           Russia 1836           0
## 19809                           Rwanda 1836           0
## 19810                     Saint Helena 1836           0
## 19811            Saint Kitts and Nevis 1836           0
## 19812                      Saint Lucia 1836           0
## 19813        Saint Pierre and Miquelon 1836           0
## 19814 Saint Vincent and the Grenadines 1836           0
## 19815                            Samoa 1836           0
## 19816            Sao Tome and Principe 1836           0
## 19817                     Saudi Arabia 1836           0
## 19818                          Senegal 1836           0
## 19819                           Serbia 1836           0
## 19820                       Seychelles 1836           0
## 19821                     Sierra Leone 1836           0
## 19822                        Singapore 1836           0
## 19823        Sint Maarten (Dutch part) 1836           0
## 19824                         Slovakia 1836           0
## 19825                         Slovenia 1836           0
## 19826                  Solomon Islands 1836           0
## 19827                          Somalia 1836           0
## 19828                     South Africa 1836           0
## 19829                      South Korea 1836           0
## 19830                      South Sudan 1836           0
## 19831                            Spain 1836       43968
## 19832                        Sri Lanka 1836           0
## 19833                            Sudan 1836           0
## 19834                         Suriname 1836           0
## 19835                        Swaziland 1836           0
## 19836                           Sweden 1836       32976
## 19837                      Switzerland 1836           0
## 19838                            Syria 1836           0
## 19839                           Taiwan 1836           0
## 19840                       Tajikistan 1836           0
## 19841                         Tanzania 1836           0
## 19842                         Thailand 1836           0
## 19843                            Timor 1836           0
## 19844                             Togo 1836           0
## 19845                            Tonga 1836           0
## 19846              Trinidad and Tobago 1836           0
## 19847                          Tunisia 1836           0
## 19848                           Turkey 1836           0
## 19849                     Turkmenistan 1836           0
## 19850         Turks and Caicos Islands 1836           0
## 19851                           Tuvalu 1836           0
## 19852                           Uganda 1836           0
## 19853                          Ukraine 1836           0
## 19854             United Arab Emirates 1836           0
## 19855                   United Kingdom 1836  2388755792
## 19856                    United States 1836    44261120
## 19857                          Uruguay 1836           0
## 19858                       Uzbekistan 1836           0
## 19859                          Vanuatu 1836           0
## 19860                        Venezuela 1836           0
## 19861                          Vietnam 1836           0
## 19862        Wallis and Futuna Islands 1836           0
## 19863                            World 1836  2740756272
## 19864                            Yemen 1836           0
## 19865                           Zambia 1836           0
## 19866                         Zimbabwe 1836           0
## 19867                      Afghanistan 1837           0
## 19868                           Africa 1837           0
## 19869                          Albania 1837           0
## 19870                          Algeria 1837           0
## 19871                 Americas (other) 1837      194192
## 19872                          Andorra 1837           0
## 19873                           Angola 1837           0
## 19874                         Anguilla 1837           0
## 19875              Antarctic Fisheries 1837           0
## 19876              Antigua and Barbuda 1837           0
## 19877                        Argentina 1837           0
## 19878                          Armenia 1837           0
## 19879                            Aruba 1837           0
## 19880         Asia and Pacific (other) 1837           0
## 19881                        Australia 1837           0
## 19882                          Austria 1837     9017104
## 19883                       Azerbaijan 1837           0
## 19884                          Bahamas 1837           0
## 19885                          Bahrain 1837           0
## 19886                       Bangladesh 1837           0
## 19887                         Barbados 1837           0
## 19888                          Belarus 1837           0
## 19889                          Belgium 1837    47100720
## 19890                           Belize 1837           0
## 19891                            Benin 1837           0
## 19892                          Bermuda 1837           0
## 19893                           Bhutan 1837           0
## 19894                          Bolivia 1837           0
## 19895  Bonaire Sint Eustatius and Saba 1837           0
## 19896           Bosnia and Herzegovina 1837           0
## 19897                         Botswana 1837           0
## 19898                           Brazil 1837           0
## 19899           British Virgin Islands 1837           0
## 19900                           Brunei 1837           0
## 19901                         Bulgaria 1837           0
## 19902                     Burkina Faso 1837           0
## 19903                          Burundi 1837           0
## 19904                         Cambodia 1837           0
## 19905                         Cameroon 1837           0
## 19906                           Canada 1837      194192
## 19907                       Cape Verde 1837           0
## 19908                   Cayman Islands 1837           0
## 19909         Central African Republic 1837           0
## 19910                             Chad 1837           0
## 19911                            Chile 1837           0
## 19912                            China 1837           0
## 19913                 Christmas Island 1837           0
## 19914                         Colombia 1837           0
## 19915                          Comoros 1837           0
## 19916                            Congo 1837           0
## 19917                     Cook Islands 1837           0
## 19918                       Costa Rica 1837           0
## 19919                    Cote d'Ivoire 1837           0
## 19920                          Croatia 1837           0
## 19921                             Cuba 1837           0
## 19922                          Curacao 1837           0
## 19923                           Cyprus 1837           0
## 19924                   Czech Republic 1837           0
## 19925                   Czechoslovakia 1837           0
## 19926     Democratic Republic of Congo 1837           0
## 19927                          Denmark 1837           0
## 19928                         Djibouti 1837           0
## 19929                         Dominica 1837           0
## 19930               Dominican Republic 1837           0
## 19931                            EU-28 1837  2795533072
## 19932                          Ecuador 1837           0
## 19933                            Egypt 1837           0
## 19934                      El Salvador 1837           0
## 19935                Equatorial Guinea 1837           0
## 19936                          Eritrea 1837           0
## 19937                          Estonia 1837           0
## 19938                         Ethiopia 1837           0
## 19939                   Europe (other) 1837      153888
## 19940                   Faeroe Islands 1837           0
## 19941                 Falkland Islands 1837           0
## 19942                             Fiji 1837           0
## 19943                          Finland 1837           0
## 19944                           France 1837   136128592
## 19945                    French Guiana 1837           0
## 19946                 French Polynesia 1837           0
## 19947                            Gabon 1837           0
## 19948                           Gambia 1837           0
## 19949                          Georgia 1837           0
## 19950                          Germany 1837   108985680
## 19951                            Ghana 1837           0
## 19952                        Gibraltar 1837           0
## 19953                           Greece 1837           0
## 19954                        Greenland 1837           0
## 19955                          Grenada 1837           0
## 19956                       Guadeloupe 1837           0
## 19957                        Guatemala 1837           0
## 19958                           Guinea 1837           0
## 19959                    Guinea-Bissau 1837           0
## 19960                           Guyana 1837           0
## 19961                            Haiti 1837           0
## 19962                         Honduras 1837           0
## 19963                        Hong Kong 1837           0
## 19964                          Hungary 1837      611888
## 19965                          Iceland 1837           0
## 19966                            India 1837           0
## 19967                        Indonesia 1837           0
## 19968                             Iran 1837           0
## 19969                             Iraq 1837           0
## 19970                          Ireland 1837           0
## 19971                           Israel 1837           0
## 19972                            Italy 1837           0
## 19973                          Jamaica 1837           0
## 19974                            Japan 1837           0
## 19975                           Jordan 1837           0
## 19976                       Kazakhstan 1837           0
## 19977                            Kenya 1837           0
## 19978                         Kiribati 1837           0
## 19979                           Kuwait 1837           0
## 19980                       Kyrgysztan 1837           0
## 19981                       Kyrgyzstan 1837           0
## 19982                             Laos 1837           0
## 19983                           Latvia 1837           0
## 19984                          Lebanon 1837           0
## 19985                          Lesotho 1837           0
## 19986                          Liberia 1837           0
## 19987                            Libya 1837           0
## 19988                    Liechtenstein 1837           0
## 19989                        Lithuania 1837           0
## 19990                       Luxembourg 1837           0
## 19991                            Macao 1837           0
## 19992                        Macedonia 1837           0
## 19993                       Madagascar 1837           0
## 19994                           Malawi 1837           0
## 19995                         Malaysia 1837           0
## 19996                         Maldives 1837           0
## 19997                             Mali 1837           0
## 19998                            Malta 1837           0
## 19999                 Marshall Islands 1837           0
## 20000                       Martinique 1837           0
## 20001                       Mauritania 1837           0
## 20002                        Mauritius 1837           0
## 20003                           Mexico 1837           0
## 20004             Micronesia (country) 1837           0
## 20005                      Middle East 1837           0
## 20006                          Moldova 1837           0
## 20007                         Mongolia 1837           0
## 20008                       Montenegro 1837           0
## 20009                       Montserrat 1837           0
## 20010                          Morocco 1837           0
## 20011                       Mozambique 1837           0
## 20012                          Myanmar 1837           0
## 20013                          Namibia 1837           0
## 20014                            Nauru 1837           0
## 20015                            Nepal 1837           0
## 20016                      Netherlands 1837           0
## 20017                    New Caledonia 1837           0
## 20018                      New Zealand 1837           0
## 20019                        Nicaragua 1837           0
## 20020                            Niger 1837           0
## 20021                          Nigeria 1837           0
## 20022                             Niue 1837           0
## 20023                      North Korea 1837           0
## 20024                           Norway 1837       80608
## 20025                             Oman 1837           0
## 20026                         Pakistan 1837           0
## 20027                            Palau 1837           0
## 20028                        Palestine 1837           0
## 20029                           Panama 1837           0
## 20030                 Papua New Guinea 1837           0
## 20031                         Paraguay 1837           0
## 20032                             Peru 1837           0
## 20033                      Philippines 1837           0
## 20034                           Poland 1837    31048736
## 20035                         Portugal 1837           0
## 20036                            Qatar 1837           0
## 20037                          Reunion 1837           0
## 20038                          Romania 1837           0
## 20039                           Russia 1837           0
## 20040                           Rwanda 1837           0
## 20041                     Saint Helena 1837           0
## 20042            Saint Kitts and Nevis 1837           0
## 20043                      Saint Lucia 1837           0
## 20044        Saint Pierre and Miquelon 1837           0
## 20045 Saint Vincent and the Grenadines 1837           0
## 20046                            Samoa 1837           0
## 20047            Sao Tome and Principe 1837           0
## 20048                     Saudi Arabia 1837           0
## 20049                          Senegal 1837           0
## 20050                           Serbia 1837           0
## 20051                       Seychelles 1837           0
## 20052                     Sierra Leone 1837           0
## 20053                        Singapore 1837           0
## 20054        Sint Maarten (Dutch part) 1837           0
## 20055                         Slovakia 1837           0
## 20056                         Slovenia 1837           0
## 20057                  Solomon Islands 1837           0
## 20058                          Somalia 1837           0
## 20059                     South Africa 1837           0
## 20060                      South Korea 1837           0
## 20061                      South Sudan 1837           0
## 20062                            Spain 1837       80608
## 20063                        Sri Lanka 1837           0
## 20064                            Sudan 1837           0
## 20065                         Suriname 1837           0
## 20066                        Swaziland 1837           0
## 20067                           Sweden 1837       32976
## 20068                      Switzerland 1837           0
## 20069                            Syria 1837           0
## 20070                           Taiwan 1837           0
## 20071                       Tajikistan 1837           0
## 20072                         Tanzania 1837           0
## 20073                         Thailand 1837           0
## 20074                            Timor 1837           0
## 20075                             Togo 1837           0
## 20076                            Tonga 1837           0
## 20077              Trinidad and Tobago 1837           0
## 20078                          Tunisia 1837           0
## 20079                           Turkey 1837           0
## 20080                     Turkmenistan 1837           0
## 20081         Turks and Caicos Islands 1837           0
## 20082                           Tuvalu 1837           0
## 20083                           Uganda 1837           0
## 20084                          Ukraine 1837           0
## 20085             United Arab Emirates 1837           0
## 20086                   United Kingdom 1837  2462526768
## 20087                    United States 1837    49566592
## 20088                          Uruguay 1837           0
## 20089                       Uzbekistan 1837           0
## 20090                          Vanuatu 1837           0
## 20091                        Venezuela 1837           0
## 20092                          Vietnam 1837           0
## 20093        Wallis and Futuna Islands 1837           0
## 20094                            World 1837  2845447744
## 20095                            Yemen 1837           0
## 20096                           Zambia 1837           0
## 20097                         Zimbabwe 1837           0
## 20098                      Afghanistan 1838           0
## 20099                           Africa 1838           0
## 20100                          Albania 1838           0
## 20101                          Algeria 1838           0
## 20102                 Americas (other) 1838      197856
## 20103                          Andorra 1838           0
## 20104                           Angola 1838           0
## 20105                         Anguilla 1838           0
## 20106              Antarctic Fisheries 1838           0
## 20107              Antigua and Barbuda 1838           0
## 20108                        Argentina 1838           0
## 20109                          Armenia 1838           0
## 20110                            Aruba 1838           0
## 20111         Asia and Pacific (other) 1838           0
## 20112                        Australia 1838           0
## 20113                          Austria 1838     9867152
## 20114                       Azerbaijan 1838           0
## 20115                          Bahamas 1838           0
## 20116                          Bahrain 1838           0
## 20117                       Bangladesh 1838           0
## 20118                         Barbados 1838           0
## 20119                          Belarus 1838           0
## 20120                          Belgium 1838    53223264
## 20121                           Belize 1838           0
## 20122                            Benin 1838           0
## 20123                          Bermuda 1838           0
## 20124                           Bhutan 1838           0
## 20125                          Bolivia 1838           0
## 20126  Bonaire Sint Eustatius and Saba 1838           0
## 20127           Bosnia and Herzegovina 1838           0
## 20128                         Botswana 1838           0
## 20129                           Brazil 1838           0
## 20130           British Virgin Islands 1838           0
## 20131                           Brunei 1838           0
## 20132                         Bulgaria 1838           0
## 20133                     Burkina Faso 1838           0
## 20134                          Burundi 1838           0
## 20135                         Cambodia 1838           0
## 20136                         Cameroon 1838           0
## 20137                           Canada 1838      197856
## 20138                       Cape Verde 1838           0
## 20139                   Cayman Islands 1838           0
## 20140         Central African Republic 1838           0
## 20141                             Chad 1838           0
## 20142                            Chile 1838           0
## 20143                            China 1838           0
## 20144                 Christmas Island 1838           0
## 20145                         Colombia 1838           0
## 20146                          Comoros 1838           0
## 20147                            Congo 1838           0
## 20148                     Cook Islands 1838           0
## 20149                       Costa Rica 1838           0
## 20150                    Cote d'Ivoire 1838           0
## 20151                          Croatia 1838           0
## 20152                             Cuba 1838           0
## 20153                          Curacao 1838           0
## 20154                           Cyprus 1838           0
## 20155                   Czech Republic 1838           0
## 20156                   Czechoslovakia 1838           0
## 20157     Democratic Republic of Congo 1838           0
## 20158                          Denmark 1838           0
## 20159                         Djibouti 1838           0
## 20160                         Dominica 1838           0
## 20161               Dominican Republic 1838           0
## 20162                            EU-28 1838  2898491472
## 20163                          Ecuador 1838           0
## 20164                            Egypt 1838           0
## 20165                      El Salvador 1838           0
## 20166                Equatorial Guinea 1838           0
## 20167                          Eritrea 1838           0
## 20168                          Estonia 1838           0
## 20169                         Ethiopia 1838           0
## 20170                   Europe (other) 1838      201520
## 20171                   Faeroe Islands 1838           0
## 20172                 Falkland Islands 1838           0
## 20173                             Fiji 1838           0
## 20174                          Finland 1838           0
## 20175                           France 1838   147996288
## 20176                    French Guiana 1838           0
## 20177                 French Polynesia 1838           0
## 20178                            Gabon 1838           0
## 20179                           Gambia 1838           0
## 20180                          Georgia 1838           0
## 20181                          Germany 1838   115617520
## 20182                            Ghana 1838           0
## 20183                        Gibraltar 1838           0
## 20184                           Greece 1838           0
## 20185                        Greenland 1838           0
## 20186                          Grenada 1838           0
## 20187                       Guadeloupe 1838           0
## 20188                        Guatemala 1838           0
## 20189                           Guinea 1838           0
## 20190                    Guinea-Bissau 1838           0
## 20191                           Guyana 1838           0
## 20192                            Haiti 1838           0
## 20193                         Honduras 1838           0
## 20194                        Hong Kong 1838           0
## 20195                          Hungary 1838      674176
## 20196                          Iceland 1838           0
## 20197                            India 1838           0
## 20198                        Indonesia 1838           0
## 20199                             Iran 1838           0
## 20200                             Iraq 1838           0
## 20201                          Ireland 1838           0
## 20202                           Israel 1838           0
## 20203                            Italy 1838           0
## 20204                          Jamaica 1838           0
## 20205                            Japan 1838           0
## 20206                           Jordan 1838           0
## 20207                       Kazakhstan 1838           0
## 20208                            Kenya 1838           0
## 20209                         Kiribati 1838           0
## 20210                           Kuwait 1838           0
## 20211                       Kyrgysztan 1838           0
## 20212                       Kyrgyzstan 1838           0
## 20213                             Laos 1838           0
## 20214                           Latvia 1838           0
## 20215                          Lebanon 1838           0
## 20216                          Lesotho 1838           0
## 20217                          Liberia 1838           0
## 20218                            Libya 1838           0
## 20219                    Liechtenstein 1838           0
## 20220                        Lithuania 1838           0
## 20221                       Luxembourg 1838           0
## 20222                            Macao 1838           0
## 20223                        Macedonia 1838           0
## 20224                       Madagascar 1838           0
## 20225                           Malawi 1838           0
## 20226                         Malaysia 1838           0
## 20227                         Maldives 1838           0
## 20228                             Mali 1838           0
## 20229                            Malta 1838           0
## 20230                 Marshall Islands 1838           0
## 20231                       Martinique 1838           0
## 20232                       Mauritania 1838           0
## 20233                        Mauritius 1838           0
## 20234                           Mexico 1838           0
## 20235             Micronesia (country) 1838           0
## 20236                      Middle East 1838           0
## 20237                          Moldova 1838           0
## 20238                         Mongolia 1838           0
## 20239                       Montenegro 1838           0
## 20240                       Montserrat 1838           0
## 20241                          Morocco 1838           0
## 20242                       Mozambique 1838           0
## 20243                          Myanmar 1838           0
## 20244                          Namibia 1838           0
## 20245                            Nauru 1838           0
## 20246                            Nepal 1838           0
## 20247                      Netherlands 1838           0
## 20248                    New Caledonia 1838           0
## 20249                      New Zealand 1838           0
## 20250                        Nicaragua 1838           0
## 20251                            Niger 1838           0
## 20252                          Nigeria 1838           0
## 20253                             Niue 1838           0
## 20254                      North Korea 1838           0
## 20255                           Norway 1838      131904
## 20256                             Oman 1838           0
## 20257                         Pakistan 1838           0
## 20258                            Palau 1838           0
## 20259                        Palestine 1838           0
## 20260                           Panama 1838           0
## 20261                 Papua New Guinea 1838           0
## 20262                         Paraguay 1838           0
## 20263                             Peru 1838           0
## 20264                      Philippines 1838           0
## 20265                           Poland 1838    32635248
## 20266                         Portugal 1838           0
## 20267                            Qatar 1838           0
## 20268                          Reunion 1838           0
## 20269                          Romania 1838           0
## 20270                           Russia 1838           0
## 20271                           Rwanda 1838           0
## 20272                     Saint Helena 1838           0
## 20273            Saint Kitts and Nevis 1838           0
## 20274                      Saint Lucia 1838           0
## 20275        Saint Pierre and Miquelon 1838           0
## 20276 Saint Vincent and the Grenadines 1838           0
## 20277                            Samoa 1838           0
## 20278            Sao Tome and Principe 1838           0
## 20279                     Saudi Arabia 1838           0
## 20280                          Senegal 1838           0
## 20281                           Serbia 1838           0
## 20282                       Seychelles 1838           0
## 20283                     Sierra Leone 1838           0
## 20284                        Singapore 1838           0
## 20285        Sint Maarten (Dutch part) 1838           0
## 20286                         Slovakia 1838           0
## 20287                         Slovenia 1838           0
## 20288                  Solomon Islands 1838           0
## 20289                          Somalia 1838           0
## 20290                     South Africa 1838           0
## 20291                      South Korea 1838           0
## 20292                      South Sudan 1838           0
## 20293                            Spain 1838      106256
## 20294                        Sri Lanka 1838           0
## 20295                            Sudan 1838           0
## 20296                         Suriname 1838           0
## 20297                        Swaziland 1838           0
## 20298                           Sweden 1838       32976
## 20299                      Switzerland 1838           0
## 20300                            Syria 1838           0
## 20301                           Taiwan 1838           0
## 20302                       Tajikistan 1838           0
## 20303                         Tanzania 1838           0
## 20304                         Thailand 1838           0
## 20305                            Timor 1838           0
## 20306                             Togo 1838           0
## 20307                            Tonga 1838           0
## 20308              Trinidad and Tobago 1838           0
## 20309                          Tunisia 1838           0
## 20310                           Turkey 1838           0
## 20311                     Turkmenistan 1838           0
## 20312         Turks and Caicos Islands 1838           0
## 20313                           Tuvalu 1838           0
## 20314                           Uganda 1838           0
## 20315                          Ukraine 1838           0
## 20316             United Arab Emirates 1838           0
## 20317                   United Kingdom 1838  2538338592
## 20318                    United States 1838    54597264
## 20319                          Uruguay 1838           0
## 20320                       Uzbekistan 1838           0
## 20321                          Vanuatu 1838           0
## 20322                        Venezuela 1838           0
## 20323                          Vietnam 1838           0
## 20324        Wallis and Futuna Islands 1838           0
## 20325                            World 1838  2953491776
## 20326                            Yemen 1838           0
## 20327                           Zambia 1838           0
## 20328                         Zimbabwe 1838           0
## 20329                      Afghanistan 1839           0
## 20330                           Africa 1839           0
## 20331                          Albania 1839           0
## 20332                          Algeria 1839           0
## 20333                 Americas (other) 1839      201520
## 20334                          Andorra 1839           0
## 20335                           Angola 1839           0
## 20336                         Anguilla 1839           0
## 20337              Antarctic Fisheries 1839           0
## 20338              Antigua and Barbuda 1839           0
## 20339                        Argentina 1839           0
## 20340                          Armenia 1839           0
## 20341                            Aruba 1839           0
## 20342         Asia and Pacific (other) 1839           0
## 20343                        Australia 1839           0
## 20344                          Austria 1839    10926048
## 20345                       Azerbaijan 1839           0
## 20346                          Bahamas 1839           0
## 20347                          Bahrain 1839           0
## 20348                       Bangladesh 1839           0
## 20349                         Barbados 1839           0
## 20350                          Belarus 1839           0
## 20351                          Belgium 1839    59932048
## 20352                           Belize 1839           0
## 20353                            Benin 1839           0
## 20354                          Bermuda 1839           0
## 20355                           Bhutan 1839           0
## 20356                          Bolivia 1839           0
## 20357  Bonaire Sint Eustatius and Saba 1839           0
## 20358           Bosnia and Herzegovina 1839           0
## 20359                         Botswana 1839           0
## 20360                           Brazil 1839           0
## 20361           British Virgin Islands 1839           0
## 20362                           Brunei 1839           0
## 20363                         Bulgaria 1839           0
## 20364                     Burkina Faso 1839           0
## 20365                          Burundi 1839           0
## 20366                         Cambodia 1839           0
## 20367                         Cameroon 1839           0
## 20368                           Canada 1839      201520
## 20369                       Cape Verde 1839           0
## 20370                   Cayman Islands 1839           0
## 20371         Central African Republic 1839           0
## 20372                             Chad 1839           0
## 20373                            Chile 1839           0
## 20374                            China 1839           0
## 20375                 Christmas Island 1839           0
## 20376                         Colombia 1839           0
## 20377                          Comoros 1839           0
## 20378                            Congo 1839           0
## 20379                     Cook Islands 1839           0
## 20380                       Costa Rica 1839           0
## 20381                    Cote d'Ivoire 1839           0
## 20382                          Croatia 1839           0
## 20383                             Cuba 1839           0
## 20384                          Curacao 1839           0
## 20385                           Cyprus 1839           0
## 20386                   Czech Republic 1839           0
## 20387                   Czechoslovakia 1839           0
## 20388     Democratic Republic of Congo 1839           0
## 20389                          Denmark 1839           0
## 20390                         Djibouti 1839           0
## 20391                         Dominica 1839           0
## 20392               Dominican Republic 1839           0
## 20393                            EU-28 1839  3004542288
## 20394                          Ecuador 1839           0
## 20395                            Egypt 1839           0
## 20396                      El Salvador 1839           0
## 20397                Equatorial Guinea 1839           0
## 20398                          Eritrea 1839           0
## 20399                          Estonia 1839           0
## 20400                         Ethiopia 1839           0
## 20401                   Europe (other) 1839      241824
## 20402                   Faeroe Islands 1839           0
## 20403                 Falkland Islands 1839           0
## 20404                             Fiji 1839           0
## 20405                          Finland 1839           0
## 20406                           France 1839   159567200
## 20407                    French Guiana 1839           0
## 20408                 French Polynesia 1839           0
## 20409                            Gabon 1839           0
## 20410                           Gambia 1839           0
## 20411                          Georgia 1839           0
## 20412                          Germany 1839   122637744
## 20413                            Ghana 1839           0
## 20414                        Gibraltar 1839           0
## 20415                           Greece 1839           0
## 20416                        Greenland 1839           0
## 20417                          Grenada 1839           0
## 20418                       Guadeloupe 1839           0
## 20419                        Guatemala 1839           0
## 20420                           Guinea 1839           0
## 20421                    Guinea-Bissau 1839           0
## 20422                           Guyana 1839           0
## 20423                            Haiti 1839           0
## 20424                         Honduras 1839           0
## 20425                        Hong Kong 1839           0
## 20426                          Hungary 1839      813408
## 20427                          Iceland 1839           0
## 20428                            India 1839           0
## 20429                        Indonesia 1839           0
## 20430                             Iran 1839           0
## 20431                             Iraq 1839           0
## 20432                          Ireland 1839           0
## 20433                           Israel 1839           0
## 20434                            Italy 1839           0
## 20435                          Jamaica 1839           0
## 20436                            Japan 1839           0
## 20437                           Jordan 1839           0
## 20438                       Kazakhstan 1839           0
## 20439                            Kenya 1839           0
## 20440                         Kiribati 1839           0
## 20441                           Kuwait 1839           0
## 20442                       Kyrgysztan 1839           0
## 20443                       Kyrgyzstan 1839           0
## 20444                             Laos 1839           0
## 20445                           Latvia 1839           0
## 20446                          Lebanon 1839           0
## 20447                          Lesotho 1839           0
## 20448                          Liberia 1839           0
## 20449                            Libya 1839           0
## 20450                    Liechtenstein 1839           0
## 20451                        Lithuania 1839           0
## 20452                       Luxembourg 1839           0
## 20453                            Macao 1839           0
## 20454                        Macedonia 1839           0
## 20455                       Madagascar 1839           0
## 20456                           Malawi 1839           0
## 20457                         Malaysia 1839           0
## 20458                         Maldives 1839           0
## 20459                             Mali 1839           0
## 20460                            Malta 1839           0
## 20461                 Marshall Islands 1839           0
## 20462                       Martinique 1839           0
## 20463                       Mauritania 1839           0
## 20464                        Mauritius 1839           0
## 20465                           Mexico 1839           0
## 20466             Micronesia (country) 1839           0
## 20467                      Middle East 1839           0
## 20468                          Moldova 1839           0
## 20469                         Mongolia 1839           0
## 20470                       Montenegro 1839           0
## 20471                       Montserrat 1839           0
## 20472                          Morocco 1839           0
## 20473                       Mozambique 1839           0
## 20474                          Myanmar 1839           0
## 20475                          Namibia 1839           0
## 20476                            Nauru 1839           0
## 20477                            Nepal 1839           0
## 20478                      Netherlands 1839           0
## 20479                    New Caledonia 1839           0
## 20480                      New Zealand 1839           0
## 20481                        Nicaragua 1839           0
## 20482                            Niger 1839           0
## 20483                          Nigeria 1839           0
## 20484                             Niue 1839           0
## 20485                      North Korea 1839           0
## 20486                           Norway 1839      172208
## 20487                             Oman 1839           0
## 20488                         Pakistan 1839           0
## 20489                            Palau 1839           0
## 20490                        Palestine 1839           0
## 20491                           Panama 1839           0
## 20492                 Papua New Guinea 1839           0
## 20493                         Paraguay 1839           0
## 20494                             Peru 1839           0
## 20495                      Philippines 1839           0
## 20496                           Poland 1839    34317024
## 20497                         Portugal 1839           0
## 20498                            Qatar 1839           0
## 20499                          Reunion 1839           0
## 20500                          Romania 1839           0
## 20501                           Russia 1839           0
## 20502                           Rwanda 1839           0
## 20503                     Saint Helena 1839           0
## 20504            Saint Kitts and Nevis 1839           0
## 20505                      Saint Lucia 1839           0
## 20506        Saint Pierre and Miquelon 1839           0
## 20507 Saint Vincent and the Grenadines 1839           0
## 20508                            Samoa 1839           0
## 20509            Sao Tome and Principe 1839           0
## 20510                     Saudi Arabia 1839           0
## 20511                          Senegal 1839           0
## 20512                           Serbia 1839           0
## 20513                       Seychelles 1839           0
## 20514                     Sierra Leone 1839           0
## 20515                        Singapore 1839           0
## 20516        Sint Maarten (Dutch part) 1839           0
## 20517                         Slovakia 1839           0
## 20518                         Slovenia 1839           0
## 20519                  Solomon Islands 1839           0
## 20520                          Somalia 1839           0
## 20521                     South Africa 1839           0
## 20522                      South Korea 1839           0
## 20523                      South Sudan 1839           0
## 20524                            Spain 1839      153888
## 20525                        Sri Lanka 1839           0
## 20526                            Sudan 1839           0
## 20527                         Suriname 1839           0
## 20528                        Swaziland 1839           0
## 20529                           Sweden 1839       76944
## 20530                      Switzerland 1839           0
## 20531                            Syria 1839           0
## 20532                           Taiwan 1839           0
## 20533                       Tajikistan 1839           0
## 20534                         Tanzania 1839           0
## 20535                         Thailand 1839           0
## 20536                            Timor 1839           0
## 20537                             Togo 1839           0
## 20538                            Tonga 1839           0
## 20539              Trinidad and Tobago 1839           0
## 20540                          Tunisia 1839           0
## 20541                           Turkey 1839           0
## 20542                     Turkmenistan 1839           0
## 20543         Turks and Caicos Islands 1839           0
## 20544                           Tuvalu 1839           0
## 20545                           Uganda 1839           0
## 20546                          Ukraine 1839           0
## 20547             United Arab Emirates 1839           0
## 20548                   United Kingdom 1839  2616117984
## 20549                    United States 1839    60115248
## 20550                          Uruguay 1839           0
## 20551                       Uzbekistan 1839           0
## 20552                          Vanuatu 1839           0
## 20553                        Venezuela 1839           0
## 20554                          Vietnam 1839           0
## 20555        Wallis and Futuna Islands 1839           0
## 20556                            World 1839  3065104544
## 20557                            Yemen 1839           0
## 20558                           Zambia 1839           0
## 20559                         Zimbabwe 1839           0
## 20560                      Afghanistan 1840           0
## 20561                           Africa 1840           0
## 20562                          Albania 1840           0
## 20563                          Algeria 1840           0
## 20564                 Americas (other) 1840      205184
## 20565                          Andorra 1840           0
## 20566                           Angola 1840           0
## 20567                         Anguilla 1840           0
## 20568              Antarctic Fisheries 1840           0
## 20569              Antigua and Barbuda 1840           0
## 20570                        Argentina 1840           0
## 20571                          Armenia 1840           0
## 20572                            Aruba 1840           0
## 20573         Asia and Pacific (other) 1840           0
## 20574                        Australia 1840           0
## 20575                          Austria 1840    12094864
## 20576                       Azerbaijan 1840           0
## 20577                          Bahamas 1840           0
## 20578                          Bahrain 1840           0
## 20579                       Bangladesh 1840           0
## 20580                         Barbados 1840           0
## 20581                          Belarus 1840           0
## 20582                          Belgium 1840    67659424
## 20583                           Belize 1840           0
## 20584                            Benin 1840           0
## 20585                          Bermuda 1840           0
## 20586                           Bhutan 1840           0
## 20587                          Bolivia 1840           0
## 20588  Bonaire Sint Eustatius and Saba 1840           0
## 20589           Bosnia and Herzegovina 1840           0
## 20590                         Botswana 1840           0
## 20591                           Brazil 1840           0
## 20592           British Virgin Islands 1840           0
## 20593                           Brunei 1840           0
## 20594                         Bulgaria 1840           0
## 20595                     Burkina Faso 1840           0
## 20596                          Burundi 1840           0
## 20597                         Cambodia 1840           0
## 20598                         Cameroon 1840           0
## 20599                           Canada 1840      205184
## 20600                       Cape Verde 1840           0
## 20601                   Cayman Islands 1840           0
## 20602         Central African Republic 1840           0
## 20603                             Chad 1840           0
## 20604                            Chile 1840           0
## 20605                            China 1840           0
## 20606                 Christmas Island 1840           0
## 20607                         Colombia 1840           0
## 20608                          Comoros 1840           0
## 20609                            Congo 1840           0
## 20610                     Cook Islands 1840           0
## 20611                       Costa Rica 1840           0
## 20612                    Cote d'Ivoire 1840           0
## 20613                          Croatia 1840           0
## 20614                             Cuba 1840           0
## 20615                          Curacao 1840           0
## 20616                           Cyprus 1840           0
## 20617                   Czech Republic 1840           0
## 20618                   Czechoslovakia 1840           0
## 20619     Democratic Republic of Congo 1840           0
## 20620                          Denmark 1840           0
## 20621                         Djibouti 1840           0
## 20622                         Dominica 1840           0
## 20623               Dominican Republic 1840           0
## 20624                            EU-28 1840  3117551040
## 20625                          Ecuador 1840           0
## 20626                            Egypt 1840           0
## 20627                      El Salvador 1840           0
## 20628                Equatorial Guinea 1840           0
## 20629                          Eritrea 1840           0
## 20630                          Estonia 1840           0
## 20631                         Ethiopia 1840           0
## 20632                   Europe (other) 1840      289456
## 20633                   Faeroe Islands 1840           0
## 20634                 Falkland Islands 1840           0
## 20635                             Fiji 1840           0
## 20636                          Finland 1840           0
## 20637                           France 1840   171365280
## 20638                    French Guiana 1840           0
## 20639                 French Polynesia 1840           0
## 20640                            Gabon 1840           0
## 20641                           Gambia 1840           0
## 20642                          Georgia 1840           0
## 20643                          Germany 1840   131812400
## 20644                            Ghana 1840           0
## 20645                        Gibraltar 1840           0
## 20646                           Greece 1840           0
## 20647                        Greenland 1840           0
## 20648                          Grenada 1840           0
## 20649                       Guadeloupe 1840           0
## 20650                        Guatemala 1840           0
## 20651                           Guinea 1840           0
## 20652                    Guinea-Bissau 1840           0
## 20653                           Guyana 1840           0
## 20654                            Haiti 1840           0
## 20655                         Honduras 1840           0
## 20656                        Hong Kong 1840           0
## 20657                          Hungary 1840      948976
## 20658                          Iceland 1840           0
## 20659                            India 1840           0
## 20660                        Indonesia 1840           0
## 20661                             Iran 1840           0
## 20662                             Iraq 1840           0
## 20663                          Ireland 1840           0
## 20664                           Israel 1840           0
## 20665                            Italy 1840           0
## 20666                          Jamaica 1840           0
## 20667                            Japan 1840           0
## 20668                           Jordan 1840           0
## 20669                       Kazakhstan 1840           0
## 20670                            Kenya 1840           0
## 20671                         Kiribati 1840           0
## 20672                           Kuwait 1840           0
## 20673                       Kyrgysztan 1840           0
## 20674                       Kyrgyzstan 1840           0
## 20675                             Laos 1840           0
## 20676                           Latvia 1840           0
## 20677                          Lebanon 1840           0
## 20678                          Lesotho 1840           0
## 20679                          Liberia 1840           0
## 20680                            Libya 1840           0
## 20681                    Liechtenstein 1840           0
## 20682                        Lithuania 1840           0
## 20683                       Luxembourg 1840           0
## 20684                            Macao 1840           0
## 20685                        Macedonia 1840           0
## 20686                       Madagascar 1840           0
## 20687                           Malawi 1840           0
## 20688                         Malaysia 1840           0
## 20689                         Maldives 1840           0
## 20690                             Mali 1840           0
## 20691                            Malta 1840           0
## 20692                 Marshall Islands 1840           0
## 20693                       Martinique 1840           0
## 20694                       Mauritania 1840           0
## 20695                        Mauritius 1840           0
## 20696                           Mexico 1840           0
## 20697             Micronesia (country) 1840           0
## 20698                      Middle East 1840           0
## 20699                          Moldova 1840           0
## 20700                         Mongolia 1840           0
## 20701                       Montenegro 1840           0
## 20702                       Montserrat 1840           0
## 20703                          Morocco 1840           0
## 20704                       Mozambique 1840           0
## 20705                          Myanmar 1840           0
## 20706                          Namibia 1840           0
## 20707                            Nauru 1840           0
## 20708                            Nepal 1840           0
## 20709                      Netherlands 1840           0
## 20710                    New Caledonia 1840           0
## 20711                      New Zealand 1840           0
## 20712                        Nicaragua 1840           0
## 20713                            Niger 1840           0
## 20714                          Nigeria 1840           0
## 20715                             Niue 1840           0
## 20716                      North Korea 1840           0
## 20717                           Norway 1840      216176
## 20718                             Oman 1840           0
## 20719                         Pakistan 1840           0
## 20720                            Palau 1840           0
## 20721                        Palestine 1840           0
## 20722                           Panama 1840           0
## 20723                 Papua New Guinea 1840           0
## 20724                         Paraguay 1840           0
## 20725                             Peru 1840           0
## 20726                      Philippines 1840           0
## 20727                           Poland 1840    36284592
## 20728                         Portugal 1840           0
## 20729                            Qatar 1840           0
## 20730                          Reunion 1840           0
## 20731                          Romania 1840           0
## 20732                           Russia 1840           0
## 20733                           Rwanda 1840           0
## 20734                     Saint Helena 1840           0
## 20735            Saint Kitts and Nevis 1840           0
## 20736                      Saint Lucia 1840           0
## 20737        Saint Pierre and Miquelon 1840           0
## 20738 Saint Vincent and the Grenadines 1840           0
## 20739                            Samoa 1840           0
## 20740            Sao Tome and Principe 1840           0
## 20741                     Saudi Arabia 1840           0
## 20742                          Senegal 1840           0
## 20743                           Serbia 1840           0
## 20744                       Seychelles 1840           0
## 20745                     Sierra Leone 1840           0
## 20746                        Singapore 1840           0
## 20747        Sint Maarten (Dutch part) 1840           0
## 20748                         Slovakia 1840           0
## 20749                         Slovenia 1840           0
## 20750                  Solomon Islands 1840           0
## 20751                          Somalia 1840           0
## 20752                     South Africa 1840           0
## 20753                      South Korea 1840           0
## 20754                      South Sudan 1840           0
## 20755                            Spain 1840      190528
## 20756                        Sri Lanka 1840           0
## 20757                            Sudan 1840           0
## 20758                         Suriname 1840           0
## 20759                        Swaziland 1840           0
## 20760                           Sweden 1840      117248
## 20761                      Switzerland 1840           0
## 20762                            Syria 1840           0
## 20763                           Taiwan 1840           0
## 20764                       Tajikistan 1840           0
## 20765                         Tanzania 1840           0
## 20766                         Thailand 1840           0
## 20767                            Timor 1840           0
## 20768                             Togo 1840           0
## 20769                            Tonga 1840           0
## 20770              Trinidad and Tobago 1840           0
## 20771                          Tunisia 1840           0
## 20772                           Turkey 1840           0
## 20773                     Turkmenistan 1840           0
## 20774         Turks and Caicos Islands 1840           0
## 20775                           Tuvalu 1840           0
## 20776                           Uganda 1840           0
## 20777                          Ukraine 1840           0
## 20778             United Arab Emirates 1840           0
## 20779                   United Kingdom 1840  2697077728
## 20780                    United States 1840    65988640
## 20781                          Uruguay 1840           0
## 20782                       Uzbekistan 1840           0
## 20783                          Vanuatu 1840           0
## 20784                        Venezuela 1840           0
## 20785                          Vietnam 1840           0
## 20786        Wallis and Futuna Islands 1840           0
## 20787                            World 1840  3184034320
## 20788                            Yemen 1840           0
## 20789                           Zambia 1840           0
## 20790                         Zimbabwe 1840           0
## 20791                      Afghanistan 1841           0
## 20792                           Africa 1841           0
## 20793                          Albania 1841           0
## 20794                          Algeria 1841           0
## 20795                 Americas (other) 1841      208848
## 20796                          Andorra 1841           0
## 20797                           Angola 1841           0
## 20798                         Anguilla 1841           0
## 20799              Antarctic Fisheries 1841           0
## 20800              Antigua and Barbuda 1841           0
## 20801                        Argentina 1841           0
## 20802                          Armenia 1841           0
## 20803                            Aruba 1841           0
## 20804         Asia and Pacific (other) 1841           0
## 20805                        Australia 1841           0
## 20806                          Austria 1841    13413904
## 20807                       Azerbaijan 1841           0
## 20808                          Bahamas 1841           0
## 20809                          Bahrain 1841           0
## 20810                       Bangladesh 1841           0
## 20811                         Barbados 1841           0
## 20812                          Belarus 1841           0
## 20813                          Belgium 1841    75049712
## 20814                           Belize 1841           0
## 20815                            Benin 1841           0
## 20816                          Bermuda 1841           0
## 20817                           Bhutan 1841           0
## 20818                          Bolivia 1841           0
## 20819  Bonaire Sint Eustatius and Saba 1841           0
## 20820           Bosnia and Herzegovina 1841           0
## 20821                         Botswana 1841           0
## 20822                           Brazil 1841           0
## 20823           British Virgin Islands 1841           0
## 20824                           Brunei 1841           0
## 20825                         Bulgaria 1841           0
## 20826                     Burkina Faso 1841           0
## 20827                          Burundi 1841           0
## 20828                         Cambodia 1841           0
## 20829                         Cameroon 1841           0
## 20830                           Canada 1841      208848
## 20831                       Cape Verde 1841           0
## 20832                   Cayman Islands 1841           0
## 20833         Central African Republic 1841           0
## 20834                             Chad 1841           0
## 20835                            Chile 1841           0
## 20836                            China 1841           0
## 20837                 Christmas Island 1841           0
## 20838                         Colombia 1841           0
## 20839                          Comoros 1841           0
## 20840                            Congo 1841           0
## 20841                     Cook Islands 1841           0
## 20842                       Costa Rica 1841           0
## 20843                    Cote d'Ivoire 1841           0
## 20844                          Croatia 1841           0
## 20845                             Cuba 1841           0
## 20846                          Curacao 1841           0
## 20847                           Cyprus 1841           0
## 20848                   Czech Republic 1841           0
## 20849                   Czechoslovakia 1841           0
## 20850     Democratic Republic of Congo 1841           0
## 20851                          Denmark 1841           0
## 20852                         Djibouti 1841           0
## 20853                         Dominica 1841           0
## 20854               Dominican Republic 1841           0
## 20855                            EU-28 1841  3233894032
## 20856                          Ecuador 1841           0
## 20857                            Egypt 1841           0
## 20858                      El Salvador 1841           0
## 20859                Equatorial Guinea 1841           0
## 20860                          Eritrea 1841           0
## 20861                          Estonia 1841           0
## 20862                         Ethiopia 1841           0
## 20863                   Europe (other) 1841      344416
## 20864                   Faeroe Islands 1841           0
## 20865                 Falkland Islands 1841           0
## 20866                             Fiji 1841           0
## 20867                          Finland 1841           0
## 20868                           France 1841   185185888
## 20869                    French Guiana 1841           0
## 20870                 French Polynesia 1841           0
## 20871                            Gabon 1841           0
## 20872                           Gambia 1841           0
## 20873                          Georgia 1841           0
## 20874                          Germany 1841   141360784
## 20875                            Ghana 1841           0
## 20876                        Gibraltar 1841           0
## 20877                           Greece 1841           0
## 20878                        Greenland 1841           0
## 20879                          Grenada 1841           0
## 20880                       Guadeloupe 1841           0
## 20881                        Guatemala 1841           0
## 20882                           Guinea 1841           0
## 20883                    Guinea-Bissau 1841           0
## 20884                           Guyana 1841           0
## 20885                            Haiti 1841           0
## 20886                         Honduras 1841           0
## 20887                        Hong Kong 1841           0
## 20888                          Hungary 1841     1091872
## 20889                          Iceland 1841           0
## 20890                            India 1841           0
## 20891                        Indonesia 1841           0
## 20892                             Iran 1841           0
## 20893                             Iraq 1841           0
## 20894                          Ireland 1841           0
## 20895                           Israel 1841           0
## 20896                            Italy 1841           0
## 20897                          Jamaica 1841           0
## 20898                            Japan 1841           0
## 20899                           Jordan 1841           0
## 20900                       Kazakhstan 1841           0
## 20901                            Kenya 1841           0
## 20902                         Kiribati 1841           0
## 20903                           Kuwait 1841           0
## 20904                       Kyrgysztan 1841           0
## 20905                       Kyrgyzstan 1841           0
## 20906                             Laos 1841           0
## 20907                           Latvia 1841           0
## 20908                          Lebanon 1841           0
## 20909                          Lesotho 1841           0
## 20910                          Liberia 1841           0
## 20911                            Libya 1841           0
## 20912                    Liechtenstein 1841           0
## 20913                        Lithuania 1841           0
## 20914                       Luxembourg 1841           0
## 20915                            Macao 1841           0
## 20916                        Macedonia 1841           0
## 20917                       Madagascar 1841           0
## 20918                           Malawi 1841           0
## 20919                         Malaysia 1841           0
## 20920                         Maldives 1841           0
## 20921                             Mali 1841           0
## 20922                            Malta 1841           0
## 20923                 Marshall Islands 1841           0
## 20924                       Martinique 1841           0
## 20925                       Mauritania 1841           0
## 20926                        Mauritius 1841           0
## 20927                           Mexico 1841           0
## 20928             Micronesia (country) 1841           0
## 20929                      Middle East 1841           0
## 20930                          Moldova 1841           0
## 20931                         Mongolia 1841           0
## 20932                       Montenegro 1841           0
## 20933                       Montserrat 1841           0
## 20934                          Morocco 1841           0
## 20935                       Mozambique 1841           0
## 20936                          Myanmar 1841           0
## 20937                          Namibia 1841           0
## 20938                            Nauru 1841           0
## 20939                            Nepal 1841           0
## 20940                      Netherlands 1841           0
## 20941                    New Caledonia 1841           0
## 20942                      New Zealand 1841           0
## 20943                        Nicaragua 1841           0
## 20944                            Niger 1841           0
## 20945                          Nigeria 1841           0
## 20946                             Niue 1841           0
## 20947                      North Korea 1841           0
## 20948                           Norway 1841      274800
## 20949                             Oman 1841           0
## 20950                         Pakistan 1841           0
## 20951                            Palau 1841           0
## 20952                        Palestine 1841           0
## 20953                           Panama 1841           0
## 20954                 Papua New Guinea 1841           0
## 20955                         Paraguay 1841           0
## 20956                             Peru 1841           0
## 20957                      Philippines 1841           0
## 20958                           Poland 1841    38424368
## 20959                         Portugal 1841           0
## 20960                            Qatar 1841           0
## 20961                          Reunion 1841           0
## 20962                          Romania 1841           0
## 20963                           Russia 1841           0
## 20964                           Rwanda 1841           0
## 20965                     Saint Helena 1841           0
## 20966            Saint Kitts and Nevis 1841           0
## 20967                      Saint Lucia 1841           0
## 20968        Saint Pierre and Miquelon 1841           0
## 20969 Saint Vincent and the Grenadines 1841           0
## 20970                            Samoa 1841           0
## 20971            Sao Tome and Principe 1841           0
## 20972                     Saudi Arabia 1841           0
## 20973                          Senegal 1841           0
## 20974                           Serbia 1841           0
## 20975                       Seychelles 1841           0
## 20976                     Sierra Leone 1841           0
## 20977                        Singapore 1841           0
## 20978        Sint Maarten (Dutch part) 1841           0
## 20979                         Slovakia 1841           0
## 20980                         Slovenia 1841           0
## 20981                  Solomon Islands 1841           0
## 20982                          Somalia 1841           0
## 20983                     South Africa 1841           0
## 20984                      South Korea 1841           0
## 20985                      South Sudan 1841           0
## 20986                            Spain 1841      293120
## 20987                        Sri Lanka 1841           0
## 20988                            Sudan 1841           0
## 20989                         Suriname 1841           0
## 20990                        Swaziland 1841           0
## 20991                           Sweden 1841      157552
## 20992                      Switzerland 1841           0
## 20993                            Syria 1841           0
## 20994                           Taiwan 1841           0
## 20995                       Tajikistan 1841           0
## 20996                         Tanzania 1841           0
## 20997                         Thailand 1841           0
## 20998                            Timor 1841           0
## 20999                             Togo 1841           0
## 21000                            Tonga 1841           0
## 21001              Trinidad and Tobago 1841           0
## 21002                          Tunisia 1841           0
## 21003                           Turkey 1841           0
## 21004                     Turkmenistan 1841           0
## 21005         Turks and Caicos Islands 1841           0
## 21006                           Tuvalu 1841           0
## 21007                           Uganda 1841           0
## 21008                          Ukraine 1841           0
## 21009             United Arab Emirates 1841           0
## 21010                   United Kingdom 1841  2778916832
## 21011                    United States 1841    72202784
## 21012                          Uruguay 1841           0
## 21013                       Uzbekistan 1841           0
## 21014                          Vanuatu 1841           0
## 21015                        Venezuela 1841           0
## 21016                          Vietnam 1841           0
## 21017        Wallis and Futuna Islands 1841           0
## 21018                            World 1841  3306653744
## 21019                            Yemen 1841           0
## 21020                           Zambia 1841           0
## 21021                         Zimbabwe 1841           0
## 21022                      Afghanistan 1842           0
## 21023                           Africa 1842           0
## 21024                          Albania 1842           0
## 21025                          Algeria 1842           0
## 21026                 Americas (other) 1842      212512
## 21027                          Andorra 1842           0
## 21028                           Angola 1842           0
## 21029                         Anguilla 1842           0
## 21030              Antarctic Fisheries 1842           0
## 21031              Antigua and Barbuda 1842           0
## 21032                        Argentina 1842           0
## 21033                          Armenia 1842           0
## 21034                            Aruba 1842           0
## 21035         Asia and Pacific (other) 1842           0
## 21036                        Australia 1842           0
## 21037                          Austria 1842    14872176
## 21038                       Azerbaijan 1842           0
## 21039                          Bahamas 1842           0
## 21040                          Bahrain 1842           0
## 21041                       Bangladesh 1842           0
## 21042                         Barbados 1842           0
## 21043                          Belarus 1842           0
## 21044                          Belgium 1842    82729456
## 21045                           Belize 1842           0
## 21046                            Benin 1842           0
## 21047                          Bermuda 1842           0
## 21048                           Bhutan 1842           0
## 21049                          Bolivia 1842           0
## 21050  Bonaire Sint Eustatius and Saba 1842           0
## 21051           Bosnia and Herzegovina 1842           0
## 21052                         Botswana 1842           0
## 21053                           Brazil 1842           0
## 21054           British Virgin Islands 1842           0
## 21055                           Brunei 1842           0
## 21056                         Bulgaria 1842           0
## 21057                     Burkina Faso 1842           0
## 21058                          Burundi 1842           0
## 21059                         Cambodia 1842           0
## 21060                         Cameroon 1842           0
## 21061                           Canada 1842      212512
## 21062                       Cape Verde 1842           0
## 21063                   Cayman Islands 1842           0
## 21064         Central African Republic 1842           0
## 21065                             Chad 1842           0
## 21066                            Chile 1842           0
## 21067                            China 1842           0
## 21068                 Christmas Island 1842           0
## 21069                         Colombia 1842           0
## 21070                          Comoros 1842           0
## 21071                            Congo 1842           0
## 21072                     Cook Islands 1842           0
## 21073                       Costa Rica 1842           0
## 21074                    Cote d'Ivoire 1842           0
## 21075                          Croatia 1842           0
## 21076                             Cuba 1842           0
## 21077                          Curacao 1842           0
## 21078                           Cyprus 1842           0
## 21079                   Czech Republic 1842           0
## 21080                   Czechoslovakia 1842           0
## 21081     Democratic Republic of Congo 1842           0
## 21082                          Denmark 1842           0
## 21083                         Djibouti 1842           0
## 21084                         Dominica 1842           0
## 21085               Dominican Republic 1842           0
## 21086                            EU-28 1842  3356403536
## 21087                          Ecuador 1842           0
## 21088                            Egypt 1842           0
## 21089                      El Salvador 1842           0
## 21090                Equatorial Guinea 1842           0
## 21091                          Eritrea 1842           0
## 21092                          Estonia 1842           0
## 21093                         Ethiopia 1842           0
## 21094                   Europe (other) 1842      414032
## 21095                   Faeroe Islands 1842           0
## 21096                 Falkland Islands 1842           0
## 21097                             Fiji 1842           0
## 21098                          Finland 1842           0
## 21099                           France 1842   199713648
## 21100                    French Guiana 1842           0
## 21101                 French Polynesia 1842           0
## 21102                            Gabon 1842           0
## 21103                           Gambia 1842           0
## 21104                          Georgia 1842           0
## 21105                          Germany 1842   152242864
## 21106                            Ghana 1842           0
## 21107                        Gibraltar 1842           0
## 21108                           Greece 1842           0
## 21109                        Greenland 1842           0
## 21110                          Grenada 1842           0
## 21111                       Guadeloupe 1842           0
## 21112                        Guatemala 1842           0
## 21113                           Guinea 1842           0
## 21114                    Guinea-Bissau 1842           0
## 21115                           Guyana 1842           0
## 21116                            Haiti 1842           0
## 21117                         Honduras 1842           0
## 21118                        Hong Kong 1842           0
## 21119                          Hungary 1842     1176144
## 21120                          Iceland 1842           0
## 21121                            India 1842           0
## 21122                        Indonesia 1842           0
## 21123                             Iran 1842           0
## 21124                             Iraq 1842           0
## 21125                          Ireland 1842           0
## 21126                           Israel 1842           0
## 21127                            Italy 1842           0
## 21128                          Jamaica 1842           0
## 21129                            Japan 1842           0
## 21130                           Jordan 1842           0
## 21131                       Kazakhstan 1842           0
## 21132                            Kenya 1842           0
## 21133                         Kiribati 1842           0
## 21134                           Kuwait 1842           0
## 21135                       Kyrgysztan 1842           0
## 21136                       Kyrgyzstan 1842           0
## 21137                             Laos 1842           0
## 21138                           Latvia 1842           0
## 21139                          Lebanon 1842           0
## 21140                          Lesotho 1842           0
## 21141                          Liberia 1842           0
## 21142                            Libya 1842           0
## 21143                    Liechtenstein 1842           0
## 21144                        Lithuania 1842           0
## 21145                       Luxembourg 1842           0
## 21146                            Macao 1842           0
## 21147                        Macedonia 1842           0
## 21148                       Madagascar 1842           0
## 21149                           Malawi 1842           0
## 21150                         Malaysia 1842           0
## 21151                         Maldives 1842           0
## 21152                             Mali 1842           0
## 21153                            Malta 1842           0
## 21154                 Marshall Islands 1842           0
## 21155                       Martinique 1842           0
## 21156                       Mauritania 1842           0
## 21157                        Mauritius 1842           0
## 21158                           Mexico 1842           0
## 21159             Micronesia (country) 1842           0
## 21160                      Middle East 1842           0
## 21161                          Moldova 1842           0
## 21162                         Mongolia 1842           0
## 21163                       Montenegro 1842           0
## 21164                       Montserrat 1842           0
## 21165                          Morocco 1842           0
## 21166                       Mozambique 1842           0
## 21167                          Myanmar 1842           0
## 21168                          Namibia 1842           0
## 21169                            Nauru 1842           0
## 21170                            Nepal 1842           0
## 21171                      Netherlands 1842           0
## 21172                    New Caledonia 1842           0
## 21173                      New Zealand 1842           0
## 21174                        Nicaragua 1842           0
## 21175                            Niger 1842           0
## 21176                          Nigeria 1842           0
## 21177                             Niue 1842           0
## 21178                      North Korea 1842           0
## 21179                           Norway 1842      348080
## 21180                             Oman 1842           0
## 21181                         Pakistan 1842           0
## 21182                            Palau 1842           0
## 21183                        Palestine 1842           0
## 21184                           Panama 1842           0
## 21185                 Papua New Guinea 1842           0
## 21186                         Paraguay 1842           0
## 21187                             Peru 1842           0
## 21188                      Philippines 1842           0
## 21189                           Poland 1842    40707040
## 21190                         Portugal 1842           0
## 21191                            Qatar 1842           0
## 21192                          Reunion 1842           0
## 21193                          Romania 1842           0
## 21194                           Russia 1842           0
## 21195                           Rwanda 1842           0
## 21196                     Saint Helena 1842           0
## 21197            Saint Kitts and Nevis 1842           0
## 21198                      Saint Lucia 1842           0
## 21199        Saint Pierre and Miquelon 1842           0
## 21200 Saint Vincent and the Grenadines 1842           0
## 21201                            Samoa 1842           0
## 21202            Sao Tome and Principe 1842           0
## 21203                     Saudi Arabia 1842           0
## 21204                          Senegal 1842           0
## 21205                           Serbia 1842           0
## 21206                       Seychelles 1842           0
## 21207                     Sierra Leone 1842           0
## 21208                        Singapore 1842           0
## 21209        Sint Maarten (Dutch part) 1842           0
## 21210                         Slovakia 1842           0
## 21211                         Slovenia 1842           0
## 21212                  Solomon Islands 1842           0
## 21213                          Somalia 1842           0
## 21214                     South Africa 1842           0
## 21215                      South Korea 1842           0
## 21216                      South Sudan 1842           0
## 21217                            Spain 1842      436016
## 21218                        Sri Lanka 1842           0
## 21219                            Sudan 1842           0
## 21220                         Suriname 1842           0
## 21221                        Swaziland 1842           0
## 21222                           Sweden 1842      238160
## 21223                      Switzerland 1842           0
## 21224                            Syria 1842           0
## 21225                           Taiwan 1842           0
## 21226                       Tajikistan 1842           0
## 21227                         Tanzania 1842           0
## 21228                         Thailand 1842           0
## 21229                            Timor 1842           0
## 21230                             Togo 1842           0
## 21231                            Tonga 1842           0
## 21232              Trinidad and Tobago 1842           0
## 21233                          Tunisia 1842           0
## 21234                           Turkey 1842           0
## 21235                     Turkmenistan 1842           0
## 21236         Turks and Caicos Islands 1842           0
## 21237                           Tuvalu 1842           0
## 21238                           Uganda 1842           0
## 21239                          Ukraine 1842           0
## 21240             United Arab Emirates 1842           0
## 21241                   United Kingdom 1842  2864288032
## 21242                    United States 1842    79120416
## 21243                          Uruguay 1842           0
## 21244                       Uzbekistan 1842           0
## 21245                          Vanuatu 1842           0
## 21246                        Venezuela 1842           0
## 21247                          Vietnam 1842           0
## 21248        Wallis and Futuna Islands 1842           0
## 21249                            World 1842  3436157824
## 21250                            Yemen 1842           0
## 21251                           Zambia 1842           0
## 21252                         Zimbabwe 1842           0
## 21253                      Afghanistan 1843           0
## 21254                           Africa 1843           0
## 21255                          Albania 1843           0
## 21256                          Algeria 1843           0
## 21257                 Americas (other) 1843      216176
## 21258                          Andorra 1843           0
## 21259                           Angola 1843           0
## 21260                         Anguilla 1843           0
## 21261              Antarctic Fisheries 1843           0
## 21262              Antigua and Barbuda 1843           0
## 21263                        Argentina 1843           0
## 21264                          Armenia 1843           0
## 21265                            Aruba 1843           0
## 21266         Asia and Pacific (other) 1843           0
## 21267                        Australia 1843           0
## 21268                          Austria 1843    16139920
## 21269                       Azerbaijan 1843           0
## 21270                          Bahamas 1843           0
## 21271                          Bahrain 1843           0
## 21272                       Bangladesh 1843           0
## 21273                         Barbados 1843           0
## 21274                          Belarus 1843           0
## 21275                          Belgium 1843    89841280
## 21276                           Belize 1843           0
## 21277                            Benin 1843           0
## 21278                          Bermuda 1843           0
## 21279                           Bhutan 1843           0
## 21280                          Bolivia 1843           0
## 21281  Bonaire Sint Eustatius and Saba 1843           0
## 21282           Bosnia and Herzegovina 1843           0
## 21283                         Botswana 1843           0
## 21284                           Brazil 1843           0
## 21285           British Virgin Islands 1843           0
## 21286                           Brunei 1843           0
## 21287                         Bulgaria 1843           0
## 21288                     Burkina Faso 1843           0
## 21289                          Burundi 1843           0
## 21290                         Cambodia 1843           0
## 21291                         Cameroon 1843           0
## 21292                           Canada 1843      216176
## 21293                       Cape Verde 1843           0
## 21294                   Cayman Islands 1843           0
## 21295         Central African Republic 1843           0
## 21296                             Chad 1843           0
## 21297                            Chile 1843           0
## 21298                            China 1843           0
## 21299                 Christmas Island 1843           0
## 21300                         Colombia 1843           0
## 21301                          Comoros 1843           0
## 21302                            Congo 1843           0
## 21303                     Cook Islands 1843           0
## 21304                       Costa Rica 1843           0
## 21305                    Cote d'Ivoire 1843           0
## 21306                          Croatia 1843           0
## 21307                             Cuba 1843           0
## 21308                          Curacao 1843           0
## 21309                           Cyprus 1843           0
## 21310                   Czech Republic 1843           0
## 21311                   Czechoslovakia 1843           0
## 21312     Democratic Republic of Congo 1843           0
## 21313                          Denmark 1843      135568
## 21314                         Djibouti 1843           0
## 21315                         Dominica 1843           0
## 21316               Dominican Republic 1843           0
## 21317                            EU-28 1843  3481426544
## 21318                          Ecuador 1843           0
## 21319                            Egypt 1843           0
## 21320                      El Salvador 1843           0
## 21321                Equatorial Guinea 1843           0
## 21322                          Eritrea 1843           0
## 21323                          Estonia 1843           0
## 21324                         Ethiopia 1843           0
## 21325                   Europe (other) 1843      479984
## 21326                   Faeroe Islands 1843           0
## 21327                 Falkland Islands 1843           0
## 21328                             Fiji 1843           0
## 21329                          Finland 1843           0
## 21330                           France 1843   214263392
## 21331                    French Guiana 1843           0
## 21332                 French Polynesia 1843           0
## 21333                            Gabon 1843           0
## 21334                           Gambia 1843           0
## 21335                          Georgia 1843           0
## 21336                          Germany 1843   162542368
## 21337                            Ghana 1843           0
## 21338                        Gibraltar 1843           0
## 21339                           Greece 1843           0
## 21340                        Greenland 1843           0
## 21341                          Grenada 1843           0
## 21342                       Guadeloupe 1843           0
## 21343                        Guatemala 1843           0
## 21344                           Guinea 1843           0
## 21345                    Guinea-Bissau 1843           0
## 21346                           Guyana 1843           0
## 21347                            Haiti 1843           0
## 21348                         Honduras 1843           0
## 21349                        Hong Kong 1843           0
## 21350                          Hungary 1843     1264080
## 21351                          Iceland 1843           0
## 21352                            India 1843           0
## 21353                        Indonesia 1843           0
## 21354                             Iran 1843           0
## 21355                             Iraq 1843           0
## 21356                          Ireland 1843           0
## 21357                           Israel 1843           0
## 21358                            Italy 1843           0
## 21359                          Jamaica 1843           0
## 21360                            Japan 1843           0
## 21361                           Jordan 1843           0
## 21362                       Kazakhstan 1843           0
## 21363                            Kenya 1843           0
## 21364                         Kiribati 1843           0
## 21365                           Kuwait 1843           0
## 21366                       Kyrgysztan 1843           0
## 21367                       Kyrgyzstan 1843           0
## 21368                             Laos 1843           0
## 21369                           Latvia 1843           0
## 21370                          Lebanon 1843           0
## 21371                          Lesotho 1843           0
## 21372                          Liberia 1843           0
## 21373                            Libya 1843           0
## 21374                    Liechtenstein 1843           0
## 21375                        Lithuania 1843           0
## 21376                       Luxembourg 1843           0
## 21377                            Macao 1843           0
## 21378                        Macedonia 1843           0
## 21379                       Madagascar 1843           0
## 21380                           Malawi 1843           0
## 21381                         Malaysia 1843           0
## 21382                         Maldives 1843           0
## 21383                             Mali 1843           0
## 21384                            Malta 1843           0
## 21385                 Marshall Islands 1843           0
## 21386                       Martinique 1843           0
## 21387                       Mauritania 1843           0
## 21388                        Mauritius 1843           0
## 21389                           Mexico 1843           0
## 21390             Micronesia (country) 1843           0
## 21391                      Middle East 1843           0
## 21392                          Moldova 1843           0
## 21393                         Mongolia 1843           0
## 21394                       Montenegro 1843           0
## 21395                       Montserrat 1843           0
## 21396                          Morocco 1843           0
## 21397                       Mozambique 1843           0
## 21398                          Myanmar 1843           0
## 21399                          Namibia 1843           0
## 21400                            Nauru 1843           0
## 21401                            Nepal 1843           0
## 21402                      Netherlands 1843           0
## 21403                    New Caledonia 1843           0
## 21404                      New Zealand 1843           0
## 21405                        Nicaragua 1843           0
## 21406                            Niger 1843           0
## 21407                          Nigeria 1843           0
## 21408                             Niue 1843           0
## 21409                      North Korea 1843           0
## 21410                           Norway 1843      410368
## 21411                             Oman 1843           0
## 21412                         Pakistan 1843           0
## 21413                            Palau 1843           0
## 21414                        Palestine 1843           0
## 21415                           Panama 1843           0
## 21416                 Papua New Guinea 1843           0
## 21417                         Paraguay 1843           0
## 21418                             Peru 1843           0
## 21419                      Philippines 1843           0
## 21420                           Poland 1843    42953072
## 21421                         Portugal 1843           0
## 21422                            Qatar 1843           0
## 21423                          Reunion 1843           0
## 21424                          Romania 1843           0
## 21425                           Russia 1843           0
## 21426                           Rwanda 1843           0
## 21427                     Saint Helena 1843           0
## 21428            Saint Kitts and Nevis 1843           0
## 21429                      Saint Lucia 1843           0
## 21430        Saint Pierre and Miquelon 1843           0
## 21431 Saint Vincent and the Grenadines 1843           0
## 21432                            Samoa 1843           0
## 21433            Sao Tome and Principe 1843           0
## 21434                     Saudi Arabia 1843           0
## 21435                          Senegal 1843           0
## 21436                           Serbia 1843           0
## 21437                       Seychelles 1843           0
## 21438                     Sierra Leone 1843           0
## 21439                        Singapore 1843           0
## 21440        Sint Maarten (Dutch part) 1843           0
## 21441                         Slovakia 1843           0
## 21442                         Slovenia 1843           0
## 21443                  Solomon Islands 1843           0
## 21444                          Somalia 1843           0
## 21445                     South Africa 1843           0
## 21446                      South Korea 1843           0
## 21447                      South Sudan 1843           0
## 21448                            Spain 1843      608224
## 21449                        Sri Lanka 1843           0
## 21450                            Sudan 1843           0
## 21451                         Suriname 1843           0
## 21452                        Swaziland 1843           0
## 21453                           Sweden 1843      296784
## 21454                      Switzerland 1843           0
## 21455                            Syria 1843           0
## 21456                           Taiwan 1843           0
## 21457                       Tajikistan 1843           0
## 21458                         Tanzania 1843           0
## 21459                         Thailand 1843           0
## 21460                            Timor 1843           0
## 21461                             Togo 1843           0
## 21462                            Tonga 1843           0
## 21463              Trinidad and Tobago 1843           0
## 21464                          Tunisia 1843           0
## 21465                           Turkey 1843           0
## 21466                     Turkmenistan 1843           0
## 21467         Turks and Caicos Islands 1843           0
## 21468                           Tuvalu 1843           0
## 21469                           Uganda 1843           0
## 21470                          Ukraine 1843           0
## 21471             United Arab Emirates 1843           0
## 21472                   United Kingdom 1843  2953381856
## 21473                    United States 1843    86884432
## 21474                          Uruguay 1843           0
## 21475                       Uzbekistan 1843           0
## 21476                          Vanuatu 1843           0
## 21477                        Venezuela 1843           0
## 21478                          Vietnam 1843           0
## 21479        Wallis and Futuna Islands 1843           0
## 21480                            World 1843  3569010800
## 21481                            Yemen 1843           0
## 21482                           Zambia 1843           0
## 21483                         Zimbabwe 1843           0
## 21484                      Afghanistan 1844           0
## 21485                           Africa 1844           0
## 21486                          Albania 1844           0
## 21487                          Algeria 1844           0
## 21488                 Americas (other) 1844      219840
## 21489                          Andorra 1844           0
## 21490                           Angola 1844           0
## 21491                         Anguilla 1844           0
## 21492              Antarctic Fisheries 1844           0
## 21493              Antigua and Barbuda 1844           0
## 21494                        Argentina 1844           0
## 21495                          Armenia 1844           0
## 21496                            Aruba 1844           0
## 21497         Asia and Pacific (other) 1844           0
## 21498                        Australia 1844           0
## 21499                          Austria 1844    17733760
## 21500                       Azerbaijan 1844           0
## 21501                          Bahamas 1844           0
## 21502                          Bahrain 1844           0
## 21503                       Bangladesh 1844           0
## 21504                         Barbados 1844           0
## 21505                          Belarus 1844           0
## 21506                          Belgium 1844    97641936
## 21507                           Belize 1844           0
## 21508                            Benin 1844           0
## 21509                          Bermuda 1844           0
## 21510                           Bhutan 1844           0
## 21511                          Bolivia 1844           0
## 21512  Bonaire Sint Eustatius and Saba 1844           0
## 21513           Bosnia and Herzegovina 1844           0
## 21514                         Botswana 1844           0
## 21515                           Brazil 1844           0
## 21516           British Virgin Islands 1844           0
## 21517                           Brunei 1844           0
## 21518                         Bulgaria 1844           0
## 21519                     Burkina Faso 1844           0
## 21520                          Burundi 1844           0
## 21521                         Cambodia 1844           0
## 21522                         Cameroon 1844           0
## 21523                           Canada 1844      219840
## 21524                       Cape Verde 1844           0
## 21525                   Cayman Islands 1844           0
## 21526         Central African Republic 1844           0
## 21527                             Chad 1844           0
## 21528                            Chile 1844           0
## 21529                            China 1844           0
## 21530                 Christmas Island 1844           0
## 21531                         Colombia 1844           0
## 21532                          Comoros 1844           0
## 21533                            Congo 1844           0
## 21534                     Cook Islands 1844           0
## 21535                       Costa Rica 1844           0
## 21536                    Cote d'Ivoire 1844           0
## 21537                          Croatia 1844           0
## 21538                             Cuba 1844           0
## 21539                          Curacao 1844           0
## 21540                           Cyprus 1844           0
## 21541                   Czech Republic 1844           0
## 21542                   Czechoslovakia 1844           0
## 21543     Democratic Republic of Congo 1844           0
## 21544                          Denmark 1844      293120
## 21545                         Djibouti 1844           0
## 21546                         Dominica 1844           0
## 21547               Dominican Republic 1844           0
## 21548                            EU-28 1844  3613473440
## 21549                          Ecuador 1844           0
## 21550                            Egypt 1844           0
## 21551                      El Salvador 1844           0
## 21552                Equatorial Guinea 1844           0
## 21553                          Eritrea 1844           0
## 21554                          Estonia 1844           0
## 21555                         Ethiopia 1844           0
## 21556                   Europe (other) 1844      556928
## 21557                   Faeroe Islands 1844           0
## 21558                 Falkland Islands 1844           0
## 21559                             Fiji 1844           0
## 21560                          Finland 1844           0
## 21561                           France 1844   229523952
## 21562                    French Guiana 1844           0
## 21563                 French Polynesia 1844           0
## 21564                            Gabon 1844           0
## 21565                           Gambia 1844           0
## 21566                          Georgia 1844           0
## 21567                          Germany 1844   173424448
## 21568                            Ghana 1844           0
## 21569                        Gibraltar 1844           0
## 21570                           Greece 1844           0
## 21571                        Greenland 1844           0
## 21572                          Grenada 1844           0
## 21573                       Guadeloupe 1844           0
## 21574                        Guatemala 1844           0
## 21575                           Guinea 1844           0
## 21576                    Guinea-Bissau 1844           0
## 21577                           Guyana 1844           0
## 21578                            Haiti 1844           0
## 21579                         Honduras 1844           0
## 21580                        Hong Kong 1844           0
## 21581                          Hungary 1844     1450944
## 21582                          Iceland 1844           0
## 21583                            India 1844           0
## 21584                        Indonesia 1844           0
## 21585                             Iran 1844           0
## 21586                             Iraq 1844           0
## 21587                          Ireland 1844           0
## 21588                           Israel 1844           0
## 21589                            Italy 1844           0
## 21590                          Jamaica 1844           0
## 21591                            Japan 1844           0
## 21592                           Jordan 1844           0
## 21593                       Kazakhstan 1844           0
## 21594                            Kenya 1844           0
## 21595                         Kiribati 1844           0
## 21596                           Kuwait 1844           0
## 21597                       Kyrgysztan 1844           0
## 21598                       Kyrgyzstan 1844           0
## 21599                             Laos 1844           0
## 21600                           Latvia 1844           0
## 21601                          Lebanon 1844           0
## 21602                          Lesotho 1844           0
## 21603                          Liberia 1844           0
## 21604                            Libya 1844           0
## 21605                    Liechtenstein 1844           0
## 21606                        Lithuania 1844           0
## 21607                       Luxembourg 1844           0
## 21608                            Macao 1844           0
## 21609                        Macedonia 1844           0
## 21610                       Madagascar 1844           0
## 21611                           Malawi 1844           0
## 21612                         Malaysia 1844           0
## 21613                         Maldives 1844           0
## 21614                             Mali 1844           0
## 21615                            Malta 1844           0
## 21616                 Marshall Islands 1844           0
## 21617                       Martinique 1844           0
## 21618                       Mauritania 1844           0
## 21619                        Mauritius 1844           0
## 21620                           Mexico 1844           0
## 21621             Micronesia (country) 1844           0
## 21622                      Middle East 1844           0
## 21623                          Moldova 1844           0
## 21624                         Mongolia 1844           0
## 21625                       Montenegro 1844           0
## 21626                       Montserrat 1844           0
## 21627                          Morocco 1844           0
## 21628                       Mozambique 1844           0
## 21629                          Myanmar 1844           0
## 21630                          Namibia 1844           0
## 21631                            Nauru 1844           0
## 21632                            Nepal 1844           0
## 21633                      Netherlands 1844           0
## 21634                    New Caledonia 1844           0
## 21635                      New Zealand 1844           0
## 21636                        Nicaragua 1844           0
## 21637                            Niger 1844           0
## 21638                          Nigeria 1844           0
## 21639                             Niue 1844           0
## 21640                      North Korea 1844           0
## 21641                           Norway 1844      476320
## 21642                             Oman 1844           0
## 21643                         Pakistan 1844           0
## 21644                            Palau 1844           0
## 21645                        Palestine 1844           0
## 21646                           Panama 1844           0
## 21647                 Papua New Guinea 1844           0
## 21648                         Paraguay 1844           0
## 21649                             Peru 1844           0
## 21650                      Philippines 1844           0
## 21651                           Poland 1844    45345664
## 21652                         Portugal 1844           0
## 21653                            Qatar 1844           0
## 21654                          Reunion 1844           0
## 21655                          Romania 1844           0
## 21656                           Russia 1844           0
## 21657                           Rwanda 1844           0
## 21658                     Saint Helena 1844           0
## 21659            Saint Kitts and Nevis 1844           0
## 21660                      Saint Lucia 1844           0
## 21661        Saint Pierre and Miquelon 1844           0
## 21662 Saint Vincent and the Grenadines 1844           0
## 21663                            Samoa 1844           0
## 21664            Sao Tome and Principe 1844           0
## 21665                     Saudi Arabia 1844           0
## 21666                          Senegal 1844           0
## 21667                           Serbia 1844           0
## 21668                       Seychelles 1844           0
## 21669                     Sierra Leone 1844           0
## 21670                        Singapore 1844           0
## 21671        Sint Maarten (Dutch part) 1844           0
## 21672                         Slovakia 1844           0
## 21673                         Slovenia 1844           0
## 21674                  Solomon Islands 1844           0
## 21675                          Somalia 1844           0
## 21676                     South Africa 1844           0
## 21677                      South Korea 1844           0
## 21678                      South Sudan 1844           0
## 21679                            Spain 1844      809744
## 21680                        Sri Lanka 1844           0
## 21681                            Sudan 1844           0
## 21682                         Suriname 1844           0
## 21683                        Swaziland 1844           0
## 21684                           Sweden 1844      395712
## 21685                      Switzerland 1844           0
## 21686                            Syria 1844           0
## 21687                           Taiwan 1844           0
## 21688                       Tajikistan 1844           0
## 21689                         Tanzania 1844           0
## 21690                         Thailand 1844           0
## 21691                            Timor 1844           0
## 21692                             Togo 1844           0
## 21693                            Tonga 1844           0
## 21694              Trinidad and Tobago 1844           0
## 21695                          Tunisia 1844           0
## 21696                           Turkey 1844           0
## 21697                     Turkmenistan 1844           0
## 21698         Turks and Caicos Islands 1844           0
## 21699                           Tuvalu 1844           0
## 21700                           Uganda 1844           0
## 21701                          Ukraine 1844           0
## 21702             United Arab Emirates 1844           0
## 21703                   United Kingdom 1844  3046854160
## 21704                    United States 1844    96190992
## 21705                          Uruguay 1844           0
## 21706                       Uzbekistan 1844           0
## 21707                          Vanuatu 1844           0
## 21708                        Venezuela 1844           0
## 21709                          Vietnam 1844           0
## 21710        Wallis and Futuna Islands 1844           0
## 21711                            World 1844  3710433872
## 21712                            Yemen 1844           0
## 21713                           Zambia 1844           0
## 21714                         Zimbabwe 1844           0
## 21715                      Afghanistan 1845           0
## 21716                           Africa 1845           0
## 21717                          Albania 1845           0
## 21718                          Algeria 1845           0
## 21719                 Americas (other) 1845      223504
## 21720                          Andorra 1845           0
## 21721                           Angola 1845           0
## 21722                         Anguilla 1845           0
## 21723              Antarctic Fisheries 1845           0
## 21724              Antigua and Barbuda 1845           0
## 21725                        Argentina 1845           0
## 21726                          Armenia 1845           0
## 21727                            Aruba 1845           0
## 21728         Asia and Pacific (other) 1845           0
## 21729                        Australia 1845           0
## 21730                          Austria 1845    19532784
## 21731                       Azerbaijan 1845           0
## 21732                          Bahamas 1845           0
## 21733                          Bahrain 1845           0
## 21734                       Bangladesh 1845           0
## 21735                         Barbados 1845           0
## 21736                          Belarus 1845           0
## 21737                          Belgium 1845   105860288
## 21738                           Belize 1845           0
## 21739                            Benin 1845           0
## 21740                          Bermuda 1845           0
## 21741                           Bhutan 1845           0
## 21742                          Bolivia 1845           0
## 21743  Bonaire Sint Eustatius and Saba 1845           0
## 21744           Bosnia and Herzegovina 1845           0
## 21745                         Botswana 1845           0
## 21746                           Brazil 1845           0
## 21747           British Virgin Islands 1845           0
## 21748                           Brunei 1845           0
## 21749                         Bulgaria 1845           0
## 21750                     Burkina Faso 1845           0
## 21751                          Burundi 1845           0
## 21752                         Cambodia 1845           0
## 21753                         Cameroon 1845           0
## 21754                           Canada 1845      223504
## 21755                       Cape Verde 1845           0
## 21756                   Cayman Islands 1845           0
## 21757         Central African Republic 1845           0
## 21758                             Chad 1845           0
## 21759                            Chile 1845           0
## 21760                            China 1845           0
## 21761                 Christmas Island 1845           0
## 21762                         Colombia 1845           0
## 21763                          Comoros 1845           0
## 21764                            Congo 1845           0
## 21765                     Cook Islands 1845           0
## 21766                       Costa Rica 1845           0
## 21767                    Cote d'Ivoire 1845           0
## 21768                          Croatia 1845           0
## 21769                             Cuba 1845           0
## 21770                          Curacao 1845           0
## 21771                           Cyprus 1845           0
## 21772                   Czech Republic 1845           0
## 21773                   Czechoslovakia 1845           0
## 21774     Democratic Republic of Congo 1845           0
## 21775                          Denmark 1845      501968
## 21776                         Djibouti 1845           0
## 21777                         Dominica 1845           0
## 21778               Dominican Republic 1845           0
## 21779                            EU-28 1845  3757377040
## 21780                          Ecuador 1845           0
## 21781                            Egypt 1845           0
## 21782                      El Salvador 1845           0
## 21783                Equatorial Guinea 1845           0
## 21784                          Eritrea 1845           0
## 21785                          Estonia 1845           0
## 21786                         Ethiopia 1845           0
## 21787                   Europe (other) 1845      659520
## 21788                   Faeroe Islands 1845           0
## 21789                 Falkland Islands 1845           0
## 21790                             Fiji 1845           0
## 21791                          Finland 1845           0
## 21792                           France 1845   247360304
## 21793                    French Guiana 1845           0
## 21794                 French Polynesia 1845           0
## 21795                            Gabon 1845           0
## 21796                           Gambia 1845           0
## 21797                          Georgia 1845           0
## 21798                          Germany 1845   186035936
## 21799                            Ghana 1845           0
## 21800                        Gibraltar 1845           0
## 21801                           Greece 1845           0
## 21802                        Greenland 1845           0
## 21803                          Grenada 1845           0
## 21804                       Guadeloupe 1845           0
## 21805                        Guatemala 1845           0
## 21806                           Guinea 1845           0
## 21807                    Guinea-Bissau 1845           0
## 21808                           Guyana 1845           0
## 21809                            Haiti 1845           0
## 21810                         Honduras 1845           0
## 21811                        Hong Kong 1845           0
## 21812                          Hungary 1845     1538880
## 21813                          Iceland 1845           0
## 21814                            India 1845           0
## 21815                        Indonesia 1845           0
## 21816                             Iran 1845           0
## 21817                             Iraq 1845           0
## 21818                          Ireland 1845           0
## 21819                           Israel 1845           0
## 21820                            Italy 1845           0
## 21821                          Jamaica 1845           0
## 21822                            Japan 1845           0
## 21823                           Jordan 1845           0
## 21824                       Kazakhstan 1845           0
## 21825                            Kenya 1845           0
## 21826                         Kiribati 1845           0
## 21827                           Kuwait 1845           0
## 21828                       Kyrgysztan 1845           0
## 21829                       Kyrgyzstan 1845           0
## 21830                             Laos 1845           0
## 21831                           Latvia 1845           0
## 21832                          Lebanon 1845           0
## 21833                          Lesotho 1845           0
## 21834                          Liberia 1845           0
## 21835                            Libya 1845           0
## 21836                    Liechtenstein 1845           0
## 21837                        Lithuania 1845           0
## 21838                       Luxembourg 1845           0
## 21839                            Macao 1845           0
## 21840                        Macedonia 1845           0
## 21841                       Madagascar 1845           0
## 21842                           Malawi 1845           0
## 21843                         Malaysia 1845           0
## 21844                         Maldives 1845           0
## 21845                             Mali 1845           0
## 21846                            Malta 1845           0
## 21847                 Marshall Islands 1845           0
## 21848                       Martinique 1845           0
## 21849                       Mauritania 1845           0
## 21850                        Mauritius 1845           0
## 21851                           Mexico 1845           0
## 21852             Micronesia (country) 1845           0
## 21853                      Middle East 1845           0
## 21854                          Moldova 1845           0
## 21855                         Mongolia 1845           0
## 21856                       Montenegro 1845           0
## 21857                       Montserrat 1845           0
## 21858                          Morocco 1845           0
## 21859                       Mozambique 1845           0
## 21860                          Myanmar 1845           0
## 21861                          Namibia 1845           0
## 21862                            Nauru 1845           0
## 21863                            Nepal 1845           0
## 21864                      Netherlands 1845           0
## 21865                    New Caledonia 1845           0
## 21866                      New Zealand 1845           0
## 21867                        Nicaragua 1845           0
## 21868                            Niger 1845           0
## 21869                          Nigeria 1845           0
## 21870                             Niue 1845           0
## 21871                      North Korea 1845           0
## 21872                           Norway 1845      575248
## 21873                             Oman 1845           0
## 21874                         Pakistan 1845           0
## 21875                            Palau 1845           0
## 21876                        Palestine 1845           0
## 21877                           Panama 1845           0
## 21878                 Papua New Guinea 1845           0
## 21879                         Paraguay 1845           0
## 21880                             Peru 1845           0
## 21881                      Philippines 1845           0
## 21882                           Poland 1845    48137632
## 21883                         Portugal 1845           0
## 21884                            Qatar 1845           0
## 21885                          Reunion 1845           0
## 21886                          Romania 1845           0
## 21887                           Russia 1845           0
## 21888                           Rwanda 1845           0
## 21889                     Saint Helena 1845           0
## 21890            Saint Kitts and Nevis 1845           0
## 21891                      Saint Lucia 1845           0
## 21892        Saint Pierre and Miquelon 1845           0
## 21893 Saint Vincent and the Grenadines 1845           0
## 21894                            Samoa 1845           0
## 21895            Sao Tome and Principe 1845           0
## 21896                     Saudi Arabia 1845           0
## 21897                          Senegal 1845           0
## 21898                           Serbia 1845           0
## 21899                       Seychelles 1845           0
## 21900                     Sierra Leone 1845           0
## 21901                        Singapore 1845           0
## 21902        Sint Maarten (Dutch part) 1845           0
## 21903                         Slovakia 1845           0
## 21904                         Slovenia 1845           0
## 21905                  Solomon Islands 1845           0
## 21906                          Somalia 1845           0
## 21907                     South Africa 1845           0
## 21908                      South Korea 1845           0
## 21909                      South Sudan 1845           0
## 21910                            Spain 1845     1084544
## 21911                        Sri Lanka 1845           0
## 21912                            Sudan 1845           0
## 21913                         Suriname 1845           0
## 21914                        Swaziland 1845           0
## 21915                           Sweden 1845      483648
## 21916                      Switzerland 1845           0
## 21917                            Syria 1845           0
## 21918                           Taiwan 1845           0
## 21919                       Tajikistan 1845           0
## 21920                         Tanzania 1845           0
## 21921                         Thailand 1845           0
## 21922                            Timor 1845           0
## 21923                             Togo 1845           0
## 21924                            Tonga 1845           0
## 21925              Trinidad and Tobago 1845           0
## 21926                          Tunisia 1845           0
## 21927                           Turkey 1845           0
## 21928                     Turkmenistan 1845           0
## 21929         Turks and Caicos Islands 1845           0
## 21930                           Tuvalu 1845           0
## 21931                           Uganda 1845           0
## 21932                          Ukraine 1845           0
## 21933             United Arab Emirates 1845           0
## 21934                   United Kingdom 1845  3146841056
## 21935                    United States 1845   107395504
## 21936                          Uruguay 1845           0
## 21937                       Uzbekistan 1845           0
## 21938                          Vanuatu 1845           0
## 21939                        Venezuela 1845           0
## 21940                          Vietnam 1845           0
## 21941        Wallis and Futuna Islands 1845           0
## 21942                            World 1845  3865644576
## 21943                            Yemen 1845           0
## 21944                           Zambia 1845           0
## 21945                         Zimbabwe 1845           0
## 21946                      Afghanistan 1846           0
## 21947                           Africa 1846           0
## 21948                          Albania 1846           0
## 21949                          Algeria 1846           0
## 21950                 Americas (other) 1846      252816
## 21951                          Andorra 1846           0
## 21952                           Angola 1846           0
## 21953                         Anguilla 1846           0
## 21954              Antarctic Fisheries 1846           0
## 21955              Antigua and Barbuda 1846           0
## 21956                        Argentina 1846           0
## 21957                          Armenia 1846           0
## 21958                            Aruba 1846           0
## 21959         Asia and Pacific (other) 1846           0
## 21960                        Australia 1846           0
## 21961                          Austria 1846    21646912
## 21962                       Azerbaijan 1846           0
## 21963                          Bahamas 1846           0
## 21964                          Bahrain 1846           0
## 21965                       Bangladesh 1846           0
## 21966                         Barbados 1846           0
## 21967                          Belarus 1846           0
## 21968                          Belgium 1846   114826096
## 21969                           Belize 1846           0
## 21970                            Benin 1846           0
## 21971                          Bermuda 1846           0
## 21972                           Bhutan 1846           0
## 21973                          Bolivia 1846           0
## 21974  Bonaire Sint Eustatius and Saba 1846           0
## 21975           Bosnia and Herzegovina 1846           0
## 21976                         Botswana 1846           0
## 21977                           Brazil 1846           0
## 21978           British Virgin Islands 1846           0
## 21979                           Brunei 1846           0
## 21980                         Bulgaria 1846           0
## 21981                     Burkina Faso 1846           0
## 21982                          Burundi 1846           0
## 21983                         Cambodia 1846           0
## 21984                         Cameroon 1846           0
## 21985                           Canada 1846      249152
## 21986                       Cape Verde 1846           0
## 21987                   Cayman Islands 1846           0
## 21988         Central African Republic 1846           0
## 21989                             Chad 1846           0
## 21990                            Chile 1846           0
## 21991                            China 1846           0
## 21992                 Christmas Island 1846           0
## 21993                         Colombia 1846           0
## 21994                          Comoros 1846           0
## 21995                            Congo 1846           0
## 21996                     Cook Islands 1846           0
## 21997                       Costa Rica 1846           0
## 21998                    Cote d'Ivoire 1846           0
## 21999                          Croatia 1846           0
## 22000                             Cuba 1846           0
## 22001                          Curacao 1846           0
## 22002                           Cyprus 1846           0
## 22003                   Czech Republic 1846           0
## 22004                   Czechoslovakia 1846           0
## 22005     Democratic Republic of Congo 1846           0
## 22006                          Denmark 1846      729136
## 22007                         Djibouti 1846           0
## 22008                         Dominica 1846           0
## 22009               Dominican Republic 1846           0
## 22010                            EU-28 1846  3902335872
## 22011                          Ecuador 1846           0
## 22012                            Egypt 1846           0
## 22013                      El Salvador 1846           0
## 22014                Equatorial Guinea 1846           0
## 22015                          Eritrea 1846           0
## 22016                          Estonia 1846           0
## 22017                         Ethiopia 1846           0
## 22018                   Europe (other) 1846      758448
## 22019                   Faeroe Islands 1846           0
## 22020                 Falkland Islands 1846           0
## 22021                             Fiji 1846           0
## 22022                          Finland 1846           0
## 22023                           France 1846   265889152
## 22024                    French Guiana 1846           0
## 22025                 French Polynesia 1846           0
## 22026                            Gabon 1846           0
## 22027                           Gambia 1846           0
## 22028                          Georgia 1846           0
## 22029                          Germany 1846   199222672
## 22030                            Ghana 1846           0
## 22031                        Gibraltar 1846           0
## 22032                           Greece 1846           0
## 22033                        Greenland 1846           0
## 22034                          Grenada 1846           0
## 22035                       Guadeloupe 1846           0
## 22036                        Guatemala 1846           0
## 22037                           Guinea 1846           0
## 22038                    Guinea-Bissau 1846           0
## 22039                           Guyana 1846           0
## 22040                            Haiti 1846           0
## 22041                         Honduras 1846           0
## 22042                        Hong Kong 1846           0
## 22043                          Hungary 1846     1601168
## 22044                          Iceland 1846           0
## 22045                            India 1846           0
## 22046                        Indonesia 1846           0
## 22047                             Iran 1846           0
## 22048                             Iraq 1846           0
## 22049                          Ireland 1846           0
## 22050                           Israel 1846           0
## 22051                            Italy 1846           0
## 22052                          Jamaica 1846           0
## 22053                            Japan 1846           0
## 22054                           Jordan 1846           0
## 22055                       Kazakhstan 1846           0
## 22056                            Kenya 1846           0
## 22057                         Kiribati 1846           0
## 22058                           Kuwait 1846           0
## 22059                       Kyrgysztan 1846           0
## 22060                       Kyrgyzstan 1846           0
## 22061                             Laos 1846           0
## 22062                           Latvia 1846           0
## 22063                          Lebanon 1846           0
## 22064                          Lesotho 1846           0
## 22065                          Liberia 1846           0
## 22066                            Libya 1846           0
## 22067                    Liechtenstein 1846           0
## 22068                        Lithuania 1846           0
## 22069                       Luxembourg 1846           0
## 22070                            Macao 1846           0
## 22071                        Macedonia 1846           0
## 22072                       Madagascar 1846           0
## 22073                           Malawi 1846           0
## 22074                         Malaysia 1846           0
## 22075                         Maldives 1846           0
## 22076                             Mali 1846           0
## 22077                            Malta 1846           0
## 22078                 Marshall Islands 1846           0
## 22079                       Martinique 1846           0
## 22080                       Mauritania 1846           0
## 22081                        Mauritius 1846           0
## 22082                           Mexico 1846           0
## 22083             Micronesia (country) 1846           0
## 22084                      Middle East 1846           0
## 22085                          Moldova 1846           0
## 22086                         Mongolia 1846           0
## 22087                       Montenegro 1846           0
## 22088                       Montserrat 1846           0
## 22089                          Morocco 1846           0
## 22090                       Mozambique 1846           0
## 22091                          Myanmar 1846           0
## 22092                          Namibia 1846           0
## 22093                            Nauru 1846           0
## 22094                            Nepal 1846           0
## 22095                      Netherlands 1846     2868912
## 22096                    New Caledonia 1846           0
## 22097                      New Zealand 1846           0
## 22098                        Nicaragua 1846           0
## 22099                            Niger 1846           0
## 22100                          Nigeria 1846           0
## 22101                             Niue 1846           0
## 22102                      North Korea 1846           0
## 22103                           Norway 1846      674176
## 22104                             Oman 1846           0
## 22105                         Pakistan 1846           0
## 22106                            Palau 1846           0
## 22107                        Palestine 1846           0
## 22108                           Panama 1846           0
## 22109                 Papua New Guinea 1846           0
## 22110                         Paraguay 1846           0
## 22111                             Peru 1846           0
## 22112                      Philippines 1846           0
## 22113                           Poland 1846    51087152
## 22114                         Portugal 1846           0
## 22115                            Qatar 1846           0
## 22116                          Reunion 1846           0
## 22117                          Romania 1846           0
## 22118                           Russia 1846           0
## 22119                           Rwanda 1846           0
## 22120                     Saint Helena 1846           0
## 22121            Saint Kitts and Nevis 1846           0
## 22122                      Saint Lucia 1846           0
## 22123        Saint Pierre and Miquelon 1846           0
## 22124 Saint Vincent and the Grenadines 1846           0
## 22125                            Samoa 1846           0
## 22126            Sao Tome and Principe 1846           0
## 22127                     Saudi Arabia 1846           0
## 22128                          Senegal 1846           0
## 22129                           Serbia 1846           0
## 22130                       Seychelles 1846           0
## 22131                     Sierra Leone 1846           0
## 22132                        Singapore 1846           0
## 22133        Sint Maarten (Dutch part) 1846           0
## 22134                         Slovakia 1846           0
## 22135                         Slovenia 1846           0
## 22136                  Solomon Islands 1846           0
## 22137                          Somalia 1846           0
## 22138                     South Africa 1846           0
## 22139                      South Korea 1846           0
## 22140                      South Sudan 1846           0
## 22141                            Spain 1846     1366672
## 22142                        Sri Lanka 1846           0
## 22143                            Sudan 1846           0
## 22144                         Suriname 1846           0
## 22145                        Swaziland 1846           0
## 22146                           Sweden 1846      564256
## 22147                      Switzerland 1846           0
## 22148                            Syria 1846           0
## 22149                           Taiwan 1846           0
## 22150                       Tajikistan 1846           0
## 22151                         Tanzania 1846           0
## 22152                         Thailand 1846           0
## 22153                            Timor 1846           0
## 22154                             Togo 1846           0
## 22155                            Tonga 1846           0
## 22156              Trinidad and Tobago 1846           0
## 22157                          Tunisia 1846           0
## 22158                           Turkey 1846           0
## 22159                     Turkmenistan 1846           0
## 22160         Turks and Caicos Islands 1846           0
## 22161                           Tuvalu 1846           0
## 22162                           Uganda 1846           0
## 22163                          Ukraine 1846           0
## 22164             United Arab Emirates 1846           0
## 22165                   United Kingdom 1846  3242533744
## 22166                    United States 1846   120105920
## 22167                          Uruguay 1846           0
## 22168                       Uzbekistan 1846           0
## 22169                          Vanuatu 1846           0
## 22170                        Venezuela 1846           0
## 22171                          Vietnam 1846           0
## 22172        Wallis and Futuna Islands 1846           0
## 22173                            World 1846  4023438400
## 22174                            Yemen 1846           0
## 22175                           Zambia 1846           0
## 22176                         Zimbabwe 1846           0
## 22177                      Afghanistan 1847           0
## 22178                           Africa 1847           0
## 22179                          Albania 1847           0
## 22180                          Algeria 1847           0
## 22181                 Americas (other) 1847      285792
## 22182                          Andorra 1847           0
## 22183                           Angola 1847           0
## 22184                         Anguilla 1847           0
## 22185              Antarctic Fisheries 1847           0
## 22186              Antigua and Barbuda 1847           0
## 22187                        Argentina 1847           0
## 22188                          Armenia 1847           0
## 22189                            Aruba 1847           0
## 22190         Asia and Pacific (other) 1847           0
## 22191                        Australia 1847           0
## 22192                          Austria 1847    23728064
## 22193                       Azerbaijan 1847           0
## 22194                          Bahamas 1847           0
## 22195                          Bahrain 1847           0
## 22196                       Bangladesh 1847           0
## 22197                         Barbados 1847           0
## 22198                          Belarus 1847           0
## 22199                          Belgium 1847   124143648
## 22200                           Belize 1847           0
## 22201                            Benin 1847           0
## 22202                          Bermuda 1847           0
## 22203                           Bhutan 1847           0
## 22204                          Bolivia 1847           0
## 22205  Bonaire Sint Eustatius and Saba 1847           0
## 22206           Bosnia and Herzegovina 1847           0
## 22207                         Botswana 1847           0
## 22208                           Brazil 1847           0
## 22209           British Virgin Islands 1847           0
## 22210                           Brunei 1847           0
## 22211                         Bulgaria 1847           0
## 22212                     Burkina Faso 1847           0
## 22213                          Burundi 1847           0
## 22214                         Cambodia 1847           0
## 22215                         Cameroon 1847           0
## 22216                           Canada 1847      282128
## 22217                       Cape Verde 1847           0
## 22218                   Cayman Islands 1847           0
## 22219         Central African Republic 1847           0
## 22220                             Chad 1847           0
## 22221                            Chile 1847           0
## 22222                            China 1847           0
## 22223                 Christmas Island 1847           0
## 22224                         Colombia 1847           0
## 22225                          Comoros 1847           0
## 22226                            Congo 1847           0
## 22227                     Cook Islands 1847           0
## 22228                       Costa Rica 1847           0
## 22229                    Cote d'Ivoire 1847           0
## 22230                          Croatia 1847           0
## 22231                             Cuba 1847           0
## 22232                          Curacao 1847           0
## 22233                           Cyprus 1847           0
## 22234                   Czech Republic 1847           0
## 22235                   Czechoslovakia 1847           0
## 22236     Democratic Republic of Congo 1847           0
## 22237                          Denmark 1847      901344
## 22238                         Djibouti 1847           0
## 22239                         Dominica 1847           0
## 22240               Dominican Republic 1847           0
## 22241                            EU-28 1847  4059532464
## 22242                          Ecuador 1847           0
## 22243                            Egypt 1847           0
## 22244                      El Salvador 1847           0
## 22245                Equatorial Guinea 1847           0
## 22246                          Eritrea 1847           0
## 22247                          Estonia 1847           0
## 22248                         Ethiopia 1847           0
## 22249                   Europe (other) 1847      857376
## 22250                   Faeroe Islands 1847           0
## 22251                 Falkland Islands 1847           0
## 22252                             Fiji 1847           0
## 22253                          Finland 1847           0
## 22254                           France 1847   286729984
## 22255                    French Guiana 1847           0
## 22256                 French Polynesia 1847           0
## 22257                            Gabon 1847           0
## 22258                           Gambia 1847           0
## 22259                          Georgia 1847           0
## 22260                          Germany 1847   213061600
## 22261                            Ghana 1847           0
## 22262                        Gibraltar 1847           0
## 22263                           Greece 1847           0
## 22264                        Greenland 1847           0
## 22265                          Grenada 1847           0
## 22266                       Guadeloupe 1847           0
## 22267                        Guatemala 1847           0
## 22268                           Guinea 1847           0
## 22269                    Guinea-Bissau 1847           0
## 22270                           Guyana 1847           0
## 22271                            Haiti 1847           0
## 22272                         Honduras 1847           0
## 22273                        Hong Kong 1847           0
## 22274                          Hungary 1847     1766048
## 22275                          Iceland 1847           0
## 22276                            India 1847           0
## 22277                        Indonesia 1847           0
## 22278                             Iran 1847           0
## 22279                             Iraq 1847           0
## 22280                          Ireland 1847           0
## 22281                           Israel 1847           0
## 22282                            Italy 1847           0
## 22283                          Jamaica 1847           0
## 22284                            Japan 1847           0
## 22285                           Jordan 1847           0
## 22286                       Kazakhstan 1847           0
## 22287                            Kenya 1847           0
## 22288                         Kiribati 1847           0
## 22289                           Kuwait 1847           0
## 22290                       Kyrgysztan 1847           0
## 22291                       Kyrgyzstan 1847           0
## 22292                             Laos 1847           0
## 22293                           Latvia 1847           0
## 22294                          Lebanon 1847           0
## 22295                          Lesotho 1847           0
## 22296                          Liberia 1847           0
## 22297                            Libya 1847           0
## 22298                    Liechtenstein 1847           0
## 22299                        Lithuania 1847           0
## 22300                       Luxembourg 1847           0
## 22301                            Macao 1847           0
## 22302                        Macedonia 1847           0
## 22303                       Madagascar 1847           0
## 22304                           Malawi 1847           0
## 22305                         Malaysia 1847           0
## 22306                         Maldives 1847           0
## 22307                             Mali 1847           0
## 22308                            Malta 1847           0
## 22309                 Marshall Islands 1847           0
## 22310                       Martinique 1847           0
## 22311                       Mauritania 1847           0
## 22312                        Mauritius 1847           0
## 22313                           Mexico 1847           0
## 22314             Micronesia (country) 1847           0
## 22315                      Middle East 1847           0
## 22316                          Moldova 1847           0
## 22317                         Mongolia 1847           0
## 22318                       Montenegro 1847           0
## 22319                       Montserrat 1847           0
## 22320                          Morocco 1847           0
## 22321                       Mozambique 1847           0
## 22322                          Myanmar 1847           0
## 22323                          Namibia 1847           0
## 22324                            Nauru 1847           0
## 22325                            Nepal 1847           0
## 22326                      Netherlands 1847     6738096
## 22327                    New Caledonia 1847           0
## 22328                      New Zealand 1847           0
## 22329                        Nicaragua 1847           0
## 22330                            Niger 1847           0
## 22331                          Nigeria 1847           0
## 22332                             Niue 1847           0
## 22333                      North Korea 1847           0
## 22334                           Norway 1847      776768
## 22335                             Oman 1847           0
## 22336                         Pakistan 1847           0
## 22337                            Palau 1847           0
## 22338                        Palestine 1847           0
## 22339                           Panama 1847           0
## 22340                 Papua New Guinea 1847           0
## 22341                         Paraguay 1847           0
## 22342                             Peru 1847           0
## 22343                      Philippines 1847           0
## 22344                           Poland 1847    54109952
## 22345                         Portugal 1847           0
## 22346                            Qatar 1847           0
## 22347                          Reunion 1847           0
## 22348                          Romania 1847           0
## 22349                           Russia 1847           0
## 22350                           Rwanda 1847           0
## 22351                     Saint Helena 1847           0
## 22352            Saint Kitts and Nevis 1847           0
## 22353                      Saint Lucia 1847           0
## 22354        Saint Pierre and Miquelon 1847           0
## 22355 Saint Vincent and the Grenadines 1847           0
## 22356                            Samoa 1847           0
## 22357            Sao Tome and Principe 1847           0
## 22358                     Saudi Arabia 1847           0
## 22359                          Senegal 1847           0
## 22360                           Serbia 1847           0
## 22361                       Seychelles 1847           0
## 22362                     Sierra Leone 1847           0
## 22363                        Singapore 1847           0
## 22364        Sint Maarten (Dutch part) 1847           0
## 22365                         Slovakia 1847           0
## 22366                         Slovenia 1847           0
## 22367                  Solomon Islands 1847           0
## 22368                          Somalia 1847           0
## 22369                     South Africa 1847           0
## 22370                      South Korea 1847           0
## 22371                      South Sudan 1847           0
## 22372                            Spain 1847     1626816
## 22373                        Sri Lanka 1847           0
## 22374                            Sudan 1847           0
## 22375                         Suriname 1847           0
## 22376                        Swaziland 1847           0
## 22377                           Sweden 1847      644864
## 22378                      Switzerland 1847           0
## 22379                            Syria 1847           0
## 22380                           Taiwan 1847           0
## 22381                       Tajikistan 1847           0
## 22382                         Tanzania 1847           0
## 22383                         Thailand 1847           0
## 22384                            Timor 1847           0
## 22385                             Togo 1847           0
## 22386                            Tonga 1847           0
## 22387              Trinidad and Tobago 1847           0
## 22388                          Tunisia 1847           0
## 22389                           Turkey 1847           0
## 22390                     Turkmenistan 1847           0
## 22391         Turks and Caicos Islands 1847           0
## 22392                           Tuvalu 1847           0
## 22393                           Uganda 1847           0
## 22394                          Ukraine 1847           0
## 22395             United Arab Emirates 1847           0
## 22396                   United Kingdom 1847  3346082048
## 22397                    United States 1847   135175952
## 22398                          Uruguay 1847           0
## 22399                       Uzbekistan 1847           0
## 22400                          Vanuatu 1847           0
## 22401                        Venezuela 1847           0
## 22402                          Vietnam 1847           0
## 22403        Wallis and Futuna Islands 1847           0
## 22404                            World 1847  4195840592
## 22405                            Yemen 1847           0
## 22406                           Zambia 1847           0
## 22407                         Zimbabwe 1847           0
## 22408                      Afghanistan 1848           0
## 22409                           Africa 1848           0
## 22410                          Albania 1848           0
## 22411                          Algeria 1848           0
## 22412                 Americas (other) 1848      322432
## 22413                          Andorra 1848           0
## 22414                           Angola 1848           0
## 22415                         Anguilla 1848           0
## 22416              Antarctic Fisheries 1848           0
## 22417              Antigua and Barbuda 1848           0
## 22418                        Argentina 1848           0
## 22419                          Armenia 1848           0
## 22420                            Aruba 1848           0
## 22421         Asia and Pacific (other) 1848           0
## 22422                        Australia 1848           0
## 22423                          Austria 1848    26062032
## 22424                       Azerbaijan 1848           0
## 22425                          Bahamas 1848           0
## 22426                          Bahrain 1848           0
## 22427                       Bangladesh 1848           0
## 22428                         Barbados 1848           0
## 22429                          Belarus 1848           0
## 22430                          Belgium 1848   132427952
## 22431                           Belize 1848           0
## 22432                            Benin 1848           0
## 22433                          Bermuda 1848           0
## 22434                           Bhutan 1848           0
## 22435                          Bolivia 1848           0
## 22436  Bonaire Sint Eustatius and Saba 1848           0
## 22437           Bosnia and Herzegovina 1848           0
## 22438                         Botswana 1848           0
## 22439                           Brazil 1848           0
## 22440           British Virgin Islands 1848           0
## 22441                           Brunei 1848           0
## 22442                         Bulgaria 1848           0
## 22443                     Burkina Faso 1848           0
## 22444                          Burundi 1848           0
## 22445                         Cambodia 1848           0
## 22446                         Cameroon 1848           0
## 22447                           Canada 1848      322432
## 22448                       Cape Verde 1848           0
## 22449                   Cayman Islands 1848           0
## 22450         Central African Republic 1848           0
## 22451                             Chad 1848           0
## 22452                            Chile 1848           0
## 22453                            China 1848           0
## 22454                 Christmas Island 1848           0
## 22455                         Colombia 1848           0
## 22456                          Comoros 1848           0
## 22457                            Congo 1848           0
## 22458                     Cook Islands 1848           0
## 22459                       Costa Rica 1848           0
## 22460                    Cote d'Ivoire 1848           0
## 22461                          Croatia 1848           0
## 22462                             Cuba 1848           0
## 22463                          Curacao 1848           0
## 22464                           Cyprus 1848           0
## 22465                   Czech Republic 1848           0
## 22466                   Czechoslovakia 1848           0
## 22467     Democratic Republic of Congo 1848           0
## 22468                          Denmark 1848     1212784
## 22469                         Djibouti 1848           0
## 22470                         Dominica 1848           0
## 22471               Dominican Republic 1848           0
## 22472                            EU-28 1848  4216391968
## 22473                          Ecuador 1848           0
## 22474                            Egypt 1848           0
## 22475                      El Salvador 1848           0
## 22476                Equatorial Guinea 1848           0
## 22477                          Eritrea 1848           0
## 22478                          Estonia 1848           0
## 22479                         Ethiopia 1848           0
## 22480                   Europe (other) 1848      989280
## 22481                   Faeroe Islands 1848           0
## 22482                 Falkland Islands 1848           0
## 22483                             Fiji 1848           0
## 22484                          Finland 1848           0
## 22485                           France 1848   303419504
## 22486                    French Guiana 1848           0
## 22487                 French Polynesia 1848           0
## 22488                            Gabon 1848           0
## 22489                           Gambia 1848           0
## 22490                          Georgia 1848           0
## 22491                          Germany 1848   225889264
## 22492                            Ghana 1848           0
## 22493                        Gibraltar 1848           0
## 22494                           Greece 1848           0
## 22495                        Greenland 1848           0
## 22496                          Grenada 1848           0
## 22497                       Guadeloupe 1848           0
## 22498                        Guatemala 1848           0
## 22499                           Guinea 1848           0
## 22500                    Guinea-Bissau 1848           0
## 22501                           Guyana 1848           0
## 22502                            Haiti 1848           0
## 22503                         Honduras 1848           0
## 22504                        Hong Kong 1848           0
## 22505                          Hungary 1848     1766048
## 22506                          Iceland 1848           0
## 22507                            India 1848           0
## 22508                        Indonesia 1848           0
## 22509                             Iran 1848           0
## 22510                             Iraq 1848           0
## 22511                          Ireland 1848           0
## 22512                           Israel 1848           0
## 22513                            Italy 1848           0
## 22514                          Jamaica 1848           0
## 22515                            Japan 1848           0
## 22516                           Jordan 1848           0
## 22517                       Kazakhstan 1848           0
## 22518                            Kenya 1848           0
## 22519                         Kiribati 1848           0
## 22520                           Kuwait 1848           0
## 22521                       Kyrgysztan 1848           0
## 22522                       Kyrgyzstan 1848           0
## 22523                             Laos 1848           0
## 22524                           Latvia 1848           0
## 22525                          Lebanon 1848           0
## 22526                          Lesotho 1848           0
## 22527                          Liberia 1848           0
## 22528                            Libya 1848           0
## 22529                    Liechtenstein 1848           0
## 22530                        Lithuania 1848           0
## 22531                       Luxembourg 1848           0
## 22532                            Macao 1848           0
## 22533                        Macedonia 1848           0
## 22534                       Madagascar 1848           0
## 22535                           Malawi 1848           0
## 22536                         Malaysia 1848           0
## 22537                         Maldives 1848           0
## 22538                             Mali 1848           0
## 22539                            Malta 1848           0
## 22540                 Marshall Islands 1848           0
## 22541                       Martinique 1848           0
## 22542                       Mauritania 1848           0
## 22543                        Mauritius 1848           0
## 22544                           Mexico 1848           0
## 22545             Micronesia (country) 1848           0
## 22546                      Middle East 1848           0
## 22547                          Moldova 1848           0
## 22548                         Mongolia 1848           0
## 22549                       Montenegro 1848           0
## 22550                       Montserrat 1848           0
## 22551                          Morocco 1848           0
## 22552                       Mozambique 1848           0
## 22553                          Myanmar 1848           0
## 22554                          Namibia 1848           0
## 22555                            Nauru 1848           0
## 22556                            Nepal 1848           0
## 22557                      Netherlands 1848    10387440
## 22558                    New Caledonia 1848           0
## 22559                      New Zealand 1848           0
## 22560                        Nicaragua 1848           0
## 22561                            Niger 1848           0
## 22562                          Nigeria 1848           0
## 22563                             Niue 1848           0
## 22564                      North Korea 1848           0
## 22565                           Norway 1848      908672
## 22566                             Oman 1848           0
## 22567                         Pakistan 1848           0
## 22568                            Palau 1848           0
## 22569                        Palestine 1848           0
## 22570                           Panama 1848           0
## 22571                 Papua New Guinea 1848           0
## 22572                         Paraguay 1848           0
## 22573                             Peru 1848           0
## 22574                      Philippines 1848           0
## 22575                           Poland 1848    57154736
## 22576                         Portugal 1848           0
## 22577                            Qatar 1848           0
## 22578                          Reunion 1848           0
## 22579                          Romania 1848           0
## 22580                           Russia 1848           0
## 22581                           Rwanda 1848           0
## 22582                     Saint Helena 1848           0
## 22583            Saint Kitts and Nevis 1848           0
## 22584                      Saint Lucia 1848           0
## 22585        Saint Pierre and Miquelon 1848           0
## 22586 Saint Vincent and the Grenadines 1848           0
## 22587                            Samoa 1848           0
## 22588            Sao Tome and Principe 1848           0
## 22589                     Saudi Arabia 1848           0
## 22590                          Senegal 1848           0
## 22591                           Serbia 1848           0
## 22592                       Seychelles 1848           0
## 22593                     Sierra Leone 1848           0
## 22594                        Singapore 1848           0
## 22595        Sint Maarten (Dutch part) 1848           0
## 22596                         Slovakia 1848           0
## 22597                         Slovenia 1848           0
## 22598                  Solomon Islands 1848           0
## 22599                          Somalia 1848           0
## 22600                     South Africa 1848           0
## 22601                      South Korea 1848           0
## 22602                      South Sudan 1848           0
## 22603                            Spain 1848     1919936
## 22604                        Sri Lanka 1848           0
## 22605                            Sudan 1848           0
## 22606                         Suriname 1848           0
## 22607                        Swaziland 1848           0
## 22608                           Sweden 1848      784096
## 22609                      Switzerland 1848           0
## 22610                            Syria 1848           0
## 22611                           Taiwan 1848           0
## 22612                       Tajikistan 1848           0
## 22613                         Tanzania 1848           0
## 22614                         Thailand 1848           0
## 22615                            Timor 1848           0
## 22616                             Togo 1848           0
## 22617                            Tonga 1848           0
## 22618              Trinidad and Tobago 1848           0
## 22619                          Tunisia 1848           0
## 22620                           Turkey 1848           0
## 22621                     Turkmenistan 1848           0
## 22622         Turks and Caicos Islands 1848           0
## 22623                           Tuvalu 1848           0
## 22624                           Uganda 1848           0
## 22625                          Ukraine 1848           0
## 22626             United Arab Emirates 1848           0
## 22627                   United Kingdom 1848  3455368176
## 22628                    United States 1848   151960736
## 22629                          Uruguay 1848           0
## 22630                       Uzbekistan 1848           0
## 22631                          Vanuatu 1848           0
## 22632                        Venezuela 1848           0
## 22633                          Vietnam 1848           0
## 22634        Wallis and Futuna Islands 1848           0
## 22635                            World 1848  4369657088
## 22636                            Yemen 1848           0
## 22637                           Zambia 1848           0
## 22638                         Zimbabwe 1848           0
## 22639                      Afghanistan 1849           0
## 22640                           Africa 1849           0
## 22641                          Albania 1849           0
## 22642                          Algeria 1849           0
## 22643                 Americas (other) 1849      370064
## 22644                          Andorra 1849           0
## 22645                           Angola 1849           0
## 22646                         Anguilla 1849           0
## 22647              Antarctic Fisheries 1849           0
## 22648              Antigua and Barbuda 1849           0
## 22649                        Argentina 1849           0
## 22650                          Armenia 1849           0
## 22651                            Aruba 1849           0
## 22652         Asia and Pacific (other) 1849           0
## 22653                        Australia 1849           0
## 22654                          Austria 1849    28322720
## 22655                       Azerbaijan 1849           0
## 22656                          Bahamas 1849           0
## 22657                          Bahrain 1849           0
## 22658                       Bangladesh 1849           0
## 22659                         Barbados 1849           0
## 22660                          Belarus 1849           0
## 22661                          Belgium 1849   141162928
## 22662                           Belize 1849           0
## 22663                            Benin 1849           0
## 22664                          Bermuda 1849           0
## 22665                           Bhutan 1849           0
## 22666                          Bolivia 1849           0
## 22667  Bonaire Sint Eustatius and Saba 1849           0
## 22668           Bosnia and Herzegovina 1849           0
## 22669                         Botswana 1849           0
## 22670                           Brazil 1849           0
## 22671           British Virgin Islands 1849           0
## 22672                           Brunei 1849           0
## 22673                         Bulgaria 1849           0
## 22674                     Burkina Faso 1849           0
## 22675                          Burundi 1849           0
## 22676                         Cambodia 1849           0
## 22677                         Cameroon 1849           0
## 22678                           Canada 1849      370064
## 22679                       Cape Verde 1849           0
## 22680                   Cayman Islands 1849           0
## 22681         Central African Republic 1849           0
## 22682                             Chad 1849           0
## 22683                            Chile 1849           0
## 22684                            China 1849           0
## 22685                 Christmas Island 1849           0
## 22686                         Colombia 1849           0
## 22687                          Comoros 1849           0
## 22688                            Congo 1849           0
## 22689                     Cook Islands 1849           0
## 22690                       Costa Rica 1849           0
## 22691                    Cote d'Ivoire 1849           0
## 22692                          Croatia 1849           0
## 22693                             Cuba 1849           0
## 22694                          Curacao 1849           0
## 22695                           Cyprus 1849           0
## 22696                   Czech Republic 1849           0
## 22697                   Czechoslovakia 1849           0
## 22698     Democratic Republic of Congo 1849           0
## 22699                          Denmark 1849     1483920
## 22700                         Djibouti 1849           0
## 22701                         Dominica 1849           0
## 22702               Dominican Republic 1849           0
## 22703                            EU-28 1849  4381528448
## 22704                          Ecuador 1849           0
## 22705                            Egypt 1849           0
## 22706                      El Salvador 1849           0
## 22707                Equatorial Guinea 1849           0
## 22708                          Eritrea 1849           0
## 22709                          Estonia 1849           0
## 22710                         Ethiopia 1849           0
## 22711                   Europe (other) 1849     1095536
## 22712                   Faeroe Islands 1849           0
## 22713                 Falkland Islands 1849           0
## 22714                             Fiji 1849           0
## 22715                          Finland 1849           0
## 22716                           France 1849   320805184
## 22717                    French Guiana 1849           0
## 22718                 French Polynesia 1849           0
## 22719                            Gabon 1849           0
## 22720                           Gambia 1849           0
## 22721                          Georgia 1849           0
## 22722                          Germany 1849   239512016
## 22723                            Ghana 1849           0
## 22724                        Gibraltar 1849           0
## 22725                           Greece 1849           0
## 22726                        Greenland 1849           0
## 22727                          Grenada 1849           0
## 22728                       Guadeloupe 1849           0
## 22729                        Guatemala 1849           0
## 22730                           Guinea 1849           0
## 22731                    Guinea-Bissau 1849           0
## 22732                           Guyana 1849           0
## 22733                            Haiti 1849           0
## 22734                         Honduras 1849           0
## 22735                        Hong Kong 1849           0
## 22736                          Hungary 1849     1766048
## 22737                          Iceland 1849           0
## 22738                            India 1849           0
## 22739                        Indonesia 1849           0
## 22740                             Iran 1849           0
## 22741                             Iraq 1849           0
## 22742                          Ireland 1849           0
## 22743                           Israel 1849           0
## 22744                            Italy 1849           0
## 22745                          Jamaica 1849           0
## 22746                            Japan 1849           0
## 22747                           Jordan 1849           0
## 22748                       Kazakhstan 1849           0
## 22749                            Kenya 1849           0
## 22750                         Kiribati 1849           0
## 22751                           Kuwait 1849           0
## 22752                       Kyrgysztan 1849           0
## 22753                       Kyrgyzstan 1849           0
## 22754                             Laos 1849           0
## 22755                           Latvia 1849           0
## 22756                          Lebanon 1849           0
## 22757                          Lesotho 1849           0
## 22758                          Liberia 1849           0
## 22759                            Libya 1849           0
## 22760                    Liechtenstein 1849           0
## 22761                        Lithuania 1849           0
## 22762                       Luxembourg 1849           0
## 22763                            Macao 1849           0
## 22764                        Macedonia 1849           0
## 22765                       Madagascar 1849           0
## 22766                           Malawi 1849           0
## 22767                         Malaysia 1849           0
## 22768                         Maldives 1849           0
## 22769                             Mali 1849           0
## 22770                            Malta 1849           0
## 22771                 Marshall Islands 1849           0
## 22772                       Martinique 1849           0
## 22773                       Mauritania 1849           0
## 22774                        Mauritius 1849           0
## 22775                           Mexico 1849           0
## 22776             Micronesia (country) 1849           0
## 22777                      Middle East 1849           0
## 22778                          Moldova 1849           0
## 22779                         Mongolia 1849           0
## 22780                       Montenegro 1849           0
## 22781                       Montserrat 1849           0
## 22782                          Morocco 1849           0
## 22783                       Mozambique 1849           0
## 22784                          Myanmar 1849           0
## 22785                          Namibia 1849           0
## 22786                            Nauru 1849           0
## 22787                            Nepal 1849           0
## 22788                      Netherlands 1849    13718016
## 22789                    New Caledonia 1849           0
## 22790                      New Zealand 1849           0
## 22791                        Nicaragua 1849           0
## 22792                            Niger 1849           0
## 22793                          Nigeria 1849           0
## 22794                             Niue 1849           0
## 22795                      North Korea 1849           0
## 22796                           Norway 1849     1014928
## 22797                             Oman 1849           0
## 22798                         Pakistan 1849           0
## 22799                            Palau 1849           0
## 22800                        Palestine 1849           0
## 22801                           Panama 1849           0
## 22802                 Papua New Guinea 1849           0
## 22803                         Paraguay 1849           0
## 22804                             Peru 1849           0
## 22805                      Philippines 1849           0
## 22806                           Poland 1849    60159216
## 22807                         Portugal 1849           0
## 22808                            Qatar 1849           0
## 22809                          Reunion 1849           0
## 22810                          Romania 1849           0
## 22811                           Russia 1849           0
## 22812                           Rwanda 1849           0
## 22813                     Saint Helena 1849           0
## 22814            Saint Kitts and Nevis 1849           0
## 22815                      Saint Lucia 1849           0
## 22816        Saint Pierre and Miquelon 1849           0
## 22817 Saint Vincent and the Grenadines 1849           0
## 22818                            Samoa 1849           0
## 22819            Sao Tome and Principe 1849           0
## 22820                     Saudi Arabia 1849           0
## 22821                          Senegal 1849           0
## 22822                           Serbia 1849           0
## 22823                       Seychelles 1849           0
## 22824                     Sierra Leone 1849           0
## 22825                        Singapore 1849           0
## 22826        Sint Maarten (Dutch part) 1849           0
## 22827                         Slovakia 1849           0
## 22828                         Slovenia 1849           0
## 22829                  Solomon Islands 1849           0
## 22830                          Somalia 1849           0
## 22831                     South Africa 1849           0
## 22832                      South Korea 1849           0
## 22833                      South Sudan 1849           0
## 22834                            Spain 1849     2246032
## 22835                        Sri Lanka 1849           0
## 22836                            Sudan 1849           0
## 22837                         Suriname 1849           0
## 22838                        Swaziland 1849           0
## 22839                           Sweden 1849      978288
## 22840                      Switzerland 1849           0
## 22841                            Syria 1849           0
## 22842                           Taiwan 1849           0
## 22843                       Tajikistan 1849           0
## 22844                         Tanzania 1849           0
## 22845                         Thailand 1849           0
## 22846                            Timor 1849           0
## 22847                             Togo 1849           0
## 22848                            Tonga 1849           0
## 22849              Trinidad and Tobago 1849           0
## 22850                          Tunisia 1849           0
## 22851                           Turkey 1849           0
## 22852                     Turkmenistan 1849           0
## 22853         Turks and Caicos Islands 1849           0
## 22854                           Tuvalu 1849           0
## 22855                           Uganda 1849           0
## 22856                          Ukraine 1849           0
## 22857             United Arab Emirates 1849           0
## 22858                   United Kingdom 1849  3571374080
## 22859                    United States 1849   170181808
## 22860                          Uruguay 1849           0
## 22861                       Uzbekistan 1849           0
## 22862                          Vanuatu 1849           0
## 22863                        Venezuela 1849           0
## 22864                          Vietnam 1849           0
## 22865        Wallis and Futuna Islands 1849           0
## 22866                            World 1849  4553168528
## 22867                            Yemen 1849           0
## 22868                           Zambia 1849           0
## 22869                         Zimbabwe 1849           0
## 22870                      Afghanistan 1850           0
## 22871                           Africa 1850           0
## 22872                          Albania 1850           0
## 22873                          Algeria 1850           0
## 22874                 Americas (other) 1850      428688
## 22875                          Andorra 1850           0
## 22876                           Angola 1850           0
## 22877                         Anguilla 1850           0
## 22878              Antarctic Fisheries 1850           0
## 22879              Antigua and Barbuda 1850           0
## 22880                        Argentina 1850           0
## 22881                          Armenia 1850           0
## 22882                            Aruba 1850           0
## 22883         Asia and Pacific (other) 1850           0
## 22884                        Australia 1850           0
## 22885                          Austria 1850    30649360
## 22886                       Azerbaijan 1850           0
## 22887                          Bahamas 1850           0
## 22888                          Bahrain 1850           0
## 22889                       Bangladesh 1850           0
## 22890                         Barbados 1850           0
## 22891                          Belarus 1850           0
## 22892                          Belgium 1850   150495136
## 22893                           Belize 1850           0
## 22894                            Benin 1850           0
## 22895                          Bermuda 1850           0
## 22896                           Bhutan 1850           0
## 22897                          Bolivia 1850           0
## 22898  Bonaire Sint Eustatius and Saba 1850           0
## 22899           Bosnia and Herzegovina 1850           0
## 22900                         Botswana 1850           0
## 22901                           Brazil 1850           0
## 22902           British Virgin Islands 1850           0
## 22903                           Brunei 1850           0
## 22904                         Bulgaria 1850           0
## 22905                     Burkina Faso 1850           0
## 22906                          Burundi 1850           0
## 22907                         Cambodia 1850           0
## 22908                         Cameroon 1850           0
## 22909                           Canada 1850      428688
## 22910                       Cape Verde 1850           0
## 22911                   Cayman Islands 1850           0
## 22912         Central African Republic 1850           0
## 22913                             Chad 1850           0
## 22914                            Chile 1850           0
## 22915                            China 1850           0
## 22916                 Christmas Island 1850           0
## 22917                         Colombia 1850           0
## 22918                          Comoros 1850           0
## 22919                            Congo 1850           0
## 22920                     Cook Islands 1850           0
## 22921                       Costa Rica 1850           0
## 22922                    Cote d'Ivoire 1850           0
## 22923                          Croatia 1850           0
## 22924                             Cuba 1850           0
## 22925                          Curacao 1850           0
## 22926                           Cyprus 1850           0
## 22927                   Czech Republic 1850           0
## 22928                   Czechoslovakia 1850           0
## 22929     Democratic Republic of Congo 1850           0
## 22930                          Denmark 1850     1824672
## 22931                         Djibouti 1850           0
## 22932                         Dominica 1850           0
## 22933               Dominican Republic 1850           0
## 22934                            EU-28 1850  4558320112
## 22935                          Ecuador 1850           0
## 22936                            Egypt 1850           0
## 22937                      El Salvador 1850           0
## 22938                Equatorial Guinea 1850           0
## 22939                          Eritrea 1850           0
## 22940                          Estonia 1850           0
## 22941                         Ethiopia 1850           0
## 22942                   Europe (other) 1850     1344688
## 22943                   Faeroe Islands 1850           0
## 22944                 Falkland Islands 1850           0
## 22945                             Fiji 1850           0
## 22946                          Finland 1850           0
## 22947                           France 1850   340422240
## 22948                    French Guiana 1850           0
## 22949                 French Polynesia 1850           0
## 22950                            Gabon 1850           0
## 22951                           Gambia 1850           0
## 22952                          Georgia 1850           0
## 22953                          Germany 1850   254651664
## 22954                            Ghana 1850           0
## 22955                        Gibraltar 1850           0
## 22956                           Greece 1850           0
## 22957                        Greenland 1850           0
## 22958                          Grenada 1850           0
## 22959                       Guadeloupe 1850           0
## 22960                        Guatemala 1850           0
## 22961                           Guinea 1850           0
## 22962                    Guinea-Bissau 1850           0
## 22963                           Guyana 1850           0
## 22964                            Haiti 1850           0
## 22965                         Honduras 1850           0
## 22966                        Hong Kong 1850           0
## 22967                          Hungary 1850     1766048
## 22968                          Iceland 1850           0
## 22969                            India 1850           0
## 22970                        Indonesia 1850           0
## 22971                             Iran 1850           0
## 22972                             Iraq 1850           0
## 22973                          Ireland 1850      395712
## 22974                           Israel 1850           0
## 22975                            Italy 1850           0
## 22976                          Jamaica 1850           0
## 22977                            Japan 1850           0
## 22978                           Jordan 1850           0
## 22979                       Kazakhstan 1850           0
## 22980                            Kenya 1850           0
## 22981                         Kiribati 1850           0
## 22982                           Kuwait 1850           0
## 22983                       Kyrgysztan 1850           0
## 22984                       Kyrgyzstan 1850           0
## 22985                             Laos 1850           0
## 22986                           Latvia 1850           0
## 22987                          Lebanon 1850           0
## 22988                          Lesotho 1850           0
## 22989                          Liberia 1850           0
## 22990                            Libya 1850           0
## 22991                    Liechtenstein 1850           0
## 22992                        Lithuania 1850           0
## 22993                       Luxembourg 1850           0
## 22994                            Macao 1850           0
## 22995                        Macedonia 1850           0
## 22996                       Madagascar 1850           0
## 22997                           Malawi 1850           0
## 22998                         Malaysia 1850           0
## 22999                         Maldives 1850           0
## 23000                             Mali 1850           0
## 23001                            Malta 1850           0
## 23002                 Marshall Islands 1850           0
## 23003                       Martinique 1850           0
## 23004                       Mauritania 1850           0
## 23005                        Mauritius 1850           0
## 23006                           Mexico 1850           0
## 23007             Micronesia (country) 1850           0
## 23008                      Middle East 1850           0
## 23009                          Moldova 1850           0
## 23010                         Mongolia 1850           0
## 23011                       Montenegro 1850           0
## 23012                       Montserrat 1850           0
## 23013                          Morocco 1850           0
## 23014                       Mozambique 1850           0
## 23015                          Myanmar 1850           0
## 23016                          Namibia 1850           0
## 23017                            Nauru 1850           0
## 23018                            Nepal 1850           0
## 23019                      Netherlands 1850    16854400
## 23020                    New Caledonia 1850           0
## 23021                      New Zealand 1850           0
## 23022                        Nicaragua 1850           0
## 23023                            Niger 1850           0
## 23024                          Nigeria 1850           0
## 23025                             Niue 1850           0
## 23026                      North Korea 1850           0
## 23027                           Norway 1850     1154160
## 23028                             Oman 1850           0
## 23029                         Pakistan 1850           0
## 23030                            Palau 1850           0
## 23031                        Palestine 1850           0
## 23032                           Panama 1850           0
## 23033                 Papua New Guinea 1850           0
## 23034                         Paraguay 1850           0
## 23035                             Peru 1850           0
## 23036                      Philippines 1850           0
## 23037                           Poland 1850    63361552
## 23038                         Portugal 1850           0
## 23039                            Qatar 1850           0
## 23040                          Reunion 1850           0
## 23041                          Romania 1850           0
## 23042                           Russia 1850           0
## 23043                           Rwanda 1850           0
## 23044                     Saint Helena 1850           0
## 23045            Saint Kitts and Nevis 1850           0
## 23046                      Saint Lucia 1850           0
## 23047        Saint Pierre and Miquelon 1850           0
## 23048 Saint Vincent and the Grenadines 1850           0
## 23049                            Samoa 1850           0
## 23050            Sao Tome and Principe 1850           0
## 23051                     Saudi Arabia 1850           0
## 23052                          Senegal 1850           0
## 23053                           Serbia 1850           0
## 23054                       Seychelles 1850           0
## 23055                     Sierra Leone 1850           0
## 23056                        Singapore 1850           0
## 23057        Sint Maarten (Dutch part) 1850           0
## 23058                         Slovakia 1850           0
## 23059                         Slovenia 1850           0
## 23060                  Solomon Islands 1850           0
## 23061                          Somalia 1850           0
## 23062                     South Africa 1850           0
## 23063                      South Korea 1850           0
## 23064                      South Sudan 1850           0
## 23065                            Spain 1850     2740672
## 23066                        Sri Lanka 1850           0
## 23067                            Sudan 1850           0
## 23068                         Suriname 1850           0
## 23069                        Swaziland 1850           0
## 23070                           Sweden 1850     1179808
## 23071                      Switzerland 1850           0
## 23072                            Syria 1850           0
## 23073                           Taiwan 1850           0
## 23074                       Tajikistan 1850           0
## 23075                         Tanzania 1850           0
## 23076                         Thailand 1850           0
## 23077                            Timor 1850           0
## 23078                             Togo 1850           0
## 23079                            Tonga 1850           0
## 23080              Trinidad and Tobago 1850           0
## 23081                          Tunisia 1850           0
## 23082                           Turkey 1850           0
## 23083                     Turkmenistan 1850           0
## 23084         Turks and Caicos Islands 1850           0
## 23085                           Tuvalu 1850           0
## 23086                           Uganda 1850           0
## 23087                          Ukraine 1850           0
## 23088             United Arab Emirates 1850           0
## 23089                   United Kingdom 1850  3693978848
## 23090                    United States 1850   189974736
## 23091                          Uruguay 1850           0
## 23092                       Uzbekistan 1850           0
## 23093                          Vanuatu 1850           0
## 23094                        Venezuela 1850           0
## 23095                          Vietnam 1850           0
## 23096        Wallis and Futuna Islands 1850           0
## 23097                            World 1850  4750064560
## 23098                            Yemen 1850           0
## 23099                           Zambia 1850           0
## 23100                         Zimbabwe 1850           0
## 23101                      Afghanistan 1851           0
## 23102                           Africa 1851           0
## 23103                          Albania 1851           0
## 23104                          Algeria 1851           0
## 23105                 Americas (other) 1851      498304
## 23106                          Andorra 1851           0
## 23107                           Angola 1851           0
## 23108                         Anguilla 1851           0
## 23109              Antarctic Fisheries 1851           0
## 23110              Antigua and Barbuda 1851           0
## 23111                        Argentina 1851           0
## 23112                          Armenia 1851           0
## 23113                            Aruba 1851           0
## 23114         Asia and Pacific (other) 1851           0
## 23115                        Australia 1851           0
## 23116                          Austria 1851    32983328
## 23117                       Azerbaijan 1851           0
## 23118                          Bahamas 1851           0
## 23119                          Bahrain 1851           0
## 23120                       Bangladesh 1851           0
## 23121                         Barbados 1851           0
## 23122                          Belarus 1851           0
## 23123                          Belgium 1851   160662736
## 23124                           Belize 1851           0
## 23125                            Benin 1851           0
## 23126                          Bermuda 1851           0
## 23127                           Bhutan 1851           0
## 23128                          Bolivia 1851           0
## 23129  Bonaire Sint Eustatius and Saba 1851           0
## 23130           Bosnia and Herzegovina 1851           0
## 23131                         Botswana 1851           0
## 23132                           Brazil 1851           0
## 23133           British Virgin Islands 1851           0
## 23134                           Brunei 1851           0
## 23135                         Bulgaria 1851           0
## 23136                     Burkina Faso 1851           0
## 23137                          Burundi 1851           0
## 23138                         Cambodia 1851           0
## 23139                         Cameroon 1851           0
## 23140                           Canada 1851      498304
## 23141                       Cape Verde 1851           0
## 23142                   Cayman Islands 1851           0
## 23143         Central African Republic 1851           0
## 23144                             Chad 1851           0
## 23145                            Chile 1851           0
## 23146                            China 1851           0
## 23147                 Christmas Island 1851           0
## 23148                         Colombia 1851           0
## 23149                          Comoros 1851           0
## 23150                            Congo 1851           0
## 23151                     Cook Islands 1851           0
## 23152                       Costa Rica 1851           0
## 23153                    Cote d'Ivoire 1851           0
## 23154                          Croatia 1851           0
## 23155                             Cuba 1851           0
## 23156                          Curacao 1851           0
## 23157                           Cyprus 1851           0
## 23158                   Czech Republic 1851           0
## 23159                   Czechoslovakia 1851           0
## 23160     Democratic Republic of Congo 1851           0
## 23161                          Denmark 1851     2136112
## 23162                         Djibouti 1851           0
## 23163                         Dominica 1851           0
## 23164               Dominican Republic 1851           0
## 23165                            EU-28 1851  4732272176
## 23166                          Ecuador 1851           0
## 23167                            Egypt 1851           0
## 23168                      El Salvador 1851           0
## 23169                Equatorial Guinea 1851           0
## 23170                          Eritrea 1851           0
## 23171                          Estonia 1851           0
## 23172                         Ethiopia 1851           0
## 23173                   Europe (other) 1851     1494912
## 23174                   Faeroe Islands 1851           0
## 23175                 Falkland Islands 1851           0
## 23176                             Fiji 1851           0
## 23177                          Finland 1851           0
## 23178                           France 1851   360460656
## 23179                    French Guiana 1851           0
## 23180                 French Polynesia 1851           0
## 23181                            Gabon 1851           0
## 23182                           Gambia 1851           0
## 23183                          Georgia 1851           0
## 23184                          Germany 1851   271520720
## 23185                            Ghana 1851           0
## 23186                        Gibraltar 1851           0
## 23187                           Greece 1851           0
## 23188                        Greenland 1851           0
## 23189                          Grenada 1851           0
## 23190                       Guadeloupe 1851           0
## 23191                        Guatemala 1851           0
## 23192                           Guinea 1851           0
## 23193                    Guinea-Bissau 1851           0
## 23194                           Guyana 1851           0
## 23195                            Haiti 1851           0
## 23196                         Honduras 1851           0
## 23197                        Hong Kong 1851           0
## 23198                          Hungary 1851     2040848
## 23199                          Iceland 1851           0
## 23200                            India 1851           0
## 23201                        Indonesia 1851           0
## 23202                             Iran 1851           0
## 23203                             Iraq 1851           0
## 23204                          Ireland 1851      395712
## 23205                           Israel 1851           0
## 23206                            Italy 1851           0
## 23207                          Jamaica 1851           0
## 23208                            Japan 1851           0
## 23209                           Jordan 1851           0
## 23210                       Kazakhstan 1851           0
## 23211                            Kenya 1851           0
## 23212                         Kiribati 1851           0
## 23213                           Kuwait 1851           0
## 23214                       Kyrgysztan 1851           0
## 23215                       Kyrgyzstan 1851           0
## 23216                             Laos 1851           0
## 23217                           Latvia 1851           0
## 23218                          Lebanon 1851           0
## 23219                          Lesotho 1851           0
## 23220                          Liberia 1851           0
## 23221                            Libya 1851           0
## 23222                    Liechtenstein 1851           0
## 23223                        Lithuania 1851           0
## 23224                       Luxembourg 1851           0
## 23225                            Macao 1851           0
## 23226                        Macedonia 1851           0
## 23227                       Madagascar 1851           0
## 23228                           Malawi 1851           0
## 23229                         Malaysia 1851           0
## 23230                         Maldives 1851           0
## 23231                             Mali 1851           0
## 23232                            Malta 1851           0
## 23233                 Marshall Islands 1851           0
## 23234                       Martinique 1851           0
## 23235                       Mauritania 1851           0
## 23236                        Mauritius 1851           0
## 23237                           Mexico 1851           0
## 23238             Micronesia (country) 1851           0
## 23239                      Middle East 1851           0
## 23240                          Moldova 1851           0
## 23241                         Mongolia 1851           0
## 23242                       Montenegro 1851           0
## 23243                       Montserrat 1851           0
## 23244                          Morocco 1851           0
## 23245                       Mozambique 1851           0
## 23246                          Myanmar 1851           0
## 23247                          Namibia 1851           0
## 23248                            Nauru 1851           0
## 23249                            Nepal 1851           0
## 23250                      Netherlands 1851    19972464
## 23251                    New Caledonia 1851           0
## 23252                      New Zealand 1851           0
## 23253                        Nicaragua 1851           0
## 23254                            Niger 1851           0
## 23255                          Nigeria 1851           0
## 23256                             Niue 1851           0
## 23257                      North Korea 1851           0
## 23258                           Norway 1851     1304384
## 23259                             Oman 1851           0
## 23260                         Pakistan 1851           0
## 23261                            Palau 1851           0
## 23262                        Palestine 1851           0
## 23263                           Panama 1851           0
## 23264                 Papua New Guinea 1851           0
## 23265                         Paraguay 1851           0
## 23266                             Peru 1851           0
## 23267                      Philippines 1851           0
## 23268                           Poland 1851    66820368
## 23269                         Portugal 1851           0
## 23270                            Qatar 1851           0
## 23271                          Reunion 1851           0
## 23272                          Romania 1851           0
## 23273                           Russia 1851           0
## 23274                           Rwanda 1851           0
## 23275                     Saint Helena 1851           0
## 23276            Saint Kitts and Nevis 1851           0
## 23277                      Saint Lucia 1851           0
## 23278        Saint Pierre and Miquelon 1851           0
## 23279 Saint Vincent and the Grenadines 1851           0
## 23280                            Samoa 1851           0
## 23281            Sao Tome and Principe 1851           0
## 23282                     Saudi Arabia 1851           0
## 23283                          Senegal 1851           0
## 23284                           Serbia 1851           0
## 23285                       Seychelles 1851           0
## 23286                     Sierra Leone 1851           0
## 23287                        Singapore 1851           0
## 23288        Sint Maarten (Dutch part) 1851           0
## 23289                         Slovakia 1851           0
## 23290                         Slovenia 1851           0
## 23291                  Solomon Islands 1851           0
## 23292                          Somalia 1851           0
## 23293                     South Africa 1851           0
## 23294                      South Korea 1851           0
## 23295                      South Sudan 1851           0
## 23296                            Spain 1851     3249968
## 23297                        Sri Lanka 1851           0
## 23298                            Sudan 1851           0
## 23299                         Suriname 1851           0
## 23300                        Swaziland 1851           0
## 23301                           Sweden 1851     1395984
## 23302                      Switzerland 1851           0
## 23303                            Syria 1851           0
## 23304                           Taiwan 1851           0
## 23305                       Tajikistan 1851           0
## 23306                         Tanzania 1851           0
## 23307                         Thailand 1851           0
## 23308                            Timor 1851           0
## 23309                             Togo 1851           0
## 23310                            Tonga 1851           0
## 23311              Trinidad and Tobago 1851           0
## 23312                          Tunisia 1851           0
## 23313                           Turkey 1851           0
## 23314                     Turkmenistan 1851           0
## 23315         Turks and Caicos Islands 1851           0
## 23316                           Tuvalu 1851           0
## 23317                           Uganda 1851           0
## 23318                          Ukraine 1851           0
## 23319             United Arab Emirates 1851           0
## 23320                   United Kingdom 1851  3810633280
## 23321                    United States 1851   214607808
## 23322                          Uruguay 1851           0
## 23323                       Uzbekistan 1851           0
## 23324                          Vanuatu 1851           0
## 23325                        Venezuela 1851           0
## 23326                          Vietnam 1851           0
## 23327        Wallis and Futuna Islands 1851           0
## 23328                            World 1851  4948807248
## 23329                            Yemen 1851           0
## 23330                           Zambia 1851           0
## 23331                         Zimbabwe 1851           0
## 23332                      Afghanistan 1852           0
## 23333                           Africa 1852           0
## 23334                          Albania 1852           0
## 23335                          Algeria 1852           0
## 23336                 Americas (other) 1852      582576
## 23337                          Andorra 1852           0
## 23338                           Angola 1852           0
## 23339                         Anguilla 1852           0
## 23340              Antarctic Fisheries 1852           0
## 23341              Antigua and Barbuda 1852           0
## 23342                        Argentina 1852           0
## 23343                          Armenia 1852           0
## 23344                            Aruba 1852           0
## 23345         Asia and Pacific (other) 1852           0
## 23346                        Australia 1852           0
## 23347                          Austria 1852    35793616
## 23348                       Azerbaijan 1852           0
## 23349                          Bahamas 1852           0
## 23350                          Bahrain 1852           0
## 23351                       Bangladesh 1852           0
## 23352                         Barbados 1852           0
## 23353                          Belarus 1852           0
## 23354                          Belgium 1852   172072432
## 23355                           Belize 1852           0
## 23356                            Benin 1852           0
## 23357                          Bermuda 1852           0
## 23358                           Bhutan 1852           0
## 23359                          Bolivia 1852           0
## 23360  Bonaire Sint Eustatius and Saba 1852           0
## 23361           Bosnia and Herzegovina 1852           0
## 23362                         Botswana 1852           0
## 23363                           Brazil 1852           0
## 23364           British Virgin Islands 1852           0
## 23365                           Brunei 1852           0
## 23366                         Bulgaria 1852           0
## 23367                     Burkina Faso 1852           0
## 23368                          Burundi 1852           0
## 23369                         Cambodia 1852           0
## 23370                         Cameroon 1852           0
## 23371                           Canada 1852      582576
## 23372                       Cape Verde 1852           0
## 23373                   Cayman Islands 1852           0
## 23374         Central African Republic 1852           0
## 23375                             Chad 1852           0
## 23376                            Chile 1852           0
## 23377                            China 1852           0
## 23378                 Christmas Island 1852           0
## 23379                         Colombia 1852           0
## 23380                          Comoros 1852           0
## 23381                            Congo 1852           0
## 23382                     Cook Islands 1852           0
## 23383                       Costa Rica 1852           0
## 23384                    Cote d'Ivoire 1852           0
## 23385                          Croatia 1852           0
## 23386                             Cuba 1852           0
## 23387                          Curacao 1852           0
## 23388                           Cyprus 1852           0
## 23389                   Czech Republic 1852           0
## 23390                   Czechoslovakia 1852           0
## 23391     Democratic Republic of Congo 1852           0
## 23392                          Denmark 1852     2469536
## 23393                         Djibouti 1852           0
## 23394                         Dominica 1852           0
## 23395               Dominican Republic 1852           0
## 23396                            EU-28 1852  4912797456
## 23397                          Ecuador 1852           0
## 23398                            Egypt 1852           0
## 23399                      El Salvador 1852           0
## 23400                Equatorial Guinea 1852           0
## 23401                          Eritrea 1852           0
## 23402                          Estonia 1852           0
## 23403                         Ethiopia 1852           0
## 23404                   Europe (other) 1852     1652464
## 23405                   Faeroe Islands 1852           0
## 23406                 Falkland Islands 1852           0
## 23407                             Fiji 1852           0
## 23408                          Finland 1852           0
## 23409                           France 1852   382030624
## 23410                    French Guiana 1852           0
## 23411                 French Polynesia 1852           0
## 23412                            Gabon 1852           0
## 23413                           Gambia 1852           0
## 23414                          Georgia 1852           0
## 23415                          Germany 1852   290694432
## 23416                            Ghana 1852           0
## 23417                        Gibraltar 1852           0
## 23418                           Greece 1852           0
## 23419                        Greenland 1852           0
## 23420                          Grenada 1852           0
## 23421                       Guadeloupe 1852           0
## 23422                        Guatemala 1852           0
## 23423                           Guinea 1852           0
## 23424                    Guinea-Bissau 1852           0
## 23425                           Guyana 1852           0
## 23426                            Haiti 1852           0
## 23427                         Honduras 1852           0
## 23428                        Hong Kong 1852           0
## 23429                          Hungary 1852     2385264
## 23430                          Iceland 1852           0
## 23431                            India 1852           0
## 23432                        Indonesia 1852           0
## 23433                             Iran 1852           0
## 23434                             Iraq 1852           0
## 23435                          Ireland 1852      395712
## 23436                           Israel 1852           0
## 23437                            Italy 1852           0
## 23438                          Jamaica 1852           0
## 23439                            Japan 1852           0
## 23440                           Jordan 1852           0
## 23441                       Kazakhstan 1852           0
## 23442                            Kenya 1852           0
## 23443                         Kiribati 1852           0
## 23444                           Kuwait 1852           0
## 23445                       Kyrgysztan 1852           0
## 23446                       Kyrgyzstan 1852           0
## 23447                             Laos 1852           0
## 23448                           Latvia 1852           0
## 23449                          Lebanon 1852           0
## 23450                          Lesotho 1852           0
## 23451                          Liberia 1852           0
## 23452                            Libya 1852           0
## 23453                    Liechtenstein 1852           0
## 23454                        Lithuania 1852           0
## 23455                       Luxembourg 1852           0
## 23456                            Macao 1852           0
## 23457                        Macedonia 1852           0
## 23458                       Madagascar 1852           0
## 23459                           Malawi 1852           0
## 23460                         Malaysia 1852           0
## 23461                         Maldives 1852           0
## 23462                             Mali 1852           0
## 23463                            Malta 1852           0
## 23464                 Marshall Islands 1852           0
## 23465                       Martinique 1852           0
## 23466                       Mauritania 1852           0
## 23467                        Mauritius 1852           0
## 23468                           Mexico 1852           0
## 23469             Micronesia (country) 1852           0
## 23470                      Middle East 1852           0
## 23471                          Moldova 1852           0
## 23472                         Mongolia 1852           0
## 23473                       Montenegro 1852           0
## 23474                       Montserrat 1852           0
## 23475                          Morocco 1852           0
## 23476                       Mozambique 1852           0
## 23477                          Myanmar 1852           0
## 23478                          Namibia 1852           0
## 23479                            Nauru 1852           0
## 23480                            Nepal 1852           0
## 23481                      Netherlands 1852    23735392
## 23482                    New Caledonia 1852           0
## 23483                      New Zealand 1852           0
## 23484                        Nicaragua 1852           0
## 23485                            Niger 1852           0
## 23486                          Nigeria 1852           0
## 23487                             Niue 1852           0
## 23488                      North Korea 1852           0
## 23489                           Norway 1852     1454608
## 23490                             Oman 1852           0
## 23491                         Pakistan 1852           0
## 23492                            Palau 1852           0
## 23493                        Palestine 1852           0
## 23494                           Panama 1852           0
## 23495                 Papua New Guinea 1852           0
## 23496                         Paraguay 1852           0
## 23497                             Peru 1852           0
## 23498                      Philippines 1852           0
## 23499                           Poland 1852    70949696
## 23500                         Portugal 1852           0
## 23501                            Qatar 1852           0
## 23502                          Reunion 1852           0
## 23503                          Romania 1852           0
## 23504                           Russia 1852           0
## 23505                           Rwanda 1852           0
## 23506                     Saint Helena 1852           0
## 23507            Saint Kitts and Nevis 1852           0
## 23508                      Saint Lucia 1852           0
## 23509        Saint Pierre and Miquelon 1852           0
## 23510 Saint Vincent and the Grenadines 1852           0
## 23511                            Samoa 1852           0
## 23512            Sao Tome and Principe 1852           0
## 23513                     Saudi Arabia 1852           0
## 23514                          Senegal 1852           0
## 23515                           Serbia 1852           0
## 23516                       Seychelles 1852           0
## 23517                     Sierra Leone 1852           0
## 23518                        Singapore 1852           0
## 23519        Sint Maarten (Dutch part) 1852           0
## 23520                         Slovakia 1852           0
## 23521                         Slovenia 1852           0
## 23522                  Solomon Islands 1852           0
## 23523                          Somalia 1852           0
## 23524                     South Africa 1852           0
## 23525                      South Korea 1852           0
## 23526                      South Sudan 1852           0
## 23527                            Spain 1852     3784912
## 23528                        Sri Lanka 1852           0
## 23529                            Sudan 1852           0
## 23530                         Suriname 1852           0
## 23531                        Swaziland 1852           0
## 23532                           Sweden 1852     1612160
## 23533                      Switzerland 1852           0
## 23534                            Syria 1852           0
## 23535                           Taiwan 1852           0
## 23536                       Tajikistan 1852           0
## 23537                         Tanzania 1852           0
## 23538                         Thailand 1852           0
## 23539                            Timor 1852           0
## 23540                             Togo 1852           0
## 23541                            Tonga 1852           0
## 23542              Trinidad and Tobago 1852           0
## 23543                          Tunisia 1852           0
## 23544                           Turkey 1852           0
## 23545                     Turkmenistan 1852           0
## 23546         Turks and Caicos Islands 1852           0
## 23547                           Tuvalu 1852           0
## 23548                           Uganda 1852           0
## 23549                          Ukraine 1852           0
## 23550             United Arab Emirates 1852           0
## 23551                   United Kingdom 1852  3926873680
## 23552                    United States 1852   241398976
## 23553                          Uruguay 1852           0
## 23554                       Uzbekistan 1852           0
## 23555                          Vanuatu 1852           0
## 23556                        Venezuela 1852           0
## 23557                          Vietnam 1852           0
## 23558        Wallis and Futuna Islands 1852           0
## 23559                            World 1852  5156303232
## 23560                            Yemen 1852           0
## 23561                           Zambia 1852           0
## 23562                         Zimbabwe 1852           0
## 23563                      Afghanistan 1853           0
## 23564                           Africa 1853           0
## 23565                          Albania 1853           0
## 23566                          Algeria 1853           0
## 23567                 Americas (other) 1853      688832
## 23568                          Andorra 1853           0
## 23569                           Angola 1853           0
## 23570                         Anguilla 1853           0
## 23571              Antarctic Fisheries 1853           0
## 23572              Antigua and Barbuda 1853           0
## 23573                        Argentina 1853           0
## 23574                          Armenia 1853           0
## 23575                            Aruba 1853           0
## 23576         Asia and Pacific (other) 1853           0
## 23577                        Australia 1853           0
## 23578                          Austria 1853    39017936
## 23579                       Azerbaijan 1853           0
## 23580                          Bahamas 1853           0
## 23581                          Bahrain 1853           0
## 23582                       Bangladesh 1853           0
## 23583                         Barbados 1853           0
## 23584                          Belarus 1853           0
## 23585                          Belgium 1853   183859520
## 23586                           Belize 1853           0
## 23587                            Benin 1853           0
## 23588                          Bermuda 1853           0
## 23589                           Bhutan 1853           0
## 23590                          Bolivia 1853           0
## 23591  Bonaire Sint Eustatius and Saba 1853           0
## 23592           Bosnia and Herzegovina 1853           0
## 23593                         Botswana 1853           0
## 23594                           Brazil 1853           0
## 23595           British Virgin Islands 1853           0
## 23596                           Brunei 1853           0
## 23597                         Bulgaria 1853           0
## 23598                     Burkina Faso 1853           0
## 23599                          Burundi 1853           0
## 23600                         Cambodia 1853           0
## 23601                         Cameroon 1853           0
## 23602                           Canada 1853      685168
## 23603                       Cape Verde 1853           0
## 23604                   Cayman Islands 1853           0
## 23605         Central African Republic 1853           0
## 23606                             Chad 1853           0
## 23607                            Chile 1853           0
## 23608                            China 1853           0
## 23609                 Christmas Island 1853           0
## 23610                         Colombia 1853           0
## 23611                          Comoros 1853           0
## 23612                            Congo 1853           0
## 23613                     Cook Islands 1853           0
## 23614                       Costa Rica 1853           0
## 23615                    Cote d'Ivoire 1853           0
## 23616                          Croatia 1853           0
## 23617                             Cuba 1853           0
## 23618                          Curacao 1853           0
## 23619                           Cyprus 1853           0
## 23620                   Czech Republic 1853           0
## 23621                   Czechoslovakia 1853           0
## 23622     Democratic Republic of Congo 1853           0
## 23623                          Denmark 1853     2828608
## 23624                         Djibouti 1853           0
## 23625                         Dominica 1853           0
## 23626               Dominican Republic 1853           0
## 23627                            EU-28 1853  5099577184
## 23628                          Ecuador 1853           0
## 23629                            Egypt 1853           0
## 23630                      El Salvador 1853           0
## 23631                Equatorial Guinea 1853           0
## 23632                          Eritrea 1853           0
## 23633                          Estonia 1853           0
## 23634                         Ethiopia 1853           0
## 23635                   Europe (other) 1853     1817344
## 23636                   Faeroe Islands 1853           0
## 23637                 Falkland Islands 1853           0
## 23638                             Fiji 1853           0
## 23639                          Finland 1853           0
## 23640                           France 1853   407370848
## 23641                    French Guiana 1853           0
## 23642                 French Polynesia 1853           0
## 23643                            Gabon 1853           0
## 23644                           Gambia 1853           0
## 23645                          Georgia 1853           0
## 23646                          Germany 1853   311454656
## 23647                            Ghana 1853           0
## 23648                        Gibraltar 1853           0
## 23649                           Greece 1853           0
## 23650                        Greenland 1853           0
## 23651                          Grenada 1853           0
## 23652                       Guadeloupe 1853           0
## 23653                        Guatemala 1853           0
## 23654                           Guinea 1853           0
## 23655                    Guinea-Bissau 1853           0
## 23656                           Guyana 1853           0
## 23657                            Haiti 1853           0
## 23658                         Honduras 1853           0
## 23659                        Hong Kong 1853           0
## 23660                          Hungary 1853     2729680
## 23661                          Iceland 1853           0
## 23662                            India 1853           0
## 23663                        Indonesia 1853           0
## 23664                             Iran 1853           0
## 23665                             Iraq 1853           0
## 23666                          Ireland 1853      395712
## 23667                           Israel 1853           0
## 23668                            Italy 1853           0
## 23669                          Jamaica 1853           0
## 23670                            Japan 1853           0
## 23671                           Jordan 1853           0
## 23672                       Kazakhstan 1853           0
## 23673                            Kenya 1853           0
## 23674                         Kiribati 1853           0
## 23675                           Kuwait 1853           0
## 23676                       Kyrgysztan 1853           0
## 23677                       Kyrgyzstan 1853           0
## 23678                             Laos 1853           0
## 23679                           Latvia 1853           0
## 23680                          Lebanon 1853           0
## 23681                          Lesotho 1853           0
## 23682                          Liberia 1853           0
## 23683                            Libya 1853           0
## 23684                    Liechtenstein 1853           0
## 23685                        Lithuania 1853           0
## 23686                       Luxembourg 1853           0
## 23687                            Macao 1853           0
## 23688                        Macedonia 1853           0
## 23689                       Madagascar 1853           0
## 23690                           Malawi 1853           0
## 23691                         Malaysia 1853           0
## 23692                         Maldives 1853           0
## 23693                             Mali 1853           0
## 23694                            Malta 1853           0
## 23695                 Marshall Islands 1853           0
## 23696                       Martinique 1853           0
## 23697                       Mauritania 1853           0
## 23698                        Mauritius 1853           0
## 23699                           Mexico 1853           0
## 23700             Micronesia (country) 1853           0
## 23701                      Middle East 1853           0
## 23702                          Moldova 1853           0
## 23703                         Mongolia 1853           0
## 23704                       Montenegro 1853           0
## 23705                       Montserrat 1853           0
## 23706                          Morocco 1853           0
## 23707                       Mozambique 1853           0
## 23708                          Myanmar 1853           0
## 23709                          Namibia 1853           0
## 23710                            Nauru 1853           0
## 23711                            Nepal 1853           0
## 23712                      Netherlands 1853    27905024
## 23713                    New Caledonia 1853           0
## 23714                      New Zealand 1853           0
## 23715                        Nicaragua 1853           0
## 23716                            Niger 1853           0
## 23717                          Nigeria 1853           0
## 23718                             Niue 1853           0
## 23719                      North Korea 1853           0
## 23720                           Norway 1853     1619488
## 23721                             Oman 1853           0
## 23722                         Pakistan 1853           0
## 23723                            Palau 1853           0
## 23724                        Palestine 1853           0
## 23725                           Panama 1853           0
## 23726                 Papua New Guinea 1853           0
## 23727                         Paraguay 1853           0
## 23728                             Peru 1853           0
## 23729                      Philippines 1853           0
## 23730                           Poland 1853    75265888
## 23731                         Portugal 1853           0
## 23732                            Qatar 1853           0
## 23733                          Reunion 1853           0
## 23734                          Romania 1853           0
## 23735                           Russia 1853           0
## 23736                           Rwanda 1853           0
## 23737                     Saint Helena 1853           0
## 23738            Saint Kitts and Nevis 1853           0
## 23739                      Saint Lucia 1853           0
## 23740        Saint Pierre and Miquelon 1853           0
## 23741 Saint Vincent and the Grenadines 1853           0
## 23742                            Samoa 1853           0
## 23743            Sao Tome and Principe 1853           0
## 23744                     Saudi Arabia 1853           0
## 23745                          Senegal 1853           0
## 23746                           Serbia 1853           0
## 23747                       Seychelles 1853           0
## 23748                     Sierra Leone 1853           0
## 23749                        Singapore 1853           0
## 23750        Sint Maarten (Dutch part) 1853           0
## 23751                         Slovakia 1853           0
## 23752                         Slovenia 1853           0
## 23753                  Solomon Islands 1853           0
## 23754                          Somalia 1853           0
## 23755                     South Africa 1853           0
## 23756                      South Korea 1853           0
## 23757                      South Sudan 1853           0
## 23758                            Spain 1853     4437104
## 23759                        Sri Lanka 1853           0
## 23760                            Sudan 1853           0
## 23761                         Suriname 1853           0
## 23762                        Swaziland 1853           0
## 23763                           Sweden 1853     1839328
## 23764                      Switzerland 1853           0
## 23765                            Syria 1853           0
## 23766                           Taiwan 1853           0
## 23767                       Tajikistan 1853           0
## 23768                         Tanzania 1853           0
## 23769                         Thailand 1853           0
## 23770                            Timor 1853           0
## 23771                             Togo 1853           0
## 23772                            Tonga 1853           0
## 23773              Trinidad and Tobago 1853           0
## 23774                          Tunisia 1853           0
## 23775                           Turkey 1853           0
## 23776                     Turkmenistan 1853           0
## 23777         Turks and Caicos Islands 1853           0
## 23778                           Tuvalu 1853           0
## 23779                           Uganda 1853           0
## 23780                          Ukraine 1853           0
## 23781             United Arab Emirates 1853           0
## 23782                   United Kingdom 1853  4042472880
## 23783                    United States 1853   271561024
## 23784                          Uruguay 1853           0
## 23785                       Uzbekistan 1853           0
## 23786                          Vanuatu 1853           0
## 23787                        Venezuela 1853           0
## 23788                          Vietnam 1853           0
## 23789        Wallis and Futuna Islands 1853           0
## 23790                            World 1853  5373402560
## 23791                            Yemen 1853           0
## 23792                           Zambia 1853           0
## 23793                         Zimbabwe 1853           0
## 23794                      Afghanistan 1854           0
## 23795                           Africa 1854           0
## 23796                          Albania 1854           0
## 23797                          Algeria 1854           0
## 23798                 Americas (other) 1854      813408
## 23799                          Andorra 1854           0
## 23800                           Angola 1854           0
## 23801                         Anguilla 1854           0
## 23802              Antarctic Fisheries 1854           0
## 23803              Antigua and Barbuda 1854           0
## 23804                        Argentina 1854           0
## 23805                          Armenia 1854           0
## 23806                            Aruba 1854           0
## 23807         Asia and Pacific (other) 1854           0
## 23808                        Australia 1854           0
## 23809                          Austria 1854    42194624
## 23810                       Azerbaijan 1854           0
## 23811                          Bahamas 1854           0
## 23812                          Bahrain 1854           0
## 23813                       Bangladesh 1854           0
## 23814                         Barbados 1854           0
## 23815                          Belarus 1854           0
## 23816                          Belgium 1854   196918016
## 23817                           Belize 1854           0
## 23818                            Benin 1854           0
## 23819                          Bermuda 1854           0
## 23820                           Bhutan 1854           0
## 23821                          Bolivia 1854           0
## 23822  Bonaire Sint Eustatius and Saba 1854           0
## 23823           Bosnia and Herzegovina 1854           0
## 23824                         Botswana 1854           0
## 23825                           Brazil 1854           0
## 23826           British Virgin Islands 1854           0
## 23827                           Brunei 1854           0
## 23828                         Bulgaria 1854           0
## 23829                     Burkina Faso 1854           0
## 23830                          Burundi 1854           0
## 23831                         Cambodia 1854           0
## 23832                         Cameroon 1854           0
## 23833                           Canada 1854      809744
## 23834                       Cape Verde 1854           0
## 23835                   Cayman Islands 1854           0
## 23836         Central African Republic 1854           0
## 23837                             Chad 1854           0
## 23838                            Chile 1854           0
## 23839                            China 1854           0
## 23840                 Christmas Island 1854           0
## 23841                         Colombia 1854           0
## 23842                          Comoros 1854           0
## 23843                            Congo 1854           0
## 23844                     Cook Islands 1854           0
## 23845                       Costa Rica 1854           0
## 23846                    Cote d'Ivoire 1854           0
## 23847                          Croatia 1854           0
## 23848                             Cuba 1854           0
## 23849                          Curacao 1854           0
## 23850                           Cyprus 1854           0
## 23851                   Czech Republic 1854           0
## 23852                   Czechoslovakia 1854           0
## 23853     Democratic Republic of Congo 1854           0
## 23854                          Denmark 1854     3286608
## 23855                         Djibouti 1854           0
## 23856                         Dominica 1854           0
## 23857               Dominican Republic 1854           0
## 23858                            EU-28 1854  5321197888
## 23859                          Ecuador 1854           0
## 23860                            Egypt 1854           0
## 23861                      El Salvador 1854           0
## 23862                Equatorial Guinea 1854           0
## 23863                          Eritrea 1854           0
## 23864                          Estonia 1854           0
## 23865                         Ethiopia 1854           0
## 23866                   Europe (other) 1854     2055504
## 23867                   Faeroe Islands 1854           0
## 23868                 Falkland Islands 1854           0
## 23869                             Fiji 1854           0
## 23870                          Finland 1854           0
## 23871                           France 1854   436583920
## 23872                    French Guiana 1854           0
## 23873                 French Polynesia 1854           0
## 23874                            Gabon 1854           0
## 23875                           Gambia 1854           0
## 23876                          Georgia 1854           0
## 23877                          Germany 1854   335820256
## 23878                            Ghana 1854           0
## 23879                        Gibraltar 1854           0
## 23880                           Greece 1854           0
## 23881                        Greenland 1854           0
## 23882                          Grenada 1854           0
## 23883                       Guadeloupe 1854           0
## 23884                        Guatemala 1854           0
## 23885                           Guinea 1854           0
## 23886                    Guinea-Bissau 1854           0
## 23887                           Guyana 1854           0
## 23888                            Haiti 1854           0
## 23889                         Honduras 1854           0
## 23890                        Hong Kong 1854           0
## 23891                          Hungary 1854     3165696
## 23892                          Iceland 1854           0
## 23893                            India 1854           0
## 23894                        Indonesia 1854           0
## 23895                             Iran 1854           0
## 23896                             Iraq 1854           0
## 23897                          Ireland 1854      395712
## 23898                           Israel 1854           0
## 23899                            Italy 1854           0
## 23900                          Jamaica 1854           0
## 23901                            Japan 1854           0
## 23902                           Jordan 1854           0
## 23903                       Kazakhstan 1854           0
## 23904                            Kenya 1854           0
## 23905                         Kiribati 1854           0
## 23906                           Kuwait 1854           0
## 23907                       Kyrgysztan 1854           0
## 23908                       Kyrgyzstan 1854           0
## 23909                             Laos 1854           0
## 23910                           Latvia 1854           0
## 23911                          Lebanon 1854           0
## 23912                          Lesotho 1854           0
## 23913                          Liberia 1854           0
## 23914                            Libya 1854           0
## 23915                    Liechtenstein 1854           0
## 23916                        Lithuania 1854           0
## 23917                       Luxembourg 1854           0
## 23918                            Macao 1854           0
## 23919                        Macedonia 1854           0
## 23920                       Madagascar 1854           0
## 23921                           Malawi 1854           0
## 23922                         Malaysia 1854           0
## 23923                         Maldives 1854           0
## 23924                             Mali 1854           0
## 23925                            Malta 1854           0
## 23926                 Marshall Islands 1854           0
## 23927                       Martinique 1854           0
## 23928                       Mauritania 1854           0
## 23929                        Mauritius 1854           0
## 23930                           Mexico 1854           0
## 23931             Micronesia (country) 1854           0
## 23932                      Middle East 1854           0
## 23933                          Moldova 1854           0
## 23934                         Mongolia 1854           0
## 23935                       Montenegro 1854           0
## 23936                       Montserrat 1854           0
## 23937                          Morocco 1854           0
## 23938                       Mozambique 1854           0
## 23939                          Myanmar 1854           0
## 23940                          Namibia 1854           0
## 23941                            Nauru 1854           0
## 23942                            Nepal 1854           0
## 23943                      Netherlands 1854    33851696
## 23944                    New Caledonia 1854           0
## 23945                      New Zealand 1854           0
## 23946                        Nicaragua 1854           0
## 23947                            Niger 1854           0
## 23948                          Nigeria 1854           0
## 23949                             Niue 1854           0
## 23950                      North Korea 1854           0
## 23951                           Norway 1854     1853984
## 23952                             Oman 1854           0
## 23953                         Pakistan 1854           0
## 23954                            Palau 1854           0
## 23955                        Palestine 1854           0
## 23956                           Panama 1854           0
## 23957                 Papua New Guinea 1854           0
## 23958                         Paraguay 1854           0
## 23959                             Peru 1854           0
## 23960                      Philippines 1854           0
## 23961                           Poland 1854    80043744
## 23962                         Portugal 1854           0
## 23963                            Qatar 1854           0
## 23964                          Reunion 1854           0
## 23965                          Romania 1854           0
## 23966                           Russia 1854           0
## 23967                           Rwanda 1854           0
## 23968                     Saint Helena 1854           0
## 23969            Saint Kitts and Nevis 1854           0
## 23970                      Saint Lucia 1854           0
## 23971        Saint Pierre and Miquelon 1854           0
## 23972 Saint Vincent and the Grenadines 1854           0
## 23973                            Samoa 1854           0
## 23974            Sao Tome and Principe 1854           0
## 23975                     Saudi Arabia 1854           0
## 23976                          Senegal 1854           0
## 23977                           Serbia 1854           0
## 23978                       Seychelles 1854           0
## 23979                     Sierra Leone 1854           0
## 23980                        Singapore 1854           0
## 23981        Sint Maarten (Dutch part) 1854           0
## 23982                         Slovakia 1854           0
## 23983                         Slovenia 1854           0
## 23984                  Solomon Islands 1854           0
## 23985                          Somalia 1854           0
## 23986                     South Africa 1854           0
## 23987                      South Korea 1854           0
## 23988                      South Sudan 1854           0
## 23989                            Spain 1854     4986704
## 23990                        Sri Lanka 1854           0
## 23991                            Sudan 1854           0
## 23992                         Suriname 1854           0
## 23993                        Swaziland 1854           0
## 23994                           Sweden 1854     2176416
## 23995                      Switzerland 1854           0
## 23996                            Syria 1854           0
## 23997                           Taiwan 1854           0
## 23998                       Tajikistan 1854           0
## 23999                         Tanzania 1854           0
## 24000                         Thailand 1854           0
## 24001                            Timor 1854           0
## 24002                             Togo 1854           0
## 24003                            Tonga 1854           0
## 24004              Trinidad and Tobago 1854           0
## 24005                          Tunisia 1854           0
## 24006                           Turkey 1854           0
## 24007                     Turkmenistan 1854           0
## 24008         Turks and Caicos Islands 1854           0
## 24009                           Tuvalu 1854           0
## 24010                           Uganda 1854           0
## 24011                          Ukraine 1854           0
## 24012             United Arab Emirates 1854           0
## 24013                   United Kingdom 1854  4181774496
## 24014                    United States 1854   304720224
## 24015                          Uruguay 1854           0
## 24016                       Uzbekistan 1854           0
## 24017                          Vanuatu 1854           0
## 24018                        Venezuela 1854           0
## 24019                          Vietnam 1854           0
## 24020        Wallis and Futuna Islands 1854           0
## 24021                            World 1854  5628413296
## 24022                            Yemen 1854           0
## 24023                           Zambia 1854           0
## 24024                         Zimbabwe 1854           0
## 24025                      Afghanistan 1855           0
## 24026                           Africa 1855           0
## 24027                          Albania 1855           0
## 24028                          Algeria 1855           0
## 24029                 Americas (other) 1855      959968
## 24030                          Andorra 1855           0
## 24031                           Angola 1855           0
## 24032                         Anguilla 1855           0
## 24033              Antarctic Fisheries 1855           0
## 24034              Antigua and Barbuda 1855           0
## 24035                        Argentina 1855           0
## 24036                          Armenia 1855           0
## 24037                            Aruba 1855           0
## 24038         Asia and Pacific (other) 1855           0
## 24039                        Australia 1855           0
## 24040                          Austria 1855    45895264
## 24041                       Azerbaijan 1855           0
## 24042                          Bahamas 1855           0
## 24043                          Bahrain 1855           0
## 24044                       Bangladesh 1855           0
## 24045                         Barbados 1855           0
## 24046                          Belarus 1855           0
## 24047                          Belgium 1855   210295280
## 24048                           Belize 1855           0
## 24049                            Benin 1855           0
## 24050                          Bermuda 1855           0
## 24051                           Bhutan 1855           0
## 24052                          Bolivia 1855           0
## 24053  Bonaire Sint Eustatius and Saba 1855           0
## 24054           Bosnia and Herzegovina 1855           0
## 24055                         Botswana 1855           0
## 24056                           Brazil 1855           0
## 24057           British Virgin Islands 1855           0
## 24058                           Brunei 1855           0
## 24059                         Bulgaria 1855           0
## 24060                     Burkina Faso 1855           0
## 24061                          Burundi 1855           0
## 24062                         Cambodia 1855           0
## 24063                         Cameroon 1855           0
## 24064                           Canada 1855      959968
## 24065                       Cape Verde 1855           0
## 24066                   Cayman Islands 1855           0
## 24067         Central African Republic 1855           0
## 24068                             Chad 1855           0
## 24069                            Chile 1855           0
## 24070                            China 1855           0
## 24071                 Christmas Island 1855           0
## 24072                         Colombia 1855           0
## 24073                          Comoros 1855           0
## 24074                            Congo 1855           0
## 24075                     Cook Islands 1855           0
## 24076                       Costa Rica 1855           0
## 24077                    Cote d'Ivoire 1855           0
## 24078                          Croatia 1855           0
## 24079                             Cuba 1855           0
## 24080                          Curacao 1855           0
## 24081                           Cyprus 1855           0
## 24082                   Czech Republic 1855           0
## 24083                   Czechoslovakia 1855           0
## 24084     Democratic Republic of Congo 1855           0
## 24085                          Denmark 1855     3740944
## 24086                         Djibouti 1855           0
## 24087                         Dominica 1855           0
## 24088               Dominican Republic 1855           0
## 24089                            EU-28 1855  5542452192
## 24090                          Ecuador 1855           0
## 24091                            Egypt 1855           0
## 24092                      El Salvador 1855           0
## 24093                Equatorial Guinea 1855           0
## 24094                          Eritrea 1855           0
## 24095                          Estonia 1855           0
## 24096                         Ethiopia 1855           0
## 24097                   Europe (other) 1855     2649072
## 24098                   Faeroe Islands 1855           0
## 24099                 Falkland Islands 1855           0
## 24100                             Fiji 1855           0
## 24101                          Finland 1855           0
## 24102                           France 1855   469655184
## 24103                    French Guiana 1855           0
## 24104                 French Polynesia 1855           0
## 24105                            Gabon 1855           0
## 24106                           Gambia 1855           0
## 24107                          Georgia 1855           0
## 24108                          Germany 1855   364436096
## 24109                            Ghana 1855           0
## 24110                        Gibraltar 1855           0
## 24111                           Greece 1855           0
## 24112                        Greenland 1855           0
## 24113                          Grenada 1855           0
## 24114                       Guadeloupe 1855           0
## 24115                        Guatemala 1855           0
## 24116                           Guinea 1855           0
## 24117                    Guinea-Bissau 1855           0
## 24118                           Guyana 1855           0
## 24119                            Haiti 1855           0
## 24120                         Honduras 1855           0
## 24121                        Hong Kong 1855           0
## 24122                          Hungary 1855     3620032
## 24123                          Iceland 1855           0
## 24124                            India 1855           0
## 24125                        Indonesia 1855           0
## 24126                             Iran 1855           0
## 24127                             Iraq 1855           0
## 24128                          Ireland 1855      395712
## 24129                           Israel 1855           0
## 24130                            Italy 1855           0
## 24131                          Jamaica 1855           0
## 24132                            Japan 1855           0
## 24133                           Jordan 1855           0
## 24134                       Kazakhstan 1855           0
## 24135                            Kenya 1855           0
## 24136                         Kiribati 1855           0
## 24137                           Kuwait 1855           0
## 24138                       Kyrgysztan 1855           0
## 24139                       Kyrgyzstan 1855           0
## 24140                             Laos 1855           0
## 24141                           Latvia 1855           0
## 24142                          Lebanon 1855           0
## 24143                          Lesotho 1855           0
## 24144                          Liberia 1855           0
## 24145                            Libya 1855           0
## 24146                    Liechtenstein 1855           0
## 24147                        Lithuania 1855           0
## 24148                       Luxembourg 1855           0
## 24149                            Macao 1855           0
## 24150                        Macedonia 1855           0
## 24151                       Madagascar 1855           0
## 24152                           Malawi 1855           0
## 24153                         Malaysia 1855           0
## 24154                         Maldives 1855           0
## 24155                             Mali 1855           0
## 24156                            Malta 1855           0
## 24157                 Marshall Islands 1855           0
## 24158                       Martinique 1855           0
## 24159                       Mauritania 1855           0
## 24160                        Mauritius 1855           0
## 24161                           Mexico 1855           0
## 24162             Micronesia (country) 1855           0
## 24163                      Middle East 1855           0
## 24164                          Moldova 1855           0
## 24165                         Mongolia 1855           0
## 24166                       Montenegro 1855           0
## 24167                       Montserrat 1855           0
## 24168                          Morocco 1855           0
## 24169                       Mozambique 1855           0
## 24170                          Myanmar 1855           0
## 24171                          Namibia 1855           0
## 24172                            Nauru 1855           0
## 24173                            Nepal 1855           0
## 24174                      Netherlands 1855    38501312
## 24175                    New Caledonia 1855           0
## 24176                      New Zealand 1855           0
## 24177                        Nicaragua 1855           0
## 24178                            Niger 1855           0
## 24179                          Nigeria 1855           0
## 24180                             Niue 1855           0
## 24181                      North Korea 1855           0
## 24182                           Norway 1855     2110464
## 24183                             Oman 1855           0
## 24184                         Pakistan 1855           0
## 24185                            Palau 1855           0
## 24186                        Palestine 1855           0
## 24187                           Panama 1855           0
## 24188                 Papua New Guinea 1855           0
## 24189                         Paraguay 1855           0
## 24190                             Peru 1855           0
## 24191                      Philippines 1855           0
## 24192                           Poland 1855    85664320
## 24193                         Portugal 1855           0
## 24194                            Qatar 1855           0
## 24195                          Reunion 1855           0
## 24196                          Romania 1855           0
## 24197                           Russia 1855           0
## 24198                           Rwanda 1855           0
## 24199                     Saint Helena 1855           0
## 24200            Saint Kitts and Nevis 1855           0
## 24201                      Saint Lucia 1855           0
## 24202        Saint Pierre and Miquelon 1855           0
## 24203 Saint Vincent and the Grenadines 1855           0
## 24204                            Samoa 1855           0
## 24205            Sao Tome and Principe 1855           0
## 24206                     Saudi Arabia 1855           0
## 24207                          Senegal 1855           0
## 24208                           Serbia 1855           0
## 24209                       Seychelles 1855           0
## 24210                     Sierra Leone 1855           0
## 24211                        Singapore 1855           0
## 24212        Sint Maarten (Dutch part) 1855           0
## 24213                         Slovakia 1855           0
## 24214                         Slovenia 1855           0
## 24215                  Solomon Islands 1855           0
## 24216                          Somalia 1855           0
## 24217                     South Africa 1855           0
## 24218                      South Korea 1855           0
## 24219                      South Sudan 1855           0
## 24220                            Spain 1855     5539968
## 24221                        Sri Lanka 1855           0
## 24222                            Sudan 1855           0
## 24223                         Suriname 1855           0
## 24224                        Swaziland 1855           0
## 24225                           Sweden 1855     2491520
## 24226                      Switzerland 1855           0
## 24227                            Syria 1855           0
## 24228                           Taiwan 1855           0
## 24229                       Tajikistan 1855           0
## 24230                         Tanzania 1855           0
## 24231                         Thailand 1855           0
## 24232                            Timor 1855           0
## 24233                             Togo 1855           0
## 24234                            Tonga 1855           0
## 24235              Trinidad and Tobago 1855           0
## 24236                          Tunisia 1855           0
## 24237                           Turkey 1855           0
## 24238                     Turkmenistan 1855           0
## 24239         Turks and Caicos Islands 1855           0
## 24240                           Tuvalu 1855           0
## 24241                           Uganda 1855           0
## 24242                          Ukraine 1855           0
## 24243             United Arab Emirates 1855           0
## 24244                   United Kingdom 1855  4312216560
## 24245                    United States 1855   342880784
## 24246                          Uruguay 1855           0
## 24247                       Uzbekistan 1855           0
## 24248                          Vanuatu 1855           0
## 24249                        Venezuela 1855           0
## 24250                          Vietnam 1855           0
## 24251        Wallis and Futuna Islands 1855           0
## 24252                            World 1855  5888447376
## 24253                            Yemen 1855           0
## 24254                           Zambia 1855           0
## 24255                         Zimbabwe 1855           0
## 24256                      Afghanistan 1856           0
## 24257                           Africa 1856           0
## 24258                          Albania 1856           0
## 24259                          Algeria 1856           0
## 24260                 Americas (other) 1856     1139504
## 24261                          Andorra 1856           0
## 24262                           Angola 1856           0
## 24263                         Anguilla 1856           0
## 24264              Antarctic Fisheries 1856           0
## 24265              Antigua and Barbuda 1856           0
## 24266                        Argentina 1856           0
## 24267                          Armenia 1856           0
## 24268                            Aruba 1856           0
## 24269         Asia and Pacific (other) 1856           0
## 24270                        Australia 1856           0
## 24271                          Austria 1856    50127184
## 24272                       Azerbaijan 1856           0
## 24273                          Bahamas 1856           0
## 24274                          Bahrain 1856           0
## 24275                       Bangladesh 1856           0
## 24276                         Barbados 1856           0
## 24277                          Belarus 1856           0
## 24278                          Belgium 1856   223507664
## 24279                           Belize 1856           0
## 24280                            Benin 1856           0
## 24281                          Bermuda 1856           0
## 24282                           Bhutan 1856           0
## 24283                          Bolivia 1856           0
## 24284  Bonaire Sint Eustatius and Saba 1856           0
## 24285           Bosnia and Herzegovina 1856           0
## 24286                         Botswana 1856           0
## 24287                           Brazil 1856           0
## 24288           British Virgin Islands 1856           0
## 24289                           Brunei 1856           0
## 24290                         Bulgaria 1856           0
## 24291                     Burkina Faso 1856           0
## 24292                          Burundi 1856           0
## 24293                         Cambodia 1856           0
## 24294                         Cameroon 1856           0
## 24295                           Canada 1856     1139504
## 24296                       Cape Verde 1856           0
## 24297                   Cayman Islands 1856           0
## 24298         Central African Republic 1856           0
## 24299                             Chad 1856           0
## 24300                            Chile 1856           0
## 24301                            China 1856           0
## 24302                 Christmas Island 1856           0
## 24303                         Colombia 1856           0
## 24304                          Comoros 1856           0
## 24305                            Congo 1856           0
## 24306                     Cook Islands 1856           0
## 24307                       Costa Rica 1856           0
## 24308                    Cote d'Ivoire 1856           0
## 24309                          Croatia 1856           0
## 24310                             Cuba 1856           0
## 24311                          Curacao 1856           0
## 24312                           Cyprus 1856           0
## 24313                   Czech Republic 1856           0
## 24314                   Czechoslovakia 1856           0
## 24315     Democratic Republic of Congo 1856           0
## 24316                          Denmark 1856     4389472
## 24317                         Djibouti 1856           0
## 24318                         Dominica 1856           0
## 24319               Dominican Republic 1856           0
## 24320                            EU-28 1856  5779223536
## 24321                          Ecuador 1856           0
## 24322                            Egypt 1856           0
## 24323                      El Salvador 1856           0
## 24324                Equatorial Guinea 1856           0
## 24325                          Eritrea 1856           0
## 24326                          Estonia 1856           0
## 24327                         Ethiopia 1856           0
## 24328                   Europe (other) 1856     2953184
## 24329                   Faeroe Islands 1856           0
## 24330                 Falkland Islands 1856           0
## 24331                             Fiji 1856           0
## 24332                          Finland 1856           0
## 24333                           France 1856   504287312
## 24334                    French Guiana 1856           0
## 24335                 French Polynesia 1856           0
## 24336                            Gabon 1856           0
## 24337                           Gambia 1856           0
## 24338                          Georgia 1856           0
## 24339                          Germany 1856   395360256
## 24340                            Ghana 1856           0
## 24341                        Gibraltar 1856           0
## 24342                           Greece 1856           0
## 24343                        Greenland 1856           0
## 24344                          Grenada 1856           0
## 24345                       Guadeloupe 1856           0
## 24346                        Guatemala 1856           0
## 24347                           Guinea 1856           0
## 24348                    Guinea-Bissau 1856           0
## 24349                           Guyana 1856           0
## 24350                            Haiti 1856           0
## 24351                         Honduras 1856           0
## 24352                        Hong Kong 1856           0
## 24353                          Hungary 1856     4096352
## 24354                          Iceland 1856           0
## 24355                            India 1856           0
## 24356                        Indonesia 1856           0
## 24357                             Iran 1856           0
## 24358                             Iraq 1856           0
## 24359                          Ireland 1856      395712
## 24360                           Israel 1856           0
## 24361                            Italy 1856           0
## 24362                          Jamaica 1856           0
## 24363                            Japan 1856           0
## 24364                           Jordan 1856           0
## 24365                       Kazakhstan 1856           0
## 24366                            Kenya 1856           0
## 24367                         Kiribati 1856           0
## 24368                           Kuwait 1856           0
## 24369                       Kyrgysztan 1856           0
## 24370                       Kyrgyzstan 1856           0
## 24371                             Laos 1856           0
## 24372                           Latvia 1856           0
## 24373                          Lebanon 1856           0
## 24374                          Lesotho 1856           0
## 24375                          Liberia 1856           0
## 24376                            Libya 1856           0
## 24377                    Liechtenstein 1856           0
## 24378                        Lithuania 1856           0
## 24379                       Luxembourg 1856           0
## 24380                            Macao 1856           0
## 24381                        Macedonia 1856           0
## 24382                       Madagascar 1856           0
## 24383                           Malawi 1856           0
## 24384                         Malaysia 1856           0
## 24385                         Maldives 1856           0
## 24386                             Mali 1856           0
## 24387                            Malta 1856           0
## 24388                 Marshall Islands 1856           0
## 24389                       Martinique 1856           0
## 24390                       Mauritania 1856           0
## 24391                        Mauritius 1856           0
## 24392                           Mexico 1856           0
## 24393             Micronesia (country) 1856           0
## 24394                      Middle East 1856           0
## 24395                          Moldova 1856           0
## 24396                         Mongolia 1856           0
## 24397                       Montenegro 1856           0
## 24398                       Montserrat 1856           0
## 24399                          Morocco 1856           0
## 24400                       Mozambique 1856           0
## 24401                          Myanmar 1856           0
## 24402                          Namibia 1856           0
## 24403                            Nauru 1856           0
## 24404                            Nepal 1856           0
## 24405                      Netherlands 1856    43224208
## 24406                    New Caledonia 1856           0
## 24407                      New Zealand 1856           0
## 24408                        Nicaragua 1856           0
## 24409                            Niger 1856           0
## 24410                          Nigeria 1856           0
## 24411                             Niue 1856           0
## 24412                      North Korea 1856           0
## 24413                           Norway 1856     2414576
## 24414                             Oman 1856           0
## 24415                         Pakistan 1856           0
## 24416                            Palau 1856           0
## 24417                        Palestine 1856           0
## 24418                           Panama 1856           0
## 24419                 Papua New Guinea 1856           0
## 24420                         Paraguay 1856           0
## 24421                             Peru 1856           0
## 24422                      Philippines 1856           0
## 24423                           Poland 1856    91981056
## 24424                         Portugal 1856           0
## 24425                            Qatar 1856           0
## 24426                          Reunion 1856           0
## 24427                          Romania 1856           0
## 24428                           Russia 1856           0
## 24429                           Rwanda 1856           0
## 24430                     Saint Helena 1856           0
## 24431            Saint Kitts and Nevis 1856           0
## 24432                      Saint Lucia 1856           0
## 24433        Saint Pierre and Miquelon 1856           0
## 24434 Saint Vincent and the Grenadines 1856           0
## 24435                            Samoa 1856           0
## 24436            Sao Tome and Principe 1856           0
## 24437                     Saudi Arabia 1856           0
## 24438                          Senegal 1856           0
## 24439                           Serbia 1856           0
## 24440                       Seychelles 1856           0
## 24441                     Sierra Leone 1856           0
## 24442                        Singapore 1856           0
## 24443        Sint Maarten (Dutch part) 1856           0
## 24444                         Slovakia 1856           0
## 24445                         Slovenia 1856           0
## 24446                  Solomon Islands 1856           0
## 24447                          Somalia 1856           0
## 24448                     South Africa 1856           0
## 24449                      South Korea 1856           0
## 24450                      South Sudan 1856           0
## 24451                            Spain 1856     6294752
## 24452                        Sri Lanka 1856           0
## 24453                            Sudan 1856           0
## 24454                         Suriname 1856           0
## 24455                        Swaziland 1856           0
## 24456                           Sweden 1856     2967840
## 24457                      Switzerland 1856           0
## 24458                            Syria 1856           0
## 24459                           Taiwan 1856           0
## 24460                       Tajikistan 1856           0
## 24461                         Tanzania 1856           0
## 24462                         Thailand 1856           0
## 24463                            Timor 1856           0
## 24464                             Togo 1856           0
## 24465                            Tonga 1856           0
## 24466              Trinidad and Tobago 1856           0
## 24467                          Tunisia 1856           0
## 24468                           Turkey 1856           0
## 24469                     Turkmenistan 1856           0
## 24470         Turks and Caicos Islands 1856           0
## 24471                           Tuvalu 1856           0
## 24472                           Uganda 1856           0
## 24473                          Ukraine 1856           0
## 24474             United Arab Emirates 1856           0
## 24475                   United Kingdom 1856  4452591728
## 24476                    United States 1856   382917312
## 24477                          Uruguay 1856           0
## 24478                       Uzbekistan 1856           0
## 24479                          Vanuatu 1856           0
## 24480                        Venezuela 1856           0
## 24481                          Vietnam 1856           0
## 24482        Wallis and Futuna Islands 1856           0
## 24483                            World 1856  6165555696
## 24484                            Yemen 1856           0
## 24485                           Zambia 1856           0
## 24486                         Zimbabwe 1856           0
## 24487                      Afghanistan 1857           0
## 24488                           Africa 1857           0
## 24489                          Albania 1857           0
## 24490                          Algeria 1857           0
## 24491                 Americas (other) 1857     1359344
## 24492                          Andorra 1857           0
## 24493                           Angola 1857           0
## 24494                         Anguilla 1857           0
## 24495              Antarctic Fisheries 1857           0
## 24496              Antigua and Barbuda 1857           0
## 24497                        Argentina 1857           0
## 24498                          Armenia 1857           0
## 24499                            Aruba 1857           0
## 24500         Asia and Pacific (other) 1857           0
## 24501                        Australia 1857           0
## 24502                          Austria 1857    55000304
## 24503                       Azerbaijan 1857           0
## 24504                          Bahamas 1857           0
## 24505                          Bahrain 1857           0
## 24506                       Bangladesh 1857           0
## 24507                         Barbados 1857           0
## 24508                          Belarus 1857           0
## 24509                          Belgium 1857   237262320
## 24510                           Belize 1857           0
## 24511                            Benin 1857           0
## 24512                          Bermuda 1857           0
## 24513                           Bhutan 1857           0
## 24514                          Bolivia 1857           0
## 24515  Bonaire Sint Eustatius and Saba 1857           0
## 24516           Bosnia and Herzegovina 1857           0
## 24517                         Botswana 1857           0
## 24518                           Brazil 1857           0
## 24519           British Virgin Islands 1857           0
## 24520                           Brunei 1857           0
## 24521                         Bulgaria 1857           0
## 24522                     Burkina Faso 1857           0
## 24523                          Burundi 1857           0
## 24524                         Cambodia 1857           0
## 24525                         Cameroon 1857           0
## 24526                           Canada 1857     1355680
## 24527                       Cape Verde 1857           0
## 24528                   Cayman Islands 1857           0
## 24529         Central African Republic 1857           0
## 24530                             Chad 1857           0
## 24531                            Chile 1857           0
## 24532                            China 1857           0
## 24533                 Christmas Island 1857           0
## 24534                         Colombia 1857           0
## 24535                          Comoros 1857           0
## 24536                            Congo 1857           0
## 24537                     Cook Islands 1857           0
## 24538                       Costa Rica 1857           0
## 24539                    Cote d'Ivoire 1857           0
## 24540                          Croatia 1857           0
## 24541                             Cuba 1857           0
## 24542                          Curacao 1857           0
## 24543                           Cyprus 1857           0
## 24544                   Czech Republic 1857           0
## 24545                   Czechoslovakia 1857           0
## 24546     Democratic Republic of Congo 1857           0
## 24547                          Denmark 1857     5052656
## 24548                         Djibouti 1857           0
## 24549                         Dominica 1857           0
## 24550               Dominican Republic 1857           0
## 24551                            EU-28 1857  6017537424
## 24552                          Ecuador 1857           0
## 24553                            Egypt 1857           0
## 24554                      El Salvador 1857           0
## 24555                Equatorial Guinea 1857           0
## 24556                          Eritrea 1857           0
## 24557                          Estonia 1857           0
## 24558                         Ethiopia 1857           0
## 24559                   Europe (other) 1857     3257296
## 24560                   Faeroe Islands 1857           0
## 24561                 Falkland Islands 1857           0
## 24562                             Fiji 1857           0
## 24563                          Finland 1857           0
## 24564                           France 1857   539567968
## 24565                    French Guiana 1857           0
## 24566                 French Polynesia 1857           0
## 24567                            Gabon 1857           0
## 24568                           Gambia 1857           0
## 24569                          Georgia 1857           0
## 24570                          Germany 1857   428299616
## 24571                            Ghana 1857           0
## 24572                        Gibraltar 1857           0
## 24573                           Greece 1857           0
## 24574                        Greenland 1857           0
## 24575                          Grenada 1857           0
## 24576                       Guadeloupe 1857           0
## 24577                        Guatemala 1857           0
## 24578                           Guinea 1857           0
## 24579                    Guinea-Bissau 1857           0
## 24580                           Guyana 1857           0
## 24581                            Haiti 1857           0
## 24582                         Honduras 1857           0
## 24583                        Hong Kong 1857           0
## 24584                          Hungary 1857     4642288
## 24585                          Iceland 1857           0
## 24586                            India 1857           0
## 24587                        Indonesia 1857           0
## 24588                             Iran 1857           0
## 24589                             Iraq 1857           0
## 24590                          Ireland 1857      395712
## 24591                           Israel 1857           0
## 24592                            Italy 1857           0
## 24593                          Jamaica 1857           0
## 24594                            Japan 1857           0
## 24595                           Jordan 1857           0
## 24596                       Kazakhstan 1857           0
## 24597                            Kenya 1857           0
## 24598                         Kiribati 1857           0
## 24599                           Kuwait 1857           0
## 24600                       Kyrgysztan 1857           0
## 24601                       Kyrgyzstan 1857           0
## 24602                             Laos 1857           0
## 24603                           Latvia 1857           0
## 24604                          Lebanon 1857           0
## 24605                          Lesotho 1857           0
## 24606                          Liberia 1857           0
## 24607                            Libya 1857           0
## 24608                    Liechtenstein 1857           0
## 24609                        Lithuania 1857           0
## 24610                       Luxembourg 1857           0
## 24611                            Macao 1857           0
## 24612                        Macedonia 1857           0
## 24613                       Madagascar 1857           0
## 24614                           Malawi 1857           0
## 24615                         Malaysia 1857           0
## 24616                         Maldives 1857           0
## 24617                             Mali 1857           0
## 24618                            Malta 1857           0
## 24619                 Marshall Islands 1857           0
## 24620                       Martinique 1857           0
## 24621                       Mauritania 1857           0
## 24622                        Mauritius 1857           0
## 24623                           Mexico 1857           0
## 24624             Micronesia (country) 1857           0
## 24625                      Middle East 1857           0
## 24626                          Moldova 1857           0
## 24627                         Mongolia 1857           0
## 24628                       Montenegro 1857           0
## 24629                       Montserrat 1857           0
## 24630                          Morocco 1857           0
## 24631                       Mozambique 1857           0
## 24632                          Myanmar 1857           0
## 24633                          Namibia 1857           0
## 24634                            Nauru 1857           0
## 24635                            Nepal 1857           0
## 24636                      Netherlands 1857    47441472
## 24637                    New Caledonia 1857           0
## 24638                      New Zealand 1857           0
## 24639                        Nicaragua 1857           0
## 24640                            Niger 1857           0
## 24641                          Nigeria 1857           0
## 24642                             Niue 1857           0
## 24643                      North Korea 1857           0
## 24644                           Norway 1857     2718688
## 24645                             Oman 1857           0
## 24646                         Pakistan 1857           0
## 24647                            Palau 1857           0
## 24648                        Palestine 1857           0
## 24649                           Panama 1857           0
## 24650                 Papua New Guinea 1857           0
## 24651                         Paraguay 1857           0
## 24652                             Peru 1857           0
## 24653                      Philippines 1857           0
## 24654                           Poland 1857    98697168
## 24655                         Portugal 1857           0
## 24656                            Qatar 1857           0
## 24657                          Reunion 1857           0
## 24658                          Romania 1857           0
## 24659                           Russia 1857           0
## 24660                           Rwanda 1857           0
## 24661                     Saint Helena 1857           0
## 24662            Saint Kitts and Nevis 1857           0
## 24663                      Saint Lucia 1857           0
## 24664        Saint Pierre and Miquelon 1857           0
## 24665 Saint Vincent and the Grenadines 1857           0
## 24666                            Samoa 1857           0
## 24667            Sao Tome and Principe 1857           0
## 24668                     Saudi Arabia 1857           0
## 24669                          Senegal 1857           0
## 24670                           Serbia 1857           0
## 24671                       Seychelles 1857           0
## 24672                     Sierra Leone 1857           0
## 24673                        Singapore 1857           0
## 24674        Sint Maarten (Dutch part) 1857           0
## 24675                         Slovakia 1857           0
## 24676                         Slovenia 1857           0
## 24677                  Solomon Islands 1857           0
## 24678                          Somalia 1857           0
## 24679                     South Africa 1857           0
## 24680                      South Korea 1857           0
## 24681                      South Sudan 1857           0
## 24682                            Spain 1857     7144800
## 24683                        Sri Lanka 1857           0
## 24684                            Sudan 1857           0
## 24685                         Suriname 1857           0
## 24686                        Swaziland 1857           0
## 24687                           Sweden 1857     3579728
## 24688                      Switzerland 1857           0
## 24689                            Syria 1857           0
## 24690                           Taiwan 1857           0
## 24691                       Tajikistan 1857           0
## 24692                         Tanzania 1857           0
## 24693                         Thailand 1857           0
## 24694                            Timor 1857           0
## 24695                             Togo 1857           0
## 24696                            Tonga 1857           0
## 24697              Trinidad and Tobago 1857           0
## 24698                          Tunisia 1857           0
## 24699                           Turkey 1857           0
## 24700                     Turkmenistan 1857           0
## 24701         Turks and Caicos Islands 1857           0
## 24702                           Tuvalu 1857           0
## 24703                           Uganda 1857           0
## 24704                          Ukraine 1857           0
## 24705             United Arab Emirates 1857           0
## 24706                   United Kingdom 1857  4590453392
## 24707                    United States 1857   423972432
## 24708                          Uruguay 1857           0
## 24709                       Uzbekistan 1857           0
## 24710                          Vanuatu 1857           0
## 24711                        Venezuela 1857           0
## 24712                          Vietnam 1857           0
## 24713        Wallis and Futuna Islands 1857           0
## 24714                            World 1857  6445236144
## 24715                            Yemen 1857           0
## 24716                           Zambia 1857           0
## 24717                         Zimbabwe 1857           0
## 24718                      Afghanistan 1858           0
## 24719                           Africa 1858           0
## 24720                          Albania 1858           0
## 24721                          Algeria 1858           0
## 24722                 Americas (other) 1858     1623152
## 24723                          Andorra 1858           0
## 24724                           Angola 1858           0
## 24725                         Anguilla 1858           0
## 24726              Antarctic Fisheries 1858           0
## 24727              Antigua and Barbuda 1858           0
## 24728                        Argentina 1858           0
## 24729                          Armenia 1858           0
## 24730                            Aruba 1858           0
## 24731         Asia and Pacific (other) 1858      436016
## 24732                        Australia 1858           0
## 24733                          Austria 1858    62244032
## 24734                       Azerbaijan 1858           0
## 24735                          Bahamas 1858           0
## 24736                          Bahrain 1858           0
## 24737                       Bangladesh 1858           0
## 24738                         Barbados 1858           0
## 24739                          Belarus 1858           0
## 24740                          Belgium 1858   251713136
## 24741                           Belize 1858           0
## 24742                            Benin 1858           0
## 24743                          Bermuda 1858           0
## 24744                           Bhutan 1858           0
## 24745                          Bolivia 1858           0
## 24746  Bonaire Sint Eustatius and Saba 1858           0
## 24747           Bosnia and Herzegovina 1858           0
## 24748                         Botswana 1858           0
## 24749                           Brazil 1858           0
## 24750           British Virgin Islands 1858           0
## 24751                           Brunei 1858           0
## 24752                         Bulgaria 1858           0
## 24753                     Burkina Faso 1858           0
## 24754                          Burundi 1858           0
## 24755                         Cambodia 1858           0
## 24756                         Cameroon 1858           0
## 24757                           Canada 1858     1619488
## 24758                       Cape Verde 1858           0
## 24759                   Cayman Islands 1858           0
## 24760         Central African Republic 1858           0
## 24761                             Chad 1858           0
## 24762                            Chile 1858           0
## 24763                            China 1858           0
## 24764                 Christmas Island 1858           0
## 24765                         Colombia 1858           0
## 24766                          Comoros 1858           0
## 24767                            Congo 1858           0
## 24768                     Cook Islands 1858           0
## 24769                       Costa Rica 1858           0
## 24770                    Cote d'Ivoire 1858           0
## 24771                          Croatia 1858           0
## 24772                             Cuba 1858           0
## 24773                          Curacao 1858           0
## 24774                           Cyprus 1858           0
## 24775                   Czech Republic 1858           0
## 24776                   Czechoslovakia 1858           0
## 24777     Democratic Republic of Congo 1858           0
## 24778                          Denmark 1858     5543632
## 24779                         Djibouti 1858           0
## 24780                         Dominica 1858           0
## 24781               Dominican Republic 1858           0
## 24782                            EU-28 1858  6258504048
## 24783                          Ecuador 1858           0
## 24784                            Egypt 1858           0
## 24785                      El Salvador 1858           0
## 24786                Equatorial Guinea 1858           0
## 24787                          Eritrea 1858           0
## 24788                          Estonia 1858           0
## 24789                         Ethiopia 1858           0
## 24790                   Europe (other) 1858     4151312
## 24791                   Faeroe Islands 1858           0
## 24792                 Falkland Islands 1858           0
## 24793                             Fiji 1858           0
## 24794                          Finland 1858           0
## 24795                           France 1858   574163456
## 24796                    French Guiana 1858           0
## 24797                 French Polynesia 1858           0
## 24798                            Gabon 1858           0
## 24799                           Gambia 1858           0
## 24800                          Georgia 1858           0
## 24801                          Germany 1858   463910032
## 24802                            Ghana 1858           0
## 24803                        Gibraltar 1858           0
## 24804                           Greece 1858           0
## 24805                        Greenland 1858           0
## 24806                          Grenada 1858           0
## 24807                       Guadeloupe 1858           0
## 24808                        Guatemala 1858           0
## 24809                           Guinea 1858           0
## 24810                    Guinea-Bissau 1858           0
## 24811                           Guyana 1858           0
## 24812                            Haiti 1858           0
## 24813                         Honduras 1858           0
## 24814                        Hong Kong 1858           0
## 24815                          Hungary 1858     5023344
## 24816                          Iceland 1858           0
## 24817                            India 1858      436016
## 24818                        Indonesia 1858           0
## 24819                             Iran 1858           0
## 24820                             Iraq 1858           0
## 24821                          Ireland 1858      395712
## 24822                           Israel 1858           0
## 24823                            Italy 1858           0
## 24824                          Jamaica 1858           0
## 24825                            Japan 1858           0
## 24826                           Jordan 1858           0
## 24827                       Kazakhstan 1858           0
## 24828                            Kenya 1858           0
## 24829                         Kiribati 1858           0
## 24830                           Kuwait 1858           0
## 24831                       Kyrgysztan 1858           0
## 24832                       Kyrgyzstan 1858           0
## 24833                             Laos 1858           0
## 24834                           Latvia 1858           0
## 24835                          Lebanon 1858           0
## 24836                          Lesotho 1858           0
## 24837                          Liberia 1858           0
## 24838                            Libya 1858           0
## 24839                    Liechtenstein 1858           0
## 24840                        Lithuania 1858           0
## 24841                       Luxembourg 1858           0
## 24842                            Macao 1858           0
## 24843                        Macedonia 1858           0
## 24844                       Madagascar 1858           0
## 24845                           Malawi 1858           0
## 24846                         Malaysia 1858           0
## 24847                         Maldives 1858           0
## 24848                             Mali 1858           0
## 24849                            Malta 1858           0
## 24850                 Marshall Islands 1858           0
## 24851                       Martinique 1858           0
## 24852                       Mauritania 1858           0
## 24853                        Mauritius 1858           0
## 24854                           Mexico 1858           0
## 24855             Micronesia (country) 1858           0
## 24856                      Middle East 1858           0
## 24857                          Moldova 1858           0
## 24858                         Mongolia 1858           0
## 24859                       Montenegro 1858           0
## 24860                       Montserrat 1858           0
## 24861                          Morocco 1858           0
## 24862                       Mozambique 1858           0
## 24863                          Myanmar 1858           0
## 24864                          Namibia 1858           0
## 24865                            Nauru 1858           0
## 24866                            Nepal 1858           0
## 24867                      Netherlands 1858    51149440
## 24868                    New Caledonia 1858           0
## 24869                      New Zealand 1858           0
## 24870                        Nicaragua 1858           0
## 24871                            Niger 1858           0
## 24872                          Nigeria 1858           0
## 24873                             Niue 1858           0
## 24874                      North Korea 1858           0
## 24875                           Norway 1858     2986160
## 24876                             Oman 1858           0
## 24877                         Pakistan 1858           0
## 24878                            Palau 1858           0
## 24879                        Palestine 1858           0
## 24880                           Panama 1858           0
## 24881                 Papua New Guinea 1858           0
## 24882                         Paraguay 1858           0
## 24883                             Peru 1858           0
## 24884                      Philippines 1858           0
## 24885                           Poland 1858   106402560
## 24886                         Portugal 1858           0
## 24887                            Qatar 1858           0
## 24888                          Reunion 1858           0
## 24889                          Romania 1858        3664
## 24890                           Russia 1858           0
## 24891                           Rwanda 1858           0
## 24892                     Saint Helena 1858           0
## 24893            Saint Kitts and Nevis 1858           0
## 24894                      Saint Lucia 1858           0
## 24895        Saint Pierre and Miquelon 1858           0
## 24896 Saint Vincent and the Grenadines 1858           0
## 24897                            Samoa 1858           0
## 24898            Sao Tome and Principe 1858           0
## 24899                     Saudi Arabia 1858           0
## 24900                          Senegal 1858           0
## 24901                           Serbia 1858           0
## 24902                       Seychelles 1858           0
## 24903                     Sierra Leone 1858           0
## 24904                        Singapore 1858           0
## 24905        Sint Maarten (Dutch part) 1858           0
## 24906                         Slovakia 1858           0
## 24907                         Slovenia 1858           0
## 24908                  Solomon Islands 1858           0
## 24909                          Somalia 1858           0
## 24910                     South Africa 1858           0
## 24911                      South Korea 1858           0
## 24912                      South Sudan 1858           0
## 24913                            Spain 1858     8295296
## 24914                        Sri Lanka 1858           0
## 24915                            Sudan 1858           0
## 24916                         Suriname 1858           0
## 24917                        Swaziland 1858           0
## 24918                           Sweden 1858     4092688
## 24919                      Switzerland 1858      146560
## 24920                            Syria 1858           0
## 24921                           Taiwan 1858           0
## 24922                       Tajikistan 1858           0
## 24923                         Tanzania 1858           0
## 24924                         Thailand 1858           0
## 24925                            Timor 1858           0
## 24926                             Togo 1858           0
## 24927                            Tonga 1858           0
## 24928              Trinidad and Tobago 1858           0
## 24929                          Tunisia 1858           0
## 24930                           Turkey 1858           0
## 24931                     Turkmenistan 1858           0
## 24932         Turks and Caicos Islands 1858           0
## 24933                           Tuvalu 1858           0
## 24934                           Uganda 1858           0
## 24935                          Ukraine 1858           0
## 24936             United Arab Emirates 1858           0
## 24937                   United Kingdom 1858  4725567056
## 24938                    United States 1858   465621120
## 24939                          Uruguay 1858           0
## 24940                       Uzbekistan 1858           0
## 24941                          Vanuatu 1858           0
## 24942                        Venezuela 1858           0
## 24943                          Vietnam 1858           0
## 24944        Wallis and Futuna Islands 1858           0
## 24945                            World 1858  6729203472
## 24946                            Yemen 1858           0
## 24947                           Zambia 1858           0
## 24948                         Zimbabwe 1858           0
## 24949                      Afghanistan 1859           0
## 24950                           Africa 1859           0
## 24951                          Albania 1859           0
## 24952                          Algeria 1859           0
## 24953                 Americas (other) 1859     1938256
## 24954                          Andorra 1859           0
## 24955                           Angola 1859           0
## 24956                         Anguilla 1859           0
## 24957              Antarctic Fisheries 1859           0
## 24958              Antigua and Barbuda 1859           0
## 24959                        Argentina 1859           0
## 24960                          Armenia 1859           0
## 24961                            Aruba 1859           0
## 24962         Asia and Pacific (other) 1859     1139504
## 24963                        Australia 1859           0
## 24964                          Austria 1859    68110096
## 24965                       Azerbaijan 1859           0
## 24966                          Bahamas 1859           0
## 24967                          Bahrain 1859           0
## 24968                       Bangladesh 1859           0
## 24969                         Barbados 1859           0
## 24970                          Belarus 1859           0
## 24971                          Belgium 1859   266610960
## 24972                           Belize 1859           0
## 24973                            Benin 1859           0
## 24974                          Bermuda 1859           0
## 24975                           Bhutan 1859           0
## 24976                          Bolivia 1859           0
## 24977  Bonaire Sint Eustatius and Saba 1859           0
## 24978           Bosnia and Herzegovina 1859           0
## 24979                         Botswana 1859           0
## 24980                           Brazil 1859           0
## 24981           British Virgin Islands 1859           0
## 24982                           Brunei 1859           0
## 24983                         Bulgaria 1859           0
## 24984                     Burkina Faso 1859           0
## 24985                          Burundi 1859           0
## 24986                         Cambodia 1859           0
## 24987                         Cameroon 1859           0
## 24988                           Canada 1859     1934592
## 24989                       Cape Verde 1859           0
## 24990                   Cayman Islands 1859           0
## 24991         Central African Republic 1859           0
## 24992                             Chad 1859           0
## 24993                            Chile 1859           0
## 24994                            China 1859           0
## 24995                 Christmas Island 1859           0
## 24996                         Colombia 1859           0
## 24997                          Comoros 1859           0
## 24998                            Congo 1859           0
## 24999                     Cook Islands 1859           0
## 25000                       Costa Rica 1859           0
## 25001                    Cote d'Ivoire 1859           0
## 25002                          Croatia 1859           0
## 25003                             Cuba 1859           0
## 25004                          Curacao 1859           0
## 25005                           Cyprus 1859           0
## 25006                   Czech Republic 1859           0
## 25007                   Czechoslovakia 1859           0
## 25008     Democratic Republic of Congo 1859           0
## 25009                          Denmark 1859     6170176
## 25010                         Djibouti 1859           0
## 25011                         Dominica 1859           0
## 25012               Dominican Republic 1859           0
## 25013                            EU-28 1859  6512499856
## 25014                          Ecuador 1859           0
## 25015                            Egypt 1859           0
## 25016                      El Salvador 1859           0
## 25017                Equatorial Guinea 1859           0
## 25018                          Eritrea 1859           0
## 25019                          Estonia 1859           0
## 25020                         Ethiopia 1859           0
## 25021                   Europe (other) 1859     5195552
## 25022                   Faeroe Islands 1859           0
## 25023                 Falkland Islands 1859           0
## 25024                             Fiji 1859           0
## 25025                          Finland 1859           0
## 25026                           France 1859   609154656
## 25027                    French Guiana 1859           0
## 25028                 French Polynesia 1859           0
## 25029                            Gabon 1859           0
## 25030                           Gambia 1859           0
## 25031                          Georgia 1859           0
## 25032                          Germany 1859   497717760
## 25033                            Ghana 1859           0
## 25034                        Gibraltar 1859           0
## 25035                           Greece 1859           0
## 25036                        Greenland 1859           0
## 25037                          Grenada 1859           0
## 25038                       Guadeloupe 1859           0
## 25039                        Guatemala 1859           0
## 25040                           Guinea 1859           0
## 25041                    Guinea-Bissau 1859           0
## 25042                           Guyana 1859           0
## 25043                            Haiti 1859           0
## 25044                         Honduras 1859           0
## 25045                        Hong Kong 1859           0
## 25046                          Hungary 1859     5792784
## 25047                          Iceland 1859           0
## 25048                            India 1859     1139504
## 25049                        Indonesia 1859           0
## 25050                             Iran 1859           0
## 25051                             Iraq 1859           0
## 25052                          Ireland 1859      395712
## 25053                           Israel 1859           0
## 25054                            Italy 1859           0
## 25055                          Jamaica 1859           0
## 25056                            Japan 1859           0
## 25057                           Jordan 1859           0
## 25058                       Kazakhstan 1859           0
## 25059                            Kenya 1859           0
## 25060                         Kiribati 1859           0
## 25061                           Kuwait 1859           0
## 25062                       Kyrgysztan 1859           0
## 25063                       Kyrgyzstan 1859           0
## 25064                             Laos 1859           0
## 25065                           Latvia 1859           0
## 25066                          Lebanon 1859           0
## 25067                          Lesotho 1859           0
## 25068                          Liberia 1859           0
## 25069                            Libya 1859           0
## 25070                    Liechtenstein 1859           0
## 25071                        Lithuania 1859           0
## 25072                       Luxembourg 1859           0
## 25073                            Macao 1859           0
## 25074                        Macedonia 1859           0
## 25075                       Madagascar 1859           0
## 25076                           Malawi 1859           0
## 25077                         Malaysia 1859           0
## 25078                         Maldives 1859           0
## 25079                             Mali 1859           0
## 25080                            Malta 1859           0
## 25081                 Marshall Islands 1859           0
## 25082                       Martinique 1859           0
## 25083                       Mauritania 1859           0
## 25084                        Mauritius 1859           0
## 25085                           Mexico 1859           0
## 25086             Micronesia (country) 1859           0
## 25087                      Middle East 1859           0
## 25088                          Moldova 1859           0
## 25089                         Mongolia 1859           0
## 25090                       Montenegro 1859           0
## 25091                       Montserrat 1859           0
## 25092                          Morocco 1859           0
## 25093                       Mozambique 1859           0
## 25094                          Myanmar 1859           0
## 25095                          Namibia 1859           0
## 25096                            Nauru 1859           0
## 25097                            Nepal 1859           0
## 25098                      Netherlands 1859    54674208
## 25099                    New Caledonia 1859           0
## 25100                      New Zealand 1859           0
## 25101                        Nicaragua 1859           0
## 25102                            Niger 1859           0
## 25103                          Nigeria 1859           0
## 25104                             Niue 1859           0
## 25105                      North Korea 1859           0
## 25106                           Norway 1859     3312256
## 25107                             Oman 1859           0
## 25108                         Pakistan 1859           0
## 25109                            Palau 1859           0
## 25110                        Palestine 1859           0
## 25111                           Panama 1859           0
## 25112                 Papua New Guinea 1859           0
## 25113                         Paraguay 1859           0
## 25114                             Peru 1859           0
## 25115                      Philippines 1859           0
## 25116                           Poland 1859   113514384
## 25117                         Portugal 1859           0
## 25118                            Qatar 1859           0
## 25119                          Reunion 1859           0
## 25120                          Romania 1859        7328
## 25121                           Russia 1859           0
## 25122                           Rwanda 1859           0
## 25123                     Saint Helena 1859           0
## 25124            Saint Kitts and Nevis 1859           0
## 25125                      Saint Lucia 1859           0
## 25126        Saint Pierre and Miquelon 1859           0
## 25127 Saint Vincent and the Grenadines 1859           0
## 25128                            Samoa 1859           0
## 25129            Sao Tome and Principe 1859           0
## 25130                     Saudi Arabia 1859           0
## 25131                          Senegal 1859           0
## 25132                           Serbia 1859           0
## 25133                       Seychelles 1859           0
## 25134                     Sierra Leone 1859           0
## 25135                        Singapore 1859           0
## 25136        Sint Maarten (Dutch part) 1859           0
## 25137                         Slovakia 1859           0
## 25138                         Slovenia 1859           0
## 25139                  Solomon Islands 1859           0
## 25140                          Somalia 1859           0
## 25141                     South Africa 1859           0
## 25142                      South Korea 1859           0
## 25143                      South Sudan 1859           0
## 25144                            Spain 1859     9925776
## 25145                        Sri Lanka 1859           0
## 25146                            Sudan 1859           0
## 25147                         Suriname 1859           0
## 25148                        Swaziland 1859           0
## 25149                           Sweden 1859     4847472
## 25150                      Switzerland 1859      351744
## 25151                            Syria 1859           0
## 25152                           Taiwan 1859           0
## 25153                       Tajikistan 1859           0
## 25154                         Tanzania 1859           0
## 25155                         Thailand 1859           0
## 25156                            Timor 1859           0
## 25157                             Togo 1859           0
## 25158                            Tonga 1859           0
## 25159              Trinidad and Tobago 1859           0
## 25160                          Tunisia 1859           0
## 25161                           Turkey 1859           0
## 25162                     Turkmenistan 1859           0
## 25163         Turks and Caicos Islands 1859           0
## 25164                           Tuvalu 1859           0
## 25165                           Uganda 1859           0
## 25166                          Ukraine 1859           0
## 25167             United Arab Emirates 1859           0
## 25168                   United Kingdom 1859  4875578544
## 25169                    United States 1859   510941136
## 25170                          Uruguay 1859           0
## 25171                       Uzbekistan 1859           0
## 25172                          Vanuatu 1859           0
## 25173                        Venezuela 1859           0
## 25174                          Vietnam 1859           0
## 25175        Wallis and Futuna Islands 1859           0
## 25176                            World 1859  7030204736
## 25177                            Yemen 1859           0
## 25178                           Zambia 1859           0
## 25179                         Zimbabwe 1859           0
## 25180                      Afghanistan 1860           0
## 25181                           Africa 1860           0
## 25182                          Albania 1860           0
## 25183                          Algeria 1860           0
## 25184                 Americas (other) 1860     2319312
## 25185                          Andorra 1860           0
## 25186                           Angola 1860           0
## 25187                         Anguilla 1860           0
## 25188              Antarctic Fisheries 1860           0
## 25189              Antigua and Barbuda 1860           0
## 25190                        Argentina 1860           0
## 25191                          Armenia 1860           0
## 25192                            Aruba 1860           0
## 25193         Asia and Pacific (other) 1860     2128784
## 25194                        Australia 1860      278464
## 25195                          Austria 1860    74258288
## 25196                       Azerbaijan 1860           0
## 25197                          Bahamas 1860           0
## 25198                          Bahrain 1860           0
## 25199                       Bangladesh 1860           0
## 25200                         Barbados 1860           0
## 25201                          Belarus 1860           0
## 25202                          Belgium 1860   281823888
## 25203                           Belize 1860           0
## 25204                            Benin 1860           0
## 25205                          Bermuda 1860           0
## 25206                           Bhutan 1860           0
## 25207                          Bolivia 1860           0
## 25208  Bonaire Sint Eustatius and Saba 1860           0
## 25209           Bosnia and Herzegovina 1860           0
## 25210                         Botswana 1860           0
## 25211                           Brazil 1860           0
## 25212           British Virgin Islands 1860           0
## 25213                           Brunei 1860           0
## 25214                         Bulgaria 1860           0
## 25215                     Burkina Faso 1860           0
## 25216                          Burundi 1860           0
## 25217                         Cambodia 1860           0
## 25218                         Cameroon 1860           0
## 25219                           Canada 1860     2315648
## 25220                       Cape Verde 1860           0
## 25221                   Cayman Islands 1860           0
## 25222         Central African Republic 1860           0
## 25223                             Chad 1860           0
## 25224                            Chile 1860           0
## 25225                            China 1860           0
## 25226                 Christmas Island 1860           0
## 25227                         Colombia 1860           0
## 25228                          Comoros 1860           0
## 25229                            Congo 1860           0
## 25230                     Cook Islands 1860           0
## 25231                       Costa Rica 1860           0
## 25232                    Cote d'Ivoire 1860           0
## 25233                          Croatia 1860           0
## 25234                             Cuba 1860           0
## 25235                          Curacao 1860           0
## 25236                           Cyprus 1860           0
## 25237                   Czech Republic 1860           0
## 25238                   Czechoslovakia 1860      267472
## 25239     Democratic Republic of Congo 1860           0
## 25240                          Denmark 1860     6712448
## 25241                         Djibouti 1860           0
## 25242                         Dominica 1860           0
## 25243               Dominican Republic 1860           0
## 25244                            EU-28 1860  6792817840
## 25245                          Ecuador 1860           0
## 25246                            Egypt 1860           0
## 25247                      El Salvador 1860           0
## 25248                Equatorial Guinea 1860           0
## 25249                          Eritrea 1860           0
## 25250                          Estonia 1860           0
## 25251                         Ethiopia 1860           0
## 25252                   Europe (other) 1860     6782064
## 25253                   Faeroe Islands 1860           0
## 25254                 Falkland Islands 1860           0
## 25255                             Fiji 1860           0
## 25256                          Finland 1860       36640
## 25257                           France 1860   647285904
## 25258                    French Guiana 1860           0
## 25259                 French Polynesia 1860           0
## 25260                            Gabon 1860           0
## 25261                           Gambia 1860           0
## 25262                          Georgia 1860           0
## 25263                          Germany 1860   534112272
## 25264                            Ghana 1860           0
## 25265                        Gibraltar 1860           0
## 25266                           Greece 1860           0
## 25267                        Greenland 1860           0
## 25268                          Grenada 1860           0
## 25269                       Guadeloupe 1860           0
## 25270                        Guatemala 1860           0
## 25271                           Guinea 1860           0
## 25272                    Guinea-Bissau 1860           0
## 25273                           Guyana 1860           0
## 25274                            Haiti 1860           0
## 25275                         Honduras 1860           0
## 25276                        Hong Kong 1860           0
## 25277                          Hungary 1860     6697792
## 25278                          Iceland 1860           0
## 25279                            India 1860     1850320
## 25280                        Indonesia 1860           0
## 25281                             Iran 1860           0
## 25282                             Iraq 1860           0
## 25283                          Ireland 1860      395712
## 25284                           Israel 1860           0
## 25285                            Italy 1860       29312
## 25286                          Jamaica 1860           0
## 25287                            Japan 1860           0
## 25288                           Jordan 1860           0
## 25289                       Kazakhstan 1860           0
## 25290                            Kenya 1860           0
## 25291                         Kiribati 1860           0
## 25292                           Kuwait 1860           0
## 25293                       Kyrgysztan 1860           0
## 25294                       Kyrgyzstan 1860           0
## 25295                             Laos 1860           0
## 25296                           Latvia 1860           0
## 25297                          Lebanon 1860           0
## 25298                          Lesotho 1860           0
## 25299                          Liberia 1860           0
## 25300                            Libya 1860           0
## 25301                    Liechtenstein 1860           0
## 25302                        Lithuania 1860           0
## 25303                       Luxembourg 1860           0
## 25304                            Macao 1860           0
## 25305                        Macedonia 1860           0
## 25306                       Madagascar 1860           0
## 25307                           Malawi 1860           0
## 25308                         Malaysia 1860           0
## 25309                         Maldives 1860           0
## 25310                             Mali 1860           0
## 25311                            Malta 1860           0
## 25312                 Marshall Islands 1860           0
## 25313                       Martinique 1860           0
## 25314                       Mauritania 1860           0
## 25315                        Mauritius 1860           0
## 25316                           Mexico 1860           0
## 25317             Micronesia (country) 1860           0
## 25318                      Middle East 1860           0
## 25319                          Moldova 1860           0
## 25320                         Mongolia 1860           0
## 25321                       Montenegro 1860           0
## 25322                       Montserrat 1860           0
## 25323                          Morocco 1860           0
## 25324                       Mozambique 1860           0
## 25325                          Myanmar 1860           0
## 25326                          Namibia 1860           0
## 25327                            Nauru 1860           0
## 25328                            Nepal 1860           0
## 25329                      Netherlands 1860    59470384
## 25330                    New Caledonia 1860           0
## 25331                      New Zealand 1860           0
## 25332                        Nicaragua 1860           0
## 25333                            Niger 1860           0
## 25334                          Nigeria 1860           0
## 25335                             Niue 1860           0
## 25336                      North Korea 1860           0
## 25337                           Norway 1860     3645680
## 25338                             Oman 1860           0
## 25339                         Pakistan 1860           0
## 25340                            Palau 1860           0
## 25341                        Palestine 1860           0
## 25342                           Panama 1860           0
## 25343                 Papua New Guinea 1860           0
## 25344                         Paraguay 1860           0
## 25345                             Peru 1860           0
## 25346                      Philippines 1860           0
## 25347                           Poland 1860   120999936
## 25348                         Portugal 1860           0
## 25349                            Qatar 1860           0
## 25350                          Reunion 1860           0
## 25351                          Romania 1860       10992
## 25352                           Russia 1860           0
## 25353                           Rwanda 1860           0
## 25354                     Saint Helena 1860           0
## 25355            Saint Kitts and Nevis 1860           0
## 25356                      Saint Lucia 1860           0
## 25357        Saint Pierre and Miquelon 1860           0
## 25358 Saint Vincent and the Grenadines 1860           0
## 25359                            Samoa 1860           0
## 25360            Sao Tome and Principe 1860           0
## 25361                     Saudi Arabia 1860           0
## 25362                          Senegal 1860           0
## 25363                           Serbia 1860           0
## 25364                       Seychelles 1860           0
## 25365                     Sierra Leone 1860           0
## 25366                        Singapore 1860           0
## 25367        Sint Maarten (Dutch part) 1860           0
## 25368                         Slovakia 1860           0
## 25369                         Slovenia 1860           0
## 25370                  Solomon Islands 1860           0
## 25371                          Somalia 1860           0
## 25372                     South Africa 1860           0
## 25373                      South Korea 1860           0
## 25374                      South Sudan 1860           0
## 25375                            Spain 1860    11856704
## 25376                        Sri Lanka 1860           0
## 25377                            Sudan 1860           0
## 25378                         Suriname 1860           0
## 25379                        Swaziland 1860           0
## 25380                           Sweden 1860     5598592
## 25381                      Switzerland 1860      655856
## 25382                            Syria 1860           0
## 25383                           Taiwan 1860           0
## 25384                       Tajikistan 1860           0
## 25385                         Tanzania 1860           0
## 25386                         Thailand 1860           0
## 25387                            Timor 1860           0
## 25388                             Togo 1860           0
## 25389                            Tonga 1860           0
## 25390              Trinidad and Tobago 1860           0
## 25391                          Tunisia 1860           0
## 25392                           Turkey 1860           0
## 25393                     Turkmenistan 1860           0
## 25394         Turks and Caicos Islands 1860           0
## 25395                           Tuvalu 1860           0
## 25396                           Uganda 1860           0
## 25397                          Ukraine 1860           0
## 25398             United Arab Emirates 1860           0
## 25399                   United Kingdom 1860  5043528976
## 25400                    United States 1860   558378944
## 25401                          Uruguay 1860           0
## 25402                       Uzbekistan 1860           0
## 25403                          Vanuatu 1860           0
## 25404                        Venezuela 1860           0
## 25405                          Vietnam 1860           0
## 25406        Wallis and Futuna Islands 1860           0
## 25407                            World 1860  7360913712
## 25408                            Yemen 1860           0
## 25409                           Zambia 1860           0
## 25410                         Zimbabwe 1860           0
## 25411                      Afghanistan 1861           0
## 25412                           Africa 1861           0
## 25413                          Albania 1861           0
## 25414                          Algeria 1861           0
## 25415                 Americas (other) 1861     2777312
## 25416                          Andorra 1861           0
## 25417                           Angola 1861           0
## 25418                         Anguilla 1861           0
## 25419              Antarctic Fisheries 1861           0
## 25420              Antigua and Barbuda 1861           0
## 25421                        Argentina 1861           0
## 25422                          Armenia 1861           0
## 25423                            Aruba 1861           0
## 25424         Asia and Pacific (other) 1861     3187680
## 25425                        Australia 1861      787760
## 25426                          Austria 1861    80637312
## 25427                       Azerbaijan 1861           0
## 25428                          Bahamas 1861           0
## 25429                          Bahrain 1861           0
## 25430                       Bangladesh 1861           0
## 25431                         Barbados 1861           0
## 25432                          Belarus 1861           0
## 25433                          Belgium 1861   298282576
## 25434                           Belize 1861           0
## 25435                            Benin 1861           0
## 25436                          Bermuda 1861           0
## 25437                           Bhutan 1861           0
## 25438                          Bolivia 1861           0
## 25439  Bonaire Sint Eustatius and Saba 1861           0
## 25440           Bosnia and Herzegovina 1861           0
## 25441                         Botswana 1861           0
## 25442                           Brazil 1861           0
## 25443           British Virgin Islands 1861           0
## 25444                           Brunei 1861           0
## 25445                         Bulgaria 1861           0
## 25446                     Burkina Faso 1861           0
## 25447                          Burundi 1861           0
## 25448                         Cambodia 1861           0
## 25449                         Cameroon 1861           0
## 25450                           Canada 1861     2773648
## 25451                       Cape Verde 1861           0
## 25452                   Cayman Islands 1861           0
## 25453         Central African Republic 1861           0
## 25454                             Chad 1861           0
## 25455                            Chile 1861           0
## 25456                            China 1861           0
## 25457                 Christmas Island 1861           0
## 25458                         Colombia 1861           0
## 25459                          Comoros 1861           0
## 25460                            Congo 1861           0
## 25461                     Cook Islands 1861           0
## 25462                       Costa Rica 1861           0
## 25463                    Cote d'Ivoire 1861           0
## 25464                          Croatia 1861           0
## 25465                             Cuba 1861           0
## 25466                          Curacao 1861           0
## 25467                           Cyprus 1861           0
## 25468                   Czech Republic 1861           0
## 25469                   Czechoslovakia 1861     1146832
## 25470     Democratic Republic of Congo 1861           0
## 25471                          Denmark 1861     7496544
## 25472                         Djibouti 1861           0
## 25473                         Dominica 1861           0
## 25474               Dominican Republic 1861           0
## 25475                            EU-28 1861  7090814624
## 25476                          Ecuador 1861           0
## 25477                            Egypt 1861           0
## 25478                      El Salvador 1861           0
## 25479                Equatorial Guinea 1861           0
## 25480                          Eritrea 1861           0
## 25481                          Estonia 1861           0
## 25482                         Ethiopia 1861           0
## 25483                   Europe (other) 1861     9372512
## 25484                   Faeroe Islands 1861           0
## 25485                 Falkland Islands 1861           0
## 25486                             Fiji 1861           0
## 25487                          Finland 1861      109920
## 25488                           France 1861   688527888
## 25489                    French Guiana 1861           0
## 25490                 French Polynesia 1861           0
## 25491                            Gabon 1861           0
## 25492                           Gambia 1861           0
## 25493                          Georgia 1861           0
## 25494                          Germany 1861   575442192
## 25495                            Ghana 1861           0
## 25496                        Gibraltar 1861           0
## 25497                           Greece 1861           0
## 25498                        Greenland 1861           0
## 25499                          Grenada 1861           0
## 25500                       Guadeloupe 1861           0
## 25501                        Guatemala 1861           0
## 25502                           Guinea 1861           0
## 25503                    Guinea-Bissau 1861           0
## 25504                           Guyana 1861           0
## 25505                            Haiti 1861           0
## 25506                         Honduras 1861           0
## 25507                        Hong Kong 1861           0
## 25508                          Hungary 1861     7657760
## 25509                          Iceland 1861           0
## 25510                            India 1861     2399920
## 25511                        Indonesia 1861           0
## 25512                             Iran 1861           0
## 25513                             Iraq 1861           0
## 25514                          Ireland 1861      395712
## 25515                           Israel 1861           0
## 25516                            Italy 1861      699824
## 25517                          Jamaica 1861           0
## 25518                            Japan 1861           0
## 25519                           Jordan 1861           0
## 25520                       Kazakhstan 1861           0
## 25521                            Kenya 1861           0
## 25522                         Kiribati 1861           0
## 25523                           Kuwait 1861           0
## 25524                       Kyrgysztan 1861           0
## 25525                       Kyrgyzstan 1861           0
## 25526                             Laos 1861           0
## 25527                           Latvia 1861           0
## 25528                          Lebanon 1861           0
## 25529                          Lesotho 1861           0
## 25530                          Liberia 1861           0
## 25531                            Libya 1861           0
## 25532                    Liechtenstein 1861           0
## 25533                        Lithuania 1861           0
## 25534                       Luxembourg 1861           0
## 25535                            Macao 1861           0
## 25536                        Macedonia 1861           0
## 25537                       Madagascar 1861           0
## 25538                           Malawi 1861           0
## 25539                         Malaysia 1861           0
## 25540                         Maldives 1861           0
## 25541                             Mali 1861           0
## 25542                            Malta 1861           0
## 25543                 Marshall Islands 1861           0
## 25544                       Martinique 1861           0
## 25545                       Mauritania 1861           0
## 25546                        Mauritius 1861           0
## 25547                           Mexico 1861           0
## 25548             Micronesia (country) 1861           0
## 25549                      Middle East 1861           0
## 25550                          Moldova 1861           0
## 25551                         Mongolia 1861           0
## 25552                       Montenegro 1861           0
## 25553                       Montserrat 1861           0
## 25554                          Morocco 1861           0
## 25555                       Mozambique 1861           0
## 25556                          Myanmar 1861           0
## 25557                          Namibia 1861           0
## 25558                            Nauru 1861           0
## 25559                            Nepal 1861           0
## 25560                      Netherlands 1861    63874512
## 25561                    New Caledonia 1861           0
## 25562                      New Zealand 1861           0
## 25563                        Nicaragua 1861           0
## 25564                            Niger 1861           0
## 25565                          Nigeria 1861           0
## 25566                             Niue 1861           0
## 25567                      North Korea 1861           0
## 25568                           Norway 1861     4074368
## 25569                             Oman 1861           0
## 25570                         Pakistan 1861           0
## 25571                            Palau 1861           0
## 25572                        Palestine 1861           0
## 25573                           Panama 1861           0
## 25574                 Papua New Guinea 1861           0
## 25575                         Paraguay 1861           0
## 25576                             Peru 1861           0
## 25577                      Philippines 1861           0
## 25578                           Poland 1861   128668688
## 25579                         Portugal 1861           0
## 25580                            Qatar 1861           0
## 25581                          Reunion 1861           0
## 25582                          Romania 1861       18320
## 25583                           Russia 1861           0
## 25584                           Rwanda 1861           0
## 25585                     Saint Helena 1861           0
## 25586            Saint Kitts and Nevis 1861           0
## 25587                      Saint Lucia 1861           0
## 25588        Saint Pierre and Miquelon 1861           0
## 25589 Saint Vincent and the Grenadines 1861           0
## 25590                            Samoa 1861           0
## 25591            Sao Tome and Principe 1861           0
## 25592                     Saudi Arabia 1861           0
## 25593                          Senegal 1861           0
## 25594                           Serbia 1861           0
## 25595                       Seychelles 1861           0
## 25596                     Sierra Leone 1861           0
## 25597                        Singapore 1861           0
## 25598        Sint Maarten (Dutch part) 1861           0
## 25599                         Slovakia 1861           0
## 25600                         Slovenia 1861           0
## 25601                  Solomon Islands 1861           0
## 25602                          Somalia 1861           0
## 25603                     South Africa 1861           0
## 25604                      South Korea 1861           0
## 25605                      South Sudan 1861           0
## 25606                            Spain 1861    13860912
## 25607                        Sri Lanka 1861           0
## 25608                            Sudan 1861           0
## 25609                         Suriname 1861           0
## 25610                        Swaziland 1861           0
## 25611                           Sweden 1861     6565888
## 25612                      Switzerland 1861     1080880
## 25613                            Syria 1861           0
## 25614                           Taiwan 1861           0
## 25615                       Tajikistan 1861           0
## 25616                         Tanzania 1861           0
## 25617                         Thailand 1861           0
## 25618                            Timor 1861           0
## 25619                             Togo 1861           0
## 25620                            Tonga 1861           0
## 25621              Trinidad and Tobago 1861           0
## 25622                          Tunisia 1861           0
## 25623                           Turkey 1861           0
## 25624                     Turkmenistan 1861           0
## 25625         Turks and Caicos Islands 1861           0
## 25626                           Tuvalu 1861           0
## 25627                           Uganda 1861           0
## 25628                          Ukraine 1861           0
## 25629             United Arab Emirates 1861           0
## 25630                   United Kingdom 1861  5218576576
## 25631                    United States 1861   604058032
## 25632                          Uruguay 1861           0
## 25633                       Uzbekistan 1861           0
## 25634                          Vanuatu 1861           0
## 25635                        Venezuela 1861           0
## 25636                          Vietnam 1861           0
## 25637        Wallis and Futuna Islands 1861           0
## 25638                            World 1861  7708700592
## 25639                            Yemen 1861           0
## 25640                           Zambia 1861           0
## 25641                         Zimbabwe 1861           0
## 25642                      Afghanistan 1862           0
## 25643                           Africa 1862           0
## 25644                          Albania 1862           0
## 25645                          Algeria 1862           0
## 25646                 Americas (other) 1862     3337904
## 25647                          Andorra 1862           0
## 25648                           Angola 1862           0
## 25649                         Anguilla 1862           0
## 25650              Antarctic Fisheries 1862           0
## 25651              Antigua and Barbuda 1862           0
## 25652                        Argentina 1862           0
## 25653                          Armenia 1862           0
## 25654                            Aruba 1862           0
## 25655         Asia and Pacific (other) 1862     4151312
## 25656                        Australia 1862     1143168
## 25657                          Austria 1862    86990688
## 25658                       Azerbaijan 1862           0
## 25659                          Bahamas 1862           0
## 25660                          Bahrain 1862           0
## 25661                       Bangladesh 1862           0
## 25662                         Barbados 1862           0
## 25663                          Belarus 1862           0
## 25664                          Belgium 1862   314627680
## 25665                           Belize 1862           0
## 25666                            Benin 1862           0
## 25667                          Bermuda 1862           0
## 25668                           Bhutan 1862           0
## 25669                          Bolivia 1862           0
## 25670  Bonaire Sint Eustatius and Saba 1862           0
## 25671           Bosnia and Herzegovina 1862           0
## 25672                         Botswana 1862           0
## 25673                           Brazil 1862           0
## 25674           British Virgin Islands 1862           0
## 25675                           Brunei 1862           0
## 25676                         Bulgaria 1862           0
## 25677                     Burkina Faso 1862           0
## 25678                          Burundi 1862           0
## 25679                         Cambodia 1862           0
## 25680                         Cameroon 1862           0
## 25681                           Canada 1862     3334240
## 25682                       Cape Verde 1862           0
## 25683                   Cayman Islands 1862           0
## 25684         Central African Republic 1862           0
## 25685                             Chad 1862           0
## 25686                            Chile 1862           0
## 25687                            China 1862           0
## 25688                 Christmas Island 1862           0
## 25689                         Colombia 1862           0
## 25690                          Comoros 1862           0
## 25691                            Congo 1862           0
## 25692                     Cook Islands 1862           0
## 25693                       Costa Rica 1862           0
## 25694                    Cote d'Ivoire 1862           0
## 25695                          Croatia 1862           0
## 25696                             Cuba 1862           0
## 25697                          Curacao 1862           0
## 25698                           Cyprus 1862           0
## 25699                   Czech Republic 1862           0
## 25700                   Czechoslovakia 1862     2641744
## 25701     Democratic Republic of Congo 1862           0
## 25702                          Denmark 1862     8174384
## 25703                         Djibouti 1862           0
## 25704                         Dominica 1862           0
## 25705               Dominican Republic 1862           0
## 25706                            EU-28 1862  7392845472
## 25707                          Ecuador 1862           0
## 25708                            Egypt 1862           0
## 25709                      El Salvador 1862           0
## 25710                Equatorial Guinea 1862           0
## 25711                          Eritrea 1862           0
## 25712                          Estonia 1862           0
## 25713                         Ethiopia 1862           0
## 25714                   Europe (other) 1862    12486912
## 25715                   Faeroe Islands 1862           0
## 25716                 Falkland Islands 1862           0
## 25717                             Fiji 1862           0
## 25718                          Finland 1862      183200
## 25719                           France 1862   732052544
## 25720                    French Guiana 1862           0
## 25721                 French Polynesia 1862           0
## 25722                            Gabon 1862           0
## 25723                           Gambia 1862           0
## 25724                          Georgia 1862           0
## 25725                          Germany 1862   620982048
## 25726                            Ghana 1862           0
## 25727                        Gibraltar 1862           0
## 25728                           Greece 1862           0
## 25729                        Greenland 1862           0
## 25730                          Grenada 1862           0
## 25731                       Guadeloupe 1862           0
## 25732                        Guatemala 1862           0
## 25733                           Guinea 1862           0
## 25734                    Guinea-Bissau 1862           0
## 25735                           Guyana 1862           0
## 25736                            Haiti 1862           0
## 25737                         Honduras 1862           0
## 25738                        Hong Kong 1862           0
## 25739                          Hungary 1862     8815584
## 25740                          Iceland 1862           0
## 25741                            India 1862     3008144
## 25742                        Indonesia 1862           0
## 25743                             Iran 1862           0
## 25744                             Iraq 1862           0
## 25745                          Ireland 1862      395712
## 25746                           Israel 1862           0
## 25747                            Italy 1862     1927264
## 25748                          Jamaica 1862           0
## 25749                            Japan 1862           0
## 25750                           Jordan 1862           0
## 25751                       Kazakhstan 1862           0
## 25752                            Kenya 1862           0
## 25753                         Kiribati 1862           0
## 25754                           Kuwait 1862           0
## 25755                       Kyrgysztan 1862           0
## 25756                       Kyrgyzstan 1862           0
## 25757                             Laos 1862           0
## 25758                           Latvia 1862           0
## 25759                          Lebanon 1862           0
## 25760                          Lesotho 1862           0
## 25761                          Liberia 1862           0
## 25762                            Libya 1862           0
## 25763                    Liechtenstein 1862           0
## 25764                        Lithuania 1862           0
## 25765                       Luxembourg 1862           0
## 25766                            Macao 1862           0
## 25767                        Macedonia 1862           0
## 25768                       Madagascar 1862           0
## 25769                           Malawi 1862           0
## 25770                         Malaysia 1862           0
## 25771                         Maldives 1862           0
## 25772                             Mali 1862           0
## 25773                            Malta 1862           0
## 25774                 Marshall Islands 1862           0
## 25775                       Martinique 1862           0
## 25776                       Mauritania 1862           0
## 25777                        Mauritius 1862           0
## 25778                           Mexico 1862           0
## 25779             Micronesia (country) 1862           0
## 25780                      Middle East 1862           0
## 25781                          Moldova 1862           0
## 25782                         Mongolia 1862           0
## 25783                       Montenegro 1862           0
## 25784                       Montserrat 1862           0
## 25785                          Morocco 1862           0
## 25786                       Mozambique 1862           0
## 25787                          Myanmar 1862           0
## 25788                          Namibia 1862           0
## 25789                            Nauru 1862           0
## 25790                            Nepal 1862           0
## 25791                      Netherlands 1862    69546384
## 25792                    New Caledonia 1862           0
## 25793                      New Zealand 1862           0
## 25794                        Nicaragua 1862           0
## 25795                            Niger 1862           0
## 25796                          Nigeria 1862           0
## 25797                             Niue 1862           0
## 25798                      North Korea 1862           0
## 25799                           Norway 1862     4444432
## 25800                             Oman 1862           0
## 25801                         Pakistan 1862           0
## 25802                            Palau 1862           0
## 25803                        Palestine 1862           0
## 25804                           Panama 1862           0
## 25805                 Papua New Guinea 1862           0
## 25806                         Paraguay 1862           0
## 25807                             Peru 1862           0
## 25808                      Philippines 1862           0
## 25809                           Poland 1862   137473280
## 25810                         Portugal 1862           0
## 25811                            Qatar 1862           0
## 25812                          Reunion 1862           0
## 25813                          Romania 1862       29312
## 25814                           Russia 1862           0
## 25815                           Rwanda 1862           0
## 25816                     Saint Helena 1862           0
## 25817            Saint Kitts and Nevis 1862           0
## 25818                      Saint Lucia 1862           0
## 25819        Saint Pierre and Miquelon 1862           0
## 25820 Saint Vincent and the Grenadines 1862           0
## 25821                            Samoa 1862           0
## 25822            Sao Tome and Principe 1862           0
## 25823                     Saudi Arabia 1862           0
## 25824                          Senegal 1862           0
## 25825                           Serbia 1862           0
## 25826                       Seychelles 1862           0
## 25827                     Sierra Leone 1862           0
## 25828                        Singapore 1862           0
## 25829        Sint Maarten (Dutch part) 1862           0
## 25830                         Slovakia 1862           0
## 25831                         Slovenia 1862           0
## 25832                  Solomon Islands 1862           0
## 25833                          Somalia 1862           0
## 25834                     South Africa 1862           0
## 25835                      South Korea 1862           0
## 25836                      South Sudan 1862           0
## 25837                            Spain 1862    16048320
## 25838                        Sri Lanka 1862           0
## 25839                            Sudan 1862           0
## 25840                         Suriname 1862           0
## 25841                        Swaziland 1862           0
## 25842                           Sweden 1862     7551504
## 25843                      Switzerland 1862     1549872
## 25844                            Syria 1862           0
## 25845                           Taiwan 1862           0
## 25846                       Tajikistan 1862           0
## 25847                         Tanzania 1862           0
## 25848                         Thailand 1862           0
## 25849                            Timor 1862           0
## 25850                             Togo 1862           0
## 25851                            Tonga 1862           0
## 25852              Trinidad and Tobago 1862           0
## 25853                          Tunisia 1862           0
## 25854                           Turkey 1862           0
## 25855                     Turkmenistan 1862           0
## 25856         Turks and Caicos Islands 1862           0
## 25857                           Tuvalu 1862           0
## 25858                           Uganda 1862           0
## 25859                          Ukraine 1862           0
## 25860             United Arab Emirates 1862           0
## 25861                   United Kingdom 1862  5388047568
## 25862                    United States 1862   651506832
## 25863                          Uruguay 1862           0
## 25864                       Uzbekistan 1862           0
## 25865                          Vanuatu 1862           0
## 25866                        Venezuela 1862           0
## 25867                          Vietnam 1862           0
## 25868        Wallis and Futuna Islands 1862           0
## 25869                            World 1862  8062815200
## 25870                            Yemen 1862           0
## 25871                           Zambia 1862           0
## 25872                         Zimbabwe 1862           0
## 25873                      Afghanistan 1863           0
## 25874                           Africa 1863           0
## 25875                          Albania 1863           0
## 25876                          Algeria 1863           0
## 25877                 Americas (other) 1863     4041392
## 25878                          Andorra 1863           0
## 25879                           Angola 1863           0
## 25880                         Anguilla 1863           0
## 25881              Antarctic Fisheries 1863           0
## 25882              Antigua and Barbuda 1863           0
## 25883                        Argentina 1863           0
## 25884                          Armenia 1863           0
## 25885                            Aruba 1863           0
## 25886         Asia and Pacific (other) 1863     5224864
## 25887                        Australia 1863     1542544
## 25888                          Austria 1863    92867744
## 25889                       Azerbaijan 1863           0
## 25890                          Bahamas 1863           0
## 25891                          Bahrain 1863           0
## 25892                       Bangladesh 1863           0
## 25893                         Barbados 1863           0
## 25894                          Belarus 1863           0
## 25895                          Belgium 1863   331855808
## 25896                           Belize 1863           0
## 25897                            Benin 1863           0
## 25898                          Bermuda 1863           0
## 25899                           Bhutan 1863           0
## 25900                          Bolivia 1863           0
## 25901  Bonaire Sint Eustatius and Saba 1863           0
## 25902           Bosnia and Herzegovina 1863           0
## 25903                         Botswana 1863           0
## 25904                           Brazil 1863           0
## 25905           British Virgin Islands 1863           0
## 25906                           Brunei 1863           0
## 25907                         Bulgaria 1863           0
## 25908                     Burkina Faso 1863           0
## 25909                          Burundi 1863           0
## 25910                         Cambodia 1863           0
## 25911                         Cameroon 1863           0
## 25912                           Canada 1863     4037728
## 25913                       Cape Verde 1863           0
## 25914                   Cayman Islands 1863           0
## 25915         Central African Republic 1863           0
## 25916                             Chad 1863           0
## 25917                            Chile 1863           0
## 25918                            China 1863           0
## 25919                 Christmas Island 1863           0
## 25920                         Colombia 1863           0
## 25921                          Comoros 1863           0
## 25922                            Congo 1863           0
## 25923                     Cook Islands 1863           0
## 25924                       Costa Rica 1863           0
## 25925                    Cote d'Ivoire 1863           0
## 25926                          Croatia 1863           0
## 25927                             Cuba 1863           0
## 25928                          Curacao 1863           0
## 25929                           Cyprus 1863           0
## 25930                   Czech Republic 1863           0
## 25931                   Czechoslovakia 1863     4752208
## 25932     Democratic Republic of Congo 1863           0
## 25933                          Denmark 1863     8929168
## 25934                         Djibouti 1863           0
## 25935                         Dominica 1863           0
## 25936               Dominican Republic 1863           0
## 25937                            EU-28 1863  7710426336
## 25938                          Ecuador 1863           0
## 25939                            Egypt 1863           0
## 25940                      El Salvador 1863           0
## 25941                Equatorial Guinea 1863           0
## 25942                          Eritrea 1863           0
## 25943                          Estonia 1863           0
## 25944                         Ethiopia 1863           0
## 25945                   Europe (other) 1863    16246176
## 25946                   Faeroe Islands 1863           0
## 25947                 Falkland Islands 1863           0
## 25948                             Fiji 1863           0
## 25949                          Finland 1863      260144
## 25950                           France 1863   776240384
## 25951                    French Guiana 1863           0
## 25952                 French Polynesia 1863           0
## 25953                            Gabon 1863           0
## 25954                           Gambia 1863           0
## 25955                          Georgia 1863           0
## 25956                          Germany 1863   670365440
## 25957                            Ghana 1863           0
## 25958                        Gibraltar 1863           0
## 25959                           Greece 1863           0
## 25960                        Greenland 1863           0
## 25961                          Grenada 1863           0
## 25962                       Guadeloupe 1863           0
## 25963                        Guatemala 1863           0
## 25964                           Guinea 1863           0
## 25965                    Guinea-Bissau 1863           0
## 25966                           Guyana 1863           0
## 25967                            Haiti 1863           0
## 25968                         Honduras 1863           0
## 25969                        Hong Kong 1863           0
## 25970                          Hungary 1863    10024704
## 25971                          Iceland 1863           0
## 25972                            India 1863     3682320
## 25973                        Indonesia 1863           0
## 25974                             Iran 1863           0
## 25975                             Iraq 1863           0
## 25976                          Ireland 1863      395712
## 25977                           Israel 1863           0
## 25978                            Italy 1863     2997152
## 25979                          Jamaica 1863           0
## 25980                            Japan 1863           0
## 25981                           Jordan 1863           0
## 25982                       Kazakhstan 1863           0
## 25983                            Kenya 1863           0
## 25984                         Kiribati 1863           0
## 25985                           Kuwait 1863           0
## 25986                       Kyrgysztan 1863           0
## 25987                       Kyrgyzstan 1863           0
## 25988                             Laos 1863           0
## 25989                           Latvia 1863           0
## 25990                          Lebanon 1863           0
## 25991                          Lesotho 1863           0
## 25992                          Liberia 1863           0
## 25993                            Libya 1863           0
## 25994                    Liechtenstein 1863           0
## 25995                        Lithuania 1863           0
## 25996                       Luxembourg 1863           0
## 25997                            Macao 1863           0
## 25998                        Macedonia 1863           0
## 25999                       Madagascar 1863           0
## 26000                           Malawi 1863           0
## 26001                         Malaysia 1863           0
## 26002                         Maldives 1863           0
## 26003                             Mali 1863           0
## 26004                            Malta 1863           0
## 26005                 Marshall Islands 1863           0
## 26006                       Martinique 1863           0
## 26007                       Mauritania 1863           0
## 26008                        Mauritius 1863           0
## 26009                           Mexico 1863           0
## 26010             Micronesia (country) 1863           0
## 26011                      Middle East 1863           0
## 26012                          Moldova 1863           0
## 26013                         Mongolia 1863           0
## 26014                       Montenegro 1863           0
## 26015                       Montserrat 1863           0
## 26016                          Morocco 1863           0
## 26017                       Mozambique 1863           0
## 26018                          Myanmar 1863           0
## 26019                          Namibia 1863           0
## 26020                            Nauru 1863           0
## 26021                            Nepal 1863           0
## 26022                      Netherlands 1863    73631744
## 26023                    New Caledonia 1863           0
## 26024                      New Zealand 1863           0
## 26025                        Nicaragua 1863           0
## 26026                            Niger 1863           0
## 26027                          Nigeria 1863           0
## 26028                             Niue 1863           0
## 26029                      North Korea 1863           0
## 26030                           Norway 1863     4807168
## 26031                             Oman 1863           0
## 26032                         Pakistan 1863           0
## 26033                            Palau 1863           0
## 26034                        Palestine 1863           0
## 26035                           Panama 1863           0
## 26036                 Papua New Guinea 1863           0
## 26037                         Paraguay 1863           0
## 26038                             Peru 1863           0
## 26039                      Philippines 1863           0
## 26040                           Poland 1863   147527296
## 26041                         Portugal 1863           0
## 26042                            Qatar 1863           0
## 26043                          Reunion 1863           0
## 26044                          Romania 1863       40304
## 26045                           Russia 1863           0
## 26046                           Rwanda 1863           0
## 26047                     Saint Helena 1863           0
## 26048            Saint Kitts and Nevis 1863           0
## 26049                      Saint Lucia 1863           0
## 26050        Saint Pierre and Miquelon 1863           0
## 26051 Saint Vincent and the Grenadines 1863           0
## 26052                            Samoa 1863           0
## 26053            Sao Tome and Principe 1863           0
## 26054                     Saudi Arabia 1863           0
## 26055                          Senegal 1863           0
## 26056                           Serbia 1863           0
## 26057                       Seychelles 1863           0
## 26058                     Sierra Leone 1863           0
## 26059                        Singapore 1863           0
## 26060        Sint Maarten (Dutch part) 1863           0
## 26061                         Slovakia 1863           0
## 26062                         Slovenia 1863           0
## 26063                  Solomon Islands 1863           0
## 26064                          Somalia 1863           0
## 26065                     South Africa 1863           0
## 26066                      South Korea 1863           0
## 26067                      South Sudan 1863           0
## 26068                            Spain 1863    18481216
## 26069                        Sri Lanka 1863           0
## 26070                            Sudan 1863           0
## 26071                         Suriname 1863           0
## 26072                        Swaziland 1863           0
## 26073                           Sweden 1863     8537120
## 26074                      Switzerland 1863     2018864
## 26075                            Syria 1863           0
## 26076                           Taiwan 1863           0
## 26077                       Tajikistan 1863           0
## 26078                         Tanzania 1863           0
## 26079                         Thailand 1863           0
## 26080                            Timor 1863           0
## 26081                             Togo 1863           0
## 26082                            Tonga 1863           0
## 26083              Trinidad and Tobago 1863           0
## 26084                          Tunisia 1863           0
## 26085                           Turkey 1863           0
## 26086                     Turkmenistan 1863           0
## 26087         Turks and Caicos Islands 1863           0
## 26088                           Tuvalu 1863           0
## 26089                           Uganda 1863           0
## 26090                          Ukraine 1863           0
## 26091             United Arab Emirates 1863           0
## 26092                   United Kingdom 1863  5568272400
## 26093                    United States 1863   706316608
## 26094                          Uruguay 1863           0
## 26095                       Uzbekistan 1863           0
## 26096                          Vanuatu 1863           0
## 26097                        Venezuela 1863           0
## 26098                          Vietnam 1863           0
## 26099        Wallis and Futuna Islands 1863           0
## 26100                            World 1863  8440738480
## 26101                            Yemen 1863           0
## 26102                           Zambia 1863           0
## 26103                         Zimbabwe 1863           0
## 26104                      Afghanistan 1864           0
## 26105                           Africa 1864           0
## 26106                          Albania 1864           0
## 26107                          Algeria 1864           0
## 26108                 Americas (other) 1864     4884112
## 26109                          Andorra 1864           0
## 26110                           Angola 1864           0
## 26111                         Anguilla 1864           0
## 26112              Antarctic Fisheries 1864           0
## 26113              Antigua and Barbuda 1864           0
## 26114                        Argentina 1864           0
## 26115                          Armenia 1864           0
## 26116                            Aruba 1864           0
## 26117         Asia and Pacific (other) 1864     6129872
## 26118                        Australia 1864     1810016
## 26119                          Austria 1864    97942384
## 26120                       Azerbaijan 1864           0
## 26121                          Bahamas 1864           0
## 26122                          Bahrain 1864           0
## 26123                       Bangladesh 1864           0
## 26124                         Barbados 1864           0
## 26125                          Belarus 1864           0
## 26126                          Belgium 1864   349937648
## 26127                           Belize 1864           0
## 26128                            Benin 1864           0
## 26129                          Bermuda 1864           0
## 26130                           Bhutan 1864           0
## 26131                          Bolivia 1864           0
## 26132  Bonaire Sint Eustatius and Saba 1864           0
## 26133           Bosnia and Herzegovina 1864           0
## 26134                         Botswana 1864           0
## 26135                           Brazil 1864           0
## 26136           British Virgin Islands 1864           0
## 26137                           Brunei 1864           0
## 26138                         Bulgaria 1864           0
## 26139                     Burkina Faso 1864           0
## 26140                          Burundi 1864           0
## 26141                         Cambodia 1864           0
## 26142                         Cameroon 1864           0
## 26143                           Canada 1864     4880448
## 26144                       Cape Verde 1864           0
## 26145                   Cayman Islands 1864           0
## 26146         Central African Republic 1864           0
## 26147                             Chad 1864           0
## 26148                            Chile 1864           0
## 26149                            China 1864           0
## 26150                 Christmas Island 1864           0
## 26151                         Colombia 1864           0
## 26152                          Comoros 1864           0
## 26153                            Congo 1864           0
## 26154                     Cook Islands 1864           0
## 26155                       Costa Rica 1864           0
## 26156                    Cote d'Ivoire 1864           0
## 26157                          Croatia 1864           0
## 26158                             Cuba 1864           0
## 26159                          Curacao 1864           0
## 26160                           Cyprus 1864           0
## 26161                   Czech Republic 1864           0
## 26162                   Czechoslovakia 1864     7478224
## 26163     Democratic Republic of Congo 1864           0
## 26164                          Denmark 1864     9577696
## 26165                         Djibouti 1864           0
## 26166                         Dominica 1864           0
## 26167               Dominican Republic 1864           0
## 26168                            EU-28 1864  8052482720
## 26169                          Ecuador 1864           0
## 26170                            Egypt 1864           0
## 26171                      El Salvador 1864           0
## 26172                Equatorial Guinea 1864           0
## 26173                          Eritrea 1864           0
## 26174                          Estonia 1864           0
## 26175                         Ethiopia 1864           0
## 26176                   Europe (other) 1864    20932432
## 26177                   Faeroe Islands 1864           0
## 26178                 Falkland Islands 1864           0
## 26179                             Fiji 1864           0
## 26180                          Finland 1864      307776
## 26181                           France 1864   823069968
## 26182                    French Guiana 1864           0
## 26183                 French Polynesia 1864           0
## 26184                            Gabon 1864           0
## 26185                           Gambia 1864           0
## 26186                          Georgia 1864           0
## 26187                          Germany 1864   727007216
## 26188                            Ghana 1864           0
## 26189                        Gibraltar 1864           0
## 26190                           Greece 1864           0
## 26191                        Greenland 1864           0
## 26192                          Grenada 1864           0
## 26193                       Guadeloupe 1864           0
## 26194                        Guatemala 1864           0
## 26195                           Guinea 1864           0
## 26196                    Guinea-Bissau 1864           0
## 26197                           Guyana 1864           0
## 26198                            Haiti 1864           0
## 26199                         Honduras 1864           0
## 26200                        Hong Kong 1864           0
## 26201                          Hungary 1864    11233824
## 26202                          Iceland 1864           0
## 26203                            India 1864     4319856
## 26204                        Indonesia 1864           0
## 26205                             Iran 1864           0
## 26206                             Iraq 1864           0
## 26207                          Ireland 1864      395712
## 26208                           Israel 1864           0
## 26209                            Italy 1864     4601984
## 26210                          Jamaica 1864           0
## 26211                            Japan 1864           0
## 26212                           Jordan 1864           0
## 26213                       Kazakhstan 1864           0
## 26214                            Kenya 1864           0
## 26215                         Kiribati 1864           0
## 26216                           Kuwait 1864           0
## 26217                       Kyrgysztan 1864           0
## 26218                       Kyrgyzstan 1864           0
## 26219                             Laos 1864           0
## 26220                           Latvia 1864           0
## 26221                          Lebanon 1864           0
## 26222                          Lesotho 1864           0
## 26223                          Liberia 1864           0
## 26224                            Libya 1864           0
## 26225                    Liechtenstein 1864           0
## 26226                        Lithuania 1864           0
## 26227                       Luxembourg 1864           0
## 26228                            Macao 1864           0
## 26229                        Macedonia 1864           0
## 26230                       Madagascar 1864           0
## 26231                           Malawi 1864           0
## 26232                         Malaysia 1864           0
## 26233                         Maldives 1864           0
## 26234                             Mali 1864           0
## 26235                            Malta 1864           0
## 26236                 Marshall Islands 1864           0
## 26237                       Martinique 1864           0
## 26238                       Mauritania 1864           0
## 26239                        Mauritius 1864           0
## 26240                           Mexico 1864           0
## 26241             Micronesia (country) 1864           0
## 26242                      Middle East 1864           0
## 26243                          Moldova 1864           0
## 26244                         Mongolia 1864           0
## 26245                       Montenegro 1864           0
## 26246                       Montserrat 1864           0
## 26247                          Morocco 1864           0
## 26248                       Mozambique 1864           0
## 26249                          Myanmar 1864           0
## 26250                          Namibia 1864           0
## 26251                            Nauru 1864           0
## 26252                            Nepal 1864           0
## 26253                      Netherlands 1864    77035600
## 26254                    New Caledonia 1864           0
## 26255                      New Zealand 1864           0
## 26256                        Nicaragua 1864           0
## 26257                            Niger 1864           0
## 26258                          Nigeria 1864           0
## 26259                             Niue 1864           0
## 26260                      North Korea 1864           0
## 26261                           Norway 1864     5287152
## 26262                             Oman 1864           0
## 26263                         Pakistan 1864           0
## 26264                            Palau 1864           0
## 26265                        Palestine 1864           0
## 26266                           Panama 1864           0
## 26267                 Papua New Guinea 1864           0
## 26268                         Paraguay 1864           0
## 26269                             Peru 1864           0
## 26270                      Philippines 1864           0
## 26271                           Poland 1864   158746464
## 26272                         Portugal 1864           0
## 26273                            Qatar 1864           0
## 26274                          Reunion 1864           0
## 26275                          Romania 1864       54960
## 26276                           Russia 1864           0
## 26277                           Rwanda 1864           0
## 26278                     Saint Helena 1864           0
## 26279            Saint Kitts and Nevis 1864           0
## 26280                      Saint Lucia 1864           0
## 26281        Saint Pierre and Miquelon 1864           0
## 26282 Saint Vincent and the Grenadines 1864           0
## 26283                            Samoa 1864           0
## 26284            Sao Tome and Principe 1864           0
## 26285                     Saudi Arabia 1864           0
## 26286                          Senegal 1864           0
## 26287                           Serbia 1864           0
## 26288                       Seychelles 1864           0
## 26289                     Sierra Leone 1864           0
## 26290                        Singapore 1864           0
## 26291        Sint Maarten (Dutch part) 1864           0
## 26292                         Slovakia 1864           0
## 26293                         Slovenia 1864           0
## 26294                  Solomon Islands 1864           0
## 26295                          Somalia 1864           0
## 26296                     South Africa 1864           0
## 26297                      South Korea 1864           0
## 26298                      South Sudan 1864           0
## 26299                            Spain 1864    20815184
## 26300                        Sri Lanka 1864           0
## 26301                            Sudan 1864           0
## 26302                         Suriname 1864           0
## 26303                        Swaziland 1864           0
## 26304                           Sweden 1864     9574032
## 26305                      Switzerland 1864     2590448
## 26306                            Syria 1864           0
## 26307                           Taiwan 1864           0
## 26308                       Tajikistan 1864           0
## 26309                         Tanzania 1864           0
## 26310                         Thailand 1864           0
## 26311                            Timor 1864           0
## 26312                             Togo 1864           0
## 26313                            Tonga 1864           0
## 26314              Trinidad and Tobago 1864           0
## 26315                          Tunisia 1864           0
## 26316                           Turkey 1864           0
## 26317                     Turkmenistan 1864           0
## 26318         Turks and Caicos Islands 1864           0
## 26319                           Tuvalu 1864           0
## 26320                           Uganda 1864           0
## 26321                          Ukraine 1864           0
## 26322             United Arab Emirates 1864           0
## 26323                   United Kingdom 1864  5762182272
## 26324                    United States 1864   764973584
## 26325                          Uruguay 1864           0
## 26326                       Uzbekistan 1864           0
## 26327                          Vanuatu 1864           0
## 26328                        Venezuela 1864           0
## 26329                          Vietnam 1864           0
## 26330        Wallis and Futuna Islands 1864           0
## 26331                            World 1864  8847889488
## 26332                            Yemen 1864           0
## 26333                           Zambia 1864           0
## 26334                         Zimbabwe 1864           0
## 26335                      Afghanistan 1865           0
## 26336                           Africa 1865           0
## 26337                          Albania 1865           0
## 26338                          Algeria 1865           0
## 26339                 Americas (other) 1865     5902704
## 26340                          Andorra 1865           0
## 26341                           Angola 1865           0
## 26342                         Anguilla 1865           0
## 26343              Antarctic Fisheries 1865           0
## 26344              Antigua and Barbuda 1865           0
## 26345                        Argentina 1865           0
## 26346                          Armenia 1865           0
## 26347                            Aruba 1865           0
## 26348         Asia and Pacific (other) 1865     7177776
## 26349                        Australia 1865     2231376
## 26350                          Austria 1865   103295488
## 26351                       Azerbaijan 1865           0
## 26352                          Bahamas 1865           0
## 26353                          Bahrain 1865           0
## 26354                       Bangladesh 1865           0
## 26355                         Barbados 1865           0
## 26356                          Belarus 1865           0
## 26357                          Belgium 1865   368997776
## 26358                           Belize 1865           0
## 26359                            Benin 1865           0
## 26360                          Bermuda 1865           0
## 26361                           Bhutan 1865           0
## 26362                          Bolivia 1865           0
## 26363  Bonaire Sint Eustatius and Saba 1865           0
## 26364           Bosnia and Herzegovina 1865           0
## 26365                         Botswana 1865           0
## 26366                           Brazil 1865           0
## 26367           British Virgin Islands 1865           0
## 26368                           Brunei 1865           0
## 26369                         Bulgaria 1865           0
## 26370                     Burkina Faso 1865           0
## 26371                          Burundi 1865           0
## 26372                         Cambodia 1865           0
## 26373                         Cameroon 1865           0
## 26374                           Canada 1865     5899040
## 26375                       Cape Verde 1865           0
## 26376                   Cayman Islands 1865           0
## 26377         Central African Republic 1865           0
## 26378                             Chad 1865           0
## 26379                            Chile 1865           0
## 26380                            China 1865           0
## 26381                 Christmas Island 1865           0
## 26382                         Colombia 1865           0
## 26383                          Comoros 1865           0
## 26384                            Congo 1865           0
## 26385                     Cook Islands 1865           0
## 26386                       Costa Rica 1865           0
## 26387                    Cote d'Ivoire 1865           0
## 26388                          Croatia 1865           0
## 26389                             Cuba 1865           0
## 26390                          Curacao 1865           0
## 26391                           Cyprus 1865           0
## 26392                   Czech Republic 1865           0
## 26393                   Czechoslovakia 1865    10819792
## 26394     Democratic Republic of Congo 1865           0
## 26395                          Denmark 1865    10592624
## 26396                         Djibouti 1865           0
## 26397                         Dominica 1865           0
## 26398               Dominican Republic 1865           0
## 26399                            EU-28 1865  8418428384
## 26400                          Ecuador 1865           0
## 26401                            Egypt 1865           0
## 26402                      El Salvador 1865           0
## 26403                Equatorial Guinea 1865           0
## 26404                          Eritrea 1865           0
## 26405                          Estonia 1865           0
## 26406                         Ethiopia 1865           0
## 26407                   Europe (other) 1865    26322176
## 26408                   Faeroe Islands 1865           0
## 26409                 Falkland Islands 1865           0
## 26410                             Fiji 1865           0
## 26411                          Finland 1865      370064
## 26412                           France 1865   872372752
## 26413                    French Guiana 1865           0
## 26414                 French Polynesia 1865           0
## 26415                            Gabon 1865           0
## 26416                           Gambia 1865           0
## 26417                          Georgia 1865           0
## 26418                          Germany 1865   790475024
## 26419                            Ghana 1865           0
## 26420                        Gibraltar 1865           0
## 26421                           Greece 1865           0
## 26422                        Greenland 1865           0
## 26423                          Grenada 1865           0
## 26424                       Guadeloupe 1865           0
## 26425                        Guatemala 1865           0
## 26426                           Guinea 1865           0
## 26427                    Guinea-Bissau 1865           0
## 26428                           Guyana 1865           0
## 26429                            Haiti 1865           0
## 26430                         Honduras 1865           0
## 26431                        Hong Kong 1865           0
## 26432                          Hungary 1865    12490576
## 26433                          Iceland 1865           0
## 26434                            India 1865     4946400
## 26435                        Indonesia 1865           0
## 26436                             Iran 1865           0
## 26437                             Iraq 1865           0
## 26438                          Ireland 1865      395712
## 26439                           Israel 1865           0
## 26440                            Italy 1865     5873392
## 26441                          Jamaica 1865           0
## 26442                            Japan 1865           0
## 26443                           Jordan 1865           0
## 26444                       Kazakhstan 1865           0
## 26445                            Kenya 1865           0
## 26446                         Kiribati 1865           0
## 26447                           Kuwait 1865           0
## 26448                       Kyrgysztan 1865           0
## 26449                       Kyrgyzstan 1865           0
## 26450                             Laos 1865           0
## 26451                           Latvia 1865           0
## 26452                          Lebanon 1865           0
## 26453                          Lesotho 1865           0
## 26454                          Liberia 1865           0
## 26455                            Libya 1865           0
## 26456                    Liechtenstein 1865           0
## 26457                        Lithuania 1865           0
## 26458                       Luxembourg 1865           0
## 26459                            Macao 1865           0
## 26460                        Macedonia 1865           0
## 26461                       Madagascar 1865           0
## 26462                           Malawi 1865           0
## 26463                         Malaysia 1865           0
## 26464                         Maldives 1865           0
## 26465                             Mali 1865           0
## 26466                            Malta 1865           0
## 26467                 Marshall Islands 1865           0
## 26468                       Martinique 1865           0
## 26469                       Mauritania 1865           0
## 26470                        Mauritius 1865           0
## 26471                           Mexico 1865           0
## 26472             Micronesia (country) 1865           0
## 26473                      Middle East 1865      150224
## 26474                          Moldova 1865           0
## 26475                         Mongolia 1865           0
## 26476                       Montenegro 1865           0
## 26477                       Montserrat 1865           0
## 26478                          Morocco 1865           0
## 26479                       Mozambique 1865           0
## 26480                          Myanmar 1865           0
## 26481                          Namibia 1865           0
## 26482                            Nauru 1865           0
## 26483                            Nepal 1865           0
## 26484                      Netherlands 1865    80882800
## 26485                    New Caledonia 1865           0
## 26486                      New Zealand 1865           0
## 26487                        Nicaragua 1865           0
## 26488                            Niger 1865           0
## 26489                          Nigeria 1865           0
## 26490                             Niue 1865           0
## 26491                      North Korea 1865           0
## 26492                           Norway 1865     5759808
## 26493                             Oman 1865           0
## 26494                         Pakistan 1865           0
## 26495                            Palau 1865           0
## 26496                        Palestine 1865           0
## 26497                           Panama 1865           0
## 26498                 Papua New Guinea 1865           0
## 26499                         Paraguay 1865           0
## 26500                             Peru 1865           0
## 26501                      Philippines 1865           0
## 26502                           Poland 1865   171167424
## 26503                         Portugal 1865           0
## 26504                            Qatar 1865           0
## 26505                          Reunion 1865           0
## 26506                          Romania 1865       69616
## 26507                           Russia 1865           0
## 26508                           Rwanda 1865           0
## 26509                     Saint Helena 1865           0
## 26510            Saint Kitts and Nevis 1865           0
## 26511                      Saint Lucia 1865           0
## 26512        Saint Pierre and Miquelon 1865           0
## 26513 Saint Vincent and the Grenadines 1865           0
## 26514                            Samoa 1865           0
## 26515            Sao Tome and Principe 1865           0
## 26516                     Saudi Arabia 1865           0
## 26517                          Senegal 1865           0
## 26518                           Serbia 1865           0
## 26519                       Seychelles 1865           0
## 26520                     Sierra Leone 1865           0
## 26521                        Singapore 1865           0
## 26522        Sint Maarten (Dutch part) 1865           0
## 26523                         Slovakia 1865           0
## 26524                         Slovenia 1865           0
## 26525                  Solomon Islands 1865           0
## 26526                          Somalia 1865           0
## 26527                     South Africa 1865           0
## 26528                      South Korea 1865           0
## 26529                      South Sudan 1865           0
## 26530                            Spain 1865    23119840
## 26531                        Sri Lanka 1865           0
## 26532                            Sudan 1865           0
## 26533                         Suriname 1865           0
## 26534                        Swaziland 1865           0
## 26535                           Sweden 1865    10654912
## 26536                      Switzerland 1865     3286608
## 26537                            Syria 1865           0
## 26538                           Taiwan 1865           0
## 26539                       Tajikistan 1865           0
## 26540                         Tanzania 1865           0
## 26541                         Thailand 1865           0
## 26542                            Timor 1865           0
## 26543                             Togo 1865           0
## 26544                            Tonga 1865           0
## 26545              Trinidad and Tobago 1865           0
## 26546                          Tunisia 1865           0
## 26547                           Turkey 1865      150224
## 26548                     Turkmenistan 1865           0
## 26549         Turks and Caicos Islands 1865           0
## 26550                           Tuvalu 1865           0
## 26551                           Uganda 1865           0
## 26552                          Ukraine 1865           0
## 26553             United Arab Emirates 1865           0
## 26554                   United Kingdom 1865  5967670384
## 26555                    United States 1865   823795440
## 26556                          Uruguay 1865           0
## 26557                       Uzbekistan 1865           0
## 26558                          Vanuatu 1865           0
## 26559                        Venezuela 1865           0
## 26560                          Vietnam 1865           0
## 26561        Wallis and Futuna Islands 1865           0
## 26562                            World 1865  9280256144
## 26563                            Yemen 1865           0
## 26564                           Zambia 1865           0
## 26565                         Zimbabwe 1865           0
## 26566                      Afghanistan 1866           0
## 26567                           Africa 1866           0
## 26568                          Albania 1866           0
## 26569                          Algeria 1866           0
## 26570                 Americas (other) 1866     7144800
## 26571                          Andorra 1866           0
## 26572                           Angola 1866           0
## 26573                         Anguilla 1866           0
## 26574              Antarctic Fisheries 1866           0
## 26575              Antigua and Barbuda 1866           0
## 26576                        Argentina 1866           0
## 26577                          Armenia 1866           0
## 26578                            Aruba 1866           0
## 26579         Asia and Pacific (other) 1866     8581088
## 26580                        Australia 1866     2927536
## 26581                          Austria 1866   106889872
## 26582                       Azerbaijan 1866           0
## 26583                          Bahamas 1866           0
## 26584                          Bahrain 1866           0
## 26585                       Bangladesh 1866           0
## 26586                         Barbados 1866           0
## 26587                          Belarus 1866           0
## 26588                          Belgium 1866   389527168
## 26589                           Belize 1866           0
## 26590                            Benin 1866           0
## 26591                          Bermuda 1866           0
## 26592                           Bhutan 1866           0
## 26593                          Bolivia 1866           0
## 26594  Bonaire Sint Eustatius and Saba 1866           0
## 26595           Bosnia and Herzegovina 1866           0
## 26596                         Botswana 1866           0
## 26597                           Brazil 1866           0
## 26598           British Virgin Islands 1866           0
## 26599                           Brunei 1866           0
## 26600                         Bulgaria 1866           0
## 26601                     Burkina Faso 1866           0
## 26602                          Burundi 1866           0
## 26603                         Cambodia 1866           0
## 26604                         Cameroon 1866           0
## 26605                           Canada 1866     7141136
## 26606                       Cape Verde 1866           0
## 26607                   Cayman Islands 1866           0
## 26608         Central African Republic 1866           0
## 26609                             Chad 1866           0
## 26610                            Chile 1866           0
## 26611                            China 1866           0
## 26612                 Christmas Island 1866           0
## 26613                         Colombia 1866           0
## 26614                          Comoros 1866           0
## 26615                            Congo 1866           0
## 26616                     Cook Islands 1866           0
## 26617                       Costa Rica 1866           0
## 26618                    Cote d'Ivoire 1866           0
## 26619                          Croatia 1866           0
## 26620                             Cuba 1866           0
## 26621                          Curacao 1866           0
## 26622                           Cyprus 1866           0
## 26623                   Czech Republic 1866           0
## 26624                   Czechoslovakia 1866    14776912
## 26625     Democratic Republic of Congo 1866           0
## 26626                          Denmark 1866    11530608
## 26627                         Djibouti 1866           0
## 26628                         Dominica 1866           0
## 26629               Dominican Republic 1866           0
## 26630                            EU-28 1866  8794457376
## 26631                          Ecuador 1866           0
## 26632                            Egypt 1866           0
## 26633                      El Salvador 1866           0
## 26634                Equatorial Guinea 1866           0
## 26635                          Eritrea 1866           0
## 26636                          Estonia 1866           0
## 26637                         Ethiopia 1866           0
## 26638                   Europe (other) 1866    34240080
## 26639                   Faeroe Islands 1866           0
## 26640                 Falkland Islands 1866           0
## 26641                             Fiji 1866           0
## 26642                          Finland 1866      439680
## 26643                           France 1866   925933104
## 26644                    French Guiana 1866           0
## 26645                 French Polynesia 1866           0
## 26646                            Gabon 1866           0
## 26647                           Gambia 1866           0
## 26648                          Georgia 1866           0
## 26649                          Germany 1866   853382240
## 26650                            Ghana 1866           0
## 26651                        Gibraltar 1866           0
## 26652                           Greece 1866           0
## 26653                        Greenland 1866           0
## 26654                          Grenada 1866           0
## 26655                       Guadeloupe 1866           0
## 26656                        Guatemala 1866           0
## 26657                           Guinea 1866           0
## 26658                    Guinea-Bissau 1866           0
## 26659                           Guyana 1866           0
## 26660                            Haiti 1866           0
## 26661                         Honduras 1866           0
## 26662                        Hong Kong 1866           0
## 26663                          Hungary 1866    13919536
## 26664                          Iceland 1866           0
## 26665                            India 1866     5653552
## 26666                        Indonesia 1866           0
## 26667                             Iran 1866           0
## 26668                             Iraq 1866           0
## 26669                          Ireland 1866      395712
## 26670                           Israel 1866           0
## 26671                            Italy 1866     7349984
## 26672                          Jamaica 1866           0
## 26673                            Japan 1866           0
## 26674                           Jordan 1866           0
## 26675                       Kazakhstan 1866           0
## 26676                            Kenya 1866           0
## 26677                         Kiribati 1866           0
## 26678                           Kuwait 1866           0
## 26679                       Kyrgysztan 1866           0
## 26680                       Kyrgyzstan 1866           0
## 26681                             Laos 1866           0
## 26682                           Latvia 1866           0
## 26683                          Lebanon 1866           0
## 26684                          Lesotho 1866           0
## 26685                          Liberia 1866           0
## 26686                            Libya 1866           0
## 26687                    Liechtenstein 1866           0
## 26688                        Lithuania 1866           0
## 26689                       Luxembourg 1866           0
## 26690                            Macao 1866           0
## 26691                        Macedonia 1866           0
## 26692                       Madagascar 1866           0
## 26693                           Malawi 1866           0
## 26694                         Malaysia 1866           0
## 26695                         Maldives 1866           0
## 26696                             Mali 1866           0
## 26697                            Malta 1866           0
## 26698                 Marshall Islands 1866           0
## 26699                       Martinique 1866           0
## 26700                       Mauritania 1866           0
## 26701                        Mauritius 1866           0
## 26702                           Mexico 1866           0
## 26703             Micronesia (country) 1866           0
## 26704                      Middle East 1866      359072
## 26705                          Moldova 1866           0
## 26706                         Mongolia 1866           0
## 26707                       Montenegro 1866           0
## 26708                       Montserrat 1866           0
## 26709                          Morocco 1866           0
## 26710                       Mozambique 1866           0
## 26711                          Myanmar 1866           0
## 26712                          Namibia 1866           0
## 26713                            Nauru 1866           0
## 26714                            Nepal 1866           0
## 26715                      Netherlands 1866    85100064
## 26716                    New Caledonia 1866           0
## 26717                      New Zealand 1866           0
## 26718                        Nicaragua 1866           0
## 26719                            Niger 1866           0
## 26720                          Nigeria 1866           0
## 26721                             Niue 1866           0
## 26722                      North Korea 1866           0
## 26723                           Norway 1866     6280096
## 26724                             Oman 1866           0
## 26725                         Pakistan 1866           0
## 26726                            Palau 1866           0
## 26727                        Palestine 1866           0
## 26728                           Panama 1866           0
## 26729                 Papua New Guinea 1866           0
## 26730                         Paraguay 1866           0
## 26731                             Peru 1866           0
## 26732                      Philippines 1866           0
## 26733                           Poland 1866   183320912
## 26734                         Portugal 1866           0
## 26735                            Qatar 1866           0
## 26736                          Reunion 1866           0
## 26737                          Romania 1866       87936
## 26738                           Russia 1866           0
## 26739                           Rwanda 1866           0
## 26740                     Saint Helena 1866           0
## 26741            Saint Kitts and Nevis 1866           0
## 26742                      Saint Lucia 1866           0
## 26743        Saint Pierre and Miquelon 1866           0
## 26744 Saint Vincent and the Grenadines 1866           0
## 26745                            Samoa 1866           0
## 26746            Sao Tome and Principe 1866           0
## 26747                     Saudi Arabia 1866           0
## 26748                          Senegal 1866           0
## 26749                           Serbia 1866           0
## 26750                       Seychelles 1866           0
## 26751                     Sierra Leone 1866           0
## 26752                        Singapore 1866           0
## 26753        Sint Maarten (Dutch part) 1866           0
## 26754                         Slovakia 1866           0
## 26755                         Slovenia 1866           0
## 26756                  Solomon Islands 1866           0
## 26757                          Somalia 1866           0
## 26758                     South Africa 1866           0
## 26759                      South Korea 1866           0
## 26760                      South Sudan 1866           0
## 26761                            Spain 1866    25409840
## 26762                        Sri Lanka 1866           0
## 26763                            Sudan 1866           0
## 26764                         Suriname 1866           0
## 26765                        Swaziland 1866           0
## 26766                           Sweden 1866    11768768
## 26767                      Switzerland 1866     3975440
## 26768                            Syria 1866           0
## 26769                           Taiwan 1866           0
## 26770                       Tajikistan 1866           0
## 26771                         Tanzania 1866           0
## 26772                         Thailand 1866           0
## 26773                            Timor 1866           0
## 26774                             Togo 1866           0
## 26775                            Tonga 1866           0
## 26776              Trinidad and Tobago 1866           0
## 26777                          Tunisia 1866           0
## 26778                           Turkey 1866      359072
## 26779                     Turkmenistan 1866           0
## 26780         Turks and Caicos Islands 1866           0
## 26781                           Tuvalu 1866           0
## 26782                           Uganda 1866           0
## 26783                          Ukraine 1866           0
## 26784             United Arab Emirates 1866           0
## 26785                   United Kingdom 1866  6179401952
## 26786                    United States 1866   883027664
## 26787                          Uruguay 1866           0
## 26788                       Uzbekistan 1866           0
## 26789                          Vanuatu 1866           0
## 26790                        Venezuela 1866           0
## 26791                          Vietnam 1866           0
## 26792        Wallis and Futuna Islands 1866           0
## 26793                            World 1866  9726293184
## 26794                            Yemen 1866           0
## 26795                           Zambia 1866           0
## 26796                         Zimbabwe 1866           0
## 26797                      Afghanistan 1867           0
## 26798                           Africa 1867           0
## 26799                          Albania 1867           0
## 26800                          Algeria 1867           0
## 26801                 Americas (other) 1867     8738640
## 26802                          Andorra 1867           0
## 26803                           Angola 1867           0
## 26804                         Anguilla 1867           0
## 26805              Antarctic Fisheries 1867           0
## 26806              Antigua and Barbuda 1867           0
## 26807                        Argentina 1867           0
## 26808                          Armenia 1867           0
## 26809                            Aruba 1867           0
## 26810         Asia and Pacific (other) 1867    11428016
## 26811                        Australia 1867     3821552
## 26812                          Austria 1867   111803296
## 26813                       Azerbaijan 1867           0
## 26814                          Bahamas 1867           0
## 26815                          Bahrain 1867           0
## 26816                       Bangladesh 1867           0
## 26817                         Barbados 1867           0
## 26818                          Belarus 1867           0
## 26819                          Belgium 1867   411760320
## 26820                           Belize 1867           0
## 26821                            Benin 1867           0
## 26822                          Bermuda 1867           0
## 26823                           Bhutan 1867           0
## 26824                          Bolivia 1867           0
## 26825  Bonaire Sint Eustatius and Saba 1867           0
## 26826           Bosnia and Herzegovina 1867           0
## 26827                         Botswana 1867           0
## 26828                           Brazil 1867           0
## 26829           British Virgin Islands 1867           0
## 26830                           Brunei 1867           0
## 26831                         Bulgaria 1867           0
## 26832                     Burkina Faso 1867           0
## 26833                          Burundi 1867           0
## 26834                         Cambodia 1867           0
## 26835                         Cameroon 1867           0
## 26836                           Canada 1867     8734976
## 26837                       Cape Verde 1867           0
## 26838                   Cayman Islands 1867           0
## 26839         Central African Republic 1867           0
## 26840                             Chad 1867           0
## 26841                            Chile 1867           0
## 26842                            China 1867           0
## 26843                 Christmas Island 1867           0
## 26844                         Colombia 1867           0
## 26845                          Comoros 1867           0
## 26846                            Congo 1867           0
## 26847                     Cook Islands 1867           0
## 26848                       Costa Rica 1867           0
## 26849                    Cote d'Ivoire 1867           0
## 26850                          Croatia 1867           0
## 26851                             Cuba 1867           0
## 26852                          Curacao 1867           0
## 26853                           Cyprus 1867           0
## 26854                   Czech Republic 1867           0
## 26855                   Czechoslovakia 1867    19345920
## 26856     Democratic Republic of Congo 1867           0
## 26857                          Denmark 1867    12446608
## 26858                         Djibouti 1867           0
## 26859                         Dominica 1867           0
## 26860               Dominican Republic 1867           0
## 26861                            EU-28 1867  9187666864
## 26862                          Ecuador 1867           0
## 26863                            Egypt 1867           0
## 26864                      El Salvador 1867           0
## 26865                Equatorial Guinea 1867           0
## 26866                          Eritrea 1867           0
## 26867                          Estonia 1867           0
## 26868                         Ethiopia 1867           0
## 26869                   Europe (other) 1867    43264512
## 26870                   Faeroe Islands 1867           0
## 26871                 Falkland Islands 1867           0
## 26872                             Fiji 1867           0
## 26873                          Finland 1867      501968
## 26874                           France 1867   980211600
## 26875                    French Guiana 1867           0
## 26876                 French Polynesia 1867           0
## 26877                            Gabon 1867           0
## 26878                           Gambia 1867           0
## 26879                          Georgia 1867           0
## 26880                          Germany 1867   922536576
## 26881                            Ghana 1867           0
## 26882                        Gibraltar 1867           0
## 26883                           Greece 1867      168544
## 26884                        Greenland 1867           0
## 26885                          Grenada 1867           0
## 26886                       Guadeloupe 1867           0
## 26887                        Guatemala 1867           0
## 26888                           Guinea 1867           0
## 26889                    Guinea-Bissau 1867           0
## 26890                           Guyana 1867           0
## 26891                            Haiti 1867           0
## 26892                         Honduras 1867           0
## 26893                        Hong Kong 1867           0
## 26894                          Hungary 1867    15608640
## 26895                          Iceland 1867           0
## 26896                            India 1867     5653552
## 26897                        Indonesia 1867           0
## 26898                             Iran 1867           0
## 26899                             Iraq 1867           0
## 26900                          Ireland 1867      395712
## 26901                           Israel 1867           0
## 26902                            Italy 1867     8819248
## 26903                          Jamaica 1867           0
## 26904                            Japan 1867           0
## 26905                           Jordan 1867           0
## 26906                       Kazakhstan 1867           0
## 26907                            Kenya 1867           0
## 26908                         Kiribati 1867           0
## 26909                           Kuwait 1867           0
## 26910                       Kyrgysztan 1867           0
## 26911                       Kyrgyzstan 1867           0
## 26912                             Laos 1867           0
## 26913                           Latvia 1867           0
## 26914                          Lebanon 1867           0
## 26915                          Lesotho 1867           0
## 26916                          Liberia 1867           0
## 26917                            Libya 1867           0
## 26918                    Liechtenstein 1867           0
## 26919                        Lithuania 1867           0
## 26920                       Luxembourg 1867           0
## 26921                            Macao 1867           0
## 26922                        Macedonia 1867           0
## 26923                       Madagascar 1867           0
## 26924                           Malawi 1867           0
## 26925                         Malaysia 1867           0
## 26926                         Maldives 1867           0
## 26927                             Mali 1867           0
## 26928                            Malta 1867           0
## 26929                 Marshall Islands 1867           0
## 26930                       Martinique 1867           0
## 26931                       Mauritania 1867           0
## 26932                        Mauritius 1867           0
## 26933                           Mexico 1867           0
## 26934             Micronesia (country) 1867           0
## 26935                      Middle East 1867      586240
## 26936                          Moldova 1867           0
## 26937                         Mongolia 1867           0
## 26938                       Montenegro 1867           0
## 26939                       Montserrat 1867           0
## 26940                          Morocco 1867           0
## 26941                       Mozambique 1867           0
## 26942                          Myanmar 1867           0
## 26943                          Namibia 1867           0
## 26944                            Nauru 1867           0
## 26945                            Nepal 1867           0
## 26946                      Netherlands 1867    89141456
## 26947                    New Caledonia 1867           0
## 26948                      New Zealand 1867           0
## 26949                        Nicaragua 1867           0
## 26950                            Niger 1867           0
## 26951                          Nigeria 1867           0
## 26952                             Niue 1867           0
## 26953                      North Korea 1867           0
## 26954                           Norway 1867     6899312
## 26955                             Oman 1867           0
## 26956                         Pakistan 1867           0
## 26957                            Palau 1867           0
## 26958                        Palestine 1867           0
## 26959                           Panama 1867           0
## 26960                 Papua New Guinea 1867           0
## 26961                         Paraguay 1867           0
## 26962                             Peru 1867           0
## 26963                      Philippines 1867           0
## 26964                           Poland 1867   196613904
## 26965                         Portugal 1867           0
## 26966                            Qatar 1867           0
## 26967                          Reunion 1867           0
## 26968                          Romania 1867      109920
## 26969                           Russia 1867           0
## 26970                           Rwanda 1867           0
## 26971                     Saint Helena 1867           0
## 26972            Saint Kitts and Nevis 1867           0
## 26973                      Saint Lucia 1867           0
## 26974        Saint Pierre and Miquelon 1867           0
## 26975 Saint Vincent and the Grenadines 1867           0
## 26976                            Samoa 1867           0
## 26977            Sao Tome and Principe 1867           0
## 26978                     Saudi Arabia 1867           0
## 26979                          Senegal 1867           0
## 26980                           Serbia 1867           0
## 26981                       Seychelles 1867           0
## 26982                     Sierra Leone 1867           0
## 26983                        Singapore 1867           0
## 26984        Sint Maarten (Dutch part) 1867           0
## 26985                         Slovakia 1867           0
## 26986                         Slovenia 1867           0
## 26987                  Solomon Islands 1867           0
## 26988                          Somalia 1867           0
## 26989                     South Africa 1867           0
## 26990                      South Korea 1867           0
## 26991                      South Sudan 1867           0
## 26992                            Spain 1867    27967312
## 26993                        Sri Lanka 1867           0
## 26994                            Sudan 1867           0
## 26995                         Suriname 1867           0
## 26996                        Swaziland 1867           0
## 26997                           Sweden 1867    12805680
## 26998                      Switzerland 1867     4649616
## 26999                            Syria 1867           0
## 27000                           Taiwan 1867           0
## 27001                       Tajikistan 1867           0
## 27002                         Tanzania 1867           0
## 27003                         Thailand 1867           0
## 27004                            Timor 1867           0
## 27005                             Togo 1867           0
## 27006                            Tonga 1867           0
## 27007              Trinidad and Tobago 1867           0
## 27008                          Tunisia 1867           0
## 27009                           Turkey 1867      586240
## 27010                     Turkmenistan 1867           0
## 27011         Turks and Caicos Islands 1867           0
## 27012                           Tuvalu 1867           0
## 27013                           Uganda 1867           0
## 27014                          Ukraine 1867           0
## 27015             United Arab Emirates 1867           0
## 27016                   United Kingdom 1867  6396776080
## 27017                    United States 1867   955893632
## 27018                          Uruguay 1867           0
## 27019                       Uzbekistan 1867           0
## 27020                          Vanuatu 1867           0
## 27021                        Venezuela 1867           0
## 27022                          Vietnam 1867           0
## 27023        Wallis and Futuna Islands 1867           0
## 27024                            World 1867 10204108096
## 27025                            Yemen 1867           0
## 27026                           Zambia 1867           0
## 27027                         Zimbabwe 1867           0
## 27028                      Afghanistan 1868           0
## 27029                           Africa 1868           0
## 27030                          Albania 1868           0
## 27031                          Algeria 1868           0
## 27032                 Americas (other) 1868     9680288
## 27033                          Andorra 1868           0
## 27034                           Angola 1868           0
## 27035                         Anguilla 1868           0
## 27036              Antarctic Fisheries 1868           0
## 27037              Antigua and Barbuda 1868           0
## 27038                        Argentina 1868           0
## 27039                          Armenia 1868           0
## 27040                            Aruba 1868           0
## 27041         Asia and Pacific (other) 1868    14025792
## 27042                        Australia 1868     4554352
## 27043                          Austria 1868   117874544
## 27044                       Azerbaijan 1868           0
## 27045                          Bahamas 1868           0
## 27046                          Bahrain 1868           0
## 27047                       Bangladesh 1868           0
## 27048                         Barbados 1868           0
## 27049                          Belarus 1868           0
## 27050                          Belgium 1868   431861024
## 27051                           Belize 1868           0
## 27052                            Benin 1868           0
## 27053                          Bermuda 1868           0
## 27054                           Bhutan 1868           0
## 27055                          Bolivia 1868           0
## 27056  Bonaire Sint Eustatius and Saba 1868           0
## 27057           Bosnia and Herzegovina 1868           0
## 27058                         Botswana 1868           0
## 27059                           Brazil 1868           0
## 27060           British Virgin Islands 1868           0
## 27061                           Brunei 1868           0
## 27062                         Bulgaria 1868           0
## 27063                     Burkina Faso 1868           0
## 27064                          Burundi 1868           0
## 27065                         Cambodia 1868           0
## 27066                         Cameroon 1868           0
## 27067                           Canada 1868     9680288
## 27068                       Cape Verde 1868           0
## 27069                   Cayman Islands 1868           0
## 27070         Central African Republic 1868           0
## 27071                             Chad 1868           0
## 27072                            Chile 1868           0
## 27073                            China 1868           0
## 27074                 Christmas Island 1868           0
## 27075                         Colombia 1868           0
## 27076                          Comoros 1868           0
## 27077                            Congo 1868           0
## 27078                     Cook Islands 1868           0
## 27079                       Costa Rica 1868           0
## 27080                    Cote d'Ivoire 1868           0
## 27081                          Croatia 1868           0
## 27082                             Cuba 1868           0
## 27083                          Curacao 1868           0
## 27084                           Cyprus 1868           0
## 27085                   Czech Republic 1868           0
## 27086                   Czechoslovakia 1868    24530480
## 27087     Democratic Republic of Congo 1868           0
## 27088                          Denmark 1868    13531152
## 27089                         Djibouti 1868           0
## 27090                         Dominica 1868           0
## 27091               Dominican Republic 1868           0
## 27092                            EU-28 1868  9584983696
## 27093                          Ecuador 1868           0
## 27094                            Egypt 1868           0
## 27095                      El Salvador 1868           0
## 27096                Equatorial Guinea 1868           0
## 27097                          Eritrea 1868           0
## 27098                          Estonia 1868           0
## 27099                         Ethiopia 1868           0
## 27100                   Europe (other) 1868    52486800
## 27101                   Faeroe Islands 1868           0
## 27102                 Falkland Islands 1868           0
## 27103                             Fiji 1868           0
## 27104                          Finland 1868      589904
## 27105                           France 1868  1035743184
## 27106                    French Guiana 1868           0
## 27107                 French Polynesia 1868           0
## 27108                            Gabon 1868           0
## 27109                           Gambia 1868           0
## 27110                          Georgia 1868           0
## 27111                          Germany 1868   996904784
## 27112                            Ghana 1868           0
## 27113                        Gibraltar 1868           0
## 27114                           Greece 1868      252816
## 27115                        Greenland 1868           0
## 27116                          Grenada 1868           0
## 27117                       Guadeloupe 1868           0
## 27118                        Guatemala 1868           0
## 27119                           Guinea 1868           0
## 27120                    Guinea-Bissau 1868           0
## 27121                           Guyana 1868           0
## 27122                            Haiti 1868           0
## 27123                         Honduras 1868           0
## 27124                        Hong Kong 1868           0
## 27125                          Hungary 1868    17414992
## 27126                          Iceland 1868           0
## 27127                            India 1868     5653552
## 27128                        Indonesia 1868           0
## 27129                             Iran 1868           0
## 27130                             Iraq 1868           0
## 27131                          Ireland 1868      395712
## 27132                           Israel 1868           0
## 27133                            Italy 1868    10515680
## 27134                          Jamaica 1868           0
## 27135                            Japan 1868       10992
## 27136                           Jordan 1868           0
## 27137                       Kazakhstan 1868           0
## 27138                            Kenya 1868           0
## 27139                         Kiribati 1868           0
## 27140                           Kuwait 1868           0
## 27141                       Kyrgysztan 1868           0
## 27142                       Kyrgyzstan 1868           0
## 27143                             Laos 1868           0
## 27144                           Latvia 1868           0
## 27145                          Lebanon 1868           0
## 27146                          Lesotho 1868           0
## 27147                          Liberia 1868           0
## 27148                            Libya 1868           0
## 27149                    Liechtenstein 1868           0
## 27150                        Lithuania 1868           0
## 27151                       Luxembourg 1868           0
## 27152                            Macao 1868           0
## 27153                        Macedonia 1868           0
## 27154                       Madagascar 1868           0
## 27155                           Malawi 1868           0
## 27156                         Malaysia 1868           0
## 27157                         Maldives 1868           0
## 27158                             Mali 1868           0
## 27159                            Malta 1868           0
## 27160                 Marshall Islands 1868           0
## 27161                       Martinique 1868           0
## 27162                       Mauritania 1868           0
## 27163                        Mauritius 1868           0
## 27164                           Mexico 1868           0
## 27165             Micronesia (country) 1868           0
## 27166                      Middle East 1868      762112
## 27167                          Moldova 1868           0
## 27168                         Mongolia 1868           0
## 27169                       Montenegro 1868           0
## 27170                       Montserrat 1868           0
## 27171                          Morocco 1868           0
## 27172                       Mozambique 1868           0
## 27173                          Myanmar 1868           0
## 27174                          Namibia 1868           0
## 27175                            Nauru 1868           0
## 27176                            Nepal 1868           0
## 27177                      Netherlands 1868    93380704
## 27178                    New Caledonia 1868           0
## 27179                      New Zealand 1868           0
## 27180                        Nicaragua 1868           0
## 27181                            Niger 1868           0
## 27182                          Nigeria 1868           0
## 27183                             Niue 1868           0
## 27184                      North Korea 1868           0
## 27185                           Norway 1868     7533184
## 27186                             Oman 1868           0
## 27187                         Pakistan 1868           0
## 27188                            Palau 1868           0
## 27189                        Palestine 1868           0
## 27190                           Panama 1868           0
## 27191                 Papua New Guinea 1868           0
## 27192                         Paraguay 1868           0
## 27193                             Peru 1868           0
## 27194                      Philippines 1868           0
## 27195                           Poland 1868   211731568
## 27196                         Portugal 1868           0
## 27197                            Qatar 1868           0
## 27198                          Reunion 1868           0
## 27199                          Romania 1868      135568
## 27200                           Russia 1868           0
## 27201                           Rwanda 1868           0
## 27202                     Saint Helena 1868           0
## 27203            Saint Kitts and Nevis 1868           0
## 27204                      Saint Lucia 1868           0
## 27205        Saint Pierre and Miquelon 1868           0
## 27206 Saint Vincent and the Grenadines 1868           0
## 27207                            Samoa 1868           0
## 27208            Sao Tome and Principe 1868           0
## 27209                     Saudi Arabia 1868           0
## 27210                          Senegal 1868           0
## 27211                           Serbia 1868           0
## 27212                       Seychelles 1868           0
## 27213                     Sierra Leone 1868           0
## 27214                        Singapore 1868           0
## 27215        Sint Maarten (Dutch part) 1868           0
## 27216                         Slovakia 1868           0
## 27217                         Slovenia 1868           0
## 27218                  Solomon Islands 1868           0
## 27219                          Somalia 1868           0
## 27220                     South Africa 1868           0
## 27221                      South Korea 1868           0
## 27222                      South Sudan 1868           0
## 27223                            Spain 1868    30627376
## 27224                        Sri Lanka 1868           0
## 27225                            Sudan 1868           0
## 27226                         Suriname 1868           0
## 27227                        Swaziland 1868           0
## 27228                           Sweden 1868    14029456
## 27229                      Switzerland 1868     5419056
## 27230                            Syria 1868           0
## 27231                           Taiwan 1868           0
## 27232                       Tajikistan 1868           0
## 27233                         Tanzania 1868           0
## 27234                         Thailand 1868           0
## 27235                            Timor 1868           0
## 27236                             Togo 1868           0
## 27237                            Tonga 1868           0
## 27238              Trinidad and Tobago 1868           0
## 27239                          Tunisia 1868           0
## 27240                           Turkey 1868      762112
## 27241                     Turkmenistan 1868           0
## 27242         Turks and Caicos Islands 1868           0
## 27243                           Tuvalu 1868           0
## 27244                           Uganda 1868           0
## 27245                          Ukraine 1868           0
## 27246             United Arab Emirates 1868           0
## 27247                   United Kingdom 1868  6609995232
## 27248                    United States 1868  1038245696
## 27249                          Uruguay 1868           0
## 27250                       Uzbekistan 1868           0
## 27251                          Vanuatu 1868           0
## 27252                        Venezuela 1868           0
## 27253                          Vietnam 1868           0
## 27254        Wallis and Futuna Islands 1868           0
## 27255                            World 1868 10694860592
## 27256                            Yemen 1868           0
## 27257                           Zambia 1868           0
## 27258                         Zimbabwe 1868           0
## 27259                      Afghanistan 1869           0
## 27260                           Africa 1869           0
## 27261                          Albania 1869           0
## 27262                          Algeria 1869           0
## 27263                 Americas (other) 1869    10365456
## 27264                          Andorra 1869           0
## 27265                           Angola 1869           0
## 27266                         Anguilla 1869           0
## 27267              Antarctic Fisheries 1869           0
## 27268              Antigua and Barbuda 1869           0
## 27269                        Argentina 1869           0
## 27270                          Armenia 1869           0
## 27271                            Aruba 1869           0
## 27272         Asia and Pacific (other) 1869    16759136
## 27273                        Australia 1869     5195552
## 27274                          Austria 1869   124359824
## 27275                       Azerbaijan 1869           0
## 27276                          Bahamas 1869           0
## 27277                          Bahrain 1869           0
## 27278                       Bangladesh 1869           0
## 27279                         Barbados 1869           0
## 27280                          Belarus 1869           0
## 27281                          Belgium 1869   453511600
## 27282                           Belize 1869           0
## 27283                            Benin 1869           0
## 27284                          Bermuda 1869           0
## 27285                           Bhutan 1869           0
## 27286                          Bolivia 1869           0
## 27287  Bonaire Sint Eustatius and Saba 1869           0
## 27288           Bosnia and Herzegovina 1869           0
## 27289                         Botswana 1869           0
## 27290                           Brazil 1869           0
## 27291           British Virgin Islands 1869           0
## 27292                           Brunei 1869           0
## 27293                         Bulgaria 1869           0
## 27294                     Burkina Faso 1869           0
## 27295                          Burundi 1869           0
## 27296                         Cambodia 1869           0
## 27297                         Cameroon 1869           0
## 27298                           Canada 1869    10365456
## 27299                       Cape Verde 1869           0
## 27300                   Cayman Islands 1869           0
## 27301         Central African Republic 1869           0
## 27302                             Chad 1869           0
## 27303                            Chile 1869           0
## 27304                            China 1869           0
## 27305                 Christmas Island 1869           0
## 27306                         Colombia 1869           0
## 27307                          Comoros 1869           0
## 27308                            Congo 1869           0
## 27309                     Cook Islands 1869           0
## 27310                       Costa Rica 1869           0
## 27311                    Cote d'Ivoire 1869           0
## 27312                          Croatia 1869           0
## 27313                             Cuba 1869           0
## 27314                          Curacao 1869           0
## 27315                           Cyprus 1869           0
## 27316                   Czech Republic 1869           0
## 27317                   Czechoslovakia 1869    30330592
## 27318     Democratic Republic of Congo 1869           0
## 27319                          Denmark 1869    14476464
## 27320                         Djibouti 1869           0
## 27321                         Dominica 1869           0
## 27322               Dominican Republic 1869           0
## 27323                            EU-28 1869 10000140544
## 27324                          Ecuador 1869           0
## 27325                            Egypt 1869           0
## 27326                      El Salvador 1869           0
## 27327                Equatorial Guinea 1869           0
## 27328                          Eritrea 1869           0
## 27329                          Estonia 1869           0
## 27330                         Ethiopia 1869           0
## 27331                   Europe (other) 1869    63149040
## 27332                   Faeroe Islands 1869           0
## 27333                 Falkland Islands 1869           0
## 27334                             Fiji 1869           0
## 27335                          Finland 1869      659520
## 27336                           France 1869  1092685408
## 27337                    French Guiana 1869           0
## 27338                 French Polynesia 1869           0
## 27339                            Gabon 1869           0
## 27340                           Gambia 1869           0
## 27341                          Georgia 1869           0
## 27342                          Germany 1869  1074497312
## 27343                            Ghana 1869           0
## 27344                        Gibraltar 1869           0
## 27345                           Greece 1869      447008
## 27346                        Greenland 1869           0
## 27347                          Grenada 1869           0
## 27348                       Guadeloupe 1869           0
## 27349                        Guatemala 1869           0
## 27350                           Guinea 1869           0
## 27351                    Guinea-Bissau 1869           0
## 27352                           Guyana 1869           0
## 27353                            Haiti 1869           0
## 27354                         Honduras 1869           0
## 27355                        Hong Kong 1869           0
## 27356                          Hungary 1869    19378896
## 27357                          Iceland 1869           0
## 27358                            India 1869     5653552
## 27359                        Indonesia 1869           0
## 27360                             Iran 1869           0
## 27361                             Iraq 1869           0
## 27362                          Ireland 1869      395712
## 27363                           Israel 1869           0
## 27364                            Italy 1869    12387984
## 27365                          Jamaica 1869           0
## 27366                            Japan 1869       29312
## 27367                           Jordan 1869           0
## 27368                       Kazakhstan 1869           0
## 27369                            Kenya 1869           0
## 27370                         Kiribati 1869           0
## 27371                           Kuwait 1869           0
## 27372                       Kyrgysztan 1869           0
## 27373                       Kyrgyzstan 1869           0
## 27374                             Laos 1869           0
## 27375                           Latvia 1869           0
## 27376                          Lebanon 1869           0
## 27377                          Lesotho 1869           0
## 27378                          Liberia 1869           0
## 27379                            Libya 1869           0
## 27380                    Liechtenstein 1869           0
## 27381                        Lithuania 1869           0
## 27382                       Luxembourg 1869           0
## 27383                            Macao 1869           0
## 27384                        Macedonia 1869           0
## 27385                       Madagascar 1869           0
## 27386                           Malawi 1869           0
## 27387                         Malaysia 1869           0
## 27388                         Maldives 1869           0
## 27389                             Mali 1869           0
## 27390                            Malta 1869           0
## 27391                 Marshall Islands 1869           0
## 27392                       Martinique 1869           0
## 27393                       Mauritania 1869           0
## 27394                        Mauritius 1869           0
## 27395                           Mexico 1869           0
## 27396             Micronesia (country) 1869           0
## 27397                      Middle East 1869     1029584
## 27398                          Moldova 1869           0
## 27399                         Mongolia 1869           0
## 27400                       Montenegro 1869           0
## 27401                       Montserrat 1869           0
## 27402                          Morocco 1869           0
## 27403                       Mozambique 1869           0
## 27404                          Myanmar 1869           0
## 27405                          Namibia 1869           0
## 27406                            Nauru 1869           0
## 27407                            Nepal 1869           0
## 27408                      Netherlands 1869    97751856
## 27409                    New Caledonia 1869           0
## 27410                      New Zealand 1869           0
## 27411                        Nicaragua 1869           0
## 27412                            Niger 1869           0
## 27413                          Nigeria 1869           0
## 27414                             Niue 1869           0
## 27415                      North Korea 1869           0
## 27416                           Norway 1869     8086448
## 27417                             Oman 1869           0
## 27418                         Pakistan 1869           0
## 27419                            Palau 1869           0
## 27420                        Palestine 1869           0
## 27421                           Panama 1869           0
## 27422                 Papua New Guinea 1869           0
## 27423                         Paraguay 1869           0
## 27424                             Peru 1869           0
## 27425                      Philippines 1869           0
## 27426                           Poland 1869   227343872
## 27427                         Portugal 1869           0
## 27428                            Qatar 1869           0
## 27429                          Reunion 1869           0
## 27430                          Romania 1869      161216
## 27431                           Russia 1869           0
## 27432                           Rwanda 1869           0
## 27433                     Saint Helena 1869           0
## 27434            Saint Kitts and Nevis 1869           0
## 27435                      Saint Lucia 1869           0
## 27436        Saint Pierre and Miquelon 1869           0
## 27437 Saint Vincent and the Grenadines 1869           0
## 27438                            Samoa 1869           0
## 27439            Sao Tome and Principe 1869           0
## 27440                     Saudi Arabia 1869           0
## 27441                          Senegal 1869           0
## 27442                           Serbia 1869           0
## 27443                       Seychelles 1869           0
## 27444                     Sierra Leone 1869           0
## 27445                        Singapore 1869           0
## 27446        Sint Maarten (Dutch part) 1869           0
## 27447                         Slovakia 1869           0
## 27448                         Slovenia 1869           0
## 27449                  Solomon Islands 1869           0
## 27450                          Somalia 1869           0
## 27451                     South Africa 1869           0
## 27452                      South Korea 1869           0
## 27453                      South Sudan 1869           0
## 27454                            Spain 1869    33265456
## 27455                        Sri Lanka 1869           0
## 27456                            Sudan 1869           0
## 27457                         Suriname 1869           0
## 27458                        Swaziland 1869           0
## 27459                           Sweden 1869    15117664
## 27460                      Switzerland 1869     6162848
## 27461                            Syria 1869           0
## 27462                           Taiwan 1869           0
## 27463                       Tajikistan 1869           0
## 27464                         Tanzania 1869           0
## 27465                         Thailand 1869           0
## 27466                            Timor 1869           0
## 27467                             Togo 1869           0
## 27468                            Tonga 1869           0
## 27469              Trinidad and Tobago 1869           0
## 27470                          Tunisia 1869           0
## 27471                           Turkey 1869     1029584
## 27472                     Turkmenistan 1869           0
## 27473         Turks and Caicos Islands 1869           0
## 27474                           Tuvalu 1869           0
## 27475                           Uganda 1869           0
## 27476                          Ukraine 1869           0
## 27477             United Arab Emirates 1869           0
## 27478                   United Kingdom 1869  6833700752
## 27479                    United States 1869  1131941504
## 27480                          Uruguay 1869           0
## 27481                       Uzbekistan 1869           0
## 27482                          Vanuatu 1869           0
## 27483                        Venezuela 1869           0
## 27484                          Vietnam 1869           0
## 27485        Wallis and Futuna Islands 1869           0
## 27486                            World 1869 11215991312
## 27487                            Yemen 1869           0
## 27488                           Zambia 1869           0
## 27489                         Zimbabwe 1869           0
## 27490                      Afghanistan 1870           0
## 27491                           Africa 1870           0
## 27492                          Albania 1870           0
## 27493                          Algeria 1870           0
## 27494                 Americas (other) 1870    11589232
## 27495                          Andorra 1870           0
## 27496                           Angola 1870           0
## 27497                         Anguilla 1870           0
## 27498              Antarctic Fisheries 1870           0
## 27499              Antigua and Barbuda 1870           0
## 27500                        Argentina 1870           0
## 27501                          Armenia 1870           0
## 27502                            Aruba 1870           0
## 27503         Asia and Pacific (other) 1870    19400880
## 27504                        Australia 1870     5796448
## 27505                          Austria 1870   131724464
## 27506                       Azerbaijan 1870           0
## 27507                          Bahamas 1870           0
## 27508                          Bahrain 1870           0
## 27509                       Bangladesh 1870           0
## 27510                         Barbados 1870           0
## 27511                          Belarus 1870           0
## 27512                          Belgium 1870   478258256
## 27513                           Belize 1870           0
## 27514                            Benin 1870           0
## 27515                          Bermuda 1870           0
## 27516                           Bhutan 1870           0
## 27517                          Bolivia 1870           0
## 27518  Bonaire Sint Eustatius and Saba 1870           0
## 27519           Bosnia and Herzegovina 1870           0
## 27520                         Botswana 1870           0
## 27521                           Brazil 1870           0
## 27522           British Virgin Islands 1870           0
## 27523                           Brunei 1870           0
## 27524                         Bulgaria 1870           0
## 27525                     Burkina Faso 1870           0
## 27526                          Burundi 1870           0
## 27527                         Cambodia 1870           0
## 27528                         Cameroon 1870           0
## 27529                           Canada 1870    11589232
## 27530                       Cape Verde 1870           0
## 27531                   Cayman Islands 1870           0
## 27532         Central African Republic 1870           0
## 27533                             Chad 1870           0
## 27534                            Chile 1870           0
## 27535                            China 1870           0
## 27536                 Christmas Island 1870           0
## 27537                         Colombia 1870           0
## 27538                          Comoros 1870           0
## 27539                            Congo 1870           0
## 27540                     Cook Islands 1870           0
## 27541                       Costa Rica 1870           0
## 27542                    Cote d'Ivoire 1870           0
## 27543                          Croatia 1870           0
## 27544                             Cuba 1870           0
## 27545                          Curacao 1870           0
## 27546                           Cyprus 1870           0
## 27547                   Czech Republic 1870           0
## 27548                   Czechoslovakia 1870    36746256
## 27549     Democratic Republic of Congo 1870           0
## 27550                          Denmark 1870    15619632
## 27551                         Djibouti 1870           0
## 27552                         Dominica 1870           0
## 27553               Dominican Republic 1870           0
## 27554                            EU-28 1870 10420240128
## 27555                          Ecuador 1870           0
## 27556                            Egypt 1870           0
## 27557                      El Salvador 1870           0
## 27558                Equatorial Guinea 1870           0
## 27559                          Eritrea 1870           0
## 27560                          Estonia 1870           0
## 27561                         Ethiopia 1870           0
## 27562                   Europe (other) 1870    74965440
## 27563                   Faeroe Islands 1870           0
## 27564                 Falkland Islands 1870           0
## 27565                             Fiji 1870           0
## 27566                          Finland 1870      751120
## 27567                           France 1870  1143222960
## 27568                    French Guiana 1870           0
## 27569                 French Polynesia 1870           0
## 27570                            Gabon 1870           0
## 27571                           Gambia 1870           0
## 27572                          Georgia 1870           0
## 27573                          Germany 1870  1151137200
## 27574                            Ghana 1870           0
## 27575                        Gibraltar 1870           0
## 27576                           Greece 1870      648528
## 27577                        Greenland 1870           0
## 27578                          Grenada 1870           0
## 27579                       Guadeloupe 1870           0
## 27580                        Guatemala 1870           0
## 27581                           Guinea 1870           0
## 27582                    Guinea-Bissau 1870           0
## 27583                           Guyana 1870           0
## 27584                            Haiti 1870           0
## 27585                         Honduras 1870           0
## 27586                        Hong Kong 1870           0
## 27587                          Hungary 1870    21500352
## 27588                          Iceland 1870           0
## 27589                            India 1870     5653552
## 27590                        Indonesia 1870           0
## 27591                             Iran 1870           0
## 27592                             Iraq 1870           0
## 27593                          Ireland 1870      395712
## 27594                           Israel 1870           0
## 27595                            Italy 1870    15066368
## 27596                          Jamaica 1870           0
## 27597                            Japan 1870       47632
## 27598                           Jordan 1870           0
## 27599                       Kazakhstan 1870           0
## 27600                            Kenya 1870           0
## 27601                         Kiribati 1870           0
## 27602                           Kuwait 1870           0
## 27603                       Kyrgysztan 1870           0
## 27604                       Kyrgyzstan 1870           0
## 27605                             Laos 1870           0
## 27606                           Latvia 1870           0
## 27607                          Lebanon 1870           0
## 27608                          Lesotho 1870           0
## 27609                          Liberia 1870           0
## 27610                            Libya 1870           0
## 27611                    Liechtenstein 1870           0
## 27612                        Lithuania 1870           0
## 27613                       Luxembourg 1870           0
## 27614                            Macao 1870           0
## 27615                        Macedonia 1870           0
## 27616                       Madagascar 1870           0
## 27617                           Malawi 1870           0
## 27618                         Malaysia 1870           0
## 27619                         Maldives 1870           0
## 27620                             Mali 1870           0
## 27621                            Malta 1870           0
## 27622                 Marshall Islands 1870           0
## 27623                       Martinique 1870           0
## 27624                       Mauritania 1870           0
## 27625                        Mauritius 1870           0
## 27626                           Mexico 1870           0
## 27627             Micronesia (country) 1870           0
## 27628                      Middle East 1870     1187136
## 27629                          Moldova 1870           0
## 27630                         Mongolia 1870           0
## 27631                       Montenegro 1870           0
## 27632                       Montserrat 1870           0
## 27633                          Morocco 1870           0
## 27634                       Mozambique 1870           0
## 27635                          Myanmar 1870           0
## 27636                          Namibia 1870           0
## 27637                            Nauru 1870           0
## 27638                            Nepal 1870           0
## 27639                      Netherlands 1870   102694592
## 27640                    New Caledonia 1870           0
## 27641                      New Zealand 1870           0
## 27642                        Nicaragua 1870           0
## 27643                            Niger 1870           0
## 27644                          Nigeria 1870           0
## 27645                             Niue 1870           0
## 27646                      North Korea 1870           0
## 27647                           Norway 1870     8716656
## 27648                             Oman 1870           0
## 27649                         Pakistan 1870           0
## 27650                            Palau 1870           0
## 27651                        Palestine 1870           0
## 27652                           Panama 1870           0
## 27653                 Papua New Guinea 1870           0
## 27654                         Paraguay 1870           0
## 27655                             Peru 1870           0
## 27656                      Philippines 1870           0
## 27657                           Poland 1870   244007744
## 27658                         Portugal 1870       21984
## 27659                            Qatar 1870           0
## 27660                          Reunion 1870           0
## 27661                          Romania 1870      197856
## 27662                           Russia 1870           0
## 27663                           Rwanda 1870           0
## 27664                     Saint Helena 1870           0
## 27665            Saint Kitts and Nevis 1870           0
## 27666                      Saint Lucia 1870           0
## 27667        Saint Pierre and Miquelon 1870           0
## 27668 Saint Vincent and the Grenadines 1870           0
## 27669                            Samoa 1870           0
## 27670            Sao Tome and Principe 1870           0
## 27671                     Saudi Arabia 1870           0
## 27672                          Senegal 1870           0
## 27673                           Serbia 1870           0
## 27674                       Seychelles 1870           0
## 27675                     Sierra Leone 1870           0
## 27676                        Singapore 1870           0
## 27677        Sint Maarten (Dutch part) 1870           0
## 27678                         Slovakia 1870           0
## 27679                         Slovenia 1870           0
## 27680                  Solomon Islands 1870           0
## 27681                          Somalia 1870           0
## 27682                     South Africa 1870           0
## 27683                      South Korea 1870           0
## 27684                      South Sudan 1870           0
## 27685                            Spain 1870    36339552
## 27686                        Sri Lanka 1870           0
## 27687                            Sudan 1870           0
## 27688                         Suriname 1870           0
## 27689                        Swaziland 1870           0
## 27690                           Sweden 1870    16458688
## 27691                      Switzerland 1870     7060528
## 27692                            Syria 1870           0
## 27693                           Taiwan 1870           0
## 27694                       Tajikistan 1870           0
## 27695                         Tanzania 1870           0
## 27696                         Thailand 1870           0
## 27697                            Timor 1870           0
## 27698                             Togo 1870           0
## 27699                            Tonga 1870           0
## 27700              Trinidad and Tobago 1870           0
## 27701                          Tunisia 1870           0
## 27702                           Turkey 1870     1187136
## 27703                     Turkmenistan 1870           0
## 27704         Turks and Caicos Islands 1870           0
## 27705                           Tuvalu 1870           0
## 27706                           Uganda 1870           0
## 27707                          Ukraine 1870           0
## 27708             United Arab Emirates 1870           0
## 27709                   United Kingdom 1870  7062195120
## 27710                    United States 1870  1230561728
## 27711                          Uruguay 1870           0
## 27712                       Uzbekistan 1870           0
## 27713                          Vanuatu 1870           0
## 27714                        Venezuela 1870           0
## 27715                          Vietnam 1870           0
## 27716        Wallis and Futuna Islands 1870           0
## 27717                            World 1870 11748528064
## 27718                            Yemen 1870           0
## 27719                           Zambia 1870           0
## 27720                         Zimbabwe 1870           0
## 27721                      Afghanistan 1871           0
## 27722                           Africa 1871           0
## 27723                          Albania 1871           0
## 27724                          Algeria 1871           0
## 27725                 Americas (other) 1871    13369936
## 27726                          Andorra 1871           0
## 27727                           Angola 1871           0
## 27728                         Anguilla 1871           0
## 27729              Antarctic Fisheries 1871           0
## 27730              Antigua and Barbuda 1871           0
## 27731                        Argentina 1871           0
## 27732                          Armenia 1871           0
## 27733                            Aruba 1871           0
## 27734         Asia and Pacific (other) 1871    22522608
## 27735                        Australia 1871     6488944
## 27736                          Austria 1871   141866416
## 27737                       Azerbaijan 1871           0
## 27738                          Bahamas 1871           0
## 27739                          Bahrain 1871           0
## 27740                       Bangladesh 1871           0
## 27741                         Barbados 1871           0
## 27742                          Belarus 1871           0
## 27743                          Belgium 1871   501975328
## 27744                           Belize 1871           0
## 27745                            Benin 1871           0
## 27746                          Bermuda 1871           0
## 27747                           Bhutan 1871           0
## 27748                          Bolivia 1871           0
## 27749  Bonaire Sint Eustatius and Saba 1871           0
## 27750           Bosnia and Herzegovina 1871           0
## 27751                         Botswana 1871           0
## 27752                           Brazil 1871           0
## 27753           British Virgin Islands 1871           0
## 27754                           Brunei 1871           0
## 27755                         Bulgaria 1871           0
## 27756                     Burkina Faso 1871           0
## 27757                          Burundi 1871           0
## 27758                         Cambodia 1871           0
## 27759                         Cameroon 1871           0
## 27760                           Canada 1871    13369936
## 27761                       Cape Verde 1871           0
## 27762                   Cayman Islands 1871           0
## 27763         Central African Republic 1871           0
## 27764                             Chad 1871           0
## 27765                            Chile 1871           0
## 27766                            China 1871           0
## 27767                 Christmas Island 1871           0
## 27768                         Colombia 1871           0
## 27769                          Comoros 1871           0
## 27770                            Congo 1871           0
## 27771                     Cook Islands 1871           0
## 27772                       Costa Rica 1871           0
## 27773                    Cote d'Ivoire 1871           0
## 27774                          Croatia 1871           0
## 27775                             Cuba 1871           0
## 27776                          Curacao 1871           0
## 27777                           Cyprus 1871           0
## 27778                   Czech Republic 1871           0
## 27779                   Czechoslovakia 1871    43777472
## 27780     Democratic Republic of Congo 1871           0
## 27781                          Denmark 1871    16806768
## 27782                         Djibouti 1871           0
## 27783                         Dominica 1871           0
## 27784               Dominican Republic 1871           0
## 27785                            EU-28 1871 10866683872
## 27786                          Ecuador 1871           0
## 27787                            Egypt 1871           0
## 27788                      El Salvador 1871           0
## 27789                Equatorial Guinea 1871           0
## 27790                          Eritrea 1871           0
## 27791                          Estonia 1871           0
## 27792                         Ethiopia 1871           0
## 27793                   Europe (other) 1871    88954592
## 27794                   Faeroe Islands 1871           0
## 27795                 Falkland Islands 1871           0
## 27796                             Fiji 1871           0
## 27797                          Finland 1871      864704
## 27798                           France 1871  1193485712
## 27799                    French Guiana 1871           0
## 27800                 French Polynesia 1871           0
## 27801                            Gabon 1871           0
## 27802                           Gambia 1871           0
## 27803                          Georgia 1871           0
## 27804                          Germany 1871  1236486416
## 27805                            Ghana 1871           0
## 27806                        Gibraltar 1871           0
## 27807                           Greece 1871      945312
## 27808                        Greenland 1871           0
## 27809                          Grenada 1871           0
## 27810                       Guadeloupe 1871           0
## 27811                        Guatemala 1871           0
## 27812                           Guinea 1871           0
## 27813                    Guinea-Bissau 1871           0
## 27814                           Guyana 1871           0
## 27815                            Haiti 1871           0
## 27816                         Honduras 1871           0
## 27817                        Hong Kong 1871           0
## 27818                          Hungary 1871    24131104
## 27819                          Iceland 1871           0
## 27820                            India 1871     5653552
## 27821                        Indonesia 1871           0
## 27822                             Iran 1871           0
## 27823                             Iraq 1871           0
## 27824                          Ireland 1871      395712
## 27825                           Israel 1871           0
## 27826                            Italy 1871    17374688
## 27827                          Jamaica 1871           0
## 27828                            Japan 1871       73280
## 27829                           Jordan 1871           0
## 27830                       Kazakhstan 1871           0
## 27831                            Kenya 1871           0
## 27832                         Kiribati 1871           0
## 27833                           Kuwait 1871           0
## 27834                       Kyrgysztan 1871           0
## 27835                       Kyrgyzstan 1871           0
## 27836                             Laos 1871           0
## 27837                           Latvia 1871           0
## 27838                          Lebanon 1871           0
## 27839                          Lesotho 1871           0
## 27840                          Liberia 1871           0
## 27841                            Libya 1871           0
## 27842                    Liechtenstein 1871           0
## 27843                        Lithuania 1871           0
## 27844                       Luxembourg 1871           0
## 27845                            Macao 1871           0
## 27846                        Macedonia 1871           0
## 27847                       Madagascar 1871           0
## 27848                           Malawi 1871           0
## 27849                         Malaysia 1871           0
## 27850                         Maldives 1871           0
## 27851                             Mali 1871           0
## 27852                            Malta 1871           0
## 27853                 Marshall Islands 1871           0
## 27854                       Martinique 1871           0
## 27855                       Mauritania 1871           0
## 27856                        Mauritius 1871           0
## 27857                           Mexico 1871           0
## 27858             Micronesia (country) 1871           0
## 27859                      Middle East 1871     1384992
## 27860                          Moldova 1871           0
## 27861                         Mongolia 1871           0
## 27862                       Montenegro 1871           0
## 27863                       Montserrat 1871           0
## 27864                          Morocco 1871           0
## 27865                       Mozambique 1871           0
## 27866                          Myanmar 1871           0
## 27867                          Namibia 1871           0
## 27868                            Nauru 1871           0
## 27869                            Nepal 1871           0
## 27870                      Netherlands 1871   107673968
## 27871                    New Caledonia 1871           0
## 27872                      New Zealand 1871           0
## 27873                        Nicaragua 1871           0
## 27874                            Niger 1871           0
## 27875                          Nigeria 1871           0
## 27876                             Niue 1871           0
## 27877                      North Korea 1871           0
## 27878                           Norway 1871     9328544
## 27879                             Oman 1871           0
## 27880                         Pakistan 1871           0
## 27881                            Palau 1871           0
## 27882                        Palestine 1871           0
## 27883                           Panama 1871           0
## 27884                 Papua New Guinea 1871           0
## 27885                         Paraguay 1871           0
## 27886                             Peru 1871           0
## 27887                      Philippines 1871           0
## 27888                           Poland 1871   262979936
## 27889                         Portugal 1871       58624
## 27890                            Qatar 1871           0
## 27891                          Reunion 1871           0
## 27892                          Romania 1871      238160
## 27893                           Russia 1871           0
## 27894                           Rwanda 1871           0
## 27895                     Saint Helena 1871           0
## 27896            Saint Kitts and Nevis 1871           0
## 27897                      Saint Lucia 1871           0
## 27898        Saint Pierre and Miquelon 1871           0
## 27899 Saint Vincent and the Grenadines 1871           0
## 27900                            Samoa 1871           0
## 27901            Sao Tome and Principe 1871           0
## 27902                     Saudi Arabia 1871           0
## 27903                          Senegal 1871           0
## 27904                           Serbia 1871           0
## 27905                       Seychelles 1871           0
## 27906                     Sierra Leone 1871           0
## 27907                        Singapore 1871           0
## 27908        Sint Maarten (Dutch part) 1871           0
## 27909                         Slovakia 1871           0
## 27910                         Slovenia 1871           0
## 27911                  Solomon Islands 1871           0
## 27912                          Somalia 1871           0
## 27913                     South Africa 1871           0
## 27914                      South Korea 1871           0
## 27915                      South Sudan 1871           0
## 27916                            Spain 1871    39278080
## 27917                        Sri Lanka 1871           0
## 27918                            Sudan 1871           0
## 27919                         Suriname 1871           0
## 27920                        Swaziland 1871           0
## 27921                           Sweden 1871    17891312
## 27922                      Switzerland 1871     8170720
## 27923                            Syria 1871           0
## 27924                           Taiwan 1871           0
## 27925                       Tajikistan 1871           0
## 27926                         Tanzania 1871           0
## 27927                         Thailand 1871           0
## 27928                            Timor 1871           0
## 27929                             Togo 1871           0
## 27930                            Tonga 1871           0
## 27931              Trinidad and Tobago 1871           0
## 27932                          Tunisia 1871           0
## 27933                           Turkey 1871     1384992
## 27934                     Turkmenistan 1871           0
## 27935         Turks and Caicos Islands 1871           0
## 27936                           Tuvalu 1871           0
## 27937                           Uganda 1871           0
## 27938                          Ukraine 1871           0
## 27939             United Arab Emirates 1871           0
## 27940                   United Kingdom 1871  7304231632
## 27941                    United States 1871  1333582416
## 27942                          Uruguay 1871           0
## 27943                       Uzbekistan 1871           0
## 27944                          Vanuatu 1871           0
## 27945                        Venezuela 1871           0
## 27946                          Vietnam 1871           0
## 27947        Wallis and Futuna Islands 1871           0
## 27948                            World 1871 12314671024
## 27949                            Yemen 1871           0
## 27950                           Zambia 1871           0
## 27951                         Zimbabwe 1871           0
## 27952                      Afghanistan 1872           0
## 27953                           Africa 1872           0
## 27954                          Albania 1872           0
## 27955                          Algeria 1872           0
## 27956                 Americas (other) 1872    15216592
## 27957                          Andorra 1872           0
## 27958                           Angola 1872           0
## 27959                         Anguilla 1872           0
## 27960              Antarctic Fisheries 1872           0
## 27961              Antigua and Barbuda 1872           0
## 27962                        Argentina 1872           0
## 27963                          Armenia 1872           0
## 27964                            Aruba 1872           0
## 27965         Asia and Pacific (other) 1872    25944784
## 27966                        Australia 1872     7196096
## 27967                          Austria 1872   151872800
## 27968                       Azerbaijan 1872           0
## 27969                          Bahamas 1872           0
## 27970                          Bahrain 1872           0
## 27971                       Bangladesh 1872           0
## 27972                         Barbados 1872           0
## 27973                          Belarus 1872           0
## 27974                          Belgium 1872   527564704
## 27975                           Belize 1872           0
## 27976                            Benin 1872           0
## 27977                          Bermuda 1872           0
## 27978                           Bhutan 1872           0
## 27979                          Bolivia 1872           0
## 27980  Bonaire Sint Eustatius and Saba 1872           0
## 27981           Bosnia and Herzegovina 1872           0
## 27982                         Botswana 1872           0
## 27983                           Brazil 1872           0
## 27984           British Virgin Islands 1872           0
## 27985                           Brunei 1872           0
## 27986                         Bulgaria 1872           0
## 27987                     Burkina Faso 1872           0
## 27988                          Burundi 1872           0
## 27989                         Cambodia 1872           0
## 27990                         Cameroon 1872           0
## 27991                           Canada 1872    15216592
## 27992                       Cape Verde 1872           0
## 27993                   Cayman Islands 1872           0
## 27994         Central African Republic 1872           0
## 27995                             Chad 1872           0
## 27996                            Chile 1872           0
## 27997                            China 1872           0
## 27998                 Christmas Island 1872           0
## 27999                         Colombia 1872           0
## 28000                          Comoros 1872           0
## 28001                            Congo 1872           0
## 28002                     Cook Islands 1872           0
## 28003                       Costa Rica 1872           0
## 28004                    Cote d'Ivoire 1872           0
## 28005                          Croatia 1872           0
## 28006                             Cuba 1872           0
## 28007                          Curacao 1872           0
## 28008                           Cyprus 1872           0
## 28009                   Czech Republic 1872           0
## 28010                   Czechoslovakia 1872    51420576
## 28011     Democratic Republic of Congo 1872           0
## 28012                          Denmark 1872    17946272
## 28013                         Djibouti 1872           0
## 28014                         Dominica 1872           0
## 28015               Dominican Republic 1872           0
## 28016                            EU-28 1872 11348976192
## 28017                          Ecuador 1872           0
## 28018                            Egypt 1872           0
## 28019                      El Salvador 1872           0
## 28020                Equatorial Guinea 1872           0
## 28021                          Eritrea 1872           0
## 28022                          Estonia 1872           0
## 28023                         Ethiopia 1872           0
## 28024                   Europe (other) 1872   103889056
## 28025                   Faeroe Islands 1872           0
## 28026                 Falkland Islands 1872           0
## 28027                             Fiji 1872           0
## 28028                          Finland 1872      956304
## 28029                           France 1872  1254410704
## 28030                    French Guiana 1872           0
## 28031                 French Polynesia 1872           0
## 28032                            Gabon 1872           0
## 28033                           Gambia 1872           0
## 28034                          Georgia 1872           0
## 28035                          Germany 1872  1328595712
## 28036                            Ghana 1872           0
## 28037                        Gibraltar 1872           0
## 28038                           Greece 1872     1121184
## 28039                        Greenland 1872           0
## 28040                          Grenada 1872           0
## 28041                       Guadeloupe 1872           0
## 28042                        Guatemala 1872           0
## 28043                           Guinea 1872           0
## 28044                    Guinea-Bissau 1872           0
## 28045                           Guyana 1872           0
## 28046                            Haiti 1872           0
## 28047                         Honduras 1872           0
## 28048                        Hong Kong 1872           0
## 28049                          Hungary 1872    26926736
## 28050                          Iceland 1872           0
## 28051                            India 1872     5653552
## 28052                        Indonesia 1872           0
## 28053                             Iran 1872           0
## 28054                             Iraq 1872           0
## 28055                          Ireland 1872      395712
## 28056                           Israel 1872           0
## 28057                            Italy 1872    20349856
## 28058                          Jamaica 1872           0
## 28059                            Japan 1872      106256
## 28060                           Jordan 1872           0
## 28061                       Kazakhstan 1872           0
## 28062                            Kenya 1872           0
## 28063                         Kiribati 1872           0
## 28064                           Kuwait 1872           0
## 28065                       Kyrgysztan 1872           0
## 28066                       Kyrgyzstan 1872           0
## 28067                             Laos 1872           0
## 28068                           Latvia 1872           0
## 28069                          Lebanon 1872           0
## 28070                          Lesotho 1872           0
## 28071                          Liberia 1872           0
## 28072                            Libya 1872           0
## 28073                    Liechtenstein 1872           0
## 28074                        Lithuania 1872           0
## 28075                       Luxembourg 1872           0
## 28076                            Macao 1872           0
## 28077                        Macedonia 1872           0
## 28078                       Madagascar 1872           0
## 28079                           Malawi 1872           0
## 28080                         Malaysia 1872           0
## 28081                         Maldives 1872           0
## 28082                             Mali 1872           0
## 28083                            Malta 1872           0
## 28084                 Marshall Islands 1872           0
## 28085                       Martinique 1872           0
## 28086                       Mauritania 1872           0
## 28087                        Mauritius 1872           0
## 28088                           Mexico 1872           0
## 28089             Micronesia (country) 1872           0
## 28090                      Middle East 1872     1630480
## 28091                          Moldova 1872           0
## 28092                         Mongolia 1872           0
## 28093                       Montenegro 1872           0
## 28094                       Montserrat 1872           0
## 28095                          Morocco 1872           0
## 28096                       Mozambique 1872           0
## 28097                          Myanmar 1872           0
## 28098                          Namibia 1872           0
## 28099                            Nauru 1872           0
## 28100                            Nepal 1872           0
## 28101                      Netherlands 1872   113005088
## 28102                    New Caledonia 1872           0
## 28103                      New Zealand 1872           0
## 28104                        Nicaragua 1872           0
## 28105                            Niger 1872           0
## 28106                          Nigeria 1872           0
## 28107                             Niue 1872           0
## 28108                      North Korea 1872           0
## 28109                           Norway 1872     9984400
## 28110                             Oman 1872           0
## 28111                         Pakistan 1872           0
## 28112                            Palau 1872           0
## 28113                        Palestine 1872           0
## 28114                           Panama 1872           0
## 28115                 Papua New Guinea 1872           0
## 28116                         Paraguay 1872           0
## 28117                             Peru 1872           0
## 28118                      Philippines 1872           0
## 28119                           Poland 1872   283611920
## 28120                         Portugal 1872      578912
## 28121                            Qatar 1872           0
## 28122                          Reunion 1872           0
## 28123                          Romania 1872      278464
## 28124                           Russia 1872           0
## 28125                           Rwanda 1872           0
## 28126                     Saint Helena 1872           0
## 28127            Saint Kitts and Nevis 1872           0
## 28128                      Saint Lucia 1872           0
## 28129        Saint Pierre and Miquelon 1872           0
## 28130 Saint Vincent and the Grenadines 1872           0
## 28131                            Samoa 1872           0
## 28132            Sao Tome and Principe 1872           0
## 28133                     Saudi Arabia 1872           0
## 28134                          Senegal 1872           0
## 28135                           Serbia 1872           0
## 28136                       Seychelles 1872           0
## 28137                     Sierra Leone 1872           0
## 28138                        Singapore 1872           0
## 28139        Sint Maarten (Dutch part) 1872           0
## 28140                         Slovakia 1872           0
## 28141                         Slovenia 1872           0
## 28142                  Solomon Islands 1872           0
## 28143                          Somalia 1872           0
## 28144                     South Africa 1872           0
## 28145                      South Korea 1872           0
## 28146                      South Sudan 1872           0
## 28147                            Spain 1872    42539040
## 28148                        Sri Lanka 1872           0
## 28149                            Sudan 1872           0
## 28150                         Suriname 1872           0
## 28151                        Swaziland 1872           0
## 28152                           Sweden 1872    19602400
## 28153                      Switzerland 1872     9445792
## 28154                            Syria 1872           0
## 28155                           Taiwan 1872           0
## 28156                       Tajikistan 1872           0
## 28157                         Tanzania 1872           0
## 28158                         Thailand 1872           0
## 28159                            Timor 1872           0
## 28160                             Togo 1872           0
## 28161                            Tonga 1872           0
## 28162              Trinidad and Tobago 1872           0
## 28163                          Tunisia 1872           0
## 28164                           Turkey 1872     1630480
## 28165                     Turkmenistan 1872           0
## 28166         Turks and Caicos Islands 1872           0
## 28167                           Tuvalu 1872           0
## 28168                           Uganda 1872           0
## 28169                          Ukraine 1872           0
## 28170             United Arab Emirates 1872           0
## 28171                   United Kingdom 1872  7559220384
## 28172                    United States 1872  1459887824
## 28173                          Uruguay 1872           0
## 28174                       Uzbekistan 1872           0
## 28175                          Vanuatu 1872           0
## 28176                        Venezuela 1872           0
## 28177                          Vietnam 1872           0
## 28178        Wallis and Futuna Islands 1872           0
## 28179                            World 1872 12941042816
## 28180                            Yemen 1872           0
## 28181                           Zambia 1872           0
## 28182                         Zimbabwe 1872           0
## 28183                      Afghanistan 1873           0
## 28184                           Africa 1873           0
## 28185                          Albania 1873           0
## 28186                          Algeria 1873           0
## 28187                 Americas (other) 1873    16828752
## 28188                          Andorra 1873           0
## 28189                           Angola 1873           0
## 28190                         Anguilla 1873           0
## 28191              Antarctic Fisheries 1873           0
## 28192              Antigua and Barbuda 1873           0
## 28193                        Argentina 1873           0
## 28194                          Armenia 1873           0
## 28195                            Aruba 1873           0
## 28196         Asia and Pacific (other) 1873    29839616
## 28197                        Australia 1873     8064464
## 28198                          Austria 1873   162600992
## 28199                       Azerbaijan 1873           0
## 28200                          Bahamas 1873           0
## 28201                          Bahrain 1873           0
## 28202                       Bangladesh 1873           0
## 28203                         Barbados 1873           0
## 28204                          Belarus 1873           0
## 28205                          Belgium 1873   555671248
## 28206                           Belize 1873           0
## 28207                            Benin 1873           0
## 28208                          Bermuda 1873           0
## 28209                           Bhutan 1873           0
## 28210                          Bolivia 1873           0
## 28211  Bonaire Sint Eustatius and Saba 1873           0
## 28212           Bosnia and Herzegovina 1873           0
## 28213                         Botswana 1873           0
## 28214                           Brazil 1873           0
## 28215           British Virgin Islands 1873           0
## 28216                           Brunei 1873           0
## 28217                         Bulgaria 1873           0
## 28218                     Burkina Faso 1873           0
## 28219                          Burundi 1873           0
## 28220                         Cambodia 1873           0
## 28221                         Cameroon 1873           0
## 28222                           Canada 1873    16825088
## 28223                       Cape Verde 1873           0
## 28224                   Cayman Islands 1873           0
## 28225         Central African Republic 1873           0
## 28226                             Chad 1873           0
## 28227                            Chile 1873           0
## 28228                            China 1873           0
## 28229                 Christmas Island 1873           0
## 28230                         Colombia 1873           0
## 28231                          Comoros 1873           0
## 28232                            Congo 1873           0
## 28233                     Cook Islands 1873           0
## 28234                       Costa Rica 1873           0
## 28235                    Cote d'Ivoire 1873           0
## 28236                          Croatia 1873           0
## 28237                             Cuba 1873           0
## 28238                          Curacao 1873           0
## 28239                           Cyprus 1873           0
## 28240                   Czech Republic 1873           0
## 28241                   Czechoslovakia 1873    59679232
## 28242     Democratic Republic of Congo 1873           0
## 28243                          Denmark 1873    19096768
## 28244                         Djibouti 1873           0
## 28245                         Dominica 1873           0
## 28246               Dominican Republic 1873           0
## 28247                            EU-28 1873 11856938496
## 28248                          Ecuador 1873           0
## 28249                            Egypt 1873           0
## 28250                      El Salvador 1873           0
## 28251                Equatorial Guinea 1873           0
## 28252                          Eritrea 1873           0
## 28253                          Estonia 1873           0
## 28254                         Ethiopia 1873           0
## 28255                   Europe (other) 1873   119087328
## 28256                   Faeroe Islands 1873           0
## 28257                 Falkland Islands 1873           0
## 28258                             Fiji 1873           0
## 28259                          Finland 1873     1044240
## 28260                           France 1873  1320260112
## 28261                    French Guiana 1873           0
## 28262                 French Polynesia 1873           0
## 28263                            Gabon 1873           0
## 28264                           Gambia 1873           0
## 28265                          Georgia 1873           0
## 28266                          Germany 1873  1426963120
## 28267                            Ghana 1873           0
## 28268                        Gibraltar 1873           0
## 28269                           Greece 1873     1315376
## 28270                        Greenland 1873           0
## 28271                          Grenada 1873           0
## 28272                       Guadeloupe 1873           0
## 28273                        Guatemala 1873           0
## 28274                           Guinea 1873           0
## 28275                    Guinea-Bissau 1873           0
## 28276                           Guyana 1873           0
## 28277                            Haiti 1873           0
## 28278                         Honduras 1873           0
## 28279                        Hong Kong 1873           0
## 28280                          Hungary 1873    29843280
## 28281                          Iceland 1873           0
## 28282                            India 1873     5653552
## 28283                        Indonesia 1873           0
## 28284                             Iran 1873           0
## 28285                             Iraq 1873           0
## 28286                          Ireland 1873      395712
## 28287                           Israel 1873           0
## 28288                            Italy 1873    23119840
## 28289                          Jamaica 1873           0
## 28290                            Japan 1873      146560
## 28291                           Jordan 1873           0
## 28292                       Kazakhstan 1873           0
## 28293                            Kenya 1873           0
## 28294                         Kiribati 1873           0
## 28295                           Kuwait 1873           0
## 28296                       Kyrgysztan 1873           0
## 28297                       Kyrgyzstan 1873           0
## 28298                             Laos 1873           0
## 28299                           Latvia 1873           0
## 28300                          Lebanon 1873           0
## 28301                          Lesotho 1873           0
## 28302                          Liberia 1873           0
## 28303                            Libya 1873           0
## 28304                    Liechtenstein 1873           0
## 28305                        Lithuania 1873           0
## 28306                       Luxembourg 1873           0
## 28307                            Macao 1873           0
## 28308                        Macedonia 1873           0
## 28309                       Madagascar 1873           0
## 28310                           Malawi 1873           0
## 28311                         Malaysia 1873           0
## 28312                         Maldives 1873           0
## 28313                             Mali 1873           0
## 28314                            Malta 1873           0
## 28315                 Marshall Islands 1873           0
## 28316                       Martinique 1873           0
## 28317                       Mauritania 1873           0
## 28318                        Mauritius 1873           0
## 28319                           Mexico 1873           0
## 28320             Micronesia (country) 1873           0
## 28321                      Middle East 1873     1868640
## 28322                          Moldova 1873           0
## 28323                         Mongolia 1873           0
## 28324                       Montenegro 1873           0
## 28325                       Montserrat 1873           0
## 28326                          Morocco 1873           0
## 28327                       Mozambique 1873           0
## 28328                          Myanmar 1873           0
## 28329                          Namibia 1873           0
## 28330                            Nauru 1873           0
## 28331                            Nepal 1873           0
## 28332                      Netherlands 1873   118145680
## 28333                    New Caledonia 1873           0
## 28334                      New Zealand 1873           0
## 28335                        Nicaragua 1873           0
## 28336                            Niger 1873           0
## 28337                          Nigeria 1873           0
## 28338                             Niue 1873           0
## 28339                      North Korea 1873           0
## 28340                           Norway 1873    10643920
## 28341                             Oman 1873           0
## 28342                         Pakistan 1873           0
## 28343                            Palau 1873           0
## 28344                        Palestine 1873           0
## 28345                           Panama 1873           0
## 28346                 Papua New Guinea 1873           0
## 28347                         Paraguay 1873           0
## 28348                             Peru 1873           0
## 28349                      Philippines 1873           0
## 28350                           Poland 1873   305962320
## 28351                         Portugal 1873     1304384
## 28352                            Qatar 1873           0
## 28353                          Reunion 1873           0
## 28354                          Romania 1873      322432
## 28355                           Russia 1873           0
## 28356                           Rwanda 1873           0
## 28357                     Saint Helena 1873           0
## 28358            Saint Kitts and Nevis 1873           0
## 28359                      Saint Lucia 1873           0
## 28360        Saint Pierre and Miquelon 1873           0
## 28361 Saint Vincent and the Grenadines 1873           0
## 28362                            Samoa 1873           0
## 28363            Sao Tome and Principe 1873           0
## 28364                     Saudi Arabia 1873           0
## 28365                          Senegal 1873           0
## 28366                           Serbia 1873           0
## 28367                       Seychelles 1873           0
## 28368                     Sierra Leone 1873           0
## 28369                        Singapore 1873           0
## 28370        Sint Maarten (Dutch part) 1873           0
## 28371                         Slovakia 1873           0
## 28372                         Slovenia 1873           0
## 28373                  Solomon Islands 1873           0
## 28374                          Somalia 1873           0
## 28375                     South Africa 1873           0
## 28376                      South Korea 1873           0
## 28377                      South Sudan 1873           0
## 28378                            Spain 1873    45675424
## 28379                        Sri Lanka 1873           0
## 28380                            Sudan 1873           0
## 28381                         Suriname 1873           0
## 28382                        Swaziland 1873           0
## 28383                           Sweden 1873    21339136
## 28384                      Switzerland 1873    10684224
## 28385                            Syria 1873           0
## 28386                           Taiwan 1873           0
## 28387                       Tajikistan 1873           0
## 28388                         Tanzania 1873           0
## 28389                         Thailand 1873           0
## 28390                            Timor 1873           0
## 28391                             Togo 1873           0
## 28392                            Tonga 1873           0
## 28393              Trinidad and Tobago 1873           0
## 28394                          Tunisia 1873           0
## 28395                           Turkey 1873     1868640
## 28396                     Turkmenistan 1873           0
## 28397         Turks and Caicos Islands 1873           0
## 28398                           Tuvalu 1873           0
## 28399                           Uganda 1873           0
## 28400                          Ukraine 1873           0
## 28401             United Arab Emirates 1873           0
## 28402                   United Kingdom 1873  7823878432
## 28403                    United States 1873  1599394624
## 28404                          Uruguay 1873           0
## 28405                       Uzbekistan 1873           0
## 28406                          Vanuatu 1873           0
## 28407                        Venezuela 1873           0
## 28408                          Vietnam 1873           0
## 28409        Wallis and Futuna Islands 1873           0
## 28410                            World 1873 13606461856
## 28411                            Yemen 1873           0
## 28412                           Zambia 1873           0
## 28413                         Zimbabwe 1873           0
## 28414                      Afghanistan 1874           0
## 28415                           Africa 1874           0
## 28416                          Albania 1874           0
## 28417                          Algeria 1874           0
## 28418                 Americas (other) 1874    18448240
## 28419                          Andorra 1874           0
## 28420                           Angola 1874           0
## 28421                         Anguilla 1874           0
## 28422              Antarctic Fisheries 1874           0
## 28423              Antigua and Barbuda 1874           0
## 28424                        Argentina 1874           0
## 28425                          Armenia 1874           0
## 28426                            Aruba 1874           0
## 28427         Asia and Pacific (other) 1874    34012912
## 28428                        Australia 1874     8954816
## 28429                          Austria 1874   171753664
## 28430                       Azerbaijan 1874           0
## 28431                          Bahamas 1874           0
## 28432                          Bahrain 1874           0
## 28433                       Bangladesh 1874           0
## 28434                         Barbados 1874           0
## 28435                          Belarus 1874           0
## 28436                          Belgium 1874   581586720
## 28437                           Belize 1874           0
## 28438                            Benin 1874           0
## 28439                          Bermuda 1874           0
## 28440                           Bhutan 1874           0
## 28441                          Bolivia 1874           0
## 28442  Bonaire Sint Eustatius and Saba 1874           0
## 28443           Bosnia and Herzegovina 1874           0
## 28444                         Botswana 1874           0
## 28445                           Brazil 1874           0
## 28446           British Virgin Islands 1874           0
## 28447                           Brunei 1874           0
## 28448                         Bulgaria 1874           0
## 28449                     Burkina Faso 1874           0
## 28450                          Burundi 1874           0
## 28451                         Cambodia 1874           0
## 28452                         Cameroon 1874           0
## 28453                           Canada 1874    18448240
## 28454                       Cape Verde 1874           0
## 28455                   Cayman Islands 1874           0
## 28456         Central African Republic 1874           0
## 28457                             Chad 1874           0
## 28458                            Chile 1874           0
## 28459                            China 1874           0
## 28460                 Christmas Island 1874           0
## 28461                         Colombia 1874           0
## 28462                          Comoros 1874           0
## 28463                            Congo 1874           0
## 28464                     Cook Islands 1874           0
## 28465                       Costa Rica 1874           0
## 28466                    Cote d'Ivoire 1874           0
## 28467                          Croatia 1874           0
## 28468                             Cuba 1874           0
## 28469                          Curacao 1874           0
## 28470                           Cyprus 1874           0
## 28471                   Czech Republic 1874           0
## 28472                   Czechoslovakia 1874    68553440
## 28473     Democratic Republic of Congo 1874           0
## 28474                          Denmark 1874    20338864
## 28475                         Djibouti 1874           0
## 28476                         Dominica 1874           0
## 28477               Dominican Republic 1874           0
## 28478                            EU-28 1874 12325307616
## 28479                          Ecuador 1874           0
## 28480                            Egypt 1874           0
## 28481                      El Salvador 1874           0
## 28482                Equatorial Guinea 1874           0
## 28483                          Eritrea 1874           0
## 28484                          Estonia 1874           0
## 28485                         Ethiopia 1874           0
## 28486                   Europe (other) 1874   136058976
## 28487                   Faeroe Islands 1874           0
## 28488                 Falkland Islands 1874           0
## 28489                             Fiji 1874           0
## 28490                          Finland 1874     1168816
## 28491                           France 1874  1382903520
## 28492                    French Guiana 1874           0
## 28493                 French Polynesia 1874           0
## 28494                            Gabon 1874           0
## 28495                           Gambia 1874           0
## 28496                          Georgia 1874           0
## 28497                          Germany 1874  1498557680
## 28498                            Ghana 1874           0
## 28499                        Gibraltar 1874           0
## 28500                           Greece 1874     1465600
## 28501                        Greenland 1874           0
## 28502                          Grenada 1874           0
## 28503                       Guadeloupe 1874           0
## 28504                        Guatemala 1874           0
## 28505                           Guinea 1874           0
## 28506                    Guinea-Bissau 1874           0
## 28507                           Guyana 1874           0
## 28508                            Haiti 1874           0
## 28509                         Honduras 1874           0
## 28510                        Hong Kong 1874           0
## 28511                          Hungary 1874    32400752
## 28512                          Iceland 1874           0
## 28513                            India 1874     5653552
## 28514                        Indonesia 1874           0
## 28515                             Iran 1874           0
## 28516                             Iraq 1874           0
## 28517                          Ireland 1874      395712
## 28518                           Israel 1874           0
## 28519                            Italy 1874    26116992
## 28520                          Jamaica 1874           0
## 28521                            Japan 1874      732800
## 28522                           Jordan 1874           0
## 28523                       Kazakhstan 1874           0
## 28524                            Kenya 1874           0
## 28525                         Kiribati 1874           0
## 28526                           Kuwait 1874           0
## 28527                       Kyrgysztan 1874           0
## 28528                       Kyrgyzstan 1874           0
## 28529                             Laos 1874           0
## 28530                           Latvia 1874           0
## 28531                          Lebanon 1874           0
## 28532                          Lesotho 1874           0
## 28533                          Liberia 1874           0
## 28534                            Libya 1874           0
## 28535                    Liechtenstein 1874           0
## 28536                        Lithuania 1874           0
## 28537                       Luxembourg 1874           0
## 28538                            Macao 1874           0
## 28539                        Macedonia 1874           0
## 28540                       Madagascar 1874           0
## 28541                           Malawi 1874           0
## 28542                         Malaysia 1874           0
## 28543                         Maldives 1874           0
## 28544                             Mali 1874           0
## 28545                            Malta 1874           0
## 28546                 Marshall Islands 1874           0
## 28547                       Martinique 1874           0
## 28548                       Mauritania 1874           0
## 28549                        Mauritius 1874           0
## 28550                           Mexico 1874           0
## 28551             Micronesia (country) 1874           0
## 28552                      Middle East 1874     2125120
## 28553                          Moldova 1874           0
## 28554                         Mongolia 1874           0
## 28555                       Montenegro 1874           0
## 28556                       Montserrat 1874           0
## 28557                          Morocco 1874           0
## 28558                       Mozambique 1874           0
## 28559                          Myanmar 1874           0
## 28560                          Namibia 1874           0
## 28561                            Nauru 1874           0
## 28562                            Nepal 1874           0
## 28563                      Netherlands 1874   122886896
## 28564                    New Caledonia 1874           0
## 28565                      New Zealand 1874           0
## 28566                        Nicaragua 1874           0
## 28567                            Niger 1874           0
## 28568                          Nigeria 1874           0
## 28569                             Niue 1874           0
## 28570                      North Korea 1874           0
## 28571                           Norway 1874    11460992
## 28572                             Oman 1874           0
## 28573                         Pakistan 1874           0
## 28574                            Palau 1874           0
## 28575                        Palestine 1874           0
## 28576                           Panama 1874           0
## 28577                 Papua New Guinea 1874           0
## 28578                         Paraguay 1874           0
## 28579                             Peru 1874           0
## 28580                      Philippines 1874           0
## 28581                           Poland 1874   330459824
## 28582                         Portugal 1874     1835664
## 28583                            Qatar 1874           0
## 28584                          Reunion 1874           0
## 28585                          Romania 1874      366400
## 28586                           Russia 1874           0
## 28587                           Rwanda 1874           0
## 28588                     Saint Helena 1874           0
## 28589            Saint Kitts and Nevis 1874           0
## 28590                      Saint Lucia 1874           0
## 28591        Saint Pierre and Miquelon 1874           0
## 28592 Saint Vincent and the Grenadines 1874           0
## 28593                            Samoa 1874           0
## 28594            Sao Tome and Principe 1874           0
## 28595                     Saudi Arabia 1874           0
## 28596                          Senegal 1874           0
## 28597                           Serbia 1874           0
## 28598                       Seychelles 1874           0
## 28599                     Sierra Leone 1874           0
## 28600                        Singapore 1874           0
## 28601        Sint Maarten (Dutch part) 1874           0
## 28602                         Slovakia 1874           0
## 28603                         Slovenia 1874           0
## 28604                  Solomon Islands 1874           0
## 28605                          Somalia 1874           0
## 28606                     South Africa 1874           0
## 28607                      South Korea 1874           0
## 28608                      South Sudan 1874           0
## 28609                            Spain 1874    48793488
## 28610                        Sri Lanka 1874           0
## 28611                            Sudan 1874           0
## 28612                         Suriname 1874           0
## 28613                        Swaziland 1874           0
## 28614                           Sweden 1874    23211440
## 28615                      Switzerland 1874    11853040
## 28616                            Syria 1874           0
## 28617                           Taiwan 1874           0
## 28618                       Tajikistan 1874           0
## 28619                         Tanzania 1874           0
## 28620                         Thailand 1874           0
## 28621                            Timor 1874           0
## 28622                             Togo 1874           0
## 28623                            Tonga 1874           0
## 28624              Trinidad and Tobago 1874           0
## 28625                          Tunisia 1874           0
## 28626                           Turkey 1874     2125120
## 28627                     Turkmenistan 1874           0
## 28628         Turks and Caicos Islands 1874           0
## 28629                           Tuvalu 1874           0
## 28630                           Uganda 1874           0
## 28631                          Ukraine 1874           0
## 28632             United Arab Emirates 1874           0
## 28633                   United Kingdom 1874  8081065584
## 28634                    United States 1874  1733691216
## 28635                          Uruguay 1874           0
## 28636                       Uzbekistan 1874           0
## 28637                          Vanuatu 1874           0
## 28638                        Venezuela 1874           0
## 28639                          Vietnam 1874           0
## 28640        Wallis and Futuna Islands 1874           0
## 28641                            World 1874 14229459104
## 28642                            Yemen 1874           0
## 28643                           Zambia 1874           0
## 28644                         Zimbabwe 1874           0
## 28645                      Afghanistan 1875           0
## 28646                           Africa 1875           0
## 28647                          Albania 1875           0
## 28648                          Algeria 1875           0
## 28649                 Americas (other) 1875    20324208
## 28650                          Andorra 1875           0
## 28651                           Angola 1875           0
## 28652                         Anguilla 1875           0
## 28653              Antarctic Fisheries 1875           0
## 28654              Antigua and Barbuda 1875           0
## 28655                        Argentina 1875           0
## 28656                          Armenia 1875           0
## 28657                            Aruba 1875           0
## 28658         Asia and Pacific (other) 1875    39307392
## 28659                        Australia 1875     9782880
## 28660                          Austria 1875   179612944
## 28661                       Azerbaijan 1875           0
## 28662                          Bahamas 1875           0
## 28663                          Bahrain 1875           0
## 28664                       Bangladesh 1875           0
## 28665                         Barbados 1875           0
## 28666                          Belarus 1875           0
## 28667                          Belgium 1875   608517120
## 28668                           Belize 1875           0
## 28669                            Benin 1875           0
## 28670                          Bermuda 1875           0
## 28671                           Bhutan 1875           0
## 28672                          Bolivia 1875           0
## 28673  Bonaire Sint Eustatius and Saba 1875           0
## 28674           Bosnia and Herzegovina 1875           0
## 28675                         Botswana 1875           0
## 28676                           Brazil 1875           0
## 28677           British Virgin Islands 1875           0
## 28678                           Brunei 1875           0
## 28679                         Bulgaria 1875           0
## 28680                     Burkina Faso 1875           0
## 28681                          Burundi 1875           0
## 28682                         Cambodia 1875           0
## 28683                         Cameroon 1875           0
## 28684                           Canada 1875    20324208
## 28685                       Cape Verde 1875           0
## 28686                   Cayman Islands 1875           0
## 28687         Central African Republic 1875           0
## 28688                             Chad 1875           0
## 28689                            Chile 1875           0
## 28690                            China 1875           0
## 28691                 Christmas Island 1875           0
## 28692                         Colombia 1875           0
## 28693                          Comoros 1875           0
## 28694                            Congo 1875           0
## 28695                     Cook Islands 1875           0
## 28696                       Costa Rica 1875           0
## 28697                    Cote d'Ivoire 1875           0
## 28698                          Croatia 1875           0
## 28699                             Cuba 1875           0
## 28700                          Curacao 1875           0
## 28701                           Cyprus 1875           0
## 28702                   Czech Republic 1875           0
## 28703                   Czechoslovakia 1875    78043200
## 28704     Democratic Republic of Congo 1875           0
## 28705                          Denmark 1875    21797136
## 28706                         Djibouti 1875           0
## 28707                         Dominica 1875           0
## 28708               Dominican Republic 1875           0
## 28709                            EU-28 1875 12842030544
## 28710                          Ecuador 1875           0
## 28711                            Egypt 1875           0
## 28712                      El Salvador 1875           0
## 28713                Equatorial Guinea 1875           0
## 28714                          Eritrea 1875           0
## 28715                          Estonia 1875           0
## 28716                         Ethiopia 1875           0
## 28717                   Europe (other) 1875   154888272
## 28718                   Faeroe Islands 1875           0
## 28719                 Falkland Islands 1875           0
## 28720                             Fiji 1875           0
## 28721                          Finland 1875     1253088
## 28722                           France 1875  1448163024
## 28723                    French Guiana 1875           0
## 28724                 French Polynesia 1875           0
## 28725                            Gabon 1875           0
## 28726                           Gambia 1875           0
## 28727                          Georgia 1875           0
## 28728                          Germany 1875  1600076128
## 28729                            Ghana 1875           0
## 28730                        Gibraltar 1875           0
## 28731                           Greece 1875     1630480
## 28732                        Greenland 1875           0
## 28733                          Grenada 1875           0
## 28734                       Guadeloupe 1875           0
## 28735                        Guatemala 1875           0
## 28736                           Guinea 1875           0
## 28737                    Guinea-Bissau 1875           0
## 28738                           Guyana 1875           0
## 28739                            Haiti 1875           0
## 28740                         Honduras 1875           0
## 28741                        Hong Kong 1875           0
## 28742                          Hungary 1875    35035168
## 28743                          Iceland 1875           0
## 28744                            India 1875     5653552
## 28745                        Indonesia 1875           0
## 28746                             Iran 1875           0
## 28747                             Iraq 1875           0
## 28748                          Ireland 1875      395712
## 28749                           Israel 1875           0
## 28750                            Italy 1875    29183760
## 28751                          Jamaica 1875           0
## 28752                            Japan 1875     2172752
## 28753                           Jordan 1875           0
## 28754                       Kazakhstan 1875           0
## 28755                            Kenya 1875           0
## 28756                         Kiribati 1875           0
## 28757                           Kuwait 1875           0
## 28758                       Kyrgysztan 1875           0
## 28759                       Kyrgyzstan 1875           0
## 28760                             Laos 1875           0
## 28761                           Latvia 1875           0
## 28762                          Lebanon 1875           0
## 28763                          Lesotho 1875           0
## 28764                          Liberia 1875           0
## 28765                            Libya 1875           0
## 28766                    Liechtenstein 1875           0
## 28767                        Lithuania 1875           0
## 28768                       Luxembourg 1875           0
## 28769                            Macao 1875           0
## 28770                        Macedonia 1875           0
## 28771                       Madagascar 1875           0
## 28772                           Malawi 1875           0
## 28773                         Malaysia 1875           0
## 28774                         Maldives 1875           0
## 28775                             Mali 1875           0
## 28776                            Malta 1875           0
## 28777                 Marshall Islands 1875           0
## 28778                       Martinique 1875           0
## 28779                       Mauritania 1875           0
## 28780                        Mauritius 1875           0
## 28781                           Mexico 1875           0
## 28782             Micronesia (country) 1875           0
## 28783                      Middle East 1875     2476864
## 28784                          Moldova 1875           0
## 28785                         Mongolia 1875           0
## 28786                       Montenegro 1875           0
## 28787                       Montserrat 1875           0
## 28788                          Morocco 1875           0
## 28789                       Mozambique 1875           0
## 28790                          Myanmar 1875           0
## 28791                          Namibia 1875           0
## 28792                            Nauru 1875           0
## 28793                            Nepal 1875           0
## 28794                      Netherlands 1875   128305952
## 28795                    New Caledonia 1875           0
## 28796                      New Zealand 1875           0
## 28797                        Nicaragua 1875           0
## 28798                            Niger 1875           0
## 28799                          Nigeria 1875           0
## 28800                             Niue 1875           0
## 28801                      North Korea 1875           0
## 28802                           Norway 1875    12486912
## 28803                             Oman 1875           0
## 28804                         Pakistan 1875           0
## 28805                            Palau 1875           0
## 28806                        Palestine 1875           0
## 28807                           Panama 1875           0
## 28808                 Papua New Guinea 1875           0
## 28809                         Paraguay 1875           0
## 28810                             Peru 1875           0
## 28811                      Philippines 1875           0
## 28812                           Poland 1875   354517648
## 28813                         Portugal 1875     3004480
## 28814                            Qatar 1875           0
## 28815                          Reunion 1875           0
## 28816                          Romania 1875      414032
## 28817                           Russia 1875           0
## 28818                           Rwanda 1875           0
## 28819                     Saint Helena 1875           0
## 28820            Saint Kitts and Nevis 1875           0
## 28821                      Saint Lucia 1875           0
## 28822        Saint Pierre and Miquelon 1875           0
## 28823 Saint Vincent and the Grenadines 1875           0
## 28824                            Samoa 1875           0
## 28825            Sao Tome and Principe 1875           0
## 28826                     Saudi Arabia 1875           0
## 28827                          Senegal 1875           0
## 28828                           Serbia 1875           0
## 28829                       Seychelles 1875           0
## 28830                     Sierra Leone 1875           0
## 28831                        Singapore 1875           0
## 28832        Sint Maarten (Dutch part) 1875           0
## 28833                         Slovakia 1875           0
## 28834                         Slovenia 1875           0
## 28835                  Solomon Islands 1875           0
## 28836                          Somalia 1875           0
## 28837                     South Africa 1875           0
## 28838                      South Korea 1875           0
## 28839                      South Sudan 1875           0
## 28840                            Spain 1875    52083760
## 28841                        Sri Lanka 1875           0
## 28842                            Sudan 1875           0
## 28843                         Suriname 1875           0
## 28844                        Swaziland 1875           0
## 28845                           Sweden 1875    25486784
## 28846                      Switzerland 1875    13131776
## 28847                            Syria 1875           0
## 28848                           Taiwan 1875           0
## 28849                       Tajikistan 1875           0
## 28850                         Tanzania 1875           0
## 28851                         Thailand 1875           0
## 28852                            Timor 1875           0
## 28853                             Togo 1875           0
## 28854                            Tonga 1875           0
## 28855              Trinidad and Tobago 1875           0
## 28856                          Tunisia 1875           0
## 28857                           Turkey 1875     2476864
## 28858                     Turkmenistan 1875           0
## 28859         Turks and Caicos Islands 1875           0
## 28860                           Tuvalu 1875           0
## 28861                           Uganda 1875           0
## 28862                          Ukraine 1875           0
## 28863             United Arab Emirates 1875           0
## 28864                   United Kingdom 1875  8352553328
## 28865                    United States 1875  1869438752
## 28866                          Uruguay 1875           0
## 28867                       Uzbekistan 1875           0
## 28868                          Vanuatu 1875           0
## 28869                        Venezuela 1875           0
## 28870                          Vietnam 1875           0
## 28871        Wallis and Futuna Islands 1875           0
## 28872                            World 1875 14905258256
## 28873                            Yemen 1875           0
## 28874                           Zambia 1875           0
## 28875                         Zimbabwe 1875           0
## 28876                      Afghanistan 1876           0
## 28877                           Africa 1876           0
## 28878                          Albania 1876           0
## 28879                          Algeria 1876           0
## 28880                 Americas (other) 1876    22181856
## 28881                          Andorra 1876           0
## 28882                           Angola 1876           0
## 28883                         Anguilla 1876           0
## 28884              Antarctic Fisheries 1876           0
## 28885              Antigua and Barbuda 1876           0
## 28886                        Argentina 1876           0
## 28887                          Armenia 1876           0
## 28888                            Aruba 1876           0
## 28889         Asia and Pacific (other) 1876    44993920
## 28890                        Australia 1876    10713536
## 28891                          Austria 1876   187703056
## 28892                       Azerbaijan 1876           0
## 28893                          Bahamas 1876           0
## 28894                          Bahrain 1876           0
## 28895                       Bangladesh 1876           0
## 28896                         Barbados 1876           0
## 28897                          Belarus 1876           0
## 28898                          Belgium 1876   634835632
## 28899                           Belize 1876           0
## 28900                            Benin 1876           0
## 28901                          Bermuda 1876           0
## 28902                           Bhutan 1876           0
## 28903                          Bolivia 1876           0
## 28904  Bonaire Sint Eustatius and Saba 1876           0
## 28905           Bosnia and Herzegovina 1876           0
## 28906                         Botswana 1876           0
## 28907                           Brazil 1876           0
## 28908           British Virgin Islands 1876           0
## 28909                           Brunei 1876           0
## 28910                         Bulgaria 1876           0
## 28911                     Burkina Faso 1876           0
## 28912                          Burundi 1876           0
## 28913                         Cambodia 1876           0
## 28914                         Cameroon 1876           0
## 28915                           Canada 1876    22181856
## 28916                       Cape Verde 1876           0
## 28917                   Cayman Islands 1876           0
## 28918         Central African Republic 1876           0
## 28919                             Chad 1876           0
## 28920                            Chile 1876           0
## 28921                            China 1876           0
## 28922                 Christmas Island 1876           0
## 28923                         Colombia 1876           0
## 28924                          Comoros 1876           0
## 28925                            Congo 1876           0
## 28926                     Cook Islands 1876           0
## 28927                       Costa Rica 1876           0
## 28928                    Cote d'Ivoire 1876           0
## 28929                          Croatia 1876           0
## 28930                             Cuba 1876           0
## 28931                          Curacao 1876           0
## 28932                           Cyprus 1876           0
## 28933                   Czech Republic 1876           0
## 28934                   Czechoslovakia 1876    94446928
## 28935     Democratic Republic of Congo 1876           0
## 28936                          Denmark 1876    23339680
## 28937                         Djibouti 1876           0
## 28938                         Dominica 1876           0
## 28939               Dominican Republic 1876           0
## 28940                            EU-28 1876 13362754560
## 28941                          Ecuador 1876           0
## 28942                            Egypt 1876           0
## 28943                      El Salvador 1876           0
## 28944                Equatorial Guinea 1876           0
## 28945                          Eritrea 1876           0
## 28946                          Estonia 1876           0
## 28947                         Ethiopia 1876           0
## 28948                   Europe (other) 1876   182426896
## 28949                   Faeroe Islands 1876           0
## 28950                 Falkland Islands 1876           0
## 28951                             Fiji 1876           0
## 28952                          Finland 1876     1348352
## 28953                           France 1876  1513521456
## 28954                    French Guiana 1876           0
## 28955                 French Polynesia 1876           0
## 28956                            Gabon 1876           0
## 28957                           Gambia 1876           0
## 28958                          Georgia 1876           0
## 28959                          Germany 1876  1703514512
## 28960                            Ghana 1876           0
## 28961                        Gibraltar 1876           0
## 28962                           Greece 1876     1630480
## 28963                        Greenland 1876           0
## 28964                          Grenada 1876           0
## 28965                       Guadeloupe 1876           0
## 28966                        Guatemala 1876           0
## 28967                           Guinea 1876           0
## 28968                    Guinea-Bissau 1876           0
## 28969                           Guyana 1876           0
## 28970                            Haiti 1876           0
## 28971                         Honduras 1876           0
## 28972                        Hong Kong 1876           0
## 28973                          Hungary 1876    37797824
## 28974                          Iceland 1876           0
## 28975                            India 1876     5653552
## 28976                        Indonesia 1876           0
## 28977                             Iran 1876           0
## 28978                             Iraq 1876           0
## 28979                          Ireland 1876      395712
## 28980                           Israel 1876           0
## 28981                            Italy 1876    33291104
## 28982                          Jamaica 1876           0
## 28983                            Japan 1876     3576064
## 28984                           Jordan 1876           0
## 28985                       Kazakhstan 1876           0
## 28986                            Kenya 1876           0
## 28987                         Kiribati 1876           0
## 28988                           Kuwait 1876           0
## 28989                       Kyrgysztan 1876           0
## 28990                       Kyrgyzstan 1876           0
## 28991                             Laos 1876           0
## 28992                           Latvia 1876           0
## 28993                          Lebanon 1876           0
## 28994                          Lesotho 1876           0
## 28995                          Liberia 1876           0
## 28996                            Libya 1876           0
## 28997                    Liechtenstein 1876           0
## 28998                        Lithuania 1876           0
## 28999                       Luxembourg 1876           0
## 29000                            Macao 1876           0
## 29001                        Macedonia 1876           0
## 29002                       Madagascar 1876           0
## 29003                           Malawi 1876           0
## 29004                         Malaysia 1876           0
## 29005                         Maldives 1876           0
## 29006                             Mali 1876           0
## 29007                            Malta 1876           0
## 29008                 Marshall Islands 1876           0
## 29009                       Martinique 1876           0
## 29010                       Mauritania 1876           0
## 29011                        Mauritius 1876           0
## 29012                           Mexico 1876           0
## 29013             Micronesia (country) 1876           0
## 29014                      Middle East 1876     2751664
## 29015                          Moldova 1876           0
## 29016                         Mongolia 1876           0
## 29017                       Montenegro 1876           0
## 29018                       Montserrat 1876           0
## 29019                          Morocco 1876           0
## 29020                       Mozambique 1876           0
## 29021                          Myanmar 1876           0
## 29022                          Namibia 1876           0
## 29023                            Nauru 1876           0
## 29024                            Nepal 1876           0
## 29025                      Netherlands 1876   134516432
## 29026                    New Caledonia 1876           0
## 29027                      New Zealand 1876           0
## 29028                        Nicaragua 1876           0
## 29029                            Niger 1876           0
## 29030                          Nigeria 1876           0
## 29031                             Niue 1876           0
## 29032                      North Korea 1876           0
## 29033                           Norway 1876    13391920
## 29034                             Oman 1876           0
## 29035                         Pakistan 1876           0
## 29036                            Palau 1876           0
## 29037                        Palestine 1876           0
## 29038                           Panama 1876           0
## 29039                 Papua New Guinea 1876           0
## 29040                         Paraguay 1876           0
## 29041                             Peru 1876           0
## 29042                      Philippines 1876           0
## 29043                           Poland 1876   379106752
## 29044                         Portugal 1876     4151312
## 29045                            Qatar 1876           0
## 29046                          Reunion 1876           0
## 29047                          Romania 1876      461664
## 29048                           Russia 1876           0
## 29049                           Rwanda 1876           0
## 29050                     Saint Helena 1876           0
## 29051            Saint Kitts and Nevis 1876           0
## 29052                      Saint Lucia 1876           0
## 29053        Saint Pierre and Miquelon 1876           0
## 29054 Saint Vincent and the Grenadines 1876           0
## 29055                            Samoa 1876           0
## 29056            Sao Tome and Principe 1876           0
## 29057                     Saudi Arabia 1876           0
## 29058                          Senegal 1876           0
## 29059                           Serbia 1876           0
## 29060                       Seychelles 1876           0
## 29061                     Sierra Leone 1876           0
## 29062                        Singapore 1876           0
## 29063        Sint Maarten (Dutch part) 1876           0
## 29064                         Slovakia 1876           0
## 29065                         Slovenia 1876           0
## 29066                  Solomon Islands 1876           0
## 29067                          Somalia 1876           0
## 29068                     South Africa 1876           0
## 29069                      South Korea 1876           0
## 29070                      South Sudan 1876           0
## 29071                            Spain 1876    55652496
## 29072                        Sri Lanka 1876           0
## 29073                            Sudan 1876           0
## 29074                         Suriname 1876           0
## 29075                        Swaziland 1876           0
## 29076                           Sweden 1876    27916016
## 29077                      Switzerland 1876    14626688
## 29078                            Syria 1876           0
## 29079                           Taiwan 1876           0
## 29080                       Tajikistan 1876           0
## 29081                         Tanzania 1876           0
## 29082                         Thailand 1876           0
## 29083                            Timor 1876           0
## 29084                             Togo 1876           0
## 29085                            Tonga 1876           0
## 29086              Trinidad and Tobago 1876           0
## 29087                          Tunisia 1876           0
## 29088                           Turkey 1876     2751664
## 29089                     Turkmenistan 1876           0
## 29090         Turks and Caicos Islands 1876           0
## 29091                           Tuvalu 1876           0
## 29092                           Uganda 1876           0
## 29093                          Ukraine 1876           0
## 29094             United Arab Emirates 1876           0
## 29095                   United Kingdom 1876  8623572080
## 29096                    United States 1876  2002258752
## 29097                          Uruguay 1876           0
## 29098                       Uzbekistan 1876           0
## 29099                          Vanuatu 1876           0
## 29100                        Venezuela 1876           0
## 29101                          Vietnam 1876           0
## 29102        Wallis and Futuna Islands 1876           0
## 29103                            World 1876 15590810976
## 29104                            Yemen 1876           0
## 29105                           Zambia 1876           0
## 29106                         Zimbabwe 1876           0
## 29107                      Afghanistan 1877           0
## 29108                           Africa 1877           0
## 29109                          Albania 1877           0
## 29110                          Algeria 1877           0
## 29111                 Americas (other) 1877    24204384
## 29112                          Andorra 1877           0
## 29113                           Angola 1877           0
## 29114                         Anguilla 1877           0
## 29115              Antarctic Fisheries 1877           0
## 29116              Antigua and Barbuda 1877           0
## 29117                        Argentina 1877           0
## 29118                          Armenia 1877           0
## 29119                            Aruba 1877           0
## 29120         Asia and Pacific (other) 1877    51068832
## 29121                        Australia 1877    11779760
## 29122                          Austria 1877   194987088
## 29123                       Azerbaijan 1877           0
## 29124                          Bahamas 1877           0
## 29125                          Bahrain 1877           0
## 29126                       Bangladesh 1877           0
## 29127                         Barbados 1877           0
## 29128                          Belarus 1877           0
## 29129                          Belgium 1877   659886400
## 29130                           Belize 1877           0
## 29131                            Benin 1877           0
## 29132                          Bermuda 1877           0
## 29133                           Bhutan 1877           0
## 29134                          Bolivia 1877           0
## 29135  Bonaire Sint Eustatius and Saba 1877           0
## 29136           Bosnia and Herzegovina 1877           0
## 29137                         Botswana 1877           0
## 29138                           Brazil 1877           0
## 29139           British Virgin Islands 1877           0
## 29140                           Brunei 1877           0
## 29141                         Bulgaria 1877           0
## 29142                     Burkina Faso 1877           0
## 29143                          Burundi 1877           0
## 29144                         Cambodia 1877           0
## 29145                         Cameroon 1877           0
## 29146                           Canada 1877    24204384
## 29147                       Cape Verde 1877           0
## 29148                   Cayman Islands 1877           0
## 29149         Central African Republic 1877           0
## 29150                             Chad 1877           0
## 29151                            Chile 1877           0
## 29152                            China 1877           0
## 29153                 Christmas Island 1877           0
## 29154                         Colombia 1877           0
## 29155                          Comoros 1877           0
## 29156                            Congo 1877           0
## 29157                     Cook Islands 1877           0
## 29158                       Costa Rica 1877           0
## 29159                    Cote d'Ivoire 1877           0
## 29160                          Croatia 1877           0
## 29161                             Cuba 1877           0
## 29162                          Curacao 1877           0
## 29163                           Cyprus 1877           0
## 29164                   Czech Republic 1877           0
## 29165                   Czechoslovakia 1877   111682384
## 29166     Democratic Republic of Congo 1877           0
## 29167                          Denmark 1877    24863904
## 29168                         Djibouti 1877           0
## 29169                         Dominica 1877           0
## 29170               Dominican Republic 1877           0
## 29171                            EU-28 1877 13881060336
## 29172                          Ecuador 1877           0
## 29173                            Egypt 1877           0
## 29174                      El Salvador 1877           0
## 29175                Equatorial Guinea 1877           0
## 29176                          Eritrea 1877           0
## 29177                          Estonia 1877           0
## 29178                         Ethiopia 1877           0
## 29179                   Europe (other) 1877   211222272
## 29180                   Faeroe Islands 1877           0
## 29181                 Falkland Islands 1877           0
## 29182                             Fiji 1877           0
## 29183                          Finland 1877     1461936
## 29184                           France 1877  1577447264
## 29185                    French Guiana 1877           0
## 29186                 French Polynesia 1877           0
## 29187                            Gabon 1877           0
## 29188                           Gambia 1877           0
## 29189                          Georgia 1877           0
## 29190                          Germany 1877  1804816784
## 29191                            Ghana 1877           0
## 29192                        Gibraltar 1877           0
## 29193                           Greece 1877     1630480
## 29194                        Greenland 1877           0
## 29195                          Grenada 1877           0
## 29196                       Guadeloupe 1877           0
## 29197                        Guatemala 1877           0
## 29198                           Guinea 1877           0
## 29199                    Guinea-Bissau 1877           0
## 29200                           Guyana 1877           0
## 29201                            Haiti 1877           0
## 29202                         Honduras 1877           0
## 29203                        Hong Kong 1877           0
## 29204                          Hungary 1877    40685056
## 29205                          Iceland 1877           0
## 29206                            India 1877     5653552
## 29207                        Indonesia 1877           0
## 29208                             Iran 1877           0
## 29209                             Iraq 1877           0
## 29210                          Ireland 1877      395712
## 29211                           Israel 1877           0
## 29212                            Italy 1877    37094336
## 29213                          Jamaica 1877           0
## 29214                            Japan 1877     4865792
## 29215                           Jordan 1877           0
## 29216                       Kazakhstan 1877           0
## 29217                            Kenya 1877           0
## 29218                         Kiribati 1877           0
## 29219                           Kuwait 1877           0
## 29220                       Kyrgysztan 1877           0
## 29221                       Kyrgyzstan 1877           0
## 29222                             Laos 1877           0
## 29223                           Latvia 1877           0
## 29224                          Lebanon 1877           0
## 29225                          Lesotho 1877           0
## 29226                          Liberia 1877           0
## 29227                            Libya 1877           0
## 29228                    Liechtenstein 1877           0
## 29229                        Lithuania 1877           0
## 29230                       Luxembourg 1877           0
## 29231                            Macao 1877           0
## 29232                        Macedonia 1877           0
## 29233                       Madagascar 1877           0
## 29234                           Malawi 1877           0
## 29235                         Malaysia 1877           0
## 29236                         Maldives 1877           0
## 29237                             Mali 1877           0
## 29238                            Malta 1877           0
## 29239                 Marshall Islands 1877           0
## 29240                       Martinique 1877           0
## 29241                       Mauritania 1877           0
## 29242                        Mauritius 1877           0
## 29243                           Mexico 1877           0
## 29244             Micronesia (country) 1877           0
## 29245                      Middle East 1877     3198672
## 29246                          Moldova 1877           0
## 29247                         Mongolia 1877           0
## 29248                       Montenegro 1877           0
## 29249                       Montserrat 1877           0
## 29250                          Morocco 1877           0
## 29251                       Mozambique 1877           0
## 29252                          Myanmar 1877           0
## 29253                          Namibia 1877           0
## 29254                            Nauru 1877           0
## 29255                            Nepal 1877           0
## 29256                      Netherlands 1877   140825840
## 29257                    New Caledonia 1877           0
## 29258                      New Zealand 1877           0
## 29259                        Nicaragua 1877           0
## 29260                            Niger 1877           0
## 29261                          Nigeria 1877           0
## 29262                             Niue 1877           0
## 29263                      North Korea 1877           0
## 29264                           Norway 1877    14612032
## 29265                             Oman 1877           0
## 29266                         Pakistan 1877           0
## 29267                            Palau 1877           0
## 29268                        Palestine 1877           0
## 29269                           Panama 1877           0
## 29270                 Papua New Guinea 1877           0
## 29271                         Paraguay 1877           0
## 29272                             Peru 1877           0
## 29273                      Philippines 1877           0
## 29274                           Poland 1877   402241248
## 29275                         Portugal 1877     4821824
## 29276                            Qatar 1877           0
## 29277                          Reunion 1877           0
## 29278                          Romania 1877      509296
## 29279                           Russia 1877           0
## 29280                           Rwanda 1877           0
## 29281                     Saint Helena 1877           0
## 29282            Saint Kitts and Nevis 1877           0
## 29283                      Saint Lucia 1877           0
## 29284        Saint Pierre and Miquelon 1877           0
## 29285 Saint Vincent and the Grenadines 1877           0
## 29286                            Samoa 1877           0
## 29287            Sao Tome and Principe 1877           0
## 29288                     Saudi Arabia 1877           0
## 29289                          Senegal 1877           0
## 29290                           Serbia 1877           0
## 29291                       Seychelles 1877           0
## 29292                     Sierra Leone 1877           0
## 29293                        Singapore 1877           0
## 29294        Sint Maarten (Dutch part) 1877           0
## 29295                         Slovakia 1877           0
## 29296                         Slovenia 1877           0
## 29297                  Solomon Islands 1877           0
## 29298                          Somalia 1877           0
## 29299                     South Africa 1877           0
## 29300                      South Korea 1877           0
## 29301                      South Sudan 1877           0
## 29302                            Spain 1877    59433744
## 29303                        Sri Lanka 1877           0
## 29304                            Sudan 1877           0
## 29305                         Suriname 1877           0
## 29306                        Swaziland 1877           0
## 29307                           Sweden 1877    30488144
## 29308                      Switzerland 1877    16044656
## 29309                            Syria 1877           0
## 29310                           Taiwan 1877           0
## 29311                       Tajikistan 1877           0
## 29312                         Tanzania 1877           0
## 29313                         Thailand 1877           0
## 29314                            Timor 1877           0
## 29315                             Togo 1877           0
## 29316                            Tonga 1877           0
## 29317              Trinidad and Tobago 1877           0
## 29318                          Tunisia 1877           0
## 29319                           Turkey 1877     3198672
## 29320                     Turkmenistan 1877           0
## 29321         Turks and Caicos Islands 1877           0
## 29322                           Tuvalu 1877           0
## 29323                           Uganda 1877           0
## 29324                          Ukraine 1877           0
## 29325             United Arab Emirates 1877           0
## 29326                   United Kingdom 1877  8899471280
## 29327                    United States 1877  2149434304
## 29328                          Uruguay 1877           0
## 29329                       Uzbekistan 1877           0
## 29330                          Vanuatu 1877           0
## 29331                        Venezuela 1877           0
## 29332                          Vietnam 1877           0
## 29333        Wallis and Futuna Islands 1877           0
## 29334                            World 1877 16289909504
## 29335                            Yemen 1877           0
## 29336                           Zambia 1877           0
## 29337                         Zimbabwe 1877           0
## 29338                      Afghanistan 1878           0
## 29339                           Africa 1878           0
## 29340                          Albania 1878           0
## 29341                          Algeria 1878           0
## 29342                 Americas (other) 1878    26138976
## 29343                          Andorra 1878           0
## 29344                           Angola 1878           0
## 29345                         Anguilla 1878           0
## 29346              Antarctic Fisheries 1878           0
## 29347              Antigua and Barbuda 1878           0
## 29348                        Argentina 1878           0
## 29349                          Armenia 1878           0
## 29350                            Aruba 1878           0
## 29351         Asia and Pacific (other) 1878    56678416
## 29352                        Australia 1878    12747056
## 29353                          Austria 1878   202227152
## 29354                       Azerbaijan 1878           0
## 29355                          Bahamas 1878           0
## 29356                          Bahrain 1878           0
## 29357                       Bangladesh 1878           0
## 29358                         Barbados 1878           0
## 29359                          Belarus 1878           0
## 29360                          Belgium 1878   687124576
## 29361                           Belize 1878           0
## 29362                            Benin 1878           0
## 29363                          Bermuda 1878           0
## 29364                           Bhutan 1878           0
## 29365                          Bolivia 1878           0
## 29366  Bonaire Sint Eustatius and Saba 1878           0
## 29367           Bosnia and Herzegovina 1878           0
## 29368                         Botswana 1878           0
## 29369                           Brazil 1878           0
## 29370           British Virgin Islands 1878           0
## 29371                           Brunei 1878           0
## 29372                         Bulgaria 1878           0
## 29373                     Burkina Faso 1878           0
## 29374                          Burundi 1878           0
## 29375                         Cambodia 1878           0
## 29376                         Cameroon 1878           0
## 29377                           Canada 1878    26138976
## 29378                       Cape Verde 1878           0
## 29379                   Cayman Islands 1878           0
## 29380         Central African Republic 1878           0
## 29381                             Chad 1878           0
## 29382                            Chile 1878           0
## 29383                            China 1878           0
## 29384                 Christmas Island 1878           0
## 29385                         Colombia 1878           0
## 29386                          Comoros 1878           0
## 29387                            Congo 1878           0
## 29388                     Cook Islands 1878           0
## 29389                       Costa Rica 1878           0
## 29390                    Cote d'Ivoire 1878           0
## 29391                          Croatia 1878           0
## 29392                             Cuba 1878           0
## 29393                          Curacao 1878           0
## 29394                           Cyprus 1878           0
## 29395                   Czech Republic 1878           0
## 29396                   Czechoslovakia 1878   129749568
## 29397     Democratic Republic of Congo 1878           0
## 29398                          Denmark 1878    26311184
## 29399                         Djibouti 1878           0
## 29400                         Dominica 1878           0
## 29401               Dominican Republic 1878           0
## 29402                            EU-28 1878 14402161744
## 29403                          Ecuador 1878           0
## 29404                            Egypt 1878           0
## 29405                      El Salvador 1878           0
## 29406                Equatorial Guinea 1878           0
## 29407                          Eritrea 1878           0
## 29408                          Estonia 1878           0
## 29409                         Ethiopia 1878           0
## 29410                   Europe (other) 1878   243395856
## 29411                   Faeroe Islands 1878           0
## 29412                 Falkland Islands 1878           0
## 29413                             Fiji 1878           0
## 29414                          Finland 1878     1590176
## 29415                           France 1878  1642670128
## 29416                    French Guiana 1878           0
## 29417                 French Polynesia 1878           0
## 29418                            Gabon 1878           0
## 29419                           Gambia 1878           0
## 29420                          Georgia 1878           0
## 29421                          Germany 1878  1909361696
## 29422                            Ghana 1878           0
## 29423                        Gibraltar 1878           0
## 29424                           Greece 1878     1630480
## 29425                        Greenland 1878           0
## 29426                          Grenada 1878           0
## 29427                       Guadeloupe 1878           0
## 29428                        Guatemala 1878           0
## 29429                           Guinea 1878           0
## 29430                    Guinea-Bissau 1878           0
## 29431                           Guyana 1878           0
## 29432                            Haiti 1878           0
## 29433                         Honduras 1878           0
## 29434                        Hong Kong 1878           0
## 29435                          Hungary 1878    43561296
## 29436                          Iceland 1878           0
## 29437                            India 1878     7606464
## 29438                        Indonesia 1878           0
## 29439                             Iran 1878           0
## 29440                             Iraq 1878           0
## 29441                          Ireland 1878      395712
## 29442                           Israel 1878           0
## 29443                            Italy 1878    40879248
## 29444                          Jamaica 1878           0
## 29445                            Japan 1878     6723440
## 29446                           Jordan 1878           0
## 29447                       Kazakhstan 1878           0
## 29448                            Kenya 1878           0
## 29449                         Kiribati 1878           0
## 29450                           Kuwait 1878           0
## 29451                       Kyrgysztan 1878           0
## 29452                       Kyrgyzstan 1878           0
## 29453                             Laos 1878           0
## 29454                           Latvia 1878           0
## 29455                          Lebanon 1878           0
## 29456                          Lesotho 1878           0
## 29457                          Liberia 1878           0
## 29458                            Libya 1878           0
## 29459                    Liechtenstein 1878           0
## 29460                        Lithuania 1878           0
## 29461                       Luxembourg 1878           0
## 29462                            Macao 1878           0
## 29463                        Macedonia 1878           0
## 29464                       Madagascar 1878           0
## 29465                           Malawi 1878           0
## 29466                         Malaysia 1878           0
## 29467                         Maldives 1878           0
## 29468                             Mali 1878           0
## 29469                            Malta 1878           0
## 29470                 Marshall Islands 1878           0
## 29471                       Martinique 1878           0
## 29472                       Mauritania 1878           0
## 29473                        Mauritius 1878           0
## 29474                           Mexico 1878           0
## 29475             Micronesia (country) 1878           0
## 29476                      Middle East 1878     3524768
## 29477                          Moldova 1878           0
## 29478                         Mongolia 1878           0
## 29479                       Montenegro 1878           0
## 29480                       Montserrat 1878           0
## 29481                          Morocco 1878           0
## 29482                       Mozambique 1878           0
## 29483                          Myanmar 1878           0
## 29484                          Namibia 1878           0
## 29485                            Nauru 1878           0
## 29486                            Nepal 1878           0
## 29487                      Netherlands 1878   147512640
## 29488                    New Caledonia 1878           0
## 29489                      New Zealand 1878      355408
## 29490                        Nicaragua 1878           0
## 29491                            Niger 1878           0
## 29492                          Nigeria 1878           0
## 29493                             Niue 1878           0
## 29494                      North Korea 1878           0
## 29495                           Norway 1878    15700240
## 29496                             Oman 1878           0
## 29497                         Pakistan 1878           0
## 29498                            Palau 1878           0
## 29499                        Palestine 1878           0
## 29500                           Panama 1878           0
## 29501                 Papua New Guinea 1878           0
## 29502                         Paraguay 1878           0
## 29503                             Peru 1878           0
## 29504                      Philippines 1878           0
## 29505                           Poland 1878   426573872
## 29506                         Portugal 1878     5463024
## 29507                            Qatar 1878           0
## 29508                          Reunion 1878           0
## 29509                          Romania 1878      556928
## 29510                           Russia 1878           0
## 29511                           Rwanda 1878           0
## 29512                     Saint Helena 1878           0
## 29513            Saint Kitts and Nevis 1878           0
## 29514                      Saint Lucia 1878           0
## 29515        Saint Pierre and Miquelon 1878           0
## 29516 Saint Vincent and the Grenadines 1878           0
## 29517                            Samoa 1878           0
## 29518            Sao Tome and Principe 1878           0
## 29519                     Saudi Arabia 1878           0
## 29520                          Senegal 1878           0
## 29521                           Serbia 1878           0
## 29522                       Seychelles 1878           0
## 29523                     Sierra Leone 1878           0
## 29524                        Singapore 1878           0
## 29525        Sint Maarten (Dutch part) 1878           0
## 29526                         Slovakia 1878           0
## 29527                         Slovenia 1878           0
## 29528                  Solomon Islands 1878           0
## 29529                          Somalia 1878           0
## 29530                     South Africa 1878           0
## 29531                      South Korea 1878           0
## 29532                      South Sudan 1878           0
## 29533                            Spain 1878    63189344
## 29534                        Sri Lanka 1878           0
## 29535                            Sudan 1878           0
## 29536                         Suriname 1878           0
## 29537                        Swaziland 1878           0
## 29538                           Sweden 1878    32668224
## 29539                      Switzerland 1878    17400336
## 29540                            Syria 1878           0
## 29541                           Taiwan 1878           0
## 29542                       Tajikistan 1878           0
## 29543                         Tanzania 1878           0
## 29544                         Thailand 1878           0
## 29545                            Timor 1878           0
## 29546                             Togo 1878           0
## 29547                            Tonga 1878           0
## 29548              Trinidad and Tobago 1878           0
## 29549                          Tunisia 1878           0
## 29550                           Turkey 1878     3524768
## 29551                     Turkmenistan 1878           0
## 29552         Turks and Caicos Islands 1878           0
## 29553                           Tuvalu 1878           0
## 29554                           Uganda 1878           0
## 29555                          Ukraine 1878           0
## 29556             United Arab Emirates 1878           0
## 29557                   United Kingdom 1878  9170446064
## 29558                    United States 1878  2293337904
## 29559                          Uruguay 1878           0
## 29560                       Uzbekistan 1878           0
## 29561                          Vanuatu 1878           0
## 29562                        Venezuela 1878           0
## 29563                          Vietnam 1878           0
## 29564        Wallis and Futuna Islands 1878           0
## 29565                            World 1878 16994474720
## 29566                            Yemen 1878           0
## 29567                           Zambia 1878           0
## 29568                         Zimbabwe 1878           0
## 29569                      Afghanistan 1879           0
## 29570                           Africa 1879           0
## 29571                          Albania 1879           0
## 29572                          Algeria 1879           0
## 29573                 Americas (other) 1879    28322720
## 29574                          Andorra 1879           0
## 29575                           Angola 1879           0
## 29576                         Anguilla 1879           0
## 29577              Antarctic Fisheries 1879           0
## 29578              Antigua and Barbuda 1879           0
## 29579                        Argentina 1879           0
## 29580                          Armenia 1879           0
## 29581                            Aruba 1879           0
## 29582         Asia and Pacific (other) 1879    63955120
## 29583                        Australia 1879    14201664
## 29584                          Austria 1879   211090368
## 29585                       Azerbaijan 1879           0
## 29586                          Bahamas 1879           0
## 29587                          Bahrain 1879           0
## 29588                       Bangladesh 1879           0
## 29589                         Barbados 1879           0
## 29590                          Belarus 1879           0
## 29591                          Belgium 1879   714857392
## 29592                           Belize 1879           0
## 29593                            Benin 1879           0
## 29594                          Bermuda 1879           0
## 29595                           Bhutan 1879           0
## 29596                          Bolivia 1879           0
## 29597  Bonaire Sint Eustatius and Saba 1879           0
## 29598           Bosnia and Herzegovina 1879           0
## 29599                         Botswana 1879           0
## 29600                           Brazil 1879           0
## 29601           British Virgin Islands 1879           0
## 29602                           Brunei 1879           0
## 29603                         Bulgaria 1879           0
## 29604                     Burkina Faso 1879           0
## 29605                          Burundi 1879           0
## 29606                         Cambodia 1879           0
## 29607                         Cameroon 1879           0
## 29608                           Canada 1879    28322720
## 29609                       Cape Verde 1879           0
## 29610                   Cayman Islands 1879           0
## 29611         Central African Republic 1879           0
## 29612                             Chad 1879           0
## 29613                            Chile 1879           0
## 29614                            China 1879           0
## 29615                 Christmas Island 1879           0
## 29616                         Colombia 1879           0
## 29617                          Comoros 1879           0
## 29618                            Congo 1879           0
## 29619                     Cook Islands 1879           0
## 29620                       Costa Rica 1879           0
## 29621                    Cote d'Ivoire 1879           0
## 29622                          Croatia 1879           0
## 29623                             Cuba 1879           0
## 29624                          Curacao 1879           0
## 29625                           Cyprus 1879           0
## 29626                   Czech Republic 1879           0
## 29627                   Czechoslovakia 1879   149165104
## 29628     Democratic Republic of Congo 1879           0
## 29629                          Denmark 1879    27945328
## 29630                         Djibouti 1879           0
## 29631                         Dominica 1879           0
## 29632               Dominican Republic 1879           0
## 29633                            EU-28 1879 14939326128
## 29634                          Ecuador 1879           0
## 29635                            Egypt 1879           0
## 29636                      El Salvador 1879           0
## 29637                Equatorial Guinea 1879           0
## 29638                          Eritrea 1879           0
## 29639                          Estonia 1879           0
## 29640                         Ethiopia 1879           0
## 29641                   Europe (other) 1879   277364800
## 29642                   Faeroe Islands 1879           0
## 29643                 Falkland Islands 1879           0
## 29644                             Fiji 1879           0
## 29645                          Finland 1879     1667120
## 29646                           France 1879  1710168336
## 29647                    French Guiana 1879           0
## 29648                 French Polynesia 1879           0
## 29649                            Gabon 1879           0
## 29650                           Gambia 1879           0
## 29651                          Georgia 1879           0
## 29652                          Germany 1879  2020208688
## 29653                            Ghana 1879           0
## 29654                        Gibraltar 1879           0
## 29655                           Greece 1879     1634144
## 29656                        Greenland 1879           0
## 29657                          Grenada 1879           0
## 29658                       Guadeloupe 1879           0
## 29659                        Guatemala 1879           0
## 29660                           Guinea 1879           0
## 29661                    Guinea-Bissau 1879           0
## 29662                           Guyana 1879           0
## 29663                            Haiti 1879           0
## 29664                         Honduras 1879           0
## 29665                        Hong Kong 1879           0
## 29666                          Hungary 1879    46430208
## 29667                          Iceland 1879           0
## 29668                            India 1879     9460448
## 29669                        Indonesia 1879           0
## 29670                             Iran 1879           0
## 29671                             Iraq 1879           0
## 29672                          Ireland 1879      395712
## 29673                           Israel 1879           0
## 29674                            Italy 1879    45235744
## 29675                          Jamaica 1879           0
## 29676                            Japan 1879     9039088
## 29677                           Jordan 1879           0
## 29678                       Kazakhstan 1879           0
## 29679                            Kenya 1879           0
## 29680                         Kiribati 1879           0
## 29681                           Kuwait 1879           0
## 29682                       Kyrgysztan 1879           0
## 29683                       Kyrgyzstan 1879           0
## 29684                             Laos 1879           0
## 29685                           Latvia 1879           0
## 29686                          Lebanon 1879           0
## 29687                          Lesotho 1879           0
## 29688                          Liberia 1879           0
## 29689                            Libya 1879           0
## 29690                    Liechtenstein 1879           0
## 29691                        Lithuania 1879           0
## 29692                       Luxembourg 1879           0
## 29693                            Macao 1879           0
## 29694                        Macedonia 1879           0
## 29695                       Madagascar 1879           0
## 29696                           Malawi 1879           0
## 29697                         Malaysia 1879           0
## 29698                         Maldives 1879           0
## 29699                             Mali 1879           0
## 29700                            Malta 1879           0
## 29701                 Marshall Islands 1879           0
## 29702                       Martinique 1879           0
## 29703                       Mauritania 1879           0
## 29704                        Mauritius 1879           0
## 29705                           Mexico 1879           0
## 29706             Micronesia (country) 1879           0
## 29707                      Middle East 1879     3649344
## 29708                          Moldova 1879           0
## 29709                         Mongolia 1879           0
## 29710                       Montenegro 1879           0
## 29711                       Montserrat 1879           0
## 29712                          Morocco 1879           0
## 29713                       Mozambique 1879           0
## 29714                          Myanmar 1879           0
## 29715                          Namibia 1879           0
## 29716                            Nauru 1879           0
## 29717                            Nepal 1879           0
## 29718                      Netherlands 1879   154723392
## 29719                    New Caledonia 1879           0
## 29720                      New Zealand 1879      861040
## 29721                        Nicaragua 1879           0
## 29722                            Niger 1879           0
## 29723                          Nigeria 1879           0
## 29724                             Niue 1879           0
## 29725                      North Korea 1879           0
## 29726                           Norway 1879    16843408
## 29727                             Oman 1879           0
## 29728                         Pakistan 1879           0
## 29729                            Palau 1879           0
## 29730                        Palestine 1879           0
## 29731                           Panama 1879           0
## 29732                 Papua New Guinea 1879           0
## 29733                         Paraguay 1879           0
## 29734                             Peru 1879           0
## 29735                      Philippines 1879           0
## 29736                           Poland 1879   453060928
## 29737                         Portugal 1879     6170176
## 29738                            Qatar 1879           0
## 29739                          Reunion 1879           0
## 29740                          Romania 1879      604560
## 29741                           Russia 1879           0
## 29742                           Rwanda 1879           0
## 29743                     Saint Helena 1879           0
## 29744            Saint Kitts and Nevis 1879           0
## 29745                      Saint Lucia 1879           0
## 29746        Saint Pierre and Miquelon 1879           0
## 29747 Saint Vincent and the Grenadines 1879           0
## 29748                            Samoa 1879           0
## 29749            Sao Tome and Principe 1879           0
## 29750                     Saudi Arabia 1879           0
## 29751                          Senegal 1879           0
## 29752                           Serbia 1879           0
## 29753                       Seychelles 1879           0
## 29754                     Sierra Leone 1879           0
## 29755                        Singapore 1879           0
## 29756        Sint Maarten (Dutch part) 1879           0
## 29757                         Slovakia 1879           0
## 29758                         Slovenia 1879           0
## 29759                  Solomon Islands 1879           0
## 29760                          Somalia 1879           0
## 29761                     South Africa 1879           0
## 29762                      South Korea 1879           0
## 29763                      South Sudan 1879           0
## 29764                            Spain 1879    67161120
## 29765                        Sri Lanka 1879           0
## 29766                            Sudan 1879           0
## 29767                         Suriname 1879           0
## 29768                        Swaziland 1879           0
## 29769                           Sweden 1879    34881280
## 29770                      Switzerland 1879    18847616
## 29771                            Syria 1879           0
## 29772                           Taiwan 1879           0
## 29773                       Tajikistan 1879           0
## 29774                         Tanzania 1879           0
## 29775                         Thailand 1879           0
## 29776                            Timor 1879           0
## 29777                             Togo 1879           0
## 29778                            Tonga 1879           0
## 29779              Trinidad and Tobago 1879           0
## 29780                          Tunisia 1879           0
## 29781                           Turkey 1879     3649344
## 29782                     Turkmenistan 1879           0
## 29783         Turks and Caicos Islands 1879           0
## 29784                           Tuvalu 1879           0
## 29785                           Uganda 1879           0
## 29786                          Ukraine 1879           0
## 29787             United Arab Emirates 1879           0
## 29788                   United Kingdom 1879  9443091632
## 29789                    United States 1879  2468806864
## 29790                          Uruguay 1879           0
## 29791                       Uzbekistan 1879           0
## 29792                          Vanuatu 1879           0
## 29793                        Venezuela 1879           0
## 29794                          Vietnam 1879           0
## 29795        Wallis and Futuna Islands 1879           0
## 29796                            World 1879 17749511536
## 29797                            Yemen 1879           0
## 29798                           Zambia 1879           0
## 29799                         Zimbabwe 1879           0
## 29800                      Afghanistan 1880           0
## 29801                           Africa 1880           0
## 29802                          Albania 1880           0
## 29803                          Algeria 1880           0
## 29804                 Americas (other) 1880    33554912
## 29805                          Andorra 1880           0
## 29806                           Angola 1880           0
## 29807                         Anguilla 1880           0
## 29808              Antarctic Fisheries 1880           0
## 29809              Antigua and Barbuda 1880           0
## 29810                        Argentina 1880           0
## 29811                          Armenia 1880           0
## 29812                            Aruba 1880           0
## 29813         Asia and Pacific (other) 1880    72331024
## 29814                        Australia 1880    16407392
## 29815                          Austria 1880   234737824
## 29816                       Azerbaijan 1880           0
## 29817                          Bahamas 1880           0
## 29818                          Bahrain 1880           0
## 29819                       Bangladesh 1880           0
## 29820                         Barbados 1880           0
## 29821                          Belarus 1880           0
## 29822                          Belgium 1880   745283248
## 29823                           Belize 1880           0
## 29824                            Benin 1880           0
## 29825                          Bermuda 1880           0
## 29826                           Bhutan 1880           0
## 29827                          Bolivia 1880           0
## 29828  Bonaire Sint Eustatius and Saba 1880           0
## 29829           Bosnia and Herzegovina 1880           0
## 29830                         Botswana 1880           0
## 29831                           Brazil 1880           0
## 29832           British Virgin Islands 1880           0
## 29833                           Brunei 1880           0
## 29834                         Bulgaria 1880           0
## 29835                     Burkina Faso 1880           0
## 29836                          Burundi 1880           0
## 29837                         Cambodia 1880           0
## 29838                         Cameroon 1880           0
## 29839                           Canada 1880    33554912
## 29840                       Cape Verde 1880           0
## 29841                   Cayman Islands 1880           0
## 29842         Central African Republic 1880           0
## 29843                             Chad 1880           0
## 29844                            Chile 1880           0
## 29845                            China 1880           0
## 29846                 Christmas Island 1880           0
## 29847                         Colombia 1880           0
## 29848                          Comoros 1880           0
## 29849                            Congo 1880           0
## 29850                     Cook Islands 1880           0
## 29851                       Costa Rica 1880           0
## 29852                    Cote d'Ivoire 1880           0
## 29853                          Croatia 1880           0
## 29854                             Cuba 1880           0
## 29855                          Curacao 1880           0
## 29856                           Cyprus 1880           0
## 29857                   Czech Republic 1880           0
## 29858                   Czechoslovakia 1880   169734800
## 29859     Democratic Republic of Congo 1880           0
## 29860                          Denmark 1880    29806640
## 29861                         Djibouti 1880           0
## 29862                         Dominica 1880           0
## 29863               Dominican Republic 1880           0
## 29864                            EU-28 1880 15544358784
## 29865                          Ecuador 1880           0
## 29866                            Egypt 1880           0
## 29867                      El Salvador 1880           0
## 29868                Equatorial Guinea 1880           0
## 29869                          Eritrea 1880           0
## 29870                          Estonia 1880           0
## 29871                         Ethiopia 1880           0
## 29872                   Europe (other) 1880   314884160
## 29873                   Faeroe Islands 1880           0
## 29874                 Falkland Islands 1880           0
## 29875                             Fiji 1880           0
## 29876                          Finland 1880     1766048
## 29877                           France 1880  1786317248
## 29878                    French Guiana 1880           0
## 29879                 French Polynesia 1880           0
## 29880                            Gabon 1880           0
## 29881                           Gambia 1880           0
## 29882                          Georgia 1880           0
## 29883                          Germany 1880  2144711408
## 29884                            Ghana 1880           0
## 29885                        Gibraltar 1880           0
## 29886                           Greece 1880     1634144
## 29887                        Greenland 1880           0
## 29888                          Grenada 1880           0
## 29889                       Guadeloupe 1880           0
## 29890                        Guatemala 1880           0
## 29891                           Guinea 1880           0
## 29892                    Guinea-Bissau 1880           0
## 29893                           Guyana 1880           0
## 29894                            Haiti 1880           0
## 29895                         Honduras 1880           0
## 29896                        Hong Kong 1880           0
## 29897                          Hungary 1880    49742464
## 29898                          Iceland 1880           0
## 29899                            India 1880    11534272
## 29900                        Indonesia 1880           0
## 29901                             Iran 1880           0
## 29902                             Iraq 1880           0
## 29903                          Ireland 1880      747456
## 29904                           Israel 1880           0
## 29905                            Italy 1880    50303056
## 29906                          Jamaica 1880           0
## 29907                            Japan 1880    11387712
## 29908                           Jordan 1880           0
## 29909                       Kazakhstan 1880           0
## 29910                            Kenya 1880           0
## 29911                         Kiribati 1880           0
## 29912                           Kuwait 1880           0
## 29913                       Kyrgysztan 1880           0
## 29914                       Kyrgyzstan 1880           0
## 29915                             Laos 1880           0
## 29916                           Latvia 1880           0
## 29917                          Lebanon 1880           0
## 29918                          Lesotho 1880           0
## 29919                          Liberia 1880           0
## 29920                            Libya 1880           0
## 29921                    Liechtenstein 1880           0
## 29922                        Lithuania 1880           0
## 29923                       Luxembourg 1880           0
## 29924                            Macao 1880           0
## 29925                        Macedonia 1880           0
## 29926                       Madagascar 1880           0
## 29927                           Malawi 1880           0
## 29928                         Malaysia 1880           0
## 29929                         Maldives 1880           0
## 29930                             Mali 1880           0
## 29931                            Malta 1880           0
## 29932                 Marshall Islands 1880           0
## 29933                       Martinique 1880           0
## 29934                       Mauritania 1880           0
## 29935                        Mauritius 1880           0
## 29936                           Mexico 1880           0
## 29937             Micronesia (country) 1880           0
## 29938                      Middle East 1880     3788576
## 29939                          Moldova 1880           0
## 29940                         Mongolia 1880           0
## 29941                       Montenegro 1880           0
## 29942                       Montserrat 1880           0
## 29943                          Morocco 1880           0
## 29944                       Mozambique 1880           0
## 29945                          Myanmar 1880           0
## 29946                          Namibia 1880           0
## 29947                            Nauru 1880           0
## 29948                            Nepal 1880           0
## 29949                      Netherlands 1880   162696256
## 29950                    New Caledonia 1880           0
## 29951                      New Zealand 1880     1516896
## 29952                        Nicaragua 1880           0
## 29953                            Niger 1880           0
## 29954                          Nigeria 1880           0
## 29955                             Niue 1880           0
## 29956                      North Korea 1880           0
## 29957                           Norway 1880    18092832
## 29958                             Oman 1880           0
## 29959                         Pakistan 1880           0
## 29960                            Palau 1880           0
## 29961                        Palestine 1880           0
## 29962                           Panama 1880           0
## 29963                 Papua New Guinea 1880           0
## 29964                         Paraguay 1880           0
## 29965                             Peru 1880           0
## 29966                      Philippines 1880           0
## 29967                           Poland 1880   479408752
## 29968                         Portugal 1880     7049536
## 29969                            Qatar 1880           0
## 29970                          Reunion 1880           0
## 29971                          Romania 1880      652192
## 29972                           Russia 1880           0
## 29973                           Rwanda 1880           0
## 29974                     Saint Helena 1880           0
## 29975            Saint Kitts and Nevis 1880           0
## 29976                      Saint Lucia 1880           0
## 29977        Saint Pierre and Miquelon 1880           0
## 29978 Saint Vincent and the Grenadines 1880           0
## 29979                            Samoa 1880           0
## 29980            Sao Tome and Principe 1880           0
## 29981                     Saudi Arabia 1880           0
## 29982                          Senegal 1880           0
## 29983                           Serbia 1880           0
## 29984                       Seychelles 1880           0
## 29985                     Sierra Leone 1880           0
## 29986                        Singapore 1880           0
## 29987        Sint Maarten (Dutch part) 1880           0
## 29988                         Slovakia 1880           0
## 29989                         Slovenia 1880           0
## 29990                  Solomon Islands 1880           0
## 29991                          Somalia 1880           0
## 29992                     South Africa 1880           0
## 29993                      South Korea 1880           0
## 29994                      South Sudan 1880           0
## 29995                            Spain 1880    71576240
## 29996                        Sri Lanka 1880           0
## 29997                            Sudan 1880           0
## 29998                         Suriname 1880           0
## 29999                        Swaziland 1880           0
## 30000                           Sweden 1880    37709888
## 30001                      Switzerland 1880    20518400
## 30002                            Syria 1880           0
## 30003                           Taiwan 1880           0
## 30004                       Tajikistan 1880           0
## 30005                         Tanzania 1880           0
## 30006                         Thailand 1880           0
## 30007                            Timor 1880           0
## 30008                             Togo 1880           0
## 30009                            Tonga 1880           0
## 30010              Trinidad and Tobago 1880           0
## 30011                          Tunisia 1880           0
## 30012                           Turkey 1880     3788576
## 30013                     Turkmenistan 1880           0
## 30014         Turks and Caicos Islands 1880           0
## 30015                           Tuvalu 1880           0
## 30016                           Uganda 1880           0
## 30017                          Ukraine 1880           0
## 30018             United Arab Emirates 1880           0
## 30019                   United Kingdom 1880  9740216384
## 30020                    United States 1880  2667490928
## 30021                          Uruguay 1880           0
## 30022                       Uzbekistan 1880           0
## 30023                          Vanuatu 1880           0
## 30024                        Venezuela 1880           0
## 30025                          Vietnam 1880           0
## 30026        Wallis and Futuna Islands 1880           0
## 30027                            World 1880 18603403072
## 30028                            Yemen 1880           0
## 30029                           Zambia 1880           0
## 30030                         Zimbabwe 1880           0
## 30031                      Afghanistan 1881           0
## 30032                           Africa 1881           0
## 30033                          Albania 1881           0
## 30034                          Algeria 1881           0
## 30035                 Americas (other) 1881    39142512
## 30036                          Andorra 1881           0
## 30037                           Angola 1881           0
## 30038                         Anguilla 1881           0
## 30039              Antarctic Fisheries 1881           0
## 30040              Antigua and Barbuda 1881           0
## 30041                        Argentina 1881           0
## 30042                          Armenia 1881           0
## 30043                            Aruba 1881           0
## 30044         Asia and Pacific (other) 1881    81164928
## 30045                        Australia 1881    18173440
## 30046                          Austria 1881   245051984
## 30047                       Azerbaijan 1881           0
## 30048                          Bahamas 1881           0
## 30049                          Bahrain 1881           0
## 30050                       Bangladesh 1881           0
## 30051                         Barbados 1881           0
## 30052                          Belarus 1881           0
## 30053                          Belgium 1881   775914288
## 30054                           Belize 1881           0
## 30055                            Benin 1881           0
## 30056                          Bermuda 1881           0
## 30057                           Bhutan 1881           0
## 30058                          Bolivia 1881           0
## 30059  Bonaire Sint Eustatius and Saba 1881           0
## 30060           Bosnia and Herzegovina 1881           0
## 30061                         Botswana 1881           0
## 30062                           Brazil 1881           0
## 30063           British Virgin Islands 1881           0
## 30064                           Brunei 1881           0
## 30065                         Bulgaria 1881        3664
## 30066                     Burkina Faso 1881           0
## 30067                          Burundi 1881           0
## 30068                         Cambodia 1881           0
## 30069                         Cameroon 1881           0
## 30070                           Canada 1881    39146176
## 30071                       Cape Verde 1881           0
## 30072                   Cayman Islands 1881           0
## 30073         Central African Republic 1881           0
## 30074                             Chad 1881           0
## 30075                            Chile 1881           0
## 30076                            China 1881           0
## 30077                 Christmas Island 1881           0
## 30078                         Colombia 1881           0
## 30079                          Comoros 1881           0
## 30080                            Congo 1881           0
## 30081                     Cook Islands 1881           0
## 30082                       Costa Rica 1881           0
## 30083                    Cote d'Ivoire 1881           0
## 30084                          Croatia 1881           0
## 30085                             Cuba 1881           0
## 30086                          Curacao 1881           0
## 30087                           Cyprus 1881           0
## 30088                   Czech Republic 1881           0
## 30089                   Czechoslovakia 1881   191458656
## 30090     Democratic Republic of Congo 1881           0
## 30091                          Denmark 1881    31777872
## 30092                         Djibouti 1881           0
## 30093                         Dominica 1881           0
## 30094               Dominican Republic 1881           0
## 30095                            EU-28 1881 16164681312
## 30096                          Ecuador 1881           0
## 30097                            Egypt 1881           0
## 30098                      El Salvador 1881           0
## 30099                Equatorial Guinea 1881           0
## 30100                          Eritrea 1881           0
## 30101                          Estonia 1881           0
## 30102                         Ethiopia 1881           0
## 30103                   Europe (other) 1881   354250176
## 30104                   Faeroe Islands 1881           0
## 30105                 Falkland Islands 1881           0
## 30106                             Fiji 1881           0
## 30107                          Finland 1881     1864976
## 30108                           France 1881  1864301824
## 30109                    French Guiana 1881           0
## 30110                 French Polynesia 1881           0
## 30111                            Gabon 1881           0
## 30112                           Gambia 1881           0
## 30113                          Georgia 1881           0
## 30114                          Germany 1881  2278975024
## 30115                            Ghana 1881           0
## 30116                        Gibraltar 1881           0
## 30117                           Greece 1881     1634144
## 30118                        Greenland 1881           0
## 30119                          Grenada 1881           0
## 30120                       Guadeloupe 1881           0
## 30121                        Guatemala 1881           0
## 30122                           Guinea 1881           0
## 30123                    Guinea-Bissau 1881           0
## 30124                           Guyana 1881           0
## 30125                            Haiti 1881           0
## 30126                         Honduras 1881           0
## 30127                        Hong Kong 1881           0
## 30128                          Hungary 1881    53292880
## 30129                          Iceland 1881           0
## 30130                            India 1881    13556800
## 30131                        Indonesia 1881           0
## 30132                             Iran 1881           0
## 30133                             Iraq 1881           0
## 30134                          Ireland 1881     1099200
## 30135                           Israel 1881           0
## 30136                            Italy 1881    56260720
## 30137                          Jamaica 1881           0
## 30138                            Japan 1881    13802288
## 30139                           Jordan 1881           0
## 30140                       Kazakhstan 1881           0
## 30141                            Kenya 1881           0
## 30142                         Kiribati 1881           0
## 30143                           Kuwait 1881           0
## 30144                       Kyrgysztan 1881           0
## 30145                       Kyrgyzstan 1881           0
## 30146                             Laos 1881           0
## 30147                           Latvia 1881           0
## 30148                          Lebanon 1881           0
## 30149                          Lesotho 1881           0
## 30150                          Liberia 1881           0
## 30151                            Libya 1881           0
## 30152                    Liechtenstein 1881           0
## 30153                        Lithuania 1881           0
## 30154                       Luxembourg 1881           0
## 30155                            Macao 1881           0
## 30156                        Macedonia 1881           0
## 30157                       Madagascar 1881           0
## 30158                           Malawi 1881           0
## 30159                         Malaysia 1881           0
## 30160                         Maldives 1881           0
## 30161                             Mali 1881           0
## 30162                            Malta 1881           0
## 30163                 Marshall Islands 1881           0
## 30164                       Martinique 1881           0
## 30165                       Mauritania 1881           0
## 30166                        Mauritius 1881           0
## 30167                           Mexico 1881           0
## 30168             Micronesia (country) 1881           0
## 30169                      Middle East 1881     3971776
## 30170                          Moldova 1881           0
## 30171                         Mongolia 1881           0
## 30172                       Montenegro 1881           0
## 30173                       Montserrat 1881           0
## 30174                          Morocco 1881           0
## 30175                       Mozambique 1881           0
## 30176                          Myanmar 1881           0
## 30177                          Namibia 1881           0
## 30178                            Nauru 1881           0
## 30179                            Nepal 1881           0
## 30180                      Netherlands 1881   170724080
## 30181                    New Caledonia 1881           0
## 30182                      New Zealand 1881     2253360
## 30183                        Nicaragua 1881           0
## 30184                            Niger 1881           0
## 30185                          Nigeria 1881           0
## 30186                             Niue 1881           0
## 30187                      North Korea 1881           0
## 30188                           Norway 1881    19386224
## 30189                             Oman 1881           0
## 30190                         Pakistan 1881           0
## 30191                            Palau 1881           0
## 30192                        Palestine 1881           0
## 30193                           Panama 1881           0
## 30194                 Papua New Guinea 1881           0
## 30195                         Paraguay 1881           0
## 30196                             Peru 1881           0
## 30197                      Philippines 1881           0
## 30198                           Poland 1881   505639328
## 30199                         Portugal 1881     7939888
## 30200                            Qatar 1881           0
## 30201                          Reunion 1881           0
## 30202                          Romania 1881      703488
## 30203                           Russia 1881           0
## 30204                           Rwanda 1881           0
## 30205                     Saint Helena 1881           0
## 30206            Saint Kitts and Nevis 1881           0
## 30207                      Saint Lucia 1881           0
## 30208        Saint Pierre and Miquelon 1881           0
## 30209 Saint Vincent and the Grenadines 1881           0
## 30210                            Samoa 1881           0
## 30211            Sao Tome and Principe 1881           0
## 30212                     Saudi Arabia 1881           0
## 30213                          Senegal 1881           0
## 30214                           Serbia 1881           0
## 30215                       Seychelles 1881           0
## 30216                     Sierra Leone 1881           0
## 30217                        Singapore 1881           0
## 30218        Sint Maarten (Dutch part) 1881           0
## 30219                         Slovakia 1881           0
## 30220                         Slovenia 1881           0
## 30221                  Solomon Islands 1881           0
## 30222                          Somalia 1881           0
## 30223                     South Africa 1881           0
## 30224                      South Korea 1881           0
## 30225                      South Sudan 1881           0
## 30226                            Spain 1881    76507984
## 30227                        Sri Lanka 1881           0
## 30228                            Sudan 1881           0
## 30229                         Suriname 1881           0
## 30230                        Swaziland 1881           0
## 30231                           Sweden 1881    40461552
## 30232                      Switzerland 1881    22082928
## 30233                            Syria 1881           0
## 30234                           Taiwan 1881           0
## 30235                       Tajikistan 1881           0
## 30236                         Tanzania 1881           0
## 30237                         Thailand 1881           0
## 30238                            Timor 1881           0
## 30239                             Togo 1881           0
## 30240                            Tonga 1881           0
## 30241              Trinidad and Tobago 1881           0
## 30242                          Tunisia 1881           0
## 30243                           Turkey 1881     3971776
## 30244                     Turkmenistan 1881           0
## 30245         Turks and Caicos Islands 1881           0
## 30246                           Tuvalu 1881           0
## 30247                           Uganda 1881           0
## 30248                          Ukraine 1881           0
## 30249             United Arab Emirates 1881           0
## 30250                   United Kingdom 1881 10052528416
## 30251                    United States 1881  2877683616
## 30252                          Uruguay 1881           0
## 30253                       Uzbekistan 1881           0
## 30254                          Vanuatu 1881           0
## 30255                        Venezuela 1881           0
## 30256                          Vietnam 1881           0
## 30257        Wallis and Futuna Islands 1881           0
## 30258                            World 1881 19485991056
## 30259                            Yemen 1881           0
## 30260                           Zambia 1881           0
## 30261                         Zimbabwe 1881           0
## 30262                      Afghanistan 1882           0
## 30263                           Africa 1882           0
## 30264                          Albania 1882           0
## 30265                          Algeria 1882           0
## 30266                 Americas (other) 1882    45756032
## 30267                          Andorra 1882           0
## 30268                           Angola 1882           0
## 30269                         Anguilla 1882           0
## 30270              Antarctic Fisheries 1882           0
## 30271              Antigua and Barbuda 1882           0
## 30272                        Argentina 1882           0
## 30273                          Armenia 1882           0
## 30274                            Aruba 1882           0
## 30275         Asia and Pacific (other) 1882    90544768
## 30276                        Australia 1882    20184976
## 30277                          Austria 1882   255651936
## 30278                       Azerbaijan 1882           0
## 30279                          Bahamas 1882           0
## 30280                          Bahrain 1882           0
## 30281                       Bangladesh 1882           0
## 30282                         Barbados 1882           0
## 30283                          Belarus 1882           0
## 30284                          Belgium 1882   808351680
## 30285                           Belize 1882           0
## 30286                            Benin 1882           0
## 30287                          Bermuda 1882           0
## 30288                           Bhutan 1882           0
## 30289                          Bolivia 1882           0
## 30290  Bonaire Sint Eustatius and Saba 1882           0
## 30291           Bosnia and Herzegovina 1882           0
## 30292                         Botswana 1882           0
## 30293                           Brazil 1882           0
## 30294           British Virgin Islands 1882           0
## 30295                           Brunei 1882           0
## 30296                         Bulgaria 1882        7328
## 30297                     Burkina Faso 1882           0
## 30298                          Burundi 1882           0
## 30299                         Cambodia 1882           0
## 30300                         Cameroon 1882           0
## 30301                           Canada 1882    45763360
## 30302                       Cape Verde 1882           0
## 30303                   Cayman Islands 1882           0
## 30304         Central African Republic 1882           0
## 30305                             Chad 1882           0
## 30306                            Chile 1882           0
## 30307                            China 1882           0
## 30308                 Christmas Island 1882           0
## 30309                         Colombia 1882           0
## 30310                          Comoros 1882           0
## 30311                            Congo 1882           0
## 30312                     Cook Islands 1882           0
## 30313                       Costa Rica 1882           0
## 30314                    Cote d'Ivoire 1882           0
## 30315                          Croatia 1882           0
## 30316                             Cuba 1882           0
## 30317                          Curacao 1882           0
## 30318                           Cyprus 1882           0
## 30319                   Czech Republic 1882           0
## 30320                   Czechoslovakia 1882   213673488
## 30321     Democratic Republic of Congo 1882           0
## 30322                          Denmark 1882    33892000
## 30323                         Djibouti 1882           0
## 30324                         Dominica 1882           0
## 30325               Dominican Republic 1882           0
## 30326                            EU-28 1882 16805965584
## 30327                          Ecuador 1882           0
## 30328                            Egypt 1882           0
## 30329                      El Salvador 1882           0
## 30330                Equatorial Guinea 1882           0
## 30331                          Eritrea 1882           0
## 30332                          Estonia 1882           0
## 30333                         Ethiopia 1882           0
## 30334                   Europe (other) 1882   395169728
## 30335                   Faeroe Islands 1882           0
## 30336                 Falkland Islands 1882           0
## 30337                             Fiji 1882           0
## 30338                          Finland 1882     1985888
## 30339                           France 1882  1946609920
## 30340                    French Guiana 1882           0
## 30341                 French Polynesia 1882           0
## 30342                            Gabon 1882           0
## 30343                           Gambia 1882           0
## 30344                          Georgia 1882           0
## 30345                          Germany 1882  2422640464
## 30346                            Ghana 1882           0
## 30347                        Gibraltar 1882           0
## 30348                           Greece 1882     1634144
## 30349                        Greenland 1882           0
## 30350                          Grenada 1882           0
## 30351                       Guadeloupe 1882           0
## 30352                        Guatemala 1882           0
## 30353                           Guinea 1882           0
## 30354                    Guinea-Bissau 1882           0
## 30355                           Guyana 1882           0
## 30356                            Haiti 1882           0
## 30357                         Honduras 1882           0
## 30358                        Hong Kong 1882           0
## 30359                          Hungary 1882    56876272
## 30360                          Iceland 1882           0
## 30361                            India 1882    15960384
## 30362                        Indonesia 1882           0
## 30363                             Iran 1882           0
## 30364                             Iraq 1882           0
## 30365                          Ireland 1882     1099200
## 30366                           Israel 1882           0
## 30367                            Italy 1882    62533488
## 30368                          Jamaica 1882           0
## 30369                            Japan 1882    16315792
## 30370                           Jordan 1882           0
## 30371                       Kazakhstan 1882           0
## 30372                            Kenya 1882           0
## 30373                         Kiribati 1882           0
## 30374                           Kuwait 1882           0
## 30375                       Kyrgysztan 1882           0
## 30376                       Kyrgyzstan 1882           0
## 30377                             Laos 1882           0
## 30378                           Latvia 1882           0
## 30379                          Lebanon 1882           0
## 30380                          Lesotho 1882           0
## 30381                          Liberia 1882           0
## 30382                            Libya 1882           0
## 30383                    Liechtenstein 1882           0
## 30384                        Lithuania 1882           0
## 30385                       Luxembourg 1882           0
## 30386                            Macao 1882           0
## 30387                        Macedonia 1882           0
## 30388                       Madagascar 1882           0
## 30389                           Malawi 1882           0
## 30390                         Malaysia 1882           0
## 30391                         Maldives 1882           0
## 30392                             Mali 1882           0
## 30393                            Malta 1882           0
## 30394                 Marshall Islands 1882           0
## 30395                       Martinique 1882           0
## 30396                       Mauritania 1882           0
## 30397                        Mauritius 1882           0
## 30398                           Mexico 1882           0
## 30399             Micronesia (country) 1882           0
## 30400                      Middle East 1882     4125664
## 30401                          Moldova 1882           0
## 30402                         Mongolia 1882           0
## 30403                       Montenegro 1882           0
## 30404                       Montserrat 1882           0
## 30405                          Morocco 1882           0
## 30406                       Mozambique 1882           0
## 30407                          Myanmar 1882           0
## 30408                          Namibia 1882           0
## 30409                            Nauru 1882           0
## 30410                            Nepal 1882           0
## 30411                      Netherlands 1882   178854496
## 30412                    New Caledonia 1882           0
## 30413                      New Zealand 1882     3081424
## 30414                        Nicaragua 1882           0
## 30415                            Niger 1882           0
## 30416                          Nigeria 1882           0
## 30417                             Niue 1882           0
## 30418                      North Korea 1882           0
## 30419                           Norway 1882    20800528
## 30420                             Oman 1882           0
## 30421                         Pakistan 1882           0
## 30422                            Palau 1882           0
## 30423                        Palestine 1882           0
## 30424                           Panama 1882           0
## 30425                 Papua New Guinea 1882           0
## 30426                         Paraguay 1882           0
## 30427                             Peru 1882           0
## 30428                      Philippines 1882           0
## 30429                           Poland 1882   532884832
## 30430                         Portugal 1882     9024432
## 30431                            Qatar 1882           0
## 30432                          Reunion 1882           0
## 30433                          Romania 1882      926992
## 30434                           Russia 1882           0
## 30435                           Rwanda 1882           0
## 30436                     Saint Helena 1882           0
## 30437            Saint Kitts and Nevis 1882           0
## 30438                      Saint Lucia 1882           0
## 30439        Saint Pierre and Miquelon 1882           0
## 30440 Saint Vincent and the Grenadines 1882           0
## 30441                            Samoa 1882           0
## 30442            Sao Tome and Principe 1882           0
## 30443                     Saudi Arabia 1882           0
## 30444                          Senegal 1882           0
## 30445                           Serbia 1882           0
## 30446                       Seychelles 1882           0
## 30447                     Sierra Leone 1882           0
## 30448                        Singapore 1882           0
## 30449        Sint Maarten (Dutch part) 1882           0
## 30450                         Slovakia 1882           0
## 30451                         Slovenia 1882           0
## 30452                  Solomon Islands 1882           0
## 30453                          Somalia 1882           0
## 30454                     South Africa 1882           0
## 30455                      South Korea 1882           0
## 30456                      South Sudan 1882           0
## 30457                            Spain 1882    81890400
## 30458                        Sri Lanka 1882           0
## 30459                            Sudan 1882           0
## 30460                         Suriname 1882           0
## 30461                        Swaziland 1882           0
## 30462                           Sweden 1882    43608928
## 30463                      Switzerland 1882    23812336
## 30464                            Syria 1882           0
## 30465                           Taiwan 1882           0
## 30466                       Tajikistan 1882           0
## 30467                         Tanzania 1882           0
## 30468                         Thailand 1882           0
## 30469                            Timor 1882           0
## 30470                             Togo 1882           0
## 30471                            Tonga 1882           0
## 30472              Trinidad and Tobago 1882           0
## 30473                          Tunisia 1882           0
## 30474                           Turkey 1882     4125664
## 30475                     Turkmenistan 1882           0
## 30476         Turks and Caicos Islands 1882           0
## 30477                           Tuvalu 1882           0
## 30478                           Uganda 1882           0
## 30479                          Ukraine 1882           0
## 30480             United Arab Emirates 1882           0
## 30481                   United Kingdom 1882 10367493184
## 30482                    United States 1882  3113077296
## 30483                          Uruguay 1882           0
## 30484                       Uzbekistan 1882           0
## 30485                          Vanuatu 1882           0
## 30486                        Venezuela 1882           0
## 30487                          Vietnam 1882           0
## 30488        Wallis and Futuna Islands 1882           0
## 30489                            World 1882 20418119984
## 30490                            Yemen 1882           0
## 30491                           Zambia 1882           0
## 30492                         Zimbabwe 1882           0
## 30493                      Afghanistan 1883           0
## 30494                           Africa 1883           0
## 30495                          Albania 1883           0
## 30496                          Algeria 1883           0
## 30497                 Americas (other) 1883    53186624
## 30498                          Andorra 1883           0
## 30499                           Angola 1883           0
## 30500                         Anguilla 1883           0
## 30501              Antarctic Fisheries 1883           0
## 30502              Antigua and Barbuda 1883           0
## 30503                        Argentina 1883           0
## 30504                          Armenia 1883           0
## 30505                            Aruba 1883           0
## 30506         Asia and Pacific (other) 1883   100591456
## 30507                        Australia 1883    22610544
## 30508                          Austria 1883   267413376
## 30509                       Azerbaijan 1883           0
## 30510                          Bahamas 1883           0
## 30511                          Bahrain 1883           0
## 30512                       Bangladesh 1883           0
## 30513                         Barbados 1883           0
## 30514                          Belarus 1883           0
## 30515                          Belgium 1883   842734656
## 30516                           Belize 1883           0
## 30517                            Benin 1883           0
## 30518                          Bermuda 1883           0
## 30519                           Bhutan 1883           0
## 30520                          Bolivia 1883           0
## 30521  Bonaire Sint Eustatius and Saba 1883           0
## 30522           Bosnia and Herzegovina 1883           0
## 30523                         Botswana 1883           0
## 30524                           Brazil 1883           0
## 30525           British Virgin Islands 1883           0
## 30526                           Brunei 1883           0
## 30527                         Bulgaria 1883       14656
## 30528                     Burkina Faso 1883           0
## 30529                          Burundi 1883           0
## 30530                         Cambodia 1883           0
## 30531                         Cameroon 1883           0
## 30532                           Canada 1883    53193952
## 30533                       Cape Verde 1883           0
## 30534                   Cayman Islands 1883           0
## 30535         Central African Republic 1883           0
## 30536                             Chad 1883           0
## 30537                            Chile 1883           0
## 30538                            China 1883           0
## 30539                 Christmas Island 1883           0
## 30540                         Colombia 1883           0
## 30541                          Comoros 1883           0
## 30542                            Congo 1883           0
## 30543                     Cook Islands 1883           0
## 30544                       Costa Rica 1883           0
## 30545                    Cote d'Ivoire 1883           0
## 30546                          Croatia 1883           0
## 30547                             Cuba 1883           0
## 30548                          Curacao 1883           0
## 30549                           Cyprus 1883           0
## 30550                   Czech Republic 1883           0
## 30551                   Czechoslovakia 1883   237401552
## 30552     Democratic Republic of Congo 1883           0
## 30553                          Denmark 1883    36321232
## 30554                         Djibouti 1883           0
## 30555                         Dominica 1883           0
## 30556               Dominican Republic 1883           0
## 30557                            EU-28 1883 17482138464
## 30558                          Ecuador 1883           0
## 30559                            Egypt 1883           0
## 30560                      El Salvador 1883           0
## 30561                Equatorial Guinea 1883           0
## 30562                          Eritrea 1883           0
## 30563                          Estonia 1883           0
## 30564                         Ethiopia 1883           0
## 30565                   Europe (other) 1883   440050064
## 30566                   Faeroe Islands 1883           0
## 30567                 Falkland Islands 1883           0
## 30568                             Fiji 1883           0
## 30569                          Finland 1883     2103136
## 30570                           France 1883  2032930096
## 30571                    French Guiana 1883           0
## 30572                 French Polynesia 1883           0
## 30573                            Gabon 1883           0
## 30574                           Gambia 1883           0
## 30575                          Georgia 1883           0
## 30576                          Germany 1883  2575733376
## 30577                            Ghana 1883           0
## 30578                        Gibraltar 1883           0
## 30579                           Greece 1883     1637808
## 30580                        Greenland 1883           0
## 30581                          Grenada 1883           0
## 30582                       Guadeloupe 1883           0
## 30583                        Guatemala 1883           0
## 30584                           Guinea 1883           0
## 30585                    Guinea-Bissau 1883           0
## 30586                           Guyana 1883           0
## 30587                            Haiti 1883           0
## 30588                         Honduras 1883           0
## 30589                        Hong Kong 1883           0
## 30590                          Hungary 1883    60954304
## 30591                          Iceland 1883           0
## 30592                            India 1883    18642432
## 30593                        Indonesia 1883           0
## 30594                             Iran 1883           0
## 30595                             Iraq 1883           0
## 30596                          Ireland 1883     1099200
## 30597                           Israel 1883           0
## 30598                            Italy 1883    69179984
## 30599                          Jamaica 1883           0
## 30600                            Japan 1883    19027152
## 30601                           Jordan 1883           0
## 30602                       Kazakhstan 1883           0
## 30603                            Kenya 1883           0
## 30604                         Kiribati 1883           0
## 30605                           Kuwait 1883           0
## 30606                       Kyrgysztan 1883           0
## 30607                       Kyrgyzstan 1883           0
## 30608                             Laos 1883           0
## 30609                           Latvia 1883           0
## 30610                          Lebanon 1883           0
## 30611                          Lesotho 1883           0
## 30612                          Liberia 1883           0
## 30613                            Libya 1883           0
## 30614                    Liechtenstein 1883           0
## 30615                        Lithuania 1883           0
## 30616                       Luxembourg 1883           0
## 30617                            Macao 1883           0
## 30618                        Macedonia 1883           0
## 30619                       Madagascar 1883           0
## 30620                           Malawi 1883           0
## 30621                         Malaysia 1883           0
## 30622                         Maldives 1883           0
## 30623                             Mali 1883           0
## 30624                            Malta 1883           0
## 30625                 Marshall Islands 1883           0
## 30626                       Martinique 1883           0
## 30627                       Mauritania 1883           0
## 30628                        Mauritius 1883           0
## 30629                           Mexico 1883           0
## 30630             Micronesia (country) 1883           0
## 30631                      Middle East 1883     4286880
## 30632                          Moldova 1883           0
## 30633                         Mongolia 1883           0
## 30634                       Montenegro 1883           0
## 30635                       Montserrat 1883           0
## 30636                          Morocco 1883           0
## 30637                       Mozambique 1883           0
## 30638                          Myanmar 1883           0
## 30639                          Namibia 1883           0
## 30640                            Nauru 1883           0
## 30641                            Nepal 1883           0
## 30642                      Netherlands 1883   187864272
## 30643                    New Caledonia 1883           0
## 30644                      New Zealand 1883     4008416
## 30645                        Nicaragua 1883           0
## 30646                            Niger 1883           0
## 30647                          Nigeria 1883           0
## 30648                             Niue 1883           0
## 30649                      North Korea 1883           0
## 30650                           Norway 1883    22324752
## 30651                             Oman 1883           0
## 30652                         Pakistan 1883           0
## 30653                            Palau 1883           0
## 30654                        Palestine 1883           0
## 30655                           Panama 1883           0
## 30656                 Papua New Guinea 1883           0
## 30657                         Paraguay 1883           0
## 30658                             Peru 1883           0
## 30659                      Philippines 1883           0
## 30660                           Poland 1883   562812384
## 30661                         Portugal 1883    10163936
## 30662                            Qatar 1883           0
## 30663                          Reunion 1883           0
## 30664                          Romania 1883     1333696
## 30665                           Russia 1883           0
## 30666                           Rwanda 1883           0
## 30667                     Saint Helena 1883           0
## 30668            Saint Kitts and Nevis 1883           0
## 30669                      Saint Lucia 1883           0
## 30670        Saint Pierre and Miquelon 1883           0
## 30671 Saint Vincent and the Grenadines 1883           0
## 30672                            Samoa 1883           0
## 30673            Sao Tome and Principe 1883           0
## 30674                     Saudi Arabia 1883           0
## 30675                          Senegal 1883           0
## 30676                           Serbia 1883           0
## 30677                       Seychelles 1883           0
## 30678                     Sierra Leone 1883           0
## 30679                        Singapore 1883           0
## 30680        Sint Maarten (Dutch part) 1883           0
## 30681                         Slovakia 1883           0
## 30682                         Slovenia 1883           0
## 30683                  Solomon Islands 1883           0
## 30684                          Somalia 1883           0
## 30685                     South Africa 1883           0
## 30686                      South Korea 1883           0
## 30687                      South Sudan 1883           0
## 30688                            Spain 1883    87793104
## 30689                        Sri Lanka 1883           0
## 30690                            Sudan 1883           0
## 30691                         Suriname 1883           0
## 30692                        Swaziland 1883           0
## 30693                           Sweden 1883    46825920
## 30694                      Switzerland 1883    25724944
## 30695                            Syria 1883           0
## 30696                           Taiwan 1883           0
## 30697                       Tajikistan 1883           0
## 30698                         Tanzania 1883           0
## 30699                         Thailand 1883           0
## 30700                            Timor 1883           0
## 30701                             Togo 1883           0
## 30702                            Tonga 1883           0
## 30703              Trinidad and Tobago 1883           0
## 30704                          Tunisia 1883           0
## 30705                           Turkey 1883     4286880
## 30706                     Turkmenistan 1883           0
## 30707         Turks and Caicos Islands 1883           0
## 30708                           Tuvalu 1883           0
## 30709                           Uganda 1883           0
## 30710                          Ukraine 1883           0
## 30711             United Arab Emirates 1883           0
## 30712                   United Kingdom 1883 10695223328
## 30713                    United States 1883  3366959520
## 30714                          Uruguay 1883           0
## 30715                       Uzbekistan 1883           0
## 30716                          Vanuatu 1883           0
## 30717                        Venezuela 1883           0
## 30718                          Vietnam 1883           0
## 30719        Wallis and Futuna Islands 1883           0
## 30720                            World 1883 21409393200
## 30721                            Yemen 1883           0
## 30722                           Zambia 1883           0
## 30723                         Zimbabwe 1883           0
## 30724                      Afghanistan 1884           0
## 30725                           Africa 1884       21984
## 30726                          Albania 1884           0
## 30727                          Algeria 1884           0
## 30728                 Americas (other) 1884    61789696
## 30729                          Andorra 1884           0
## 30730                           Angola 1884           0
## 30731                         Anguilla 1884           0
## 30732              Antarctic Fisheries 1884           0
## 30733              Antigua and Barbuda 1884           0
## 30734                        Argentina 1884           0
## 30735                          Armenia 1884           0
## 30736                            Aruba 1884           0
## 30737         Asia and Pacific (other) 1884   112752272
## 30738                        Australia 1884    25182672
## 30739                          Austria 1884   278874368
## 30740                       Azerbaijan 1884           0
## 30741                          Bahamas 1884           0
## 30742                          Bahrain 1884           0
## 30743                       Bangladesh 1884           0
## 30744                         Barbados 1884           0
## 30745                          Belarus 1884           0
## 30746                          Belgium 1884   876604672
## 30747                           Belize 1884           0
## 30748                            Benin 1884           0
## 30749                          Bermuda 1884           0
## 30750                           Bhutan 1884           0
## 30751                          Bolivia 1884           0
## 30752  Bonaire Sint Eustatius and Saba 1884           0
## 30753           Bosnia and Herzegovina 1884           0
## 30754                         Botswana 1884           0
## 30755                           Brazil 1884           0
## 30756           British Virgin Islands 1884           0
## 30757                           Brunei 1884           0
## 30758                         Bulgaria 1884       25648
## 30759                     Burkina Faso 1884           0
## 30760                          Burundi 1884           0
## 30761                         Cambodia 1884           0
## 30762                         Cameroon 1884           0
## 30763                           Canada 1884    61793360
## 30764                       Cape Verde 1884           0
## 30765                   Cayman Islands 1884           0
## 30766         Central African Republic 1884           0
## 30767                             Chad 1884           0
## 30768                            Chile 1884           0
## 30769                            China 1884           0
## 30770                 Christmas Island 1884           0
## 30771                         Colombia 1884           0
## 30772                          Comoros 1884           0
## 30773                            Congo 1884           0
## 30774                     Cook Islands 1884           0
## 30775                       Costa Rica 1884           0
## 30776                    Cote d'Ivoire 1884           0
## 30777                          Croatia 1884           0
## 30778                             Cuba 1884           0
## 30779                          Curacao 1884           0
## 30780                           Cyprus 1884           0
## 30781                   Czech Republic 1884           0
## 30782                   Czechoslovakia 1884   261910048
## 30783     Democratic Republic of Congo 1884           0
## 30784                          Denmark 1884    38739472
## 30785                         Djibouti 1884           0
## 30786                         Dominica 1884           0
## 30787               Dominican Republic 1884           0
## 30788                            EU-28 1884 18152584512
## 30789                          Ecuador 1884           0
## 30790                            Egypt 1884           0
## 30791                      El Salvador 1884           0
## 30792                Equatorial Guinea 1884           0
## 30793                          Eritrea 1884           0
## 30794                          Estonia 1884           0
## 30795                         Ethiopia 1884           0
## 30796                   Europe (other) 1884   486062576
## 30797                   Faeroe Islands 1884           0
## 30798                 Falkland Islands 1884           0
## 30799                             Fiji 1884           0
## 30800                          Finland 1884     2246032
## 30801                           France 1884  2115842752
## 30802                    French Guiana 1884           0
## 30803                 French Polynesia 1884           0
## 30804                            Gabon 1884           0
## 30805                           Gambia 1884           0
## 30806                          Georgia 1884           0
## 30807                          Germany 1884  2733259728
## 30808                            Ghana 1884           0
## 30809                        Gibraltar 1884           0
## 30810                           Greece 1884     1637808
## 30811                        Greenland 1884           0
## 30812                          Grenada 1884           0
## 30813                       Guadeloupe 1884           0
## 30814                        Guatemala 1884           0
## 30815                           Guinea 1884           0
## 30816                    Guinea-Bissau 1884           0
## 30817                           Guyana 1884           0
## 30818                            Haiti 1884           0
## 30819                         Honduras 1884           0
## 30820                        Hong Kong 1884           0
## 30821                          Hungary 1884    65285152
## 30822                          Iceland 1884           0
## 30823                            India 1884    21628592
## 30824                        Indonesia 1884           0
## 30825                             Iran 1884           0
## 30826                             Iraq 1884           0
## 30827                          Ireland 1884     1099200
## 30828                           Israel 1884           0
## 30829                            Italy 1884    76540960
## 30830                          Jamaica 1884           0
## 30831                            Japan 1884    21984000
## 30832                           Jordan 1884           0
## 30833                       Kazakhstan 1884           0
## 30834                            Kenya 1884           0
## 30835                         Kiribati 1884           0
## 30836                           Kuwait 1884           0
## 30837                       Kyrgysztan 1884           0
## 30838                       Kyrgyzstan 1884           0
## 30839                             Laos 1884           0
## 30840                           Latvia 1884           0
## 30841                          Lebanon 1884           0
## 30842                          Lesotho 1884           0
## 30843                          Liberia 1884           0
## 30844                            Libya 1884           0
## 30845                    Liechtenstein 1884           0
## 30846                        Lithuania 1884           0
## 30847                       Luxembourg 1884           0
## 30848                            Macao 1884           0
## 30849                        Macedonia 1884           0
## 30850                       Madagascar 1884           0
## 30851                           Malawi 1884           0
## 30852                         Malaysia 1884           0
## 30853                         Maldives 1884           0
## 30854                             Mali 1884           0
## 30855                            Malta 1884           0
## 30856                 Marshall Islands 1884           0
## 30857                       Martinique 1884           0
## 30858                       Mauritania 1884           0
## 30859                        Mauritius 1884           0
## 30860                           Mexico 1884           0
## 30861             Micronesia (country) 1884           0
## 30862                      Middle East 1884     4462752
## 30863                          Moldova 1884           0
## 30864                         Mongolia 1884           0
## 30865                       Montenegro 1884           0
## 30866                       Montserrat 1884           0
## 30867                          Morocco 1884           0
## 30868                       Mozambique 1884           0
## 30869                          Myanmar 1884           0
## 30870                          Namibia 1884           0
## 30871                            Nauru 1884           0
## 30872                            Nepal 1884           0
## 30873                      Netherlands 1884   196881376
## 30874                    New Caledonia 1884           0
## 30875                      New Zealand 1884     5067312
## 30876                        Nicaragua 1884           0
## 30877                            Niger 1884           0
## 30878                          Nigeria 1884           0
## 30879                             Niue 1884           0
## 30880                      North Korea 1884           0
## 30881                           Norway 1884    23885616
## 30882                             Oman 1884           0
## 30883                         Pakistan 1884           0
## 30884                            Palau 1884           0
## 30885                        Palestine 1884           0
## 30886                           Panama 1884           0
## 30887                 Papua New Guinea 1884           0
## 30888                         Paraguay 1884           0
## 30889                             Peru 1884        3664
## 30890                      Philippines 1884           0
## 30891                           Poland 1884   594015008
## 30892                         Portugal 1884    11365728
## 30893                            Qatar 1884           0
## 30894                          Reunion 1884           0
## 30895                          Romania 1884     1806352
## 30896                           Russia 1884           0
## 30897                           Rwanda 1884           0
## 30898                     Saint Helena 1884           0
## 30899            Saint Kitts and Nevis 1884           0
## 30900                      Saint Lucia 1884           0
## 30901        Saint Pierre and Miquelon 1884           0
## 30902 Saint Vincent and the Grenadines 1884           0
## 30903                            Samoa 1884           0
## 30904            Sao Tome and Principe 1884           0
## 30905                     Saudi Arabia 1884           0
## 30906                          Senegal 1884           0
## 30907                           Serbia 1884           0
## 30908                       Seychelles 1884           0
## 30909                     Sierra Leone 1884           0
## 30910                        Singapore 1884           0
## 30911        Sint Maarten (Dutch part) 1884           0
## 30912                         Slovakia 1884           0
## 30913                         Slovenia 1884           0
## 30914                  Solomon Islands 1884           0
## 30915                          Somalia 1884           0
## 30916                     South Africa 1884       21984
## 30917                      South Korea 1884           0
## 30918                      South Sudan 1884           0
## 30919                            Spain 1884    93662832
## 30920                        Sri Lanka 1884           0
## 30921                            Sudan 1884           0
## 30922                         Suriname 1884           0
## 30923                        Swaziland 1884           0
## 30924                           Sweden 1884    50376336
## 30925                      Switzerland 1884    27688848
## 30926                            Syria 1884           0
## 30927                           Taiwan 1884           0
## 30928                       Tajikistan 1884           0
## 30929                         Tanzania 1884           0
## 30930                         Thailand 1884           0
## 30931                            Timor 1884           0
## 30932                             Togo 1884           0
## 30933                            Tonga 1884           0
## 30934              Trinidad and Tobago 1884           0
## 30935                          Tunisia 1884           0
## 30936                           Turkey 1884     4462752
## 30937                     Turkmenistan 1884           0
## 30938         Turks and Caicos Islands 1884           0
## 30939                           Tuvalu 1884           0
## 30940                           Uganda 1884           0
## 30941                          Ukraine 1884           0
## 30942             United Arab Emirates 1884           0
## 30943                   United Kingdom 1884 11014321088
## 30944                    United States 1884  3634548768
## 30945                          Uruguay 1884           0
## 30946                       Uzbekistan 1884           0
## 30947                          Vanuatu 1884           0
## 30948                        Venezuela 1884           0
## 30949                          Vietnam 1884           0
## 30950        Wallis and Futuna Islands 1884           0
## 30951                            World 1884 22411823296
## 30952                            Yemen 1884           0
## 30953                           Zambia 1884           0
## 30954                         Zimbabwe 1884           0
## 30955                      Afghanistan 1885           0
## 30956                           Africa 1885       58624
## 30957                          Albania 1885           0
## 30958                          Algeria 1885           0
## 30959                 Americas (other) 1885    70037360
## 30960                          Andorra 1885           0
## 30961                           Angola 1885           0
## 30962                         Anguilla 1885           0
## 30963              Antarctic Fisheries 1885           0
## 30964              Antigua and Barbuda 1885           0
## 30965                        Argentina 1885           0
## 30966                          Armenia 1885           0
## 30967                            Aruba 1885           0
## 30968         Asia and Pacific (other) 1885   126745088
## 30969                        Australia 1885    28088224
## 30970                          Austria 1885   290921600
## 30971                       Azerbaijan 1885           0
## 30972                          Bahamas 1885           0
## 30973                          Bahrain 1885           0
## 30974                       Bangladesh 1885           0
## 30975                         Barbados 1885           0
## 30976                          Belarus 1885           0
## 30977                          Belgium 1885   909686928
## 30978                           Belize 1885           0
## 30979                            Benin 1885           0
## 30980                          Bermuda 1885           0
## 30981                           Bhutan 1885           0
## 30982                          Bolivia 1885           0
## 30983  Bonaire Sint Eustatius and Saba 1885           0
## 30984           Bosnia and Herzegovina 1885           0
## 30985                         Botswana 1885           0
## 30986                           Brazil 1885           0
## 30987           British Virgin Islands 1885           0
## 30988                           Brunei 1885           0
## 30989                         Bulgaria 1885       32976
## 30990                     Burkina Faso 1885           0
## 30991                          Burundi 1885           0
## 30992                         Cambodia 1885           0
## 30993                         Cameroon 1885           0
## 30994                           Canada 1885    70037360
## 30995                       Cape Verde 1885           0
## 30996                   Cayman Islands 1885           0
## 30997         Central African Republic 1885           0
## 30998                             Chad 1885           0
## 30999                            Chile 1885           0
## 31000                            China 1885           0
## 31001                 Christmas Island 1885           0
## 31002                         Colombia 1885           0
## 31003                          Comoros 1885           0
## 31004                            Congo 1885           0
## 31005                     Cook Islands 1885           0
## 31006                       Costa Rica 1885           0
## 31007                    Cote d'Ivoire 1885           0
## 31008                          Croatia 1885           0
## 31009                             Cuba 1885           0
## 31010                          Curacao 1885           0
## 31011                           Cyprus 1885           0
## 31012                   Czech Republic 1885           0
## 31013                   Czechoslovakia 1885   287642320
## 31014     Democratic Republic of Congo 1885           0
## 31015                          Denmark 1885    41274960
## 31016                         Djibouti 1885           0
## 31017                         Dominica 1885           0
## 31018               Dominican Republic 1885           0
## 31019                            EU-28 1885 18822590880
## 31020                          Ecuador 1885           0
## 31021                            Egypt 1885           0
## 31022                      El Salvador 1885           0
## 31023                Equatorial Guinea 1885           0
## 31024                          Eritrea 1885           0
## 31025                          Estonia 1885           0
## 31026                         Ethiopia 1885           0
## 31027                   Europe (other) 1885   535248112
## 31028                   Faeroe Islands 1885           0
## 31029                 Falkland Islands 1885           0
## 31030                             Fiji 1885           0
## 31031                          Finland 1885     2465872
## 31032                           France 1885  2195556736
## 31033                    French Guiana 1885           0
## 31034                 French Polynesia 1885           0
## 31035                            Gabon 1885           0
## 31036                           Gambia 1885           0
## 31037                          Georgia 1885           0
## 31038                          Germany 1885  2894442752
## 31039                            Ghana 1885           0
## 31040                        Gibraltar 1885           0
## 31041                           Greece 1885     1637808
## 31042                        Greenland 1885           0
## 31043                          Grenada 1885           0
## 31044                       Guadeloupe 1885           0
## 31045                        Guatemala 1885           0
## 31046                           Guinea 1885           0
## 31047                    Guinea-Bissau 1885           0
## 31048                           Guyana 1885           0
## 31049                            Haiti 1885           0
## 31050                         Honduras 1885           0
## 31051                        Hong Kong 1885           0
## 31052                          Hungary 1885    69663632
## 31053                          Iceland 1885           0
## 31054                            India 1885    24325296
## 31055                        Indonesia 1885           0
## 31056                             Iran 1885           0
## 31057                             Iraq 1885           0
## 31058                          Ireland 1885     1099200
## 31059                           Israel 1885           0
## 31060                            Italy 1885    84916864
## 31061                          Jamaica 1885           0
## 31062                            Japan 1885    25332896
## 31063                           Jordan 1885           0
## 31064                       Kazakhstan 1885           0
## 31065                            Kenya 1885           0
## 31066                         Kiribati 1885           0
## 31067                           Kuwait 1885           0
## 31068                       Kyrgysztan 1885           0
## 31069                       Kyrgyzstan 1885           0
## 31070                             Laos 1885           0
## 31071                           Latvia 1885           0
## 31072                          Lebanon 1885           0
## 31073                          Lesotho 1885           0
## 31074                          Liberia 1885           0
## 31075                            Libya 1885           0
## 31076                    Liechtenstein 1885           0
## 31077                        Lithuania 1885           0
## 31078                       Luxembourg 1885           0
## 31079                            Macao 1885           0
## 31080                        Macedonia 1885           0
## 31081                       Madagascar 1885           0
## 31082                           Malawi 1885           0
## 31083                         Malaysia 1885           0
## 31084                         Maldives 1885           0
## 31085                             Mali 1885           0
## 31086                            Malta 1885           0
## 31087                 Marshall Islands 1885           0
## 31088                       Martinique 1885           0
## 31089                       Mauritania 1885           0
## 31090                        Mauritius 1885           0
## 31091                           Mexico 1885           0
## 31092             Micronesia (country) 1885           0
## 31093                      Middle East 1885     4656944
## 31094                          Moldova 1885           0
## 31095                         Mongolia 1885           0
## 31096                       Montenegro 1885           0
## 31097                       Montserrat 1885           0
## 31098                          Morocco 1885           0
## 31099                       Mozambique 1885           0
## 31100                          Myanmar 1885           0
## 31101                          Namibia 1885           0
## 31102                            Nauru 1885           0
## 31103                            Nepal 1885           0
## 31104                      Netherlands 1885   206301520
## 31105                    New Caledonia 1885           0
## 31106                      New Zealand 1885     6195824
## 31107                        Nicaragua 1885           0
## 31108                            Niger 1885           0
## 31109                          Nigeria 1885           0
## 31110                             Niue 1885           0
## 31111                      North Korea 1885           0
## 31112                           Norway 1885    25669984
## 31113                             Oman 1885           0
## 31114                         Pakistan 1885           0
## 31115                            Palau 1885           0
## 31116                        Palestine 1885           0
## 31117                           Panama 1885           0
## 31118                 Papua New Guinea 1885           0
## 31119                         Paraguay 1885           0
## 31120                             Peru 1885        7328
## 31121                      Philippines 1885           0
## 31122                           Poland 1885   626613616
## 31123                         Portugal 1885    12479584
## 31124                            Qatar 1885           0
## 31125                          Reunion 1885           0
## 31126                          Romania 1885     2257024
## 31127                           Russia 1885           0
## 31128                           Rwanda 1885           0
## 31129                     Saint Helena 1885           0
## 31130            Saint Kitts and Nevis 1885           0
## 31131                      Saint Lucia 1885           0
## 31132        Saint Pierre and Miquelon 1885           0
## 31133 Saint Vincent and the Grenadines 1885           0
## 31134                            Samoa 1885           0
## 31135            Sao Tome and Principe 1885           0
## 31136                     Saudi Arabia 1885           0
## 31137                          Senegal 1885           0
## 31138                           Serbia 1885           0
## 31139                       Seychelles 1885           0
## 31140                     Sierra Leone 1885           0
## 31141                        Singapore 1885           0
## 31142        Sint Maarten (Dutch part) 1885           0
## 31143                         Slovakia 1885           0
## 31144                         Slovenia 1885           0
## 31145                  Solomon Islands 1885           0
## 31146                          Somalia 1885           0
## 31147                     South Africa 1885       58624
## 31148                      South Korea 1885           0
## 31149                      South Sudan 1885           0
## 31150                            Spain 1885    99422640
## 31151                        Sri Lanka 1885           0
## 31152                            Sudan 1885           0
## 31153                         Suriname 1885           0
## 31154                        Swaziland 1885           0
## 31155                           Sweden 1885    54205216
## 31156                      Switzerland 1885    29733360
## 31157                            Syria 1885           0
## 31158                           Taiwan 1885           0
## 31159                       Tajikistan 1885           0
## 31160                         Tanzania 1885           0
## 31161                         Thailand 1885           0
## 31162                            Timor 1885           0
## 31163                             Togo 1885           0
## 31164                            Tonga 1885           0
## 31165              Trinidad and Tobago 1885           0
## 31166                          Tunisia 1885           0
## 31167                           Turkey 1885     4656944
## 31168                     Turkmenistan 1885           0
## 31169         Turks and Caicos Islands 1885           0
## 31170                           Tuvalu 1885           0
## 31171                           Uganda 1885           0
## 31172                          Ukraine 1885           0
## 31173             United Arab Emirates 1885           0
## 31174                   United Kingdom 1885 11329611952
## 31175                    United States 1885  3906710688
## 31176                          Uruguay 1885           0
## 31177                       Uzbekistan 1885           0
## 31178                          Vanuatu 1885           0
## 31179                        Venezuela 1885           0
## 31180                          Vietnam 1885           0
## 31181        Wallis and Futuna Islands 1885           0
## 31182                            World 1885 23421731616
## 31183                            Yemen 1885           0
## 31184                           Zambia 1885           0
## 31185                         Zimbabwe 1885           0
## 31186                      Afghanistan 1886           0
## 31187                           Africa 1886      106256
## 31188                          Albania 1886           0
## 31189                          Algeria 1886           0
## 31190                 Americas (other) 1886    78841952
## 31191                          Andorra 1886           0
## 31192                           Angola 1886           0
## 31193                         Anguilla 1886           0
## 31194              Antarctic Fisheries 1886           0
## 31195              Antigua and Barbuda 1886           0
## 31196                        Argentina 1886           0
## 31197                          Armenia 1886           0
## 31198                            Aruba 1886           0
## 31199         Asia and Pacific (other) 1886   141639248
## 31200                        Australia 1886    30975456
## 31201                          Austria 1886   302290992
## 31202                       Azerbaijan 1886           0
## 31203                          Bahamas 1886           0
## 31204                          Bahrain 1886           0
## 31205                       Bangladesh 1886           0
## 31206                         Barbados 1886           0
## 31207                          Belarus 1886           0
## 31208                          Belgium 1886   941790896
## 31209                           Belize 1886           0
## 31210                            Benin 1886           0
## 31211                          Bermuda 1886           0
## 31212                           Bhutan 1886           0
## 31213                          Bolivia 1886           0
## 31214  Bonaire Sint Eustatius and Saba 1886           0
## 31215           Bosnia and Herzegovina 1886           0
## 31216                         Botswana 1886           0
## 31217                           Brazil 1886           0
## 31218           British Virgin Islands 1886           0
## 31219                           Brunei 1886           0
## 31220                         Bulgaria 1886       40304
## 31221                     Burkina Faso 1886           0
## 31222                          Burundi 1886           0
## 31223                         Cambodia 1886           0
## 31224                         Cameroon 1886           0
## 31225                           Canada 1886    78834624
## 31226                       Cape Verde 1886           0
## 31227                   Cayman Islands 1886           0
## 31228         Central African Republic 1886           0
## 31229                             Chad 1886           0
## 31230                            Chile 1886           0
## 31231                            China 1886           0
## 31232                 Christmas Island 1886           0
## 31233                         Colombia 1886           0
## 31234                          Comoros 1886           0
## 31235                            Congo 1886           0
## 31236                     Cook Islands 1886           0
## 31237                       Costa Rica 1886           0
## 31238                    Cote d'Ivoire 1886           0
## 31239                          Croatia 1886           0
## 31240                             Cuba 1886           0
## 31241                          Curacao 1886           0
## 31242                           Cyprus 1886           0
## 31243                   Czech Republic 1886           0
## 31244                   Czechoslovakia 1886   314693632
## 31245     Democratic Republic of Congo 1886           0
## 31246                          Denmark 1886    43704192
## 31247                         Djibouti 1886           0
## 31248                         Dominica 1886           0
## 31249               Dominican Republic 1886           0
## 31250                            EU-28 1886 19490197328
## 31251                          Ecuador 1886           0
## 31252                            Egypt 1886           0
## 31253                      El Salvador 1886           0
## 31254                Equatorial Guinea 1886           0
## 31255                          Eritrea 1886           0
## 31256                          Estonia 1886           0
## 31257                         Ethiopia 1886           0
## 31258                   Europe (other) 1886   586225344
## 31259                   Faeroe Islands 1886           0
## 31260                 Falkland Islands 1886           0
## 31261                             Fiji 1886           0
## 31262                          Finland 1886     2594112
## 31263                           France 1886  2274629520
## 31264                    French Guiana 1886           0
## 31265                 French Polynesia 1886           0
## 31266                            Gabon 1886           0
## 31267                           Gambia 1886           0
## 31268                          Georgia 1886           0
## 31269                          Germany 1886  3057476096
## 31270                            Ghana 1886           0
## 31271                        Gibraltar 1886           0
## 31272                           Greece 1886     1637808
## 31273                        Greenland 1886           0
## 31274                          Grenada 1886           0
## 31275                       Guadeloupe 1886           0
## 31276                        Guatemala 1886           0
## 31277                           Guinea 1886           0
## 31278                    Guinea-Bissau 1886           0
## 31279                           Guyana 1886           0
## 31280                            Haiti 1886           0
## 31281                         Honduras 1886           0
## 31282                        Hong Kong 1886           0
## 31283                          Hungary 1886    73759984
## 31284                          Iceland 1886           0
## 31285                            India 1886    27351760
## 31286                        Indonesia 1886           0
## 31287                             Iran 1886           0
## 31288                             Iraq 1886           0
## 31289                          Ireland 1886     1099200
## 31290                           Israel 1886           0
## 31291                            Italy 1886    93245136
## 31292                          Jamaica 1886           0
## 31293                            Japan 1886    28938272
## 31294                           Jordan 1886           0
## 31295                       Kazakhstan 1886           0
## 31296                            Kenya 1886           0
## 31297                         Kiribati 1886           0
## 31298                           Kuwait 1886           0
## 31299                       Kyrgysztan 1886           0
## 31300                       Kyrgyzstan 1886           0
## 31301                             Laos 1886           0
## 31302                           Latvia 1886           0
## 31303                          Lebanon 1886           0
## 31304                          Lesotho 1886           0
## 31305                          Liberia 1886           0
## 31306                            Libya 1886           0
## 31307                    Liechtenstein 1886           0
## 31308                        Lithuania 1886           0
## 31309                       Luxembourg 1886           0
## 31310                            Macao 1886           0
## 31311                        Macedonia 1886           0
## 31312                       Madagascar 1886           0
## 31313                           Malawi 1886           0
## 31314                         Malaysia 1886           0
## 31315                         Maldives 1886           0
## 31316                             Mali 1886           0
## 31317                            Malta 1886           0
## 31318                 Marshall Islands 1886           0
## 31319                       Martinique 1886           0
## 31320                       Mauritania 1886           0
## 31321                        Mauritius 1886           0
## 31322                           Mexico 1886           0
## 31323             Micronesia (country) 1886           0
## 31324                      Middle East 1886     4792512
## 31325                          Moldova 1886           0
## 31326                         Mongolia 1886           0
## 31327                       Montenegro 1886           0
## 31328                       Montserrat 1886           0
## 31329                          Morocco 1886           0
## 31330                       Mozambique 1886           0
## 31331                          Myanmar 1886           0
## 31332                          Namibia 1886           0
## 31333                            Nauru 1886           0
## 31334                            Nepal 1886           0
## 31335                      Netherlands 1886   215919520
## 31336                    New Caledonia 1886           0
## 31337                      New Zealand 1886     7375632
## 31338                        Nicaragua 1886           0
## 31339                            Niger 1886           0
## 31340                          Nigeria 1886           0
## 31341                             Niue 1886           0
## 31342                      North Korea 1886           0
## 31343                           Norway 1886    27414048
## 31344                             Oman 1886           0
## 31345                         Pakistan 1886           0
## 31346                            Palau 1886           0
## 31347                        Palestine 1886           0
## 31348                           Panama 1886           0
## 31349                 Papua New Guinea 1886           0
## 31350                         Paraguay 1886           0
## 31351                             Peru 1886       14656
## 31352                      Philippines 1886           0
## 31353                           Poland 1886   660043952
## 31354                         Portugal 1886    13710688
## 31355                            Qatar 1886           0
## 31356                          Reunion 1886           0
## 31357                          Romania 1886     2740672
## 31358                           Russia 1886           0
## 31359                           Rwanda 1886           0
## 31360                     Saint Helena 1886           0
## 31361            Saint Kitts and Nevis 1886           0
## 31362                      Saint Lucia 1886           0
## 31363        Saint Pierre and Miquelon 1886           0
## 31364 Saint Vincent and the Grenadines 1886           0
## 31365                            Samoa 1886           0
## 31366            Sao Tome and Principe 1886           0
## 31367                     Saudi Arabia 1886           0
## 31368                          Senegal 1886           0
## 31369                           Serbia 1886           0
## 31370                       Seychelles 1886           0
## 31371                     Sierra Leone 1886           0
## 31372                        Singapore 1886           0
## 31373        Sint Maarten (Dutch part) 1886           0
## 31374                         Slovakia 1886           0
## 31375                         Slovenia 1886           0
## 31376                  Solomon Islands 1886           0
## 31377                          Somalia 1886           0
## 31378                     South Africa 1886      106256
## 31379                      South Korea 1886           0
## 31380                      South Sudan 1886           0
## 31381                            Spain 1886   105515872
## 31382                        Sri Lanka 1886           0
## 31383                            Sudan 1886           0
## 31384                         Suriname 1886           0
## 31385                        Swaziland 1886           0
## 31386                           Sweden 1886    57957152
## 31387                      Switzerland 1886    31818176
## 31388                            Syria 1886           0
## 31389                           Taiwan 1886           0
## 31390                       Tajikistan 1886           0
## 31391                         Tanzania 1886           0
## 31392                         Thailand 1886           0
## 31393                            Timor 1886           0
## 31394                             Togo 1886           0
## 31395                            Tonga 1886           0
## 31396              Trinidad and Tobago 1886           0
## 31397                          Tunisia 1886           0
## 31398                           Turkey 1886     4792512
## 31399                     Turkmenistan 1886           0
## 31400         Turks and Caicos Islands 1886           0
## 31401                           Tuvalu 1886           0
## 31402                           Uganda 1886           0
## 31403                          Ukraine 1886           0
## 31404             United Arab Emirates 1886           0
## 31405                   United Kingdom 1886 11642041232
## 31406                    United States 1886  4194173472
## 31407                          Uruguay 1886           0
## 31408                       Uzbekistan 1886           0
## 31409                          Vanuatu 1886           0
## 31410                        Venezuela 1886           0
## 31411                          Vietnam 1886           0
## 31412        Wallis and Futuna Islands 1886           0
## 31413                            World 1886 24447461088
## 31414                            Yemen 1886           0
## 31415                           Zambia 1886           0
## 31416                         Zimbabwe 1886           0
## 31417                      Afghanistan 1887           0
## 31418                           Africa 1887      153888
## 31419                          Albania 1887           0
## 31420                          Algeria 1887           0
## 31421                 Americas (other) 1887    90083104
## 31422                          Andorra 1887           0
## 31423                           Angola 1887           0
## 31424                         Anguilla 1887           0
## 31425              Antarctic Fisheries 1887           0
## 31426              Antigua and Barbuda 1887           0
## 31427                        Argentina 1887     1084544
## 31428                          Armenia 1887           0
## 31429                            Aruba 1887           0
## 31430         Asia and Pacific (other) 1887   158533952
## 31431                        Australia 1887    34009248
## 31432                          Austria 1887   314547072
## 31433                       Azerbaijan 1887           0
## 31434                          Bahamas 1887           0
## 31435                          Bahrain 1887           0
## 31436                       Bangladesh 1887           0
## 31437                         Barbados 1887           0
## 31438                          Belarus 1887           0
## 31439                          Belgium 1887   975759840
## 31440                           Belize 1887           0
## 31441                            Benin 1887           0
## 31442                          Bermuda 1887           0
## 31443                           Bhutan 1887           0
## 31444                          Bolivia 1887           0
## 31445  Bonaire Sint Eustatius and Saba 1887           0
## 31446           Bosnia and Herzegovina 1887           0
## 31447                         Botswana 1887           0
## 31448                           Brazil 1887           0
## 31449           British Virgin Islands 1887           0
## 31450                           Brunei 1887           0
## 31451                         Bulgaria 1887       51296
## 31452                     Burkina Faso 1887           0
## 31453                          Burundi 1887           0
## 31454                         Cambodia 1887           0
## 31455                         Cameroon 1887           0
## 31456                           Canada 1887    88983904
## 31457                       Cape Verde 1887           0
## 31458                   Cayman Islands 1887           0
## 31459         Central African Republic 1887           0
## 31460                             Chad 1887           0
## 31461                            Chile 1887           0
## 31462                            China 1887           0
## 31463                 Christmas Island 1887           0
## 31464                         Colombia 1887           0
## 31465                          Comoros 1887           0
## 31466                            Congo 1887           0
## 31467                     Cook Islands 1887           0
## 31468                       Costa Rica 1887           0
## 31469                    Cote d'Ivoire 1887           0
## 31470                          Croatia 1887           0
## 31471                             Cuba 1887           0
## 31472                          Curacao 1887           0
## 31473                           Cyprus 1887           0
## 31474                   Czech Republic 1887           0
## 31475                   Czechoslovakia 1887   343107952
## 31476     Democratic Republic of Congo 1887           0
## 31477                          Denmark 1887    46195712
## 31478                         Djibouti 1887           0
## 31479                         Dominica 1887           0
## 31480               Dominican Republic 1887           0
## 31481                            EU-28 1887 20182612720
## 31482                          Ecuador 1887           0
## 31483                            Egypt 1887           0
## 31484                      El Salvador 1887           0
## 31485                Equatorial Guinea 1887           0
## 31486                          Eritrea 1887           0
## 31487                          Estonia 1887           0
## 31488                         Ethiopia 1887           0
## 31489                   Europe (other) 1887   639840656
## 31490                   Faeroe Islands 1887           0
## 31491                 Falkland Islands 1887           0
## 31492                             Fiji 1887           0
## 31493                          Finland 1887     2722352
## 31494                           France 1887  2357919568
## 31495                    French Guiana 1887           0
## 31496                 French Polynesia 1887           0
## 31497                            Gabon 1887           0
## 31498                           Gambia 1887           0
## 31499                          Georgia 1887           0
## 31500                          Germany 1887  3227866752
## 31501                            Ghana 1887           0
## 31502                        Gibraltar 1887           0
## 31503                           Greece 1887     1637808
## 31504                        Greenland 1887           0
## 31505                          Grenada 1887           0
## 31506                       Guadeloupe 1887           0
## 31507                        Guatemala 1887           0
## 31508                           Guinea 1887           0
## 31509                    Guinea-Bissau 1887           0
## 31510                           Guyana 1887           0
## 31511                            Haiti 1887           0
## 31512                         Honduras 1887           0
## 31513                        Hong Kong 1887           0
## 31514                          Hungary 1887    77845344
## 31515                          Iceland 1887           0
## 31516                            India 1887    30704320
## 31517                        Indonesia 1887           0
## 31518                             Iran 1887           0
## 31519                             Iraq 1887           0
## 31520                          Ireland 1887     1099200
## 31521                           Israel 1887           0
## 31522                            Italy 1887   103394416
## 31523                          Jamaica 1887           0
## 31524                            Japan 1887    33412016
## 31525                           Jordan 1887           0
## 31526                       Kazakhstan 1887           0
## 31527                            Kenya 1887           0
## 31528                         Kiribati 1887           0
## 31529                           Kuwait 1887           0
## 31530                       Kyrgysztan 1887           0
## 31531                       Kyrgyzstan 1887           0
## 31532                             Laos 1887           0
## 31533                           Latvia 1887           0
## 31534                          Lebanon 1887           0
## 31535                          Lesotho 1887           0
## 31536                          Liberia 1887           0
## 31537                            Libya 1887           0
## 31538                    Liechtenstein 1887           0
## 31539                        Lithuania 1887           0
## 31540                       Luxembourg 1887           0
## 31541                            Macao 1887           0
## 31542                        Macedonia 1887           0
## 31543                       Madagascar 1887           0
## 31544                           Malawi 1887           0
## 31545                         Malaysia 1887           0
## 31546                         Maldives 1887           0
## 31547                             Mali 1887           0
## 31548                            Malta 1887           0
## 31549                 Marshall Islands 1887           0
## 31550                       Martinique 1887           0
## 31551                       Mauritania 1887           0
## 31552                        Mauritius 1887           0
## 31553                           Mexico 1887           0
## 31554             Micronesia (country) 1887           0
## 31555                      Middle East 1887     5038000
## 31556                          Moldova 1887           0
## 31557                         Mongolia 1887           0
## 31558                       Montenegro 1887           0
## 31559                       Montserrat 1887           0
## 31560                          Morocco 1887           0
## 31561                       Mozambique 1887           0
## 31562                          Myanmar 1887           0
## 31563                          Namibia 1887           0
## 31564                            Nauru 1887           0
## 31565                            Nepal 1887           0
## 31566                      Netherlands 1887   225706064
## 31567                    New Caledonia 1887           0
## 31568                      New Zealand 1887     8614064
## 31569                        Nicaragua 1887           0
## 31570                            Niger 1887           0
## 31571                          Nigeria 1887           0
## 31572                             Niue 1887           0
## 31573                      North Korea 1887           0
## 31574                           Norway 1887    29095824
## 31575                             Oman 1887           0
## 31576                         Pakistan 1887           0
## 31577                            Palau 1887           0
## 31578                        Palestine 1887           0
## 31579                           Panama 1887           0
## 31580                 Papua New Guinea 1887           0
## 31581                         Paraguay 1887           0
## 31582                             Peru 1887       21984
## 31583                      Philippines 1887           0
## 31584                           Poland 1887   693719776
## 31585                         Portugal 1887    14978432
## 31586                            Qatar 1887           0
## 31587                          Reunion 1887           0
## 31588                          Romania 1887     3268288
## 31589                           Russia 1887           0
## 31590                           Rwanda 1887           0
## 31591                     Saint Helena 1887           0
## 31592            Saint Kitts and Nevis 1887           0
## 31593                      Saint Lucia 1887           0
## 31594        Saint Pierre and Miquelon 1887           0
## 31595 Saint Vincent and the Grenadines 1887           0
## 31596                            Samoa 1887           0
## 31597            Sao Tome and Principe 1887           0
## 31598                     Saudi Arabia 1887           0
## 31599                          Senegal 1887           0
## 31600                           Serbia 1887           0
## 31601                       Seychelles 1887           0
## 31602                     Sierra Leone 1887           0
## 31603                        Singapore 1887           0
## 31604        Sint Maarten (Dutch part) 1887           0
## 31605                         Slovakia 1887           0
## 31606                         Slovenia 1887           0
## 31607                  Solomon Islands 1887           0
## 31608                          Somalia 1887           0
## 31609                     South Africa 1887      153888
## 31610                      South Korea 1887           0
## 31611                      South Sudan 1887           0
## 31612                            Spain 1887   111656736
## 31613                        Sri Lanka 1887           0
## 31614                            Sudan 1887           0
## 31615                         Suriname 1887           0
## 31616                        Swaziland 1887           0
## 31617                           Sweden 1887    61760384
## 31618                      Switzerland 1887    34075200
## 31619                            Syria 1887           0
## 31620                           Taiwan 1887           0
## 31621                       Tajikistan 1887           0
## 31622                         Tanzania 1887           0
## 31623                         Thailand 1887           0
## 31624                            Timor 1887           0
## 31625                             Togo 1887           0
## 31626                            Tonga 1887           0
## 31627              Trinidad and Tobago 1887           0
## 31628                          Tunisia 1887           0
## 31629                           Turkey 1887     5038000
## 31630                     Turkmenistan 1887           0
## 31631         Turks and Caicos Islands 1887           0
## 31632                           Tuvalu 1887           0
## 31633                           Uganda 1887           0
## 31634                          Ukraine 1887           0
## 31635             United Arab Emirates 1887           0
## 31636                   United Kingdom 1887 11962483680
## 31637                    United States 1887  4501553760
## 31638                          Uruguay 1887           0
## 31639                       Uzbekistan 1887           0
## 31640                          Vanuatu 1887           0
## 31641                        Venezuela 1887           0
## 31642                          Vietnam 1887           0
## 31643        Wallis and Futuna Islands 1887           0
## 31644                            World 1887 25524504880
## 31645                            Yemen 1887           0
## 31646                           Zambia 1887           0
## 31647                         Zimbabwe 1887           0
## 31648                      Afghanistan 1888           0
## 31649                           Africa 1888      234496
## 31650                          Albania 1888           0
## 31651                          Algeria 1888           0
## 31652                 Americas (other) 1888   104292096
## 31653                          Andorra 1888           0
## 31654                           Angola 1888           0
## 31655                         Anguilla 1888           0
## 31656              Antarctic Fisheries 1888           0
## 31657              Antigua and Barbuda 1888           0
## 31658                        Argentina 1888     1974896
## 31659                          Armenia 1888           0
## 31660                            Aruba 1888           0
## 31661         Asia and Pacific (other) 1888   177187376
## 31662                        Australia 1888    37537680
## 31663                          Austria 1888   326499040
## 31664                       Azerbaijan 1888           0
## 31665                          Bahamas 1888           0
## 31666                          Bahrain 1888           0
## 31667                       Bangladesh 1888           0
## 31668                         Barbados 1888           0
## 31669                          Belarus 1888           0
## 31670                          Belgium 1888  1011813600
## 31671                           Belize 1888           0
## 31672                            Benin 1888           0
## 31673                          Bermuda 1888           0
## 31674                           Bhutan 1888           0
## 31675                          Bolivia 1888           0
## 31676  Bonaire Sint Eustatius and Saba 1888           0
## 31677           Bosnia and Herzegovina 1888           0
## 31678                         Botswana 1888           0
## 31679                           Brazil 1888           0
## 31680           British Virgin Islands 1888           0
## 31681                           Brunei 1888           0
## 31682                         Bulgaria 1888       69616
## 31683                     Burkina Faso 1888           0
## 31684                          Burundi 1888           0
## 31685                         Cambodia 1888           0
## 31686                         Cameroon 1888           0
## 31687                           Canada 1888   102295216
## 31688                       Cape Verde 1888           0
## 31689                   Cayman Islands 1888           0
## 31690         Central African Republic 1888           0
## 31691                             Chad 1888           0
## 31692                            Chile 1888           0
## 31693                            China 1888           0
## 31694                 Christmas Island 1888           0
## 31695                         Colombia 1888           0
## 31696                          Comoros 1888           0
## 31697                            Congo 1888           0
## 31698                     Cook Islands 1888           0
## 31699                       Costa Rica 1888           0
## 31700                    Cote d'Ivoire 1888           0
## 31701                          Croatia 1888           0
## 31702                             Cuba 1888           0
## 31703                          Curacao 1888           0
## 31704                           Cyprus 1888           0
## 31705                   Czech Republic 1888           0
## 31706                   Czechoslovakia 1888   373563120
## 31707     Democratic Republic of Congo 1888           0
## 31708                          Denmark 1888    48998672
## 31709                         Djibouti 1888           0
## 31710                         Dominica 1888           0
## 31711               Dominican Republic 1888           0
## 31712                            EU-28 1888 20916097888
## 31713                          Ecuador 1888           0
## 31714                            Egypt 1888           0
## 31715                      El Salvador 1888           0
## 31716                Equatorial Guinea 1888           0
## 31717                          Eritrea 1888           0
## 31718                          Estonia 1888           0
## 31719                         Ethiopia 1888           0
## 31720                   Europe (other) 1888   696716928
## 31721                   Faeroe Islands 1888           0
## 31722                 Falkland Islands 1888           0
## 31723                             Fiji 1888           0
## 31724                          Finland 1888     2843264
## 31725                           France 1888  2444573168
## 31726                    French Guiana 1888           0
## 31727                 French Polynesia 1888           0
## 31728                            Gabon 1888           0
## 31729                           Gambia 1888           0
## 31730                          Georgia 1888           0
## 31731                          Germany 1888  3414214128
## 31732                            Ghana 1888           0
## 31733                        Gibraltar 1888           0
## 31734                           Greece 1888     1641472
## 31735                        Greenland 1888           0
## 31736                          Grenada 1888           0
## 31737                       Guadeloupe 1888           0
## 31738                        Guatemala 1888           0
## 31739                           Guinea 1888           0
## 31740                    Guinea-Bissau 1888           0
## 31741                           Guyana 1888           0
## 31742                            Haiti 1888           0
## 31743                         Honduras 1888           0
## 31744                        Hong Kong 1888           0
## 31745                          Hungary 1888    82275120
## 31746                          Iceland 1888           0
## 31747                            India 1888    34426944
## 31748                        Indonesia 1888           0
## 31749                             Iran 1888           0
## 31750                             Iraq 1888           0
## 31751                          Ireland 1888     1099200
## 31752                           Israel 1888           0
## 31753                            Italy 1888   114291152
## 31754                          Jamaica 1888           0
## 31755                            Japan 1888    38581920
## 31756                           Jordan 1888           0
## 31757                       Kazakhstan 1888           0
## 31758                            Kenya 1888           0
## 31759                         Kiribati 1888           0
## 31760                           Kuwait 1888           0
## 31761                       Kyrgysztan 1888           0
## 31762                       Kyrgyzstan 1888           0
## 31763                             Laos 1888           0
## 31764                           Latvia 1888           0
## 31765                          Lebanon 1888           0
## 31766                          Lesotho 1888           0
## 31767                          Liberia 1888           0
## 31768                            Libya 1888           0
## 31769                    Liechtenstein 1888           0
## 31770                        Lithuania 1888           0
## 31771                       Luxembourg 1888           0
## 31772                            Macao 1888           0
## 31773                        Macedonia 1888           0
## 31774                       Madagascar 1888           0
## 31775                           Malawi 1888           0
## 31776                         Malaysia 1888           0
## 31777                         Maldives 1888           0
## 31778                             Mali 1888           0
## 31779                            Malta 1888           0
## 31780                 Marshall Islands 1888           0
## 31781                       Martinique 1888           0
## 31782                       Mauritania 1888           0
## 31783                        Mauritius 1888           0
## 31784                           Mexico 1888           0
## 31785             Micronesia (country) 1888           0
## 31786                      Middle East 1888     5305472
## 31787                          Moldova 1888           0
## 31788                         Mongolia 1888           0
## 31789                       Montenegro 1888           0
## 31790                       Montserrat 1888           0
## 31791                          Morocco 1888           0
## 31792                       Mozambique 1888           0
## 31793                          Myanmar 1888           0
## 31794                          Namibia 1888           0
## 31795                            Nauru 1888           0
## 31796                            Nepal 1888           0
## 31797                      Netherlands 1888   236566160
## 31798                    New Caledonia 1888           0
## 31799                      New Zealand 1888     9977072
## 31800                        Nicaragua 1888           0
## 31801                            Niger 1888           0
## 31802                          Nigeria 1888           0
## 31803                             Niue 1888           0
## 31804                      North Korea 1888           0
## 31805                           Norway 1888    31041408
## 31806                             Oman 1888           0
## 31807                         Pakistan 1888           0
## 31808                            Palau 1888           0
## 31809                        Palestine 1888           0
## 31810                           Panama 1888           0
## 31811                 Papua New Guinea 1888           0
## 31812                         Paraguay 1888           0
## 31813                             Peru 1888       29312
## 31814                      Philippines 1888           0
## 31815                           Poland 1888   731220816
## 31816                         Portugal 1888    16345104
## 31817                            Qatar 1888           0
## 31818                          Reunion 1888           0
## 31819                          Romania 1888     3898496
## 31820                           Russia 1888           0
## 31821                           Rwanda 1888           0
## 31822                     Saint Helena 1888           0
## 31823            Saint Kitts and Nevis 1888           0
## 31824                      Saint Lucia 1888           0
## 31825        Saint Pierre and Miquelon 1888           0
## 31826 Saint Vincent and the Grenadines 1888           0
## 31827                            Samoa 1888           0
## 31828            Sao Tome and Principe 1888           0
## 31829                     Saudi Arabia 1888           0
## 31830                          Senegal 1888           0
## 31831                           Serbia 1888           0
## 31832                       Seychelles 1888           0
## 31833                     Sierra Leone 1888           0
## 31834                        Singapore 1888           0
## 31835        Sint Maarten (Dutch part) 1888           0
## 31836                         Slovakia 1888           0
## 31837                         Slovenia 1888           0
## 31838                  Solomon Islands 1888           0
## 31839                          Somalia 1888           0
## 31840                     South Africa 1888      234496
## 31841                      South Korea 1888           0
## 31842                      South Sudan 1888           0
## 31843                            Spain 1888   118090720
## 31844                        Sri Lanka 1888           0
## 31845                            Sudan 1888           0
## 31846                         Suriname 1888           0
## 31847                        Swaziland 1888           0
## 31848                           Sweden 1888    66006960
## 31849                      Switzerland 1888    36379856
## 31850                            Syria 1888           0
## 31851                           Taiwan 1888           0
## 31852                       Tajikistan 1888           0
## 31853                         Tanzania 1888           0
## 31854                         Thailand 1888           0
## 31855                            Timor 1888           0
## 31856                             Togo 1888           0
## 31857                            Tonga 1888           0
## 31858              Trinidad and Tobago 1888           0
## 31859                          Tunisia 1888           0
## 31860                           Turkey 1888     5305472
## 31861                     Turkmenistan 1888           0
## 31862         Turks and Caicos Islands 1888           0
## 31863                           Tuvalu 1888           0
## 31864                           Uganda 1888           0
## 31865                          Ukraine 1888           0
## 31866             United Arab Emirates 1888           0
## 31867                   United Kingdom 1888 12295651200
## 31868                    United States 1888  4875428320
## 31869                          Uruguay 1888           0
## 31870                       Uzbekistan 1888           0
## 31871                          Vanuatu 1888           0
## 31872                        Venezuela 1888           0
## 31873                          Vietnam 1888           0
## 31874        Wallis and Futuna Islands 1888           0
## 31875                            World 1888 26717089248
## 31876                            Yemen 1888           0
## 31877                           Zambia 1888           0
## 31878                         Zimbabwe 1888           0
## 31879                      Afghanistan 1889           0
## 31880                           Africa 1889      366400
## 31881                          Albania 1889           0
## 31882                          Algeria 1889           0
## 31883                 Americas (other) 1889   117339600
## 31884                          Andorra 1889           0
## 31885                           Angola 1889           0
## 31886                         Anguilla 1889           0
## 31887              Antarctic Fisheries 1889           0
## 31888              Antigua and Barbuda 1889           0
## 31889                        Argentina 1889     3729952
## 31890                          Armenia 1889           0
## 31891                            Aruba 1889           0
## 31892         Asia and Pacific (other) 1889   198229728
## 31893                        Australia 1889    40963520
## 31894                          Austria 1889   339374336
## 31895                       Azerbaijan 1889           0
## 31896                          Bahamas 1889           0
## 31897                          Bahrain 1889           0
## 31898                       Bangladesh 1889           0
## 31899                         Barbados 1889           0
## 31900                          Belarus 1889           0
## 31901                          Belgium 1889  1048647792
## 31902                           Belize 1889           0
## 31903                            Benin 1889           0
## 31904                          Bermuda 1889           0
## 31905                           Bhutan 1889           0
## 31906                          Bolivia 1889           0
## 31907  Bonaire Sint Eustatius and Saba 1889           0
## 31908           Bosnia and Herzegovina 1889           0
## 31909                         Botswana 1889           0
## 31910                           Brazil 1889           0
## 31911           British Virgin Islands 1889           0
## 31912                           Brunei 1889           0
## 31913                         Bulgaria 1889       95264
## 31914                     Burkina Faso 1889           0
## 31915                          Burundi 1889           0
## 31916                         Cambodia 1889           0
## 31917                         Cameroon 1889           0
## 31918                           Canada 1889   113587664
## 31919                       Cape Verde 1889           0
## 31920                   Cayman Islands 1889           0
## 31921         Central African Republic 1889           0
## 31922                             Chad 1889           0
## 31923                            Chile 1889           0
## 31924                            China 1889           0
## 31925                 Christmas Island 1889           0
## 31926                         Colombia 1889           0
## 31927                          Comoros 1889           0
## 31928                            Congo 1889           0
## 31929                     Cook Islands 1889           0
## 31930                       Costa Rica 1889           0
## 31931                    Cote d'Ivoire 1889           0
## 31932                          Croatia 1889           0
## 31933                             Cuba 1889           0
## 31934                          Curacao 1889           0
## 31935                           Cyprus 1889           0
## 31936                   Czech Republic 1889           0
## 31937                   Czechoslovakia 1889   405806320
## 31938     Democratic Republic of Congo 1889           0
## 31939                          Denmark 1889    51992160
## 31940                         Djibouti 1889           0
## 31941                         Dominica 1889           0
## 31942               Dominican Republic 1889           0
## 31943                            EU-28 1889 21682789888
## 31944                          Ecuador 1889           0
## 31945                            Egypt 1889           0
## 31946                      El Salvador 1889           0
## 31947                Equatorial Guinea 1889           0
## 31948                          Eritrea 1889           0
## 31949                          Estonia 1889           0
## 31950                         Ethiopia 1889           0
## 31951                   Europe (other) 1889   757682224
## 31952                   Faeroe Islands 1889           0
## 31953                 Falkland Islands 1889           0
## 31954                             Fiji 1889           0
## 31955                          Finland 1889     3004480
## 31956                           France 1889  2533370208
## 31957                    French Guiana 1889           0
## 31958                 French Polynesia 1889           0
## 31959                            Gabon 1889           0
## 31960                           Gambia 1889           0
## 31961                          Georgia 1889           0
## 31962                          Germany 1889  3613063072
## 31963                            Ghana 1889           0
## 31964                        Gibraltar 1889           0
## 31965                           Greece 1889     1641472
## 31966                        Greenland 1889           0
## 31967                          Grenada 1889           0
## 31968                       Guadeloupe 1889           0
## 31969                        Guatemala 1889           0
## 31970                           Guinea 1889           0
## 31971                    Guinea-Bissau 1889           0
## 31972                           Guyana 1889           0
## 31973                            Haiti 1889           0
## 31974                         Honduras 1889           0
## 31975                        Hong Kong 1889           0
## 31976                          Hungary 1889    87027328
## 31977                          Iceland 1889           0
## 31978                            India 1889    38805424
## 31979                        Indonesia 1889        3664
## 31980                             Iran 1889           0
## 31981                             Iraq 1889           0
## 31982                          Ireland 1889     1099200
## 31983                           Israel 1889           0
## 31984                            Italy 1889   125546960
## 31985                          Jamaica 1889           0
## 31986                            Japan 1889    44836368
## 31987                           Jordan 1889           0
## 31988                       Kazakhstan 1889           0
## 31989                            Kenya 1889           0
## 31990                         Kiribati 1889           0
## 31991                           Kuwait 1889           0
## 31992                       Kyrgysztan 1889           0
## 31993                       Kyrgyzstan 1889           0
## 31994                             Laos 1889           0
## 31995                           Latvia 1889           0
## 31996                          Lebanon 1889           0
## 31997                          Lesotho 1889           0
## 31998                          Liberia 1889           0
## 31999                            Libya 1889           0
## 32000                    Liechtenstein 1889           0
## 32001                        Lithuania 1889           0
## 32002                       Luxembourg 1889           0
## 32003                            Macao 1889           0
## 32004                        Macedonia 1889           0
## 32005                       Madagascar 1889           0
## 32006                           Malawi 1889           0
## 32007                         Malaysia 1889           0
## 32008                         Maldives 1889           0
## 32009                             Mali 1889           0
## 32010                            Malta 1889           0
## 32011                 Marshall Islands 1889           0
## 32012                       Martinique 1889           0
## 32013                       Mauritania 1889           0
## 32014                        Mauritius 1889           0
## 32015                           Mexico 1889           0
## 32016             Micronesia (country) 1889           0
## 32017                      Middle East 1889     5708512
## 32018                          Moldova 1889           0
## 32019                         Mongolia 1889           0
## 32020                       Montenegro 1889           0
## 32021                       Montserrat 1889           0
## 32022                          Morocco 1889           0
## 32023                       Mozambique 1889           0
## 32024                          Myanmar 1889           0
## 32025                          Namibia 1889           0
## 32026                            Nauru 1889           0
## 32027                            Nepal 1889           0
## 32028                      Netherlands 1889   247177104
## 32029                    New Caledonia 1889           0
## 32030                      New Zealand 1889    11288784
## 32031                        Nicaragua 1889           0
## 32032                            Niger 1889           0
## 32033                          Nigeria 1889           0
## 32034                             Niue 1889           0
## 32035                      North Korea 1889           0
## 32036                           Norway 1889    33261792
## 32037                             Oman 1889           0
## 32038                         Pakistan 1889           0
## 32039                            Palau 1889           0
## 32040                        Palestine 1889           0
## 32041                           Panama 1889           0
## 32042                 Papua New Guinea 1889           0
## 32043                         Paraguay 1889           0
## 32044                             Peru 1889       36640
## 32045                      Philippines 1889           0
## 32046                           Poland 1889   771737328
## 32047                         Portugal 1889    17916960
## 32048                            Qatar 1889           0
## 32049                          Reunion 1889           0
## 32050                          Romania 1889     4543360
## 32051                           Russia 1889           0
## 32052                           Rwanda 1889           0
## 32053                     Saint Helena 1889           0
## 32054            Saint Kitts and Nevis 1889           0
## 32055                      Saint Lucia 1889           0
## 32056        Saint Pierre and Miquelon 1889           0
## 32057 Saint Vincent and the Grenadines 1889           0
## 32058                            Samoa 1889           0
## 32059            Sao Tome and Principe 1889           0
## 32060                     Saudi Arabia 1889           0
## 32061                          Senegal 1889           0
## 32062                           Serbia 1889           0
## 32063                       Seychelles 1889           0
## 32064                     Sierra Leone 1889           0
## 32065                        Singapore 1889           0
## 32066        Sint Maarten (Dutch part) 1889           0
## 32067                         Slovakia 1889           0
## 32068                         Slovenia 1889           0
## 32069                  Solomon Islands 1889           0
## 32070                          Somalia 1889           0
## 32071                     South Africa 1889      366400
## 32072                      South Korea 1889           0
## 32073                      South Sudan 1889           0
## 32074                            Spain 1889   124913088
## 32075                        Sri Lanka 1889           0
## 32076                            Sudan 1889           0
## 32077                         Suriname 1889           0
## 32078                        Swaziland 1889           0
## 32079                           Sweden 1889    70964352
## 32080                      Switzerland 1889    38922672
## 32081                            Syria 1889           0
## 32082                           Taiwan 1889           0
## 32083                       Tajikistan 1889           0
## 32084                         Tanzania 1889           0
## 32085                         Thailand 1889           0
## 32086                            Timor 1889           0
## 32087                             Togo 1889           0
## 32088                            Tonga 1889           0
## 32089              Trinidad and Tobago 1889           0
## 32090                          Tunisia 1889           0
## 32091                           Turkey 1889     5708512
## 32092                     Turkmenistan 1889           0
## 32093         Turks and Caicos Islands 1889           0
## 32094                           Tuvalu 1889           0
## 32095                           Uganda 1889           0
## 32096                          Ukraine 1889           0
## 32097             United Arab Emirates 1889           0
## 32098                   United Kingdom 1889 12640675424
## 32099                    United States 1889  5210970112
## 32100                          Uruguay 1889           0
## 32101                       Uzbekistan 1889           0
## 32102                          Vanuatu 1889           0
## 32103                        Venezuela 1889           0
## 32104                          Vietnam 1889           0
## 32105        Wallis and Futuna Islands 1889           0
## 32106                            World 1889 27909244928
## 32107                            Yemen 1889           0
## 32108                           Zambia 1889           0
## 32109                         Zimbabwe 1889           0
## 32110                      Afghanistan 1890           0
## 32111                           Africa 1890      663184
## 32112                          Albania 1890           0
## 32113                          Algeria 1890           0
## 32114                 Americas (other) 1890   131138224
## 32115                          Andorra 1890           0
## 32116                           Angola 1890           0
## 32117                         Anguilla 1890           0
## 32118              Antarctic Fisheries 1890           0
## 32119              Antigua and Barbuda 1890           0
## 32120                        Argentina 1890     5100288
## 32121                          Armenia 1890           0
## 32122                            Aruba 1890           0
## 32123         Asia and Pacific (other) 1890   221990768
## 32124                        Australia 1890    44510272
## 32125                          Austria 1890   352410848
## 32126                       Azerbaijan 1890           0
## 32127                          Bahamas 1890           0
## 32128                          Bahrain 1890           0
## 32129                       Bangladesh 1890           0
## 32130                         Barbados 1890           0
## 32131                          Belarus 1890           0
## 32132                          Belgium 1890  1088471808
## 32133                           Belize 1890           0
## 32134                            Benin 1890           0
## 32135                          Bermuda 1890           0
## 32136                           Bhutan 1890           0
## 32137                          Bolivia 1890           0
## 32138  Bonaire Sint Eustatius and Saba 1890           0
## 32139           Bosnia and Herzegovina 1890           0
## 32140                         Botswana 1890           0
## 32141                           Brazil 1890           0
## 32142           British Virgin Islands 1890           0
## 32143                           Brunei 1890           0
## 32144                         Bulgaria 1890      128240
## 32145                     Burkina Faso 1890           0
## 32146                          Burundi 1890           0
## 32147                         Cambodia 1890           0
## 32148                         Cameroon 1890           0
## 32149                           Canada 1890   126001296
## 32150                       Cape Verde 1890           0
## 32151                   Cayman Islands 1890           0
## 32152         Central African Republic 1890           0
## 32153                             Chad 1890           0
## 32154                            Chile 1890           0
## 32155                            China 1890           0
## 32156                 Christmas Island 1890           0
## 32157                         Colombia 1890           0
## 32158                          Comoros 1890           0
## 32159                            Congo 1890           0
## 32160                     Cook Islands 1890           0
## 32161                       Costa Rica 1890           0
## 32162                    Cote d'Ivoire 1890           0
## 32163                          Croatia 1890           0
## 32164                             Cuba 1890           0
## 32165                          Curacao 1890           0
## 32166                           Cyprus 1890           0
## 32167                   Czech Republic 1890           0
## 32168                   Czechoslovakia 1890   440288224
## 32169     Democratic Republic of Congo 1890           0
## 32170                          Denmark 1890    54861072
## 32171                         Djibouti 1890           0
## 32172                         Dominica 1890           0
## 32173               Dominican Republic 1890           0
## 32174                            EU-28 1890 22482216064
## 32175                          Ecuador 1890           0
## 32176                            Egypt 1890           0
## 32177                      El Salvador 1890           0
## 32178                Equatorial Guinea 1890           0
## 32179                          Eritrea 1890           0
## 32180                          Estonia 1890           0
## 32181                         Ethiopia 1890           0
## 32182                   Europe (other) 1890   824330384
## 32183                   Faeroe Islands 1890           0
## 32184                 Falkland Islands 1890           0
## 32185                             Fiji 1890           0
## 32186                          Finland 1890     3213328
## 32187                           France 1890  2631188016
## 32188                    French Guiana 1890           0
## 32189                 French Polynesia 1890           0
## 32190                            Gabon 1890           0
## 32191                           Gambia 1890           0
## 32192                          Georgia 1890           0
## 32193                          Germany 1890  3821295520
## 32194                            Ghana 1890           0
## 32195                        Gibraltar 1890           0
## 32196                           Greece 1890     1641472
## 32197                        Greenland 1890           0
## 32198                          Grenada 1890           0
## 32199                       Guadeloupe 1890           0
## 32200                        Guatemala 1890           0
## 32201                           Guinea 1890           0
## 32202                    Guinea-Bissau 1890           0
## 32203                           Guyana 1890           0
## 32204                            Haiti 1890           0
## 32205                         Honduras 1890           0
## 32206                        Hong Kong 1890           0
## 32207                          Hungary 1890    92281504
## 32208                          Iceland 1890           0
## 32209                            India 1890    43634576
## 32210                        Indonesia 1890       18320
## 32211                             Iran 1890           0
## 32212                             Iraq 1890           0
## 32213                          Ireland 1890     1099200
## 32214                           Israel 1890           0
## 32215                            Italy 1890   137755408
## 32216                          Jamaica 1890           0
## 32217                            Japan 1890    51592784
## 32218                           Jordan 1890           0
## 32219                       Kazakhstan 1890           0
## 32220                            Kenya 1890           0
## 32221                         Kiribati 1890           0
## 32222                           Kuwait 1890           0
## 32223                       Kyrgysztan 1890           0
## 32224                       Kyrgyzstan 1890           0
## 32225                             Laos 1890           0
## 32226                           Latvia 1890           0
## 32227                          Lebanon 1890           0
## 32228                          Lesotho 1890           0
## 32229                          Liberia 1890           0
## 32230                            Libya 1890           0
## 32231                    Liechtenstein 1890           0
## 32232                        Lithuania 1890           0
## 32233                       Luxembourg 1890           0
## 32234                            Macao 1890           0
## 32235                        Macedonia 1890           0
## 32236                       Madagascar 1890           0
## 32237                           Malawi 1890           0
## 32238                         Malaysia 1890        7328
## 32239                         Maldives 1890           0
## 32240                             Mali 1890           0
## 32241                            Malta 1890           0
## 32242                 Marshall Islands 1890           0
## 32243                       Martinique 1890           0
## 32244                       Mauritania 1890           0
## 32245                        Mauritius 1890           0
## 32246                           Mexico 1890           0
## 32247             Micronesia (country) 1890           0
## 32248                      Middle East 1890     6074912
## 32249                          Moldova 1890           0
## 32250                         Mongolia 1890           0
## 32251                       Montenegro 1890           0
## 32252                       Montserrat 1890           0
## 32253                          Morocco 1890           0
## 32254                       Mozambique 1890           0
## 32255                          Myanmar 1890           0
## 32256                          Namibia 1890           0
## 32257                            Nauru 1890           0
## 32258                            Nepal 1890           0
## 32259                      Netherlands 1890   257461952
## 32260                    New Caledonia 1890           0
## 32261                      New Zealand 1890    12710416
## 32262                        Nicaragua 1890           0
## 32263                            Niger 1890           0
## 32264                          Nigeria 1890           0
## 32265                             Niue 1890           0
## 32266                      North Korea 1890           0
## 32267                           Norway 1890    35339280
## 32268                             Oman 1890           0
## 32269                         Pakistan 1890           0
## 32270                            Palau 1890           0
## 32271                        Palestine 1890           0
## 32272                           Panama 1890           0
## 32273                 Papua New Guinea 1890           0
## 32274                         Paraguay 1890           0
## 32275                             Peru 1890       47632
## 32276                      Philippines 1890           0
## 32277                           Poland 1890   813602192
## 32278                         Portugal 1890    19595072
## 32279                            Qatar 1890           0
## 32280                          Reunion 1890           0
## 32281                          Romania 1890     5349440
## 32282                           Russia 1890           0
## 32283                           Rwanda 1890           0
## 32284                     Saint Helena 1890           0
## 32285            Saint Kitts and Nevis 1890           0
## 32286                      Saint Lucia 1890           0
## 32287        Saint Pierre and Miquelon 1890           0
## 32288 Saint Vincent and the Grenadines 1890           0
## 32289                            Samoa 1890           0
## 32290            Sao Tome and Principe 1890           0
## 32291                     Saudi Arabia 1890           0
## 32292                          Senegal 1890           0
## 32293                           Serbia 1890           0
## 32294                       Seychelles 1890           0
## 32295                     Sierra Leone 1890           0
## 32296                        Singapore 1890           0
## 32297        Sint Maarten (Dutch part) 1890           0
## 32298                         Slovakia 1890           0
## 32299                         Slovenia 1890           0
## 32300                  Solomon Islands 1890           0
## 32301                          Somalia 1890           0
## 32302                     South Africa 1890      663184
## 32303                      South Korea 1890           0
## 32304                      South Sudan 1890           0
## 32305                            Spain 1890   132252080
## 32306                        Sri Lanka 1890           0
## 32307                            Sudan 1890           0
## 32308                         Suriname 1890           0
## 32309                        Swaziland 1890           0
## 32310                           Sweden 1890    75910752
## 32311                      Switzerland 1890    41798912
## 32312                            Syria 1890           0
## 32313                           Taiwan 1890           0
## 32314                       Tajikistan 1890           0
## 32315                         Tanzania 1890           0
## 32316                         Thailand 1890           0
## 32317                            Timor 1890           0
## 32318                             Togo 1890           0
## 32319                            Tonga 1890           0
## 32320              Trinidad and Tobago 1890           0
## 32321                          Tunisia 1890           0
## 32322                           Turkey 1890     6074912
## 32323                     Turkmenistan 1890           0
## 32324         Turks and Caicos Islands 1890           0
## 32325                           Tuvalu 1890           0
## 32326                           Uganda 1890           0
## 32327                          Ukraine 1890           0
## 32328             United Arab Emirates 1890           0
## 32329                   United Kingdom 1890 12993698160
## 32330                    United States 1890  5612716720
## 32331                          Uruguay 1890           0
## 32332                       Uzbekistan 1890           0
## 32333                          Vanuatu 1890           0
## 32334                        Venezuela 1890           0
## 32335                          Vietnam 1890           0
## 32336        Wallis and Futuna Islands 1890           0
## 32337                            World 1890 29208099952
## 32338                            Yemen 1890           0
## 32339                           Zambia 1890           0
## 32340                         Zimbabwe 1890           0
## 32341                      Afghanistan 1891           0
## 32342                           Africa 1891      959968
## 32343                          Albania 1891           0
## 32344                          Algeria 1891           0
## 32345                 Americas (other) 1891   146585648
## 32346                          Andorra 1891           0
## 32347                           Angola 1891           0
## 32348                         Anguilla 1891           0
## 32349              Antarctic Fisheries 1891           0
## 32350              Antigua and Barbuda 1891           0
## 32351                        Argentina 1891     6038272
## 32352                          Armenia 1891           0
## 32353                            Aruba 1891           0
## 32354         Asia and Pacific (other) 1891   248144400
## 32355                        Australia 1891    48518688
## 32356                          Austria 1891   367356304
## 32357                       Azerbaijan 1891           0
## 32358                          Bahamas 1891           0
## 32359                          Bahrain 1891           0
## 32360                       Bangladesh 1891           0
## 32361                         Barbados 1891           0
## 32362                          Belarus 1891           0
## 32363                          Belgium 1891  1126251312
## 32364                           Belize 1891           0
## 32365                            Benin 1891           0
## 32366                          Bermuda 1891           0
## 32367                           Bhutan 1891           0
## 32368                          Bolivia 1891           0
## 32369  Bonaire Sint Eustatius and Saba 1891           0
## 32370           Bosnia and Herzegovina 1891           0
## 32371                         Botswana 1891           0
## 32372                           Brazil 1891           0
## 32373           British Virgin Islands 1891           0
## 32374                           Brunei 1891           0
## 32375                         Bulgaria 1891      168544
## 32376                     Burkina Faso 1891           0
## 32377                          Burundi 1891           0
## 32378                         Cambodia 1891           0
## 32379                         Cameroon 1891           0
## 32380                           Canada 1891   139942816
## 32381                       Cape Verde 1891           0
## 32382                   Cayman Islands 1891           0
## 32383         Central African Republic 1891           0
## 32384                             Chad 1891           0
## 32385                            Chile 1891           0
## 32386                            China 1891           0
## 32387                 Christmas Island 1891           0
## 32388                         Colombia 1891           0
## 32389                          Comoros 1891           0
## 32390                            Congo 1891           0
## 32391                     Cook Islands 1891           0
## 32392                       Costa Rica 1891           0
## 32393                    Cote d'Ivoire 1891           0
## 32394                          Croatia 1891           0
## 32395                             Cuba 1891           0
## 32396                          Curacao 1891           0
## 32397                           Cyprus 1891           0
## 32398                   Czech Republic 1891           0
## 32399                   Czechoslovakia 1891   476037872
## 32400     Democratic Republic of Congo 1891           0
## 32401                          Denmark 1891    57946160
## 32402                         Djibouti 1891           0
## 32403                         Dominica 1891           0
## 32404               Dominican Republic 1891           0
## 32405                            EU-28 1891 23307429472
## 32406                          Ecuador 1891           0
## 32407                            Egypt 1891           0
## 32408                      El Salvador 1891           0
## 32409                Equatorial Guinea 1891           0
## 32410                          Eritrea 1891           0
## 32411                          Estonia 1891           0
## 32412                         Ethiopia 1891           0
## 32413                   Europe (other) 1891   895976240
## 32414                   Faeroe Islands 1891           0
## 32415                 Falkland Islands 1891           0
## 32416                             Fiji 1891           0
## 32417                          Finland 1891     3433168
## 32418                           France 1891  2729170704
## 32419                    French Guiana 1891           0
## 32420                 French Polynesia 1891           0
## 32421                            Gabon 1891           0
## 32422                           Gambia 1891           0
## 32423                          Georgia 1891           0
## 32424                          Germany 1891  4042135792
## 32425                            Ghana 1891           0
## 32426                        Gibraltar 1891           0
## 32427                           Greece 1891     1641472
## 32428                        Greenland 1891           0
## 32429                          Grenada 1891           0
## 32430                       Guadeloupe 1891           0
## 32431                        Guatemala 1891           0
## 32432                           Guinea 1891           0
## 32433                    Guinea-Bissau 1891           0
## 32434                           Guyana 1891           0
## 32435                            Haiti 1891           0
## 32436                         Honduras 1891           0
## 32437                        Hong Kong 1891           0
## 32438                          Hungary 1891    97803152
## 32439                          Iceland 1891           0
## 32440                            India 1891    48833792
## 32441                        Indonesia 1891       40304
## 32442                             Iran 1891           0
## 32443                             Iraq 1891           0
## 32444                          Ireland 1891     1099200
## 32445                           Israel 1891           0
## 32446                            Italy 1891   148754736
## 32447                          Jamaica 1891           0
## 32448                            Japan 1891    59715872
## 32449                           Jordan 1891           0
## 32450                       Kazakhstan 1891           0
## 32451                            Kenya 1891           0
## 32452                         Kiribati 1891           0
## 32453                           Kuwait 1891           0
## 32454                       Kyrgysztan 1891           0
## 32455                       Kyrgyzstan 1891           0
## 32456                             Laos 1891           0
## 32457                           Latvia 1891           0
## 32458                          Lebanon 1891           0
## 32459                          Lesotho 1891           0
## 32460                          Liberia 1891           0
## 32461                            Libya 1891           0
## 32462                    Liechtenstein 1891           0
## 32463                        Lithuania 1891           0
## 32464                       Luxembourg 1891           0
## 32465                            Macao 1891           0
## 32466                        Macedonia 1891           0
## 32467                       Madagascar 1891           0
## 32468                           Malawi 1891           0
## 32469                         Malaysia 1891       25648
## 32470                         Maldives 1891           0
## 32471                             Mali 1891           0
## 32472                            Malta 1891           0
## 32473                 Marshall Islands 1891           0
## 32474                       Martinique 1891           0
## 32475                       Mauritania 1891           0
## 32476                        Mauritius 1891           0
## 32477                           Mexico 1891      520288
## 32478             Micronesia (country) 1891           0
## 32479                      Middle East 1891     6477952
## 32480                          Moldova 1891           0
## 32481                         Mongolia 1891           0
## 32482                       Montenegro 1891           0
## 32483                       Montserrat 1891           0
## 32484                          Morocco 1891           0
## 32485                       Mozambique 1891           0
## 32486                          Myanmar 1891           0
## 32487                          Namibia 1891           0
## 32488                            Nauru 1891           0
## 32489                            Nepal 1891           0
## 32490                      Netherlands 1891   269369952
## 32491                    New Caledonia 1891           0
## 32492                      New Zealand 1891    14201664
## 32493                        Nicaragua 1891           0
## 32494                            Niger 1891           0
## 32495                          Nigeria 1891           0
## 32496                             Niue 1891           0
## 32497                      North Korea 1891           0
## 32498                           Norway 1891    37753856
## 32499                             Oman 1891           0
## 32500                         Pakistan 1891           0
## 32501                            Palau 1891           0
## 32502                        Palestine 1891           0
## 32503                           Panama 1891           0
## 32504                 Papua New Guinea 1891           0
## 32505                         Paraguay 1891           0
## 32506                             Peru 1891       95264
## 32507                      Philippines 1891           0
## 32508                           Poland 1891   858944192
## 32509                         Portugal 1891    21335472
## 32510                            Qatar 1891           0
## 32511                          Reunion 1891           0
## 32512                          Romania 1891     6466960
## 32513                           Russia 1891           0
## 32514                           Rwanda 1891           0
## 32515                     Saint Helena 1891           0
## 32516            Saint Kitts and Nevis 1891           0
## 32517                      Saint Lucia 1891           0
## 32518        Saint Pierre and Miquelon 1891           0
## 32519 Saint Vincent and the Grenadines 1891           0
## 32520                            Samoa 1891           0
## 32521            Sao Tome and Principe 1891           0
## 32522                     Saudi Arabia 1891           0
## 32523                          Senegal 1891           0
## 32524                           Serbia 1891           0
## 32525                       Seychelles 1891           0
## 32526                     Sierra Leone 1891           0
## 32527                        Singapore 1891           0
## 32528        Sint Maarten (Dutch part) 1891           0
## 32529                         Slovakia 1891           0
## 32530                         Slovenia 1891           0
## 32531                  Solomon Islands 1891           0
## 32532                          Somalia 1891           0
## 32533                     South Africa 1891      959968
## 32534                      South Korea 1891           0
## 32535                      South Sudan 1891           0
## 32536                            Spain 1891   140191968
## 32537                        Sri Lanka 1891           0
## 32538                            Sudan 1891           0
## 32539                         Suriname 1891           0
## 32540                        Swaziland 1891           0
## 32541                           Sweden 1891    81190576
## 32542                      Switzerland 1891    45320016
## 32543                            Syria 1891           0
## 32544                           Taiwan 1891           0
## 32545                       Tajikistan 1891           0
## 32546                         Tanzania 1891           0
## 32547                         Thailand 1891           0
## 32548                            Timor 1891           0
## 32549                             Togo 1891           0
## 32550                            Tonga 1891           0
## 32551              Trinidad and Tobago 1891           0
## 32552                          Tunisia 1891           0
## 32553                           Turkey 1891     6477952
## 32554                     Turkmenistan 1891           0
## 32555         Turks and Caicos Islands 1891           0
## 32556                           Tuvalu 1891           0
## 32557                           Uganda 1891           0
## 32558                          Ukraine 1891           0
## 32559             United Arab Emirates 1891           0
## 32560                   United Kingdom 1891 13354169808
## 32561                    United States 1891  6040140640
## 32562                          Uruguay 1891           0
## 32563                       Uzbekistan 1891           0
## 32564                          Vanuatu 1891           0
## 32565                        Venezuela 1891           0
## 32566                          Vietnam 1891           0
## 32567        Wallis and Futuna Islands 1891           0
## 32568                            World 1891 30567399984
## 32569                            Yemen 1891           0
## 32570                           Zambia 1891           0
## 32571                         Zimbabwe 1891           0
## 32572                      Afghanistan 1892           0
## 32573                           Africa 1892     1439952
## 32574                          Albania 1892           0
## 32575                          Algeria 1892           0
## 32576                 Americas (other) 1892   162505728
## 32577                          Andorra 1892           0
## 32578                           Angola 1892           0
## 32579                         Anguilla 1892           0
## 32580              Antarctic Fisheries 1892           0
## 32581              Antigua and Barbuda 1892           0
## 32582                        Argentina 1892     7423264
## 32583                          Armenia 1892           0
## 32584                            Aruba 1892           0
## 32585         Asia and Pacific (other) 1892   262313088
## 32586                        Australia 1892    52670000
## 32587                          Austria 1892   381821776
## 32588                       Azerbaijan 1892           0
## 32589                          Bahamas 1892           0
## 32590                          Bahrain 1892           0
## 32591                       Bangladesh 1892           0
## 32592                         Barbados 1892           0
## 32593                          Belarus 1892           0
## 32594                          Belgium 1892  1163979520
## 32595                           Belize 1892           0
## 32596                            Benin 1892           0
## 32597                          Bermuda 1892           0
## 32598                           Bhutan 1892           0
## 32599                          Bolivia 1892           0
## 32600  Bonaire Sint Eustatius and Saba 1892           0
## 32601           Bosnia and Herzegovina 1892           0
## 32602                         Botswana 1892           0
## 32603                           Brazil 1892           0
## 32604           British Virgin Islands 1892           0
## 32605                           Brunei 1892           0
## 32606                         Bulgaria 1892      216176
## 32607                     Burkina Faso 1892           0
## 32608                          Burundi 1892           0
## 32609                         Cambodia 1892           0
## 32610                         Cameroon 1892           0
## 32611                           Canada 1892   153833040
## 32612                       Cape Verde 1892           0
## 32613                   Cayman Islands 1892           0
## 32614         Central African Republic 1892           0
## 32615                             Chad 1892           0
## 32616                            Chile 1892           0
## 32617                            China 1892           0
## 32618                 Christmas Island 1892           0
## 32619                         Colombia 1892           0
## 32620                          Comoros 1892           0
## 32621                            Congo 1892           0
## 32622                     Cook Islands 1892           0
## 32623                       Costa Rica 1892           0
## 32624                    Cote d'Ivoire 1892           0
## 32625                          Croatia 1892           0
## 32626                             Cuba 1892           0
## 32627                          Curacao 1892           0
## 32628                           Cyprus 1892           0
## 32629                   Czech Republic 1892           0
## 32630                   Czechoslovakia 1892   512329792
## 32631     Democratic Republic of Congo 1892           0
## 32632                          Denmark 1892    61115520
## 32633                         Djibouti 1892           0
## 32634                         Dominica 1892           0
## 32635               Dominican Republic 1892           0
## 32636                            EU-28 1892 24116876688
## 32637                          Ecuador 1892           0
## 32638                            Egypt 1892           0
## 32639                      El Salvador 1892           0
## 32640                Equatorial Guinea 1892           0
## 32641                          Eritrea 1892           0
## 32642                          Estonia 1892           0
## 32643                         Ethiopia 1892           0
## 32644                   Europe (other) 1892   969934080
## 32645                   Faeroe Islands 1892           0
## 32646                 Falkland Islands 1892           0
## 32647                             Fiji 1892           0
## 32648                          Finland 1892     3627360
## 32649                           France 1892  2827292624
## 32650                    French Guiana 1892           0
## 32651                 French Polynesia 1892           0
## 32652                            Gabon 1892           0
## 32653                           Gambia 1892           0
## 32654                          Georgia 1892           0
## 32655                          Germany 1892  4257124656
## 32656                            Ghana 1892           0
## 32657                        Gibraltar 1892           0
## 32658                           Greece 1892     2011536
## 32659                        Greenland 1892           0
## 32660                          Grenada 1892           0
## 32661                       Guadeloupe 1892           0
## 32662                        Guatemala 1892           0
## 32663                           Guinea 1892           0
## 32664                    Guinea-Bissau 1892           0
## 32665                           Guyana 1892           0
## 32666                            Haiti 1892           0
## 32667                         Honduras 1892           0
## 32668                        Hong Kong 1892           0
## 32669                          Hungary 1892   103555632
## 32670                          Iceland 1892           0
## 32671                            India 1892    54545968
## 32672                        Indonesia 1892      219840
## 32673                             Iran 1892           0
## 32674                             Iraq 1892           0
## 32675                          Ireland 1892     1099200
## 32676                           Israel 1892           0
## 32677                            Italy 1892   159644144
## 32678                          Jamaica 1892           0
## 32679                            Japan 1892    67791328
## 32680                           Jordan 1892           0
## 32681                       Kazakhstan 1892           0
## 32682                            Kenya 1892           0
## 32683                         Kiribati 1892           0
## 32684                           Kuwait 1892           0
## 32685                       Kyrgysztan 1892           0
## 32686                       Kyrgyzstan 1892           0
## 32687                             Laos 1892           0
## 32688                           Latvia 1892           0
## 32689                          Lebanon 1892           0
## 32690                          Lesotho 1892           0
## 32691                          Liberia 1892           0
## 32692                            Libya 1892           0
## 32693                    Liechtenstein 1892           0
## 32694                        Lithuania 1892           0
## 32695                       Luxembourg 1892           0
## 32696                            Macao 1892           0
## 32697                        Macedonia 1892           0
## 32698                       Madagascar 1892           0
## 32699                           Malawi 1892           0
## 32700                         Malaysia 1892       73280
## 32701                         Maldives 1892           0
## 32702                             Mali 1892           0
## 32703                            Malta 1892           0
## 32704                 Marshall Islands 1892           0
## 32705                       Martinique 1892           0
## 32706                       Mauritania 1892           0
## 32707                        Mauritius 1892           0
## 32708                           Mexico 1892     1099200
## 32709             Micronesia (country) 1892           0
## 32710                      Middle East 1892     6888320
## 32711                          Moldova 1892           0
## 32712                         Mongolia 1892           0
## 32713                       Montenegro 1892           0
## 32714                       Montserrat 1892           0
## 32715                          Morocco 1892           0
## 32716                       Mozambique 1892           0
## 32717                          Myanmar 1892           0
## 32718                          Namibia 1892           0
## 32719                            Nauru 1892           0
## 32720                            Nepal 1892           0
## 32721                      Netherlands 1892   280691712
## 32722                    New Caledonia 1892           0
## 32723                      New Zealand 1892    15703904
## 32724                        Nicaragua 1892           0
## 32725                            Niger 1892           0
## 32726                          Nigeria 1892           0
## 32727                             Niue 1892           0
## 32728                      North Korea 1892           0
## 32729                           Norway 1892    40219728
## 32730                             Oman 1892           0
## 32731                         Pakistan 1892           0
## 32732                            Palau 1892           0
## 32733                        Palestine 1892           0
## 32734                           Panama 1892           0
## 32735                 Papua New Guinea 1892           0
## 32736                         Paraguay 1892           0
## 32737                             Peru 1892      161216
## 32738                      Philippines 1892           0
## 32739                           Poland 1892   902040160
## 32740                         Portugal 1892    23028240
## 32741                            Qatar 1892           0
## 32742                          Reunion 1892           0
## 32743                          Romania 1892     7518528
## 32744                           Russia 1892           0
## 32745                           Rwanda 1892           0
## 32746                     Saint Helena 1892           0
## 32747            Saint Kitts and Nevis 1892           0
## 32748                      Saint Lucia 1892           0
## 32749        Saint Pierre and Miquelon 1892           0
## 32750 Saint Vincent and the Grenadines 1892           0
## 32751                            Samoa 1892           0
## 32752            Sao Tome and Principe 1892           0
## 32753                     Saudi Arabia 1892           0
## 32754                          Senegal 1892           0
## 32755                           Serbia 1892           0
## 32756                       Seychelles 1892           0
## 32757                     Sierra Leone 1892           0
## 32758                        Singapore 1892           0
## 32759        Sint Maarten (Dutch part) 1892           0
## 32760                         Slovakia 1892           0
## 32761                         Slovenia 1892           0
## 32762                  Solomon Islands 1892           0
## 32763                          Somalia 1892           0
## 32764                     South Africa 1892     1439952
## 32765                      South Korea 1892           0
## 32766                      South Sudan 1892           0
## 32767                            Spain 1892   148490928
## 32768                        Sri Lanka 1892           0
## 32769                            Sudan 1892           0
## 32770                         Suriname 1892           0
## 32771                        Swaziland 1892           0
## 32772                           Sweden 1892    86441088
## 32773                      Switzerland 1892    48789824
## 32774                            Syria 1892           0
## 32775                           Taiwan 1892           0
## 32776                       Tajikistan 1892           0
## 32777                         Tanzania 1892           0
## 32778                         Thailand 1892           0
## 32779                            Timor 1892           0
## 32780                             Togo 1892           0
## 32781                            Tonga 1892           0
## 32782              Trinidad and Tobago 1892           0
## 32783                          Tunisia 1892           0
## 32784                           Turkey 1892     6888320
## 32785                     Turkmenistan 1892           0
## 32786         Turks and Caicos Islands 1892           0
## 32787                           Tuvalu 1892           0
## 32788                           Uganda 1892           0
## 32789                          Ukraine 1892           0
## 32790             United Arab Emirates 1892           0
## 32791                   United Kingdom 1892 13707177888
## 32792                    United States 1892  6490589136
## 32793                          Uruguay 1892           0
## 32794                       Uzbekistan 1892           0
## 32795                          Vanuatu 1892           0
## 32796                        Venezuela 1892           0
## 32797                          Vietnam 1892      212512
## 32798        Wallis and Futuna Islands 1892           0
## 32799                            World 1892 31937941168
## 32800                            Yemen 1892           0
## 32801                           Zambia 1892           0
## 32802                         Zimbabwe 1892           0
## 32803                      Afghanistan 1893           0
## 32804                           Africa 1893     3238976
## 32805                          Albania 1893           0
## 32806                          Algeria 1893           0
## 32807                 Americas (other) 1893   179488368
## 32808                          Andorra 1893           0
## 32809                           Angola 1893           0
## 32810                         Anguilla 1893           0
## 32811              Antarctic Fisheries 1893           0
## 32812              Antigua and Barbuda 1893           0
## 32813                        Argentina 1893     8976800
## 32814                          Armenia 1893           0
## 32815                            Aruba 1893           0
## 32816         Asia and Pacific (other) 1893   277474720
## 32817                        Australia 1893    56634448
## 32818                          Austria 1893   399522560
## 32819                       Azerbaijan 1893           0
## 32820                          Bahamas 1893           0
## 32821                          Bahrain 1893           0
## 32822                       Bangladesh 1893           0
## 32823                         Barbados 1893           0
## 32824                          Belarus 1893           0
## 32825                          Belgium 1893  1200055264
## 32826                           Belize 1893           0
## 32827                            Benin 1893           0
## 32828                          Bermuda 1893           0
## 32829                           Bhutan 1893           0
## 32830                          Bolivia 1893           0
## 32831  Bonaire Sint Eustatius and Saba 1893           0
## 32832           Bosnia and Herzegovina 1893           0
## 32833                         Botswana 1893           0
## 32834                           Brazil 1893           0
## 32835           British Virgin Islands 1893           0
## 32836                           Brunei 1893           0
## 32837                         Bulgaria 1893      278464
## 32838                     Burkina Faso 1893           0
## 32839                          Burundi 1893           0
## 32840                         Cambodia 1893           0
## 32841                         Cameroon 1893           0
## 32842                           Canada 1893   168686896
## 32843                       Cape Verde 1893           0
## 32844                   Cayman Islands 1893           0
## 32845         Central African Republic 1893           0
## 32846                             Chad 1893           0
## 32847                            Chile 1893           0
## 32848                            China 1893           0
## 32849                 Christmas Island 1893           0
## 32850                         Colombia 1893           0
## 32851                          Comoros 1893           0
## 32852                            Congo 1893           0
## 32853                     Cook Islands 1893           0
## 32854                       Costa Rica 1893           0
## 32855                    Cote d'Ivoire 1893           0
## 32856                          Croatia 1893           0
## 32857                             Cuba 1893           0
## 32858                          Curacao 1893           0
## 32859                           Cyprus 1893           0
## 32860                   Czech Republic 1893           0
## 32861                   Czechoslovakia 1893   549427792
## 32862     Democratic Republic of Congo 1893           0
## 32863                          Denmark 1893    64112672
## 32864                         Djibouti 1893           0
## 32865                         Dominica 1893           0
## 32866               Dominican Republic 1893           0
## 32867                            EU-28 1893 24896847024
## 32868                          Ecuador 1893           0
## 32869                            Egypt 1893           0
## 32870                      El Salvador 1893           0
## 32871                Equatorial Guinea 1893           0
## 32872                          Eritrea 1893           0
## 32873                          Estonia 1893           0
## 32874                         Ethiopia 1893           0
## 32875                   Europe (other) 1893  1049615088
## 32876                   Faeroe Islands 1893           0
## 32877                 Falkland Islands 1893           0
## 32878                             Fiji 1893           0
## 32879                          Finland 1893     3821552
## 32880                           France 1893  2923622848
## 32881                    French Guiana 1893           0
## 32882                 French Polynesia 1893           0
## 32883                            Gabon 1893           0
## 32884                           Gambia 1893           0
## 32885                          Georgia 1893           0
## 32886                          Germany 1893  4477836688
## 32887                            Ghana 1893           0
## 32888                        Gibraltar 1893           0
## 32889                           Greece 1893     2337632
## 32890                        Greenland 1893           0
## 32891                          Grenada 1893           0
## 32892                       Guadeloupe 1893           0
## 32893                        Guatemala 1893           0
## 32894                           Guinea 1893           0
## 32895                    Guinea-Bissau 1893           0
## 32896                           Guyana 1893           0
## 32897                            Haiti 1893           0
## 32898                         Honduras 1893           0
## 32899                        Hong Kong 1893           0
## 32900                          Hungary 1893   109549936
## 32901                          Iceland 1893           0
## 32902                            India 1893    60558592
## 32903                        Indonesia 1893      622880
## 32904                             Iran 1893           0
## 32905                             Iraq 1893           0
## 32906                          Ireland 1893     1099200
## 32907                           Israel 1893           0
## 32908                            Italy 1893   170167152
## 32909                          Jamaica 1893           0
## 32910                            Japan 1893    76365088
## 32911                           Jordan 1893           0
## 32912                       Kazakhstan 1893           0
## 32913                            Kenya 1893           0
## 32914                         Kiribati 1893           0
## 32915                           Kuwait 1893           0
## 32916                       Kyrgysztan 1893           0
## 32917                       Kyrgyzstan 1893           0
## 32918                             Laos 1893           0
## 32919                           Latvia 1893           0
## 32920                          Lebanon 1893           0
## 32921                          Lesotho 1893           0
## 32922                          Liberia 1893           0
## 32923                            Libya 1893           0
## 32924                    Liechtenstein 1893           0
## 32925                        Lithuania 1893           0
## 32926                       Luxembourg 1893           0
## 32927                            Macao 1893           0
## 32928                        Macedonia 1893           0
## 32929                       Madagascar 1893           0
## 32930                           Malawi 1893           0
## 32931                         Malaysia 1893       84272
## 32932                         Maldives 1893           0
## 32933                             Mali 1893           0
## 32934                            Malta 1893           0
## 32935                 Marshall Islands 1893           0
## 32936                       Martinique 1893           0
## 32937                       Mauritania 1893           0
## 32938                        Mauritius 1893           0
## 32939                           Mexico 1893     1630480
## 32940             Micronesia (country) 1893           0
## 32941                      Middle East 1893     7313344
## 32942                          Moldova 1893           0
## 32943                         Mongolia 1893           0
## 32944                       Montenegro 1893           0
## 32945                       Montserrat 1893           0
## 32946                          Morocco 1893           0
## 32947                       Mozambique 1893           0
## 32948                          Myanmar 1893           0
## 32949                          Namibia 1893           0
## 32950                            Nauru 1893           0
## 32951                            Nepal 1893           0
## 32952                      Netherlands 1893   292152704
## 32953                    New Caledonia 1893           0
## 32954                      New Zealand 1893    17246448
## 32955                        Nicaragua 1893           0
## 32956                            Niger 1893           0
## 32957                          Nigeria 1893           0
## 32958                             Niue 1893           0
## 32959                      North Korea 1893           0
## 32960                           Norway 1893    42681936
## 32961                             Oman 1893           0
## 32962                         Pakistan 1893           0
## 32963                            Palau 1893           0
## 32964                        Palestine 1893           0
## 32965                           Panama 1893           0
## 32966                 Papua New Guinea 1893           0
## 32967                         Paraguay 1893           0
## 32968                             Peru 1893      208848
## 32969                      Philippines 1893           0
## 32970                           Poland 1893   947374832
## 32971                         Portugal 1893    24541472
## 32972                            Qatar 1893           0
## 32973                          Reunion 1893           0
## 32974                          Romania 1893     8654368
## 32975                           Russia 1893           0
## 32976                           Rwanda 1893           0
## 32977                     Saint Helena 1893           0
## 32978            Saint Kitts and Nevis 1893           0
## 32979                      Saint Lucia 1893           0
## 32980        Saint Pierre and Miquelon 1893           0
## 32981 Saint Vincent and the Grenadines 1893           0
## 32982                            Samoa 1893           0
## 32983            Sao Tome and Principe 1893           0
## 32984                     Saudi Arabia 1893           0
## 32985                          Senegal 1893           0
## 32986                           Serbia 1893           0
## 32987                       Seychelles 1893           0
## 32988                     Sierra Leone 1893           0
## 32989                        Singapore 1893           0
## 32990        Sint Maarten (Dutch part) 1893           0
## 32991                         Slovakia 1893           0
## 32992                         Slovenia 1893           0
## 32993                  Solomon Islands 1893           0
## 32994                          Somalia 1893           0
## 32995                     South Africa 1893     3238976
## 32996                      South Korea 1893           0
## 32997                      South Sudan 1893           0
## 32998                            Spain 1893   156610352
## 32999                        Sri Lanka 1893           0
## 33000                            Sudan 1893           0
## 33001                         Suriname 1893           0
## 33002                        Swaziland 1893           0
## 33003                           Sweden 1893    91720912
## 33004                      Switzerland 1893    51666064
## 33005                            Syria 1893           0
## 33006                           Taiwan 1893           0
## 33007                       Tajikistan 1893           0
## 33008                         Tanzania 1893           0
## 33009                         Thailand 1893           0
## 33010                            Timor 1893           0
## 33011                             Togo 1893           0
## 33012                            Tonga 1893           0
## 33013              Trinidad and Tobago 1893           0
## 33014                          Tunisia 1893           0
## 33015                           Turkey 1893     7313344
## 33016                     Turkmenistan 1893           0
## 33017         Turks and Caicos Islands 1893           0
## 33018                           Tuvalu 1893           0
## 33019                           Uganda 1893           0
## 33020                          Ukraine 1893           0
## 33021             United Arab Emirates 1893           0
## 33022                   United Kingdom 1893 14023388416
## 33023                    United States 1893  6944683312
## 33024                          Uruguay 1893           0
## 33025                       Uzbekistan 1893           0
## 33026                          Vanuatu 1893           0
## 33027                        Venezuela 1893           0
## 33028                          Vietnam 1893      875696
## 33029        Wallis and Futuna Islands 1893           0
## 33030                            World 1893 33292078624
## 33031                            Yemen 1893           0
## 33032                           Zambia 1893           0
## 33033                         Zimbabwe 1893           0
## 33034                      Afghanistan 1894           0
## 33035                           Africa 1894     5671872
## 33036                          Albania 1894           0
## 33037                          Algeria 1894           0
## 33038                 Americas (other) 1894   196240176
## 33039                          Andorra 1894           0
## 33040                           Angola 1894           0
## 33041                         Anguilla 1894           0
## 33042              Antarctic Fisheries 1894           0
## 33043              Antigua and Barbuda 1894           0
## 33044                        Argentina 1894    10970016
## 33045                          Armenia 1894           0
## 33046                            Aruba 1894           0
## 33047         Asia and Pacific (other) 1894   295300080
## 33048                        Australia 1894    60994608
## 33049                          Austria 1894   417652032
## 33050                       Azerbaijan 1894           0
## 33051                          Bahamas 1894           0
## 33052                          Bahrain 1894           0
## 33053                       Bangladesh 1894           0
## 33054                         Barbados 1894           0
## 33055                          Belarus 1894           0
## 33056                          Belgium 1894  1239886608
## 33057                           Belize 1894           0
## 33058                            Benin 1894           0
## 33059                          Bermuda 1894           0
## 33060                           Bhutan 1894           0
## 33061                          Bolivia 1894           0
## 33062  Bonaire Sint Eustatius and Saba 1894           0
## 33063           Bosnia and Herzegovina 1894           0
## 33064                         Botswana 1894           0
## 33065                           Brazil 1894           0
## 33066           British Virgin Islands 1894           0
## 33067                           Brunei 1894           0
## 33068                         Bulgaria 1894      359072
## 33069                     Burkina Faso 1894           0
## 33070                          Burundi 1894           0
## 33071                         Cambodia 1894           0
## 33072                         Cameroon 1894           0
## 33073                           Canada 1894   182866576
## 33074                       Cape Verde 1894           0
## 33075                   Cayman Islands 1894           0
## 33076         Central African Republic 1894           0
## 33077                             Chad 1894           0
## 33078                            Chile 1894           0
## 33079                            China 1894           0
## 33080                 Christmas Island 1894           0
## 33081                         Colombia 1894           0
## 33082                          Comoros 1894           0
## 33083                            Congo 1894           0
## 33084                     Cook Islands 1894           0
## 33085                       Costa Rica 1894           0
## 33086                    Cote d'Ivoire 1894           0
## 33087                          Croatia 1894           0
## 33088                             Cuba 1894           0
## 33089                          Curacao 1894           0
## 33090                           Cyprus 1894           0
## 33091                   Czech Republic 1894           0
## 33092                   Czechoslovakia 1894   587456448
## 33093     Democratic Republic of Congo 1894           0
## 33094                          Denmark 1894    67512864
## 33095                         Djibouti 1894           0
## 33096                         Dominica 1894           0
## 33097               Dominican Republic 1894           0
## 33098                            EU-28 1894 25746993952
## 33099                          Ecuador 1894           0
## 33100                            Egypt 1894           0
## 33101                      El Salvador 1894           0
## 33102                Equatorial Guinea 1894           0
## 33103                          Eritrea 1894           0
## 33104                          Estonia 1894           0
## 33105                         Ethiopia 1894           0
## 33106                   Europe (other) 1894  1132245616
## 33107                   Faeroe Islands 1894           0
## 33108                 Falkland Islands 1894           0
## 33109                             Fiji 1894           0
## 33110                          Finland 1894     4041392
## 33111                           France 1894  3025522352
## 33112                    French Guiana 1894           0
## 33113                 French Polynesia 1894           0
## 33114                            Gabon 1894           0
## 33115                           Gambia 1894           0
## 33116                          Georgia 1894           0
## 33117                          Germany 1894  4707334992
## 33118                            Ghana 1894           0
## 33119                        Gibraltar 1894           0
## 33120                           Greece 1894     2671056
## 33121                        Greenland 1894           0
## 33122                          Grenada 1894           0
## 33123                       Guadeloupe 1894           0
## 33124                        Guatemala 1894           0
## 33125                           Guinea 1894           0
## 33126                    Guinea-Bissau 1894           0
## 33127                           Guyana 1894           0
## 33128                            Haiti 1894           0
## 33129                         Honduras 1894           0
## 33130                        Hong Kong 1894           0
## 33131                          Hungary 1894   115983920
## 33132                          Iceland 1894           0
## 33133                            India 1894    66692128
## 33134                        Indonesia 1894     1102864
## 33135                             Iran 1894           0
## 33136                             Iraq 1894           0
## 33137                          Ireland 1894     1099200
## 33138                           Israel 1894           0
## 33139                            Italy 1894   183229312
## 33140                          Jamaica 1894           0
## 33141                            Japan 1894    87390064
## 33142                           Jordan 1894           0
## 33143                       Kazakhstan 1894           0
## 33144                            Kenya 1894           0
## 33145                         Kiribati 1894           0
## 33146                           Kuwait 1894           0
## 33147                       Kyrgysztan 1894           0
## 33148                       Kyrgyzstan 1894           0
## 33149                             Laos 1894           0
## 33150                           Latvia 1894           0
## 33151                          Lebanon 1894           0
## 33152                          Lesotho 1894           0
## 33153                          Liberia 1894           0
## 33154                            Libya 1894           0
## 33155                    Liechtenstein 1894           0
## 33156                        Lithuania 1894           0
## 33157                       Luxembourg 1894           0
## 33158                            Macao 1894           0
## 33159                        Macedonia 1894           0
## 33160                       Madagascar 1894           0
## 33161                           Malawi 1894           0
## 33162                         Malaysia 1894      131904
## 33163                         Maldives 1894           0
## 33164                             Mali 1894           0
## 33165                            Malta 1894           0
## 33166                 Marshall Islands 1894           0
## 33167                       Martinique 1894           0
## 33168                       Mauritania 1894           0
## 33169                        Mauritius 1894           0
## 33170                           Mexico 1894     2169088
## 33171             Micronesia (country) 1894           0
## 33172                      Middle East 1894     7705392
## 33173                          Moldova 1894           0
## 33174                         Mongolia 1894           0
## 33175                       Montenegro 1894           0
## 33176                       Montserrat 1894           0
## 33177                          Morocco 1894           0
## 33178                       Mozambique 1894           0
## 33179                          Myanmar 1894           0
## 33180                          Namibia 1894           0
## 33181                            Nauru 1894           0
## 33182                            Nepal 1894           0
## 33183                      Netherlands 1894   303771248
## 33184                    New Caledonia 1894           0
## 33185                      New Zealand 1894    18854944
## 33186                        Nicaragua 1894           0
## 33187                            Niger 1894           0
## 33188                          Nigeria 1894           0
## 33189                             Niue 1894           0
## 33190                      North Korea 1894           0
## 33191                           Norway 1894    45587488
## 33192                             Oman 1894           0
## 33193                         Pakistan 1894           0
## 33194                            Palau 1894           0
## 33195                        Palestine 1894           0
## 33196                           Panama 1894           0
## 33197                 Papua New Guinea 1894           0
## 33198                         Paraguay 1894           0
## 33199                             Peru 1894      249152
## 33200                      Philippines 1894           0
## 33201                           Poland 1894   993467952
## 33202                         Portugal 1894    26318512
## 33203                            Qatar 1894           0
## 33204                          Reunion 1894           0
## 33205                          Romania 1894     9694944
## 33206                           Russia 1894           0
## 33207                           Rwanda 1894           0
## 33208                     Saint Helena 1894           0
## 33209            Saint Kitts and Nevis 1894           0
## 33210                      Saint Lucia 1894           0
## 33211        Saint Pierre and Miquelon 1894           0
## 33212 Saint Vincent and the Grenadines 1894           0
## 33213                            Samoa 1894           0
## 33214            Sao Tome and Principe 1894           0
## 33215                     Saudi Arabia 1894           0
## 33216                          Senegal 1894           0
## 33217                           Serbia 1894           0
## 33218                       Seychelles 1894           0
## 33219                     Sierra Leone 1894           0
## 33220                        Singapore 1894           0
## 33221        Sint Maarten (Dutch part) 1894           0
## 33222                         Slovakia 1894           0
## 33223                         Slovenia 1894           0
## 33224                  Solomon Islands 1894           0
## 33225                          Somalia 1894           0
## 33226                     South Africa 1894     5671872
## 33227                      South Korea 1894           0
## 33228                      South Sudan 1894           0
## 33229                            Spain 1894   165345328
## 33230                        Sri Lanka 1894           0
## 33231                            Sudan 1894           0
## 33232                         Suriname 1894           0
## 33233                        Swaziland 1894           0
## 33234                           Sweden 1894    97612624
## 33235                      Switzerland 1894    55249456
## 33236                            Syria 1894           0
## 33237                           Taiwan 1894           0
## 33238                       Tajikistan 1894           0
## 33239                         Tanzania 1894           0
## 33240                         Thailand 1894           0
## 33241                            Timor 1894           0
## 33242                             Togo 1894           0
## 33243                            Tonga 1894           0
## 33244              Trinidad and Tobago 1894           0
## 33245                          Tunisia 1894           0
## 33246                           Turkey 1894     7705392
## 33247                     Turkmenistan 1894           0
## 33248         Turks and Caicos Islands 1894           0
## 33249                           Tuvalu 1894           0
## 33250                           Uganda 1894           0
## 33251                          Ukraine 1894           0
## 33252             United Arab Emirates 1894           0
## 33253                   United Kingdom 1894 14385490544
## 33254                    United States 1894  7369732960
## 33255                          Uruguay 1894           0
## 33256                       Uzbekistan 1894           0
## 33257                          Vanuatu 1894           0
## 33258                        Venezuela 1894           0
## 33259                          Vietnam 1894     1179808
## 33260        Wallis and Futuna Islands 1894           0
## 33261                            World 1894 34693452368
## 33262                            Yemen 1894           0
## 33263                           Zambia 1894           0
## 33264                         Zimbabwe 1894           0
## 33265                      Afghanistan 1895           0
## 33266                           Africa 1895     9009776
## 33267                          Albania 1895           0
## 33268                          Algeria 1895           0
## 33269                 Americas (other) 1895   213098240
## 33270                          Andorra 1895           0
## 33271                           Angola 1895           0
## 33272                         Anguilla 1895           0
## 33273              Antarctic Fisheries 1895           0
## 33274              Antigua and Barbuda 1895           0
## 33275                        Argentina 1895    13234368
## 33276                          Armenia 1895           0
## 33277                            Aruba 1895           0
## 33278         Asia and Pacific (other) 1895   314792560
## 33279                        Australia 1895    65585600
## 33280                          Austria 1895   438023872
## 33281                       Azerbaijan 1895           0
## 33282                          Bahamas 1895           0
## 33283                          Bahrain 1895           0
## 33284                       Bangladesh 1895           0
## 33285                         Barbados 1895           0
## 33286                          Belarus 1895           0
## 33287                          Belgium 1895  1280018400
## 33288                           Belize 1895           0
## 33289                            Benin 1895           0
## 33290                          Bermuda 1895           0
## 33291                           Bhutan 1895           0
## 33292                          Bolivia 1895           0
## 33293  Bonaire Sint Eustatius and Saba 1895           0
## 33294           Bosnia and Herzegovina 1895           0
## 33295                         Botswana 1895           0
## 33296                           Brazil 1895           0
## 33297           British Virgin Islands 1895           0
## 33298                           Brunei 1895           0
## 33299                         Bulgaria 1895      443344
## 33300                     Burkina Faso 1895           0
## 33301                          Burundi 1895           0
## 33302                         Cambodia 1895           0
## 33303                         Cameroon 1895           0
## 33304                           Canada 1895   196397728
## 33305                       Cape Verde 1895           0
## 33306                   Cayman Islands 1895           0
## 33307         Central African Republic 1895           0
## 33308                             Chad 1895           0
## 33309                            Chile 1895      523952
## 33310                            China 1895           0
## 33311                 Christmas Island 1895           0
## 33312                         Colombia 1895           0
## 33313                          Comoros 1895           0
## 33314                            Congo 1895           0
## 33315                     Cook Islands 1895           0
## 33316                       Costa Rica 1895           0
## 33317                    Cote d'Ivoire 1895           0
## 33318                          Croatia 1895           0
## 33319                             Cuba 1895           0
## 33320                          Curacao 1895           0
## 33321                           Cyprus 1895           0
## 33322                   Czech Republic 1895           0
## 33323                   Czechoslovakia 1895   626925056
## 33324     Democratic Republic of Congo 1895           0
## 33325                          Denmark 1895    71037632
## 33326                         Djibouti 1895           0
## 33327                         Dominica 1895           0
## 33328               Dominican Republic 1895           0
## 33329                            EU-28 1895 26615094480
## 33330                          Ecuador 1895           0
## 33331                            Egypt 1895           0
## 33332                      El Salvador 1895           0
## 33333                Equatorial Guinea 1895           0
##  [ reached 'max' / getOption("max.print") -- omitted 28344 rows ]
emission_multi <- read.csv("emission_multi.csv")
emission_multi
##                                country year         ghg
## 1                          Afghanistan 1751           0
## 2                               Africa 1751           0
## 3                              Albania 1751           0
## 4                              Algeria 1751           0
## 5                     Americas (other) 1751           0
## 6                              Andorra 1751           0
## 7                               Angola 1751           0
## 8                             Anguilla 1751           0
## 9                  Antarctic Fisheries 1751           0
## 10                 Antigua and Barbuda 1751           0
## 11                           Argentina 1751           0
## 12                             Armenia 1751           0
## 13                               Aruba 1751           0
## 14            Asia and Pacific (other) 1751           0
## 15                           Australia 1751           0
## 16                             Austria 1751           0
## 17                          Azerbaijan 1751           0
## 18                             Bahamas 1751           0
## 19                             Bahrain 1751           0
## 20                          Bangladesh 1751           0
## 21                            Barbados 1751           0
## 22                             Belarus 1751           0
## 23                             Belgium 1751           0
## 24                              Belize 1751           0
## 25                               Benin 1751           0
## 26                             Bermuda 1751           0
## 27                              Bhutan 1751           0
## 28                             Bolivia 1751           0
## 29     Bonaire Sint Eustatius and Saba 1751           0
## 30              Bosnia and Herzegovina 1751           0
## 31                            Botswana 1751           0
## 32                              Brazil 1751           0
## 33              British Virgin Islands 1751           0
## 34                              Brunei 1751           0
## 35                            Bulgaria 1751           0
## 36                        Burkina Faso 1751           0
## 37                             Burundi 1751           0
## 38                            Cambodia 1751           0
## 39                            Cameroon 1751           0
## 40                              Canada 1751           0
## 41                          Cape Verde 1751           0
## 42                      Cayman Islands 1751           0
## 43            Central African Republic 1751           0
## 44                                Chad 1751           0
## 45                               Chile 1751           0
## 46                               China 1751           0
## 47                    Christmas Island 1751           0
## 48                            Colombia 1751           0
## 49                             Comoros 1751           0
## 50                               Congo 1751           0
## 51                        Cook Islands 1751           0
## 52                          Costa Rica 1751           0
## 53                       Cote d'Ivoire 1751           0
## 54                             Croatia 1751           0
## 55                                Cuba 1751           0
## 56                             Curacao 1751           0
## 57                              Cyprus 1751           0
## 58                      Czech Republic 1751           0
## 59                      Czechoslovakia 1751           0
## 60        Democratic Republic of Congo 1751           0
## 61                             Denmark 1751           0
## 62                            Djibouti 1751           0
## 63                            Dominica 1751           0
## 64                  Dominican Republic 1751           0
## 65                               EU-28 1751     9350528
## 66                             Ecuador 1751           0
## 67                               Egypt 1751           0
## 68                         El Salvador 1751           0
## 69                   Equatorial Guinea 1751           0
## 70                             Eritrea 1751           0
## 71                             Estonia 1751           0
## 72                            Ethiopia 1751           0
## 73                      Europe (other) 1751           0
## 74                      Faeroe Islands 1751           0
## 75                    Falkland Islands 1751           0
## 76                                Fiji 1751           0
## 77                             Finland 1751           0
## 78                              France 1751           0
## 79                       French Guiana 1751           0
## 80                    French Polynesia 1751           0
## 81                               Gabon 1751           0
## 82                              Gambia 1751           0
## 83                             Georgia 1751           0
## 84                             Germany 1751           0
## 85                               Ghana 1751           0
## 86                           Gibraltar 1751           0
## 87                              Greece 1751           0
## 88                           Greenland 1751           0
## 89                             Grenada 1751           0
## 90                          Guadeloupe 1751           0
## 91                           Guatemala 1751           0
## 92                              Guinea 1751           0
## 93                       Guinea-Bissau 1751           0
## 94                              Guyana 1751           0
## 95                               Haiti 1751           0
## 96                            Honduras 1751           0
## 97                           Hong Kong 1751           0
## 98                             Hungary 1751           0
## 99                             Iceland 1751           0
## 100                              India 1751           0
## 101                          Indonesia 1751           0
## 102                               Iran 1751           0
## 103                               Iraq 1751           0
## 104                            Ireland 1751           0
## 105                             Israel 1751           0
## 106                              Italy 1751           0
## 107                            Jamaica 1751           0
## 108                              Japan 1751           0
## 109                             Jordan 1751           0
## 110                         Kazakhstan 1751           0
## 111                              Kenya 1751           0
## 112                           Kiribati 1751           0
## 113                             Kuwait 1751           0
## 114                         Kyrgysztan 1751           0
## 115                         Kyrgyzstan 1751           0
## 116                               Laos 1751           0
## 117                             Latvia 1751           0
## 118                            Lebanon 1751           0
## 119                            Lesotho 1751           0
## 120                            Liberia 1751           0
## 121                              Libya 1751           0
## 122                      Liechtenstein 1751           0
## 123                          Lithuania 1751           0
## 124                         Luxembourg 1751           0
## 125                              Macao 1751           0
## 126                          Macedonia 1751           0
## 127                         Madagascar 1751           0
## 128                             Malawi 1751           0
## 129                           Malaysia 1751           0
## 130                           Maldives 1751           0
## 131                               Mali 1751           0
## 132                              Malta 1751           0
## 133                   Marshall Islands 1751           0
## 134                         Martinique 1751           0
## 135                         Mauritania 1751           0
## 136                          Mauritius 1751           0
## 137                             Mexico 1751           0
## 138               Micronesia (country) 1751           0
## 139                        Middle East 1751           0
## 140                            Moldova 1751           0
## 141                           Mongolia 1751           0
## 142                         Montenegro 1751           0
## 143                         Montserrat 1751           0
## 144                            Morocco 1751           0
## 145                         Mozambique 1751           0
## 146                            Myanmar 1751           0
## 147                            Namibia 1751           0
## 148                              Nauru 1751           0
## 149                              Nepal 1751           0
## 150                        Netherlands 1751           0
## 151                      New Caledonia 1751           0
## 152                        New Zealand 1751           0
## 153                          Nicaragua 1751           0
## 154                              Niger 1751           0
## 155                            Nigeria 1751           0
## 156                               Niue 1751           0
## 157                        North Korea 1751           0
## 158                             Norway 1751           0
## 159                               Oman 1751           0
## 160                           Pakistan 1751           0
## 161                              Palau 1751           0
## 162                          Palestine 1751           0
## 163                             Panama 1751           0
## 164                   Papua New Guinea 1751           0
## 165                           Paraguay 1751           0
## 166                               Peru 1751           0
## 167                        Philippines 1751           0
## 168                             Poland 1751           0
## 169                           Portugal 1751           0
## 170                              Qatar 1751           0
## 171                            Reunion 1751           0
## 172                            Romania 1751           0
## 173                             Russia 1751           0
## 174                             Rwanda 1751           0
## 175                       Saint Helena 1751           0
## 176              Saint Kitts and Nevis 1751           0
## 177                        Saint Lucia 1751           0
## 178          Saint Pierre and Miquelon 1751           0
## 179   Saint Vincent and the Grenadines 1751           0
## 180                              Samoa 1751           0
## 181              Sao Tome and Principe 1751           0
## 182                       Saudi Arabia 1751           0
## 183                            Senegal 1751           0
## 184                             Serbia 1751           0
## 185                         Seychelles 1751           0
## 186                       Sierra Leone 1751           0
## 187                          Singapore 1751           0
## 188          Sint Maarten (Dutch part) 1751           0
## 189                           Slovakia 1751           0
## 190                           Slovenia 1751           0
## 191                    Solomon Islands 1751           0
## 192                            Somalia 1751           0
## 193                       South Africa 1751           0
## 194                        South Korea 1751           0
## 195                        South Sudan 1751           0
## 196                              Spain 1751           0
## 197                          Sri Lanka 1751           0
## 198                              Sudan 1751           0
## 199                           Suriname 1751           0
## 200                          Swaziland 1751           0
## 201                             Sweden 1751           0
## 202                        Switzerland 1751           0
## 203                              Syria 1751           0
## 204                             Taiwan 1751           0
## 205                         Tajikistan 1751           0
## 206                           Tanzania 1751           0
## 207                           Thailand 1751           0
## 208                              Timor 1751           0
## 209                               Togo 1751           0
## 210                              Tonga 1751           0
## 211                Trinidad and Tobago 1751           0
## 212                            Tunisia 1751           0
## 213                             Turkey 1751           0
## 214                       Turkmenistan 1751           0
## 215           Turks and Caicos Islands 1751           0
## 216                             Tuvalu 1751           0
## 217                             Uganda 1751           0
## 218                            Ukraine 1751           0
## 219               United Arab Emirates 1751           0
## 220                     United Kingdom 1751     9350528
## 221                      United States 1751           0
## 222                            Uruguay 1751           0
## 223                         Uzbekistan 1751           0
## 224                            Vanuatu 1751           0
## 225                          Venezuela 1751           0
## 226                            Vietnam 1751           0
## 227          Wallis and Futuna Islands 1751           0
## 228                              World 1751     9350528
## 229                              Yemen 1751           0
## 230                             Zambia 1751           0
## 231                           Zimbabwe 1751           0
## 232                        Afghanistan 1752           0
## 233                             Africa 1752           0
## 234                            Albania 1752           0
## 235                            Algeria 1752           0
## 236                   Americas (other) 1752           0
## 237                            Andorra 1752           0
## 238                             Angola 1752           0
## 239                           Anguilla 1752           0
## 240                Antarctic Fisheries 1752           0
## 241                Antigua and Barbuda 1752           0
## 242                          Argentina 1752           0
## 243                            Armenia 1752           0
## 244                              Aruba 1752           0
## 245           Asia and Pacific (other) 1752           0
## 246                          Australia 1752           0
## 247                            Austria 1752           0
## 248                         Azerbaijan 1752           0
## 249                            Bahamas 1752           0
## 250                            Bahrain 1752           0
## 251                         Bangladesh 1752           0
## 252                           Barbados 1752           0
## 253                            Belarus 1752           0
## 254                            Belgium 1752           0
## 255                             Belize 1752           0
## 256                              Benin 1752           0
## 257                            Bermuda 1752           0
## 258                             Bhutan 1752           0
## 259                            Bolivia 1752           0
## 260    Bonaire Sint Eustatius and Saba 1752           0
## 261             Bosnia and Herzegovina 1752           0
## 262                           Botswana 1752           0
## 263                             Brazil 1752           0
## 264             British Virgin Islands 1752           0
## 265                             Brunei 1752           0
## 266                           Bulgaria 1752           0
## 267                       Burkina Faso 1752           0
## 268                            Burundi 1752           0
## 269                           Cambodia 1752           0
## 270                           Cameroon 1752           0
## 271                             Canada 1752           0
## 272                         Cape Verde 1752           0
## 273                     Cayman Islands 1752           0
## 274           Central African Republic 1752           0
## 275                               Chad 1752           0
## 276                              Chile 1752           0
## 277                              China 1752           0
## 278                   Christmas Island 1752           0
## 279                           Colombia 1752           0
## 280                            Comoros 1752           0
## 281                              Congo 1752           0
## 282                       Cook Islands 1752           0
## 283                         Costa Rica 1752           0
## 284                      Cote d'Ivoire 1752           0
## 285                            Croatia 1752           0
## 286                               Cuba 1752           0
## 287                            Curacao 1752           0
## 288                             Cyprus 1752           0
## 289                     Czech Republic 1752           0
## 290                     Czechoslovakia 1752           0
## 291       Democratic Republic of Congo 1752           0
## 292                            Denmark 1752           0
## 293                           Djibouti 1752           0
## 294                           Dominica 1752           0
## 295                 Dominican Republic 1752           0
## 296                              EU-28 1752    18704720
## 297                            Ecuador 1752           0
## 298                              Egypt 1752           0
## 299                        El Salvador 1752           0
## 300                  Equatorial Guinea 1752           0
## 301                            Eritrea 1752           0
## 302                            Estonia 1752           0
## 303                           Ethiopia 1752           0
## 304                     Europe (other) 1752           0
## 305                     Faeroe Islands 1752           0
## 306                   Falkland Islands 1752           0
## 307                               Fiji 1752           0
## 308                            Finland 1752           0
## 309                             France 1752           0
## 310                      French Guiana 1752           0
## 311                   French Polynesia 1752           0
## 312                              Gabon 1752           0
## 313                             Gambia 1752           0
## 314                            Georgia 1752           0
## 315                            Germany 1752           0
## 316                              Ghana 1752           0
## 317                          Gibraltar 1752           0
## 318                             Greece 1752           0
## 319                          Greenland 1752           0
## 320                            Grenada 1752           0
## 321                         Guadeloupe 1752           0
## 322                          Guatemala 1752           0
## 323                             Guinea 1752           0
## 324                      Guinea-Bissau 1752           0
## 325                             Guyana 1752           0
## 326                              Haiti 1752           0
## 327                           Honduras 1752           0
## 328                          Hong Kong 1752           0
## 329                            Hungary 1752           0
## 330                            Iceland 1752           0
## 331                              India 1752           0
## 332                          Indonesia 1752           0
## 333                               Iran 1752           0
## 334                               Iraq 1752           0
## 335                            Ireland 1752           0
## 336                             Israel 1752           0
## 337                              Italy 1752           0
## 338                            Jamaica 1752           0
## 339                              Japan 1752           0
## 340                             Jordan 1752           0
## 341                         Kazakhstan 1752           0
## 342                              Kenya 1752           0
## 343                           Kiribati 1752           0
## 344                             Kuwait 1752           0
## 345                         Kyrgysztan 1752           0
## 346                         Kyrgyzstan 1752           0
## 347                               Laos 1752           0
## 348                             Latvia 1752           0
## 349                            Lebanon 1752           0
## 350                            Lesotho 1752           0
## 351                            Liberia 1752           0
## 352                              Libya 1752           0
## 353                      Liechtenstein 1752           0
## 354                          Lithuania 1752           0
## 355                         Luxembourg 1752           0
## 356                              Macao 1752           0
## 357                          Macedonia 1752           0
## 358                         Madagascar 1752           0
## 359                             Malawi 1752           0
## 360                           Malaysia 1752           0
## 361                           Maldives 1752           0
## 362                               Mali 1752           0
## 363                              Malta 1752           0
## 364                   Marshall Islands 1752           0
## 365                         Martinique 1752           0
## 366                         Mauritania 1752           0
## 367                          Mauritius 1752           0
## 368                             Mexico 1752           0
## 369               Micronesia (country) 1752           0
## 370                        Middle East 1752           0
## 371                            Moldova 1752           0
## 372                           Mongolia 1752           0
## 373                         Montenegro 1752           0
## 374                         Montserrat 1752           0
## 375                            Morocco 1752           0
## 376                         Mozambique 1752           0
## 377                            Myanmar 1752           0
## 378                            Namibia 1752           0
## 379                              Nauru 1752           0
## 380                              Nepal 1752           0
## 381                        Netherlands 1752           0
## 382                      New Caledonia 1752           0
## 383                        New Zealand 1752           0
## 384                          Nicaragua 1752           0
## 385                              Niger 1752           0
## 386                            Nigeria 1752           0
## 387                               Niue 1752           0
## 388                        North Korea 1752           0
## 389                             Norway 1752           0
## 390                               Oman 1752           0
## 391                           Pakistan 1752           0
## 392                              Palau 1752           0
## 393                          Palestine 1752           0
## 394                             Panama 1752           0
## 395                   Papua New Guinea 1752           0
## 396                           Paraguay 1752           0
## 397                               Peru 1752           0
## 398                        Philippines 1752           0
## 399                             Poland 1752           0
## 400                           Portugal 1752           0
## 401                              Qatar 1752           0
## 402                            Reunion 1752           0
## 403                            Romania 1752           0
## 404                             Russia 1752           0
## 405                             Rwanda 1752           0
## 406                       Saint Helena 1752           0
## 407              Saint Kitts and Nevis 1752           0
## 408                        Saint Lucia 1752           0
## 409          Saint Pierre and Miquelon 1752           0
## 410   Saint Vincent and the Grenadines 1752           0
## 411                              Samoa 1752           0
## 412              Sao Tome and Principe 1752           0
## 413                       Saudi Arabia 1752           0
## 414                            Senegal 1752           0
## 415                             Serbia 1752           0
## 416                         Seychelles 1752           0
## 417                       Sierra Leone 1752           0
## 418                          Singapore 1752           0
## 419          Sint Maarten (Dutch part) 1752           0
## 420                           Slovakia 1752           0
## 421                           Slovenia 1752           0
## 422                    Solomon Islands 1752           0
## 423                            Somalia 1752           0
## 424                       South Africa 1752           0
## 425                        South Korea 1752           0
## 426                        South Sudan 1752           0
## 427                              Spain 1752           0
## 428                          Sri Lanka 1752           0
## 429                              Sudan 1752           0
## 430                           Suriname 1752           0
## 431                          Swaziland 1752           0
## 432                             Sweden 1752           0
## 433                        Switzerland 1752           0
## 434                              Syria 1752           0
## 435                             Taiwan 1752           0
## 436                         Tajikistan 1752           0
## 437                           Tanzania 1752           0
## 438                           Thailand 1752           0
## 439                              Timor 1752           0
## 440                               Togo 1752           0
## 441                              Tonga 1752           0
## 442                Trinidad and Tobago 1752           0
## 443                            Tunisia 1752           0
## 444                             Turkey 1752           0
## 445                       Turkmenistan 1752           0
## 446           Turks and Caicos Islands 1752           0
## 447                             Tuvalu 1752           0
## 448                             Uganda 1752           0
## 449                            Ukraine 1752           0
## 450               United Arab Emirates 1752           0
## 451                     United Kingdom 1752    18704720
## 452                      United States 1752           0
## 453                            Uruguay 1752           0
## 454                         Uzbekistan 1752           0
## 455                            Vanuatu 1752           0
## 456                          Venezuela 1752           0
## 457                            Vietnam 1752           0
## 458          Wallis and Futuna Islands 1752           0
## 459                              World 1752    18704720
## 460                              Yemen 1752           0
## 461                             Zambia 1752           0
## 462                           Zimbabwe 1752           0
## 463                        Afghanistan 1753           0
## 464                             Africa 1753           0
## 465                            Albania 1753           0
## 466                            Algeria 1753           0
## 467                   Americas (other) 1753           0
## 468                            Andorra 1753           0
## 469                             Angola 1753           0
## 470                           Anguilla 1753           0
## 471                Antarctic Fisheries 1753           0
## 472                Antigua and Barbuda 1753           0
## 473                          Argentina 1753           0
## 474                            Armenia 1753           0
## 475                              Aruba 1753           0
## 476           Asia and Pacific (other) 1753           0
## 477                          Australia 1753           0
## 478                            Austria 1753           0
## 479                         Azerbaijan 1753           0
## 480                            Bahamas 1753           0
## 481                            Bahrain 1753           0
## 482                         Bangladesh 1753           0
## 483                           Barbados 1753           0
## 484                            Belarus 1753           0
## 485                            Belgium 1753           0
## 486                             Belize 1753           0
## 487                              Benin 1753           0
## 488                            Bermuda 1753           0
## 489                             Bhutan 1753           0
## 490                            Bolivia 1753           0
## 491    Bonaire Sint Eustatius and Saba 1753           0
## 492             Bosnia and Herzegovina 1753           0
## 493                           Botswana 1753           0
## 494                             Brazil 1753           0
## 495             British Virgin Islands 1753           0
## 496                             Brunei 1753           0
## 497                           Bulgaria 1753           0
## 498                       Burkina Faso 1753           0
## 499                            Burundi 1753           0
## 500                           Cambodia 1753           0
## 501                           Cameroon 1753           0
## 502                             Canada 1753           0
## 503                         Cape Verde 1753           0
## 504                     Cayman Islands 1753           0
## 505           Central African Republic 1753           0
## 506                               Chad 1753           0
## 507                              Chile 1753           0
## 508                              China 1753           0
## 509                   Christmas Island 1753           0
## 510                           Colombia 1753           0
## 511                            Comoros 1753           0
## 512                              Congo 1753           0
## 513                       Cook Islands 1753           0
## 514                         Costa Rica 1753           0
## 515                      Cote d'Ivoire 1753           0
## 516                            Croatia 1753           0
## 517                               Cuba 1753           0
## 518                            Curacao 1753           0
## 519                             Cyprus 1753           0
## 520                     Czech Republic 1753           0
## 521                     Czechoslovakia 1753           0
## 522       Democratic Republic of Congo 1753           0
## 523                            Denmark 1753           0
## 524                           Djibouti 1753           0
## 525                           Dominica 1753           0
## 526                 Dominican Republic 1753           0
## 527                              EU-28 1753    28058912
## 528                            Ecuador 1753           0
## 529                              Egypt 1753           0
## 530                        El Salvador 1753           0
## 531                  Equatorial Guinea 1753           0
## 532                            Eritrea 1753           0
## 533                            Estonia 1753           0
## 534                           Ethiopia 1753           0
## 535                     Europe (other) 1753           0
## 536                     Faeroe Islands 1753           0
## 537                   Falkland Islands 1753           0
## 538                               Fiji 1753           0
## 539                            Finland 1753           0
## 540                             France 1753           0
## 541                      French Guiana 1753           0
## 542                   French Polynesia 1753           0
## 543                              Gabon 1753           0
## 544                             Gambia 1753           0
## 545                            Georgia 1753           0
## 546                            Germany 1753           0
## 547                              Ghana 1753           0
## 548                          Gibraltar 1753           0
## 549                             Greece 1753           0
## 550                          Greenland 1753           0
## 551                            Grenada 1753           0
## 552                         Guadeloupe 1753           0
## 553                          Guatemala 1753           0
## 554                             Guinea 1753           0
## 555                      Guinea-Bissau 1753           0
## 556                             Guyana 1753           0
## 557                              Haiti 1753           0
## 558                           Honduras 1753           0
## 559                          Hong Kong 1753           0
## 560                            Hungary 1753           0
## 561                            Iceland 1753           0
## 562                              India 1753           0
## 563                          Indonesia 1753           0
## 564                               Iran 1753           0
## 565                               Iraq 1753           0
## 566                            Ireland 1753           0
## 567                             Israel 1753           0
## 568                              Italy 1753           0
## 569                            Jamaica 1753           0
## 570                              Japan 1753           0
## 571                             Jordan 1753           0
## 572                         Kazakhstan 1753           0
## 573                              Kenya 1753           0
## 574                           Kiribati 1753           0
## 575                             Kuwait 1753           0
## 576                         Kyrgysztan 1753           0
## 577                         Kyrgyzstan 1753           0
## 578                               Laos 1753           0
## 579                             Latvia 1753           0
## 580                            Lebanon 1753           0
## 581                            Lesotho 1753           0
## 582                            Liberia 1753           0
## 583                              Libya 1753           0
## 584                      Liechtenstein 1753           0
## 585                          Lithuania 1753           0
## 586                         Luxembourg 1753           0
## 587                              Macao 1753           0
## 588                          Macedonia 1753           0
## 589                         Madagascar 1753           0
## 590                             Malawi 1753           0
## 591                           Malaysia 1753           0
## 592                           Maldives 1753           0
## 593                               Mali 1753           0
## 594                              Malta 1753           0
## 595                   Marshall Islands 1753           0
## 596                         Martinique 1753           0
## 597                         Mauritania 1753           0
## 598                          Mauritius 1753           0
## 599                             Mexico 1753           0
## 600               Micronesia (country) 1753           0
## 601                        Middle East 1753           0
## 602                            Moldova 1753           0
## 603                           Mongolia 1753           0
## 604                         Montenegro 1753           0
## 605                         Montserrat 1753           0
## 606                            Morocco 1753           0
## 607                         Mozambique 1753           0
## 608                            Myanmar 1753           0
## 609                            Namibia 1753           0
## 610                              Nauru 1753           0
## 611                              Nepal 1753           0
## 612                        Netherlands 1753           0
## 613                      New Caledonia 1753           0
## 614                        New Zealand 1753           0
## 615                          Nicaragua 1753           0
## 616                              Niger 1753           0
## 617                            Nigeria 1753           0
## 618                               Niue 1753           0
## 619                        North Korea 1753           0
## 620                             Norway 1753           0
## 621                               Oman 1753           0
## 622                           Pakistan 1753           0
## 623                              Palau 1753           0
## 624                          Palestine 1753           0
## 625                             Panama 1753           0
## 626                   Papua New Guinea 1753           0
## 627                           Paraguay 1753           0
## 628                               Peru 1753           0
## 629                        Philippines 1753           0
## 630                             Poland 1753           0
## 631                           Portugal 1753           0
## 632                              Qatar 1753           0
## 633                            Reunion 1753           0
## 634                            Romania 1753           0
## 635                             Russia 1753           0
## 636                             Rwanda 1753           0
## 637                       Saint Helena 1753           0
## 638              Saint Kitts and Nevis 1753           0
## 639                        Saint Lucia 1753           0
## 640          Saint Pierre and Miquelon 1753           0
## 641   Saint Vincent and the Grenadines 1753           0
## 642                              Samoa 1753           0
## 643              Sao Tome and Principe 1753           0
## 644                       Saudi Arabia 1753           0
## 645                            Senegal 1753           0
## 646                             Serbia 1753           0
## 647                         Seychelles 1753           0
## 648                       Sierra Leone 1753           0
## 649                          Singapore 1753           0
## 650          Sint Maarten (Dutch part) 1753           0
## 651                           Slovakia 1753           0
## 652                           Slovenia 1753           0
## 653                    Solomon Islands 1753           0
## 654                            Somalia 1753           0
## 655                       South Africa 1753           0
## 656                        South Korea 1753           0
## 657                        South Sudan 1753           0
## 658                              Spain 1753           0
## 659                          Sri Lanka 1753           0
## 660                              Sudan 1753           0
## 661                           Suriname 1753           0
## 662                          Swaziland 1753           0
## 663                             Sweden 1753           0
## 664                        Switzerland 1753           0
## 665                              Syria 1753           0
## 666                             Taiwan 1753           0
## 667                         Tajikistan 1753           0
## 668                           Tanzania 1753           0
## 669                           Thailand 1753           0
## 670                              Timor 1753           0
## 671                               Togo 1753           0
## 672                              Tonga 1753           0
## 673                Trinidad and Tobago 1753           0
## 674                            Tunisia 1753           0
## 675                             Turkey 1753           0
## 676                       Turkmenistan 1753           0
## 677           Turks and Caicos Islands 1753           0
## 678                             Tuvalu 1753           0
## 679                             Uganda 1753           0
## 680                            Ukraine 1753           0
## 681               United Arab Emirates 1753           0
## 682                     United Kingdom 1753    28058912
## 683                      United States 1753           0
## 684                            Uruguay 1753           0
## 685                         Uzbekistan 1753           0
## 686                            Vanuatu 1753           0
## 687                          Venezuela 1753           0
## 688                            Vietnam 1753           0
## 689          Wallis and Futuna Islands 1753           0
## 690                              World 1753    28058912
## 691                              Yemen 1753           0
## 692                             Zambia 1753           0
## 693                           Zimbabwe 1753           0
## 694                        Afghanistan 1754           0
## 695                             Africa 1754           0
## 696                            Albania 1754           0
## 697                            Algeria 1754           0
## 698                   Americas (other) 1754           0
## 699                            Andorra 1754           0
## 700                             Angola 1754           0
## 701                           Anguilla 1754           0
## 702                Antarctic Fisheries 1754           0
## 703                Antigua and Barbuda 1754           0
## 704                          Argentina 1754           0
## 705                            Armenia 1754           0
## 706                              Aruba 1754           0
## 707           Asia and Pacific (other) 1754           0
## 708                          Australia 1754           0
## 709                            Austria 1754           0
## 710                         Azerbaijan 1754           0
## 711                            Bahamas 1754           0
## 712                            Bahrain 1754           0
## 713                         Bangladesh 1754           0
## 714                           Barbados 1754           0
## 715                            Belarus 1754           0
## 716                            Belgium 1754           0
## 717                             Belize 1754           0
## 718                              Benin 1754           0
## 719                            Bermuda 1754           0
## 720                             Bhutan 1754           0
## 721                            Bolivia 1754           0
## 722    Bonaire Sint Eustatius and Saba 1754           0
## 723             Bosnia and Herzegovina 1754           0
## 724                           Botswana 1754           0
## 725                             Brazil 1754           0
## 726             British Virgin Islands 1754           0
## 727                             Brunei 1754           0
## 728                           Bulgaria 1754           0
## 729                       Burkina Faso 1754           0
## 730                            Burundi 1754           0
## 731                           Cambodia 1754           0
## 732                           Cameroon 1754           0
## 733                             Canada 1754           0
## 734                         Cape Verde 1754           0
## 735                     Cayman Islands 1754           0
## 736           Central African Republic 1754           0
## 737                               Chad 1754           0
## 738                              Chile 1754           0
## 739                              China 1754           0
## 740                   Christmas Island 1754           0
## 741                           Colombia 1754           0
## 742                            Comoros 1754           0
## 743                              Congo 1754           0
## 744                       Cook Islands 1754           0
## 745                         Costa Rica 1754           0
## 746                      Cote d'Ivoire 1754           0
## 747                            Croatia 1754           0
## 748                               Cuba 1754           0
## 749                            Curacao 1754           0
## 750                             Cyprus 1754           0
## 751                     Czech Republic 1754           0
## 752                     Czechoslovakia 1754           0
## 753       Democratic Republic of Congo 1754           0
## 754                            Denmark 1754           0
## 755                           Djibouti 1754           0
## 756                           Dominica 1754           0
## 757                 Dominican Republic 1754           0
## 758                              EU-28 1754    37416768
## 759                            Ecuador 1754           0
## 760                              Egypt 1754           0
## 761                        El Salvador 1754           0
## 762                  Equatorial Guinea 1754           0
## 763                            Eritrea 1754           0
## 764                            Estonia 1754           0
## 765                           Ethiopia 1754           0
## 766                     Europe (other) 1754           0
## 767                     Faeroe Islands 1754           0
## 768                   Falkland Islands 1754           0
## 769                               Fiji 1754           0
## 770                            Finland 1754           0
## 771                             France 1754           0
## 772                      French Guiana 1754           0
## 773                   French Polynesia 1754           0
## 774                              Gabon 1754           0
## 775                             Gambia 1754           0
## 776                            Georgia 1754           0
## 777                            Germany 1754           0
## 778                              Ghana 1754           0
## 779                          Gibraltar 1754           0
## 780                             Greece 1754           0
## 781                          Greenland 1754           0
## 782                            Grenada 1754           0
## 783                         Guadeloupe 1754           0
## 784                          Guatemala 1754           0
## 785                             Guinea 1754           0
## 786                      Guinea-Bissau 1754           0
## 787                             Guyana 1754           0
## 788                              Haiti 1754           0
## 789                           Honduras 1754           0
## 790                          Hong Kong 1754           0
## 791                            Hungary 1754           0
## 792                            Iceland 1754           0
## 793                              India 1754           0
## 794                          Indonesia 1754           0
## 795                               Iran 1754           0
## 796                               Iraq 1754           0
## 797                            Ireland 1754           0
## 798                             Israel 1754           0
## 799                              Italy 1754           0
## 800                            Jamaica 1754           0
## 801                              Japan 1754           0
## 802                             Jordan 1754           0
## 803                         Kazakhstan 1754           0
## 804                              Kenya 1754           0
## 805                           Kiribati 1754           0
## 806                             Kuwait 1754           0
## 807                         Kyrgysztan 1754           0
## 808                         Kyrgyzstan 1754           0
## 809                               Laos 1754           0
## 810                             Latvia 1754           0
## 811                            Lebanon 1754           0
## 812                            Lesotho 1754           0
## 813                            Liberia 1754           0
## 814                              Libya 1754           0
## 815                      Liechtenstein 1754           0
## 816                          Lithuania 1754           0
## 817                         Luxembourg 1754           0
## 818                              Macao 1754           0
## 819                          Macedonia 1754           0
## 820                         Madagascar 1754           0
## 821                             Malawi 1754           0
## 822                           Malaysia 1754           0
## 823                           Maldives 1754           0
## 824                               Mali 1754           0
## 825                              Malta 1754           0
## 826                   Marshall Islands 1754           0
## 827                         Martinique 1754           0
## 828                         Mauritania 1754           0
## 829                          Mauritius 1754           0
## 830                             Mexico 1754           0
## 831               Micronesia (country) 1754           0
## 832                        Middle East 1754           0
## 833                            Moldova 1754           0
## 834                           Mongolia 1754           0
## 835                         Montenegro 1754           0
## 836                         Montserrat 1754           0
## 837                            Morocco 1754           0
## 838                         Mozambique 1754           0
## 839                            Myanmar 1754           0
## 840                            Namibia 1754           0
## 841                              Nauru 1754           0
## 842                              Nepal 1754           0
## 843                        Netherlands 1754           0
## 844                      New Caledonia 1754           0
## 845                        New Zealand 1754           0
## 846                          Nicaragua 1754           0
## 847                              Niger 1754           0
## 848                            Nigeria 1754           0
## 849                               Niue 1754           0
## 850                        North Korea 1754           0
## 851                             Norway 1754           0
## 852                               Oman 1754           0
## 853                           Pakistan 1754           0
## 854                              Palau 1754           0
## 855                          Palestine 1754           0
## 856                             Panama 1754           0
## 857                   Papua New Guinea 1754           0
## 858                           Paraguay 1754           0
## 859                               Peru 1754           0
## 860                        Philippines 1754           0
## 861                             Poland 1754           0
## 862                           Portugal 1754           0
## 863                              Qatar 1754           0
## 864                            Reunion 1754           0
## 865                            Romania 1754           0
## 866                             Russia 1754           0
## 867                             Rwanda 1754           0
## 868                       Saint Helena 1754           0
## 869              Saint Kitts and Nevis 1754           0
## 870                        Saint Lucia 1754           0
## 871          Saint Pierre and Miquelon 1754           0
## 872   Saint Vincent and the Grenadines 1754           0
## 873                              Samoa 1754           0
## 874              Sao Tome and Principe 1754           0
## 875                       Saudi Arabia 1754           0
## 876                            Senegal 1754           0
## 877                             Serbia 1754           0
## 878                         Seychelles 1754           0
## 879                       Sierra Leone 1754           0
## 880                          Singapore 1754           0
## 881          Sint Maarten (Dutch part) 1754           0
## 882                           Slovakia 1754           0
## 883                           Slovenia 1754           0
## 884                    Solomon Islands 1754           0
## 885                            Somalia 1754           0
## 886                       South Africa 1754           0
## 887                        South Korea 1754           0
## 888                        South Sudan 1754           0
## 889                              Spain 1754           0
## 890                          Sri Lanka 1754           0
## 891                              Sudan 1754           0
## 892                           Suriname 1754           0
## 893                          Swaziland 1754           0
## 894                             Sweden 1754           0
## 895                        Switzerland 1754           0
## 896                              Syria 1754           0
## 897                             Taiwan 1754           0
## 898                         Tajikistan 1754           0
## 899                           Tanzania 1754           0
## 900                           Thailand 1754           0
## 901                              Timor 1754           0
## 902                               Togo 1754           0
## 903                              Tonga 1754           0
## 904                Trinidad and Tobago 1754           0
## 905                            Tunisia 1754           0
## 906                             Turkey 1754           0
## 907                       Turkmenistan 1754           0
## 908           Turks and Caicos Islands 1754           0
## 909                             Tuvalu 1754           0
## 910                             Uganda 1754           0
## 911                            Ukraine 1754           0
## 912               United Arab Emirates 1754           0
## 913                     United Kingdom 1754    37416768
## 914                      United States 1754           0
## 915                            Uruguay 1754           0
## 916                         Uzbekistan 1754           0
## 917                            Vanuatu 1754           0
## 918                          Venezuela 1754           0
## 919                            Vietnam 1754           0
## 920          Wallis and Futuna Islands 1754           0
## 921                              World 1754    37416768
## 922                              Yemen 1754           0
## 923                             Zambia 1754           0
## 924                           Zimbabwe 1754           0
## 925                        Afghanistan 1755           0
## 926                             Africa 1755           0
## 927                            Albania 1755           0
## 928                            Algeria 1755           0
## 929                   Americas (other) 1755           0
## 930                            Andorra 1755           0
## 931                             Angola 1755           0
## 932                           Anguilla 1755           0
## 933                Antarctic Fisheries 1755           0
## 934                Antigua and Barbuda 1755           0
## 935                          Argentina 1755           0
## 936                            Armenia 1755           0
## 937                              Aruba 1755           0
## 938           Asia and Pacific (other) 1755           0
## 939                          Australia 1755           0
## 940                            Austria 1755           0
## 941                         Azerbaijan 1755           0
## 942                            Bahamas 1755           0
## 943                            Bahrain 1755           0
## 944                         Bangladesh 1755           0
## 945                           Barbados 1755           0
## 946                            Belarus 1755           0
## 947                            Belgium 1755           0
## 948                             Belize 1755           0
## 949                              Benin 1755           0
## 950                            Bermuda 1755           0
## 951                             Bhutan 1755           0
## 952                            Bolivia 1755           0
## 953    Bonaire Sint Eustatius and Saba 1755           0
## 954             Bosnia and Herzegovina 1755           0
## 955                           Botswana 1755           0
## 956                             Brazil 1755           0
## 957             British Virgin Islands 1755           0
## 958                             Brunei 1755           0
## 959                           Bulgaria 1755           0
## 960                       Burkina Faso 1755           0
## 961                            Burundi 1755           0
## 962                           Cambodia 1755           0
## 963                           Cameroon 1755           0
## 964                             Canada 1755           0
## 965                         Cape Verde 1755           0
## 966                     Cayman Islands 1755           0
## 967           Central African Republic 1755           0
## 968                               Chad 1755           0
## 969                              Chile 1755           0
## 970                              China 1755           0
## 971                   Christmas Island 1755           0
## 972                           Colombia 1755           0
## 973                            Comoros 1755           0
## 974                              Congo 1755           0
## 975                       Cook Islands 1755           0
## 976                         Costa Rica 1755           0
## 977                      Cote d'Ivoire 1755           0
## 978                            Croatia 1755           0
## 979                               Cuba 1755           0
## 980                            Curacao 1755           0
## 981                             Cyprus 1755           0
## 982                     Czech Republic 1755           0
## 983                     Czechoslovakia 1755           0
## 984       Democratic Republic of Congo 1755           0
## 985                            Denmark 1755           0
## 986                           Djibouti 1755           0
## 987                           Dominica 1755           0
## 988                 Dominican Republic 1755           0
## 989                              EU-28 1755    46778288
## 990                            Ecuador 1755           0
## 991                              Egypt 1755           0
## 992                        El Salvador 1755           0
## 993                  Equatorial Guinea 1755           0
## 994                            Eritrea 1755           0
## 995                            Estonia 1755           0
## 996                           Ethiopia 1755           0
## 997                     Europe (other) 1755           0
## 998                     Faeroe Islands 1755           0
## 999                   Falkland Islands 1755           0
## 1000                              Fiji 1755           0
## 1001                           Finland 1755           0
## 1002                            France 1755           0
## 1003                     French Guiana 1755           0
## 1004                  French Polynesia 1755           0
## 1005                             Gabon 1755           0
## 1006                            Gambia 1755           0
## 1007                           Georgia 1755           0
## 1008                           Germany 1755           0
## 1009                             Ghana 1755           0
## 1010                         Gibraltar 1755           0
## 1011                            Greece 1755           0
## 1012                         Greenland 1755           0
## 1013                           Grenada 1755           0
## 1014                        Guadeloupe 1755           0
## 1015                         Guatemala 1755           0
## 1016                            Guinea 1755           0
## 1017                     Guinea-Bissau 1755           0
## 1018                            Guyana 1755           0
## 1019                             Haiti 1755           0
## 1020                          Honduras 1755           0
## 1021                         Hong Kong 1755           0
## 1022                           Hungary 1755           0
## 1023                           Iceland 1755           0
## 1024                             India 1755           0
## 1025                         Indonesia 1755           0
## 1026                              Iran 1755           0
## 1027                              Iraq 1755           0
## 1028                           Ireland 1755           0
## 1029                            Israel 1755           0
## 1030                             Italy 1755           0
## 1031                           Jamaica 1755           0
## 1032                             Japan 1755           0
## 1033                            Jordan 1755           0
## 1034                        Kazakhstan 1755           0
## 1035                             Kenya 1755           0
## 1036                          Kiribati 1755           0
## 1037                            Kuwait 1755           0
## 1038                        Kyrgysztan 1755           0
## 1039                        Kyrgyzstan 1755           0
## 1040                              Laos 1755           0
## 1041                            Latvia 1755           0
## 1042                           Lebanon 1755           0
## 1043                           Lesotho 1755           0
## 1044                           Liberia 1755           0
## 1045                             Libya 1755           0
## 1046                     Liechtenstein 1755           0
## 1047                         Lithuania 1755           0
## 1048                        Luxembourg 1755           0
## 1049                             Macao 1755           0
## 1050                         Macedonia 1755           0
## 1051                        Madagascar 1755           0
## 1052                            Malawi 1755           0
## 1053                          Malaysia 1755           0
## 1054                          Maldives 1755           0
## 1055                              Mali 1755           0
## 1056                             Malta 1755           0
## 1057                  Marshall Islands 1755           0
## 1058                        Martinique 1755           0
## 1059                        Mauritania 1755           0
## 1060                         Mauritius 1755           0
## 1061                            Mexico 1755           0
## 1062              Micronesia (country) 1755           0
## 1063                       Middle East 1755           0
## 1064                           Moldova 1755           0
## 1065                          Mongolia 1755           0
## 1066                        Montenegro 1755           0
## 1067                        Montserrat 1755           0
## 1068                           Morocco 1755           0
## 1069                        Mozambique 1755           0
## 1070                           Myanmar 1755           0
## 1071                           Namibia 1755           0
## 1072                             Nauru 1755           0
## 1073                             Nepal 1755           0
## 1074                       Netherlands 1755           0
## 1075                     New Caledonia 1755           0
## 1076                       New Zealand 1755           0
## 1077                         Nicaragua 1755           0
## 1078                             Niger 1755           0
## 1079                           Nigeria 1755           0
## 1080                              Niue 1755           0
## 1081                       North Korea 1755           0
## 1082                            Norway 1755           0
## 1083                              Oman 1755           0
## 1084                          Pakistan 1755           0
## 1085                             Palau 1755           0
## 1086                         Palestine 1755           0
## 1087                            Panama 1755           0
## 1088                  Papua New Guinea 1755           0
## 1089                          Paraguay 1755           0
## 1090                              Peru 1755           0
## 1091                       Philippines 1755           0
## 1092                            Poland 1755           0
## 1093                          Portugal 1755           0
## 1094                             Qatar 1755           0
## 1095                           Reunion 1755           0
## 1096                           Romania 1755           0
## 1097                            Russia 1755           0
## 1098                            Rwanda 1755           0
## 1099                      Saint Helena 1755           0
## 1100             Saint Kitts and Nevis 1755           0
## 1101                       Saint Lucia 1755           0
## 1102         Saint Pierre and Miquelon 1755           0
## 1103  Saint Vincent and the Grenadines 1755           0
## 1104                             Samoa 1755           0
## 1105             Sao Tome and Principe 1755           0
## 1106                      Saudi Arabia 1755           0
## 1107                           Senegal 1755           0
## 1108                            Serbia 1755           0
## 1109                        Seychelles 1755           0
## 1110                      Sierra Leone 1755           0
## 1111                         Singapore 1755           0
## 1112         Sint Maarten (Dutch part) 1755           0
## 1113                          Slovakia 1755           0
## 1114                          Slovenia 1755           0
## 1115                   Solomon Islands 1755           0
## 1116                           Somalia 1755           0
## 1117                      South Africa 1755           0
## 1118                       South Korea 1755           0
## 1119                       South Sudan 1755           0
## 1120                             Spain 1755           0
## 1121                         Sri Lanka 1755           0
## 1122                             Sudan 1755           0
## 1123                          Suriname 1755           0
## 1124                         Swaziland 1755           0
## 1125                            Sweden 1755           0
## 1126                       Switzerland 1755           0
## 1127                             Syria 1755           0
## 1128                            Taiwan 1755           0
## 1129                        Tajikistan 1755           0
## 1130                          Tanzania 1755           0
## 1131                          Thailand 1755           0
## 1132                             Timor 1755           0
## 1133                              Togo 1755           0
## 1134                             Tonga 1755           0
## 1135               Trinidad and Tobago 1755           0
## 1136                           Tunisia 1755           0
## 1137                            Turkey 1755           0
## 1138                      Turkmenistan 1755           0
## 1139          Turks and Caicos Islands 1755           0
## 1140                            Tuvalu 1755           0
## 1141                            Uganda 1755           0
## 1142                           Ukraine 1755           0
## 1143              United Arab Emirates 1755           0
## 1144                    United Kingdom 1755    46778288
## 1145                     United States 1755           0
## 1146                           Uruguay 1755           0
## 1147                        Uzbekistan 1755           0
## 1148                           Vanuatu 1755           0
## 1149                         Venezuela 1755           0
## 1150                           Vietnam 1755           0
## 1151         Wallis and Futuna Islands 1755           0
## 1152                             World 1755    46778288
## 1153                             Yemen 1755           0
## 1154                            Zambia 1755           0
## 1155                          Zimbabwe 1755           0
## 1156                       Afghanistan 1756           0
## 1157                            Africa 1756           0
## 1158                           Albania 1756           0
## 1159                           Algeria 1756           0
## 1160                  Americas (other) 1756           0
## 1161                           Andorra 1756           0
## 1162                            Angola 1756           0
## 1163                          Anguilla 1756           0
## 1164               Antarctic Fisheries 1756           0
## 1165               Antigua and Barbuda 1756           0
## 1166                         Argentina 1756           0
## 1167                           Armenia 1756           0
## 1168                             Aruba 1756           0
## 1169          Asia and Pacific (other) 1756           0
## 1170                         Australia 1756           0
## 1171                           Austria 1756           0
## 1172                        Azerbaijan 1756           0
## 1173                           Bahamas 1756           0
## 1174                           Bahrain 1756           0
## 1175                        Bangladesh 1756           0
## 1176                          Barbados 1756           0
## 1177                           Belarus 1756           0
## 1178                           Belgium 1756           0
## 1179                            Belize 1756           0
## 1180                             Benin 1756           0
## 1181                           Bermuda 1756           0
## 1182                            Bhutan 1756           0
## 1183                           Bolivia 1756           0
## 1184   Bonaire Sint Eustatius and Saba 1756           0
## 1185            Bosnia and Herzegovina 1756           0
## 1186                          Botswana 1756           0
## 1187                            Brazil 1756           0
## 1188            British Virgin Islands 1756           0
## 1189                            Brunei 1756           0
## 1190                          Bulgaria 1756           0
## 1191                      Burkina Faso 1756           0
## 1192                           Burundi 1756           0
## 1193                          Cambodia 1756           0
## 1194                          Cameroon 1756           0
## 1195                            Canada 1756           0
## 1196                        Cape Verde 1756           0
## 1197                    Cayman Islands 1756           0
## 1198          Central African Republic 1756           0
## 1199                              Chad 1756           0
## 1200                             Chile 1756           0
## 1201                             China 1756           0
## 1202                  Christmas Island 1756           0
## 1203                          Colombia 1756           0
## 1204                           Comoros 1756           0
## 1205                             Congo 1756           0
## 1206                      Cook Islands 1756           0
## 1207                        Costa Rica 1756           0
## 1208                     Cote d'Ivoire 1756           0
## 1209                           Croatia 1756           0
## 1210                              Cuba 1756           0
## 1211                           Curacao 1756           0
## 1212                            Cyprus 1756           0
## 1213                    Czech Republic 1756           0
## 1214                    Czechoslovakia 1756           0
## 1215      Democratic Republic of Congo 1756           0
## 1216                           Denmark 1756           0
## 1217                          Djibouti 1756           0
## 1218                          Dominica 1756           0
## 1219                Dominican Republic 1756           0
## 1220                             EU-28 1756    56784672
## 1221                           Ecuador 1756           0
## 1222                             Egypt 1756           0
## 1223                       El Salvador 1756           0
## 1224                 Equatorial Guinea 1756           0
## 1225                           Eritrea 1756           0
## 1226                           Estonia 1756           0
## 1227                          Ethiopia 1756           0
## 1228                    Europe (other) 1756           0
## 1229                    Faeroe Islands 1756           0
## 1230                  Falkland Islands 1756           0
## 1231                              Fiji 1756           0
## 1232                           Finland 1756           0
## 1233                            France 1756           0
## 1234                     French Guiana 1756           0
## 1235                  French Polynesia 1756           0
## 1236                             Gabon 1756           0
## 1237                            Gambia 1756           0
## 1238                           Georgia 1756           0
## 1239                           Germany 1756           0
## 1240                             Ghana 1756           0
## 1241                         Gibraltar 1756           0
## 1242                            Greece 1756           0
## 1243                         Greenland 1756           0
## 1244                           Grenada 1756           0
## 1245                        Guadeloupe 1756           0
## 1246                         Guatemala 1756           0
## 1247                            Guinea 1756           0
## 1248                     Guinea-Bissau 1756           0
## 1249                            Guyana 1756           0
## 1250                             Haiti 1756           0
## 1251                          Honduras 1756           0
## 1252                         Hong Kong 1756           0
## 1253                           Hungary 1756           0
## 1254                           Iceland 1756           0
## 1255                             India 1756           0
## 1256                         Indonesia 1756           0
## 1257                              Iran 1756           0
## 1258                              Iraq 1756           0
## 1259                           Ireland 1756           0
## 1260                            Israel 1756           0
## 1261                             Italy 1756           0
## 1262                           Jamaica 1756           0
## 1263                             Japan 1756           0
## 1264                            Jordan 1756           0
## 1265                        Kazakhstan 1756           0
## 1266                             Kenya 1756           0
## 1267                          Kiribati 1756           0
## 1268                            Kuwait 1756           0
## 1269                        Kyrgysztan 1756           0
## 1270                        Kyrgyzstan 1756           0
## 1271                              Laos 1756           0
## 1272                            Latvia 1756           0
## 1273                           Lebanon 1756           0
## 1274                           Lesotho 1756           0
## 1275                           Liberia 1756           0
## 1276                             Libya 1756           0
## 1277                     Liechtenstein 1756           0
## 1278                         Lithuania 1756           0
## 1279                        Luxembourg 1756           0
## 1280                             Macao 1756           0
## 1281                         Macedonia 1756           0
## 1282                        Madagascar 1756           0
## 1283                            Malawi 1756           0
## 1284                          Malaysia 1756           0
## 1285                          Maldives 1756           0
## 1286                              Mali 1756           0
## 1287                             Malta 1756           0
## 1288                  Marshall Islands 1756           0
## 1289                        Martinique 1756           0
## 1290                        Mauritania 1756           0
## 1291                         Mauritius 1756           0
## 1292                            Mexico 1756           0
## 1293              Micronesia (country) 1756           0
## 1294                       Middle East 1756           0
## 1295                           Moldova 1756           0
## 1296                          Mongolia 1756           0
## 1297                        Montenegro 1756           0
## 1298                        Montserrat 1756           0
## 1299                           Morocco 1756           0
## 1300                        Mozambique 1756           0
## 1301                           Myanmar 1756           0
## 1302                           Namibia 1756           0
## 1303                             Nauru 1756           0
## 1304                             Nepal 1756           0
## 1305                       Netherlands 1756           0
## 1306                     New Caledonia 1756           0
## 1307                       New Zealand 1756           0
## 1308                         Nicaragua 1756           0
## 1309                             Niger 1756           0
## 1310                           Nigeria 1756           0
## 1311                              Niue 1756           0
## 1312                       North Korea 1756           0
## 1313                            Norway 1756           0
## 1314                              Oman 1756           0
## 1315                          Pakistan 1756           0
## 1316                             Palau 1756           0
## 1317                         Palestine 1756           0
## 1318                            Panama 1756           0
## 1319                  Papua New Guinea 1756           0
## 1320                          Paraguay 1756           0
## 1321                              Peru 1756           0
## 1322                       Philippines 1756           0
## 1323                            Poland 1756           0
## 1324                          Portugal 1756           0
## 1325                             Qatar 1756           0
## 1326                           Reunion 1756           0
## 1327                           Romania 1756           0
## 1328                            Russia 1756           0
## 1329                            Rwanda 1756           0
## 1330                      Saint Helena 1756           0
## 1331             Saint Kitts and Nevis 1756           0
## 1332                       Saint Lucia 1756           0
## 1333         Saint Pierre and Miquelon 1756           0
## 1334  Saint Vincent and the Grenadines 1756           0
## 1335                             Samoa 1756           0
## 1336             Sao Tome and Principe 1756           0
## 1337                      Saudi Arabia 1756           0
## 1338                           Senegal 1756           0
## 1339                            Serbia 1756           0
## 1340                        Seychelles 1756           0
## 1341                      Sierra Leone 1756           0
## 1342                         Singapore 1756           0
## 1343         Sint Maarten (Dutch part) 1756           0
## 1344                          Slovakia 1756           0
## 1345                          Slovenia 1756           0
## 1346                   Solomon Islands 1756           0
## 1347                           Somalia 1756           0
## 1348                      South Africa 1756           0
## 1349                       South Korea 1756           0
## 1350                       South Sudan 1756           0
## 1351                             Spain 1756           0
## 1352                         Sri Lanka 1756           0
## 1353                             Sudan 1756           0
## 1354                          Suriname 1756           0
## 1355                         Swaziland 1756           0
## 1356                            Sweden 1756           0
## 1357                       Switzerland 1756           0
## 1358                             Syria 1756           0
## 1359                            Taiwan 1756           0
## 1360                        Tajikistan 1756           0
## 1361                          Tanzania 1756           0
## 1362                          Thailand 1756           0
## 1363                             Timor 1756           0
## 1364                              Togo 1756           0
## 1365                             Tonga 1756           0
## 1366               Trinidad and Tobago 1756           0
## 1367                           Tunisia 1756           0
## 1368                            Turkey 1756           0
## 1369                      Turkmenistan 1756           0
## 1370          Turks and Caicos Islands 1756           0
## 1371                            Tuvalu 1756           0
## 1372                            Uganda 1756           0
## 1373                           Ukraine 1756           0
## 1374              United Arab Emirates 1756           0
## 1375                    United Kingdom 1756    56784672
## 1376                     United States 1756           0
## 1377                           Uruguay 1756           0
## 1378                        Uzbekistan 1756           0
## 1379                           Vanuatu 1756           0
## 1380                         Venezuela 1756           0
## 1381                           Vietnam 1756           0
## 1382         Wallis and Futuna Islands 1756           0
## 1383                             World 1756    56784672
## 1384                             Yemen 1756           0
## 1385                            Zambia 1756           0
## 1386                          Zimbabwe 1756           0
## 1387                       Afghanistan 1757           0
## 1388                            Africa 1757           0
## 1389                           Albania 1757           0
## 1390                           Algeria 1757           0
## 1391                  Americas (other) 1757           0
## 1392                           Andorra 1757           0
## 1393                            Angola 1757           0
## 1394                          Anguilla 1757           0
## 1395               Antarctic Fisheries 1757           0
## 1396               Antigua and Barbuda 1757           0
## 1397                         Argentina 1757           0
## 1398                           Armenia 1757           0
## 1399                             Aruba 1757           0
## 1400          Asia and Pacific (other) 1757           0
## 1401                         Australia 1757           0
## 1402                           Austria 1757           0
## 1403                        Azerbaijan 1757           0
## 1404                           Bahamas 1757           0
## 1405                           Bahrain 1757           0
## 1406                        Bangladesh 1757           0
## 1407                          Barbados 1757           0
## 1408                           Belarus 1757           0
## 1409                           Belgium 1757           0
## 1410                            Belize 1757           0
## 1411                             Benin 1757           0
## 1412                           Bermuda 1757           0
## 1413                            Bhutan 1757           0
## 1414                           Bolivia 1757           0
## 1415   Bonaire Sint Eustatius and Saba 1757           0
## 1416            Bosnia and Herzegovina 1757           0
## 1417                          Botswana 1757           0
## 1418                            Brazil 1757           0
## 1419            British Virgin Islands 1757           0
## 1420                            Brunei 1757           0
## 1421                          Bulgaria 1757           0
## 1422                      Burkina Faso 1757           0
## 1423                           Burundi 1757           0
## 1424                          Cambodia 1757           0
## 1425                          Cameroon 1757           0
## 1426                            Canada 1757           0
## 1427                        Cape Verde 1757           0
## 1428                    Cayman Islands 1757           0
## 1429          Central African Republic 1757           0
## 1430                              Chad 1757           0
## 1431                             Chile 1757           0
## 1432                             China 1757           0
## 1433                  Christmas Island 1757           0
## 1434                          Colombia 1757           0
## 1435                           Comoros 1757           0
## 1436                             Congo 1757           0
## 1437                      Cook Islands 1757           0
## 1438                        Costa Rica 1757           0
## 1439                     Cote d'Ivoire 1757           0
## 1440                           Croatia 1757           0
## 1441                              Cuba 1757           0
## 1442                           Curacao 1757           0
## 1443                            Cyprus 1757           0
## 1444                    Czech Republic 1757           0
## 1445                    Czechoslovakia 1757           0
## 1446      Democratic Republic of Congo 1757           0
## 1447                           Denmark 1757           0
## 1448                          Djibouti 1757           0
## 1449                          Dominica 1757           0
## 1450                Dominican Republic 1757           0
## 1451                             EU-28 1757    66794720
## 1452                           Ecuador 1757           0
## 1453                             Egypt 1757           0
## 1454                       El Salvador 1757           0
## 1455                 Equatorial Guinea 1757           0
## 1456                           Eritrea 1757           0
## 1457                           Estonia 1757           0
## 1458                          Ethiopia 1757           0
## 1459                    Europe (other) 1757           0
## 1460                    Faeroe Islands 1757           0
## 1461                  Falkland Islands 1757           0
## 1462                              Fiji 1757           0
## 1463                           Finland 1757           0
## 1464                            France 1757           0
## 1465                     French Guiana 1757           0
## 1466                  French Polynesia 1757           0
## 1467                             Gabon 1757           0
## 1468                            Gambia 1757           0
## 1469                           Georgia 1757           0
## 1470                           Germany 1757           0
## 1471                             Ghana 1757           0
## 1472                         Gibraltar 1757           0
## 1473                            Greece 1757           0
## 1474                         Greenland 1757           0
## 1475                           Grenada 1757           0
## 1476                        Guadeloupe 1757           0
## 1477                         Guatemala 1757           0
## 1478                            Guinea 1757           0
## 1479                     Guinea-Bissau 1757           0
## 1480                            Guyana 1757           0
## 1481                             Haiti 1757           0
## 1482                          Honduras 1757           0
## 1483                         Hong Kong 1757           0
## 1484                           Hungary 1757           0
## 1485                           Iceland 1757           0
## 1486                             India 1757           0
## 1487                         Indonesia 1757           0
## 1488                              Iran 1757           0
## 1489                              Iraq 1757           0
## 1490                           Ireland 1757           0
## 1491                            Israel 1757           0
## 1492                             Italy 1757           0
## 1493                           Jamaica 1757           0
## 1494                             Japan 1757           0
## 1495                            Jordan 1757           0
## 1496                        Kazakhstan 1757           0
## 1497                             Kenya 1757           0
## 1498                          Kiribati 1757           0
## 1499                            Kuwait 1757           0
## 1500                        Kyrgysztan 1757           0
## 1501                        Kyrgyzstan 1757           0
## 1502                              Laos 1757           0
## 1503                            Latvia 1757           0
## 1504                           Lebanon 1757           0
## 1505                           Lesotho 1757           0
## 1506                           Liberia 1757           0
## 1507                             Libya 1757           0
## 1508                     Liechtenstein 1757           0
## 1509                         Lithuania 1757           0
## 1510                        Luxembourg 1757           0
## 1511                             Macao 1757           0
## 1512                         Macedonia 1757           0
## 1513                        Madagascar 1757           0
## 1514                            Malawi 1757           0
## 1515                          Malaysia 1757           0
## 1516                          Maldives 1757           0
## 1517                              Mali 1757           0
## 1518                             Malta 1757           0
## 1519                  Marshall Islands 1757           0
## 1520                        Martinique 1757           0
## 1521                        Mauritania 1757           0
## 1522                         Mauritius 1757           0
## 1523                            Mexico 1757           0
## 1524              Micronesia (country) 1757           0
## 1525                       Middle East 1757           0
## 1526                           Moldova 1757           0
## 1527                          Mongolia 1757           0
## 1528                        Montenegro 1757           0
## 1529                        Montserrat 1757           0
## 1530                           Morocco 1757           0
## 1531                        Mozambique 1757           0
## 1532                           Myanmar 1757           0
## 1533                           Namibia 1757           0
## 1534                             Nauru 1757           0
## 1535                             Nepal 1757           0
## 1536                       Netherlands 1757           0
## 1537                     New Caledonia 1757           0
## 1538                       New Zealand 1757           0
## 1539                         Nicaragua 1757           0
## 1540                             Niger 1757           0
## 1541                           Nigeria 1757           0
## 1542                              Niue 1757           0
## 1543                       North Korea 1757           0
## 1544                            Norway 1757           0
## 1545                              Oman 1757           0
## 1546                          Pakistan 1757           0
## 1547                             Palau 1757           0
## 1548                         Palestine 1757           0
## 1549                            Panama 1757           0
## 1550                  Papua New Guinea 1757           0
## 1551                          Paraguay 1757           0
## 1552                              Peru 1757           0
## 1553                       Philippines 1757           0
## 1554                            Poland 1757           0
## 1555                          Portugal 1757           0
## 1556                             Qatar 1757           0
## 1557                           Reunion 1757           0
## 1558                           Romania 1757           0
## 1559                            Russia 1757           0
## 1560                            Rwanda 1757           0
## 1561                      Saint Helena 1757           0
## 1562             Saint Kitts and Nevis 1757           0
## 1563                       Saint Lucia 1757           0
## 1564         Saint Pierre and Miquelon 1757           0
## 1565  Saint Vincent and the Grenadines 1757           0
## 1566                             Samoa 1757           0
## 1567             Sao Tome and Principe 1757           0
## 1568                      Saudi Arabia 1757           0
## 1569                           Senegal 1757           0
## 1570                            Serbia 1757           0
## 1571                        Seychelles 1757           0
## 1572                      Sierra Leone 1757           0
## 1573                         Singapore 1757           0
## 1574         Sint Maarten (Dutch part) 1757           0
## 1575                          Slovakia 1757           0
## 1576                          Slovenia 1757           0
## 1577                   Solomon Islands 1757           0
## 1578                           Somalia 1757           0
## 1579                      South Africa 1757           0
## 1580                       South Korea 1757           0
## 1581                       South Sudan 1757           0
## 1582                             Spain 1757           0
## 1583                         Sri Lanka 1757           0
## 1584                             Sudan 1757           0
## 1585                          Suriname 1757           0
## 1586                         Swaziland 1757           0
## 1587                            Sweden 1757           0
## 1588                       Switzerland 1757           0
## 1589                             Syria 1757           0
## 1590                            Taiwan 1757           0
## 1591                        Tajikistan 1757           0
## 1592                          Tanzania 1757           0
## 1593                          Thailand 1757           0
## 1594                             Timor 1757           0
## 1595                              Togo 1757           0
## 1596                             Tonga 1757           0
## 1597               Trinidad and Tobago 1757           0
## 1598                           Tunisia 1757           0
## 1599                            Turkey 1757           0
## 1600                      Turkmenistan 1757           0
## 1601          Turks and Caicos Islands 1757           0
## 1602                            Tuvalu 1757           0
## 1603                            Uganda 1757           0
## 1604                           Ukraine 1757           0
## 1605              United Arab Emirates 1757           0
## 1606                    United Kingdom 1757    66794720
## 1607                     United States 1757           0
## 1608                           Uruguay 1757           0
## 1609                        Uzbekistan 1757           0
## 1610                           Vanuatu 1757           0
## 1611                         Venezuela 1757           0
## 1612                           Vietnam 1757           0
## 1613         Wallis and Futuna Islands 1757           0
## 1614                             World 1757    66794720
## 1615                             Yemen 1757           0
## 1616                            Zambia 1757           0
## 1617                          Zimbabwe 1757           0
## 1618                       Afghanistan 1758           0
## 1619                            Africa 1758           0
## 1620                           Albania 1758           0
## 1621                           Algeria 1758           0
## 1622                  Americas (other) 1758           0
## 1623                           Andorra 1758           0
## 1624                            Angola 1758           0
## 1625                          Anguilla 1758           0
## 1626               Antarctic Fisheries 1758           0
## 1627               Antigua and Barbuda 1758           0
## 1628                         Argentina 1758           0
## 1629                           Armenia 1758           0
## 1630                             Aruba 1758           0
## 1631          Asia and Pacific (other) 1758           0
## 1632                         Australia 1758           0
## 1633                           Austria 1758           0
## 1634                        Azerbaijan 1758           0
## 1635                           Bahamas 1758           0
## 1636                           Bahrain 1758           0
## 1637                        Bangladesh 1758           0
## 1638                          Barbados 1758           0
## 1639                           Belarus 1758           0
## 1640                           Belgium 1758           0
## 1641                            Belize 1758           0
## 1642                             Benin 1758           0
## 1643                           Bermuda 1758           0
## 1644                            Bhutan 1758           0
## 1645                           Bolivia 1758           0
## 1646   Bonaire Sint Eustatius and Saba 1758           0
## 1647            Bosnia and Herzegovina 1758           0
## 1648                          Botswana 1758           0
## 1649                            Brazil 1758           0
## 1650            British Virgin Islands 1758           0
## 1651                            Brunei 1758           0
## 1652                          Bulgaria 1758           0
## 1653                      Burkina Faso 1758           0
## 1654                           Burundi 1758           0
## 1655                          Cambodia 1758           0
## 1656                          Cameroon 1758           0
## 1657                            Canada 1758           0
## 1658                        Cape Verde 1758           0
## 1659                    Cayman Islands 1758           0
## 1660          Central African Republic 1758           0
## 1661                              Chad 1758           0
## 1662                             Chile 1758           0
## 1663                             China 1758           0
## 1664                  Christmas Island 1758           0
## 1665                          Colombia 1758           0
## 1666                           Comoros 1758           0
## 1667                             Congo 1758           0
## 1668                      Cook Islands 1758           0
## 1669                        Costa Rica 1758           0
## 1670                     Cote d'Ivoire 1758           0
## 1671                           Croatia 1758           0
## 1672                              Cuba 1758           0
## 1673                           Curacao 1758           0
## 1674                            Cyprus 1758           0
## 1675                    Czech Republic 1758           0
## 1676                    Czechoslovakia 1758           0
## 1677      Democratic Republic of Congo 1758           0
## 1678                           Denmark 1758           0
## 1679                          Djibouti 1758           0
## 1680                          Dominica 1758           0
## 1681                Dominican Republic 1758           0
## 1682                             EU-28 1758    76808432
## 1683                           Ecuador 1758           0
## 1684                             Egypt 1758           0
## 1685                       El Salvador 1758           0
## 1686                 Equatorial Guinea 1758           0
## 1687                           Eritrea 1758           0
## 1688                           Estonia 1758           0
## 1689                          Ethiopia 1758           0
## 1690                    Europe (other) 1758           0
## 1691                    Faeroe Islands 1758           0
## 1692                  Falkland Islands 1758           0
## 1693                              Fiji 1758           0
## 1694                           Finland 1758           0
## 1695                            France 1758           0
## 1696                     French Guiana 1758           0
## 1697                  French Polynesia 1758           0
## 1698                             Gabon 1758           0
## 1699                            Gambia 1758           0
## 1700                           Georgia 1758           0
## 1701                           Germany 1758           0
## 1702                             Ghana 1758           0
## 1703                         Gibraltar 1758           0
## 1704                            Greece 1758           0
## 1705                         Greenland 1758           0
## 1706                           Grenada 1758           0
## 1707                        Guadeloupe 1758           0
## 1708                         Guatemala 1758           0
## 1709                            Guinea 1758           0
## 1710                     Guinea-Bissau 1758           0
## 1711                            Guyana 1758           0
## 1712                             Haiti 1758           0
## 1713                          Honduras 1758           0
## 1714                         Hong Kong 1758           0
## 1715                           Hungary 1758           0
## 1716                           Iceland 1758           0
## 1717                             India 1758           0
## 1718                         Indonesia 1758           0
## 1719                              Iran 1758           0
## 1720                              Iraq 1758           0
## 1721                           Ireland 1758           0
## 1722                            Israel 1758           0
## 1723                             Italy 1758           0
## 1724                           Jamaica 1758           0
## 1725                             Japan 1758           0
## 1726                            Jordan 1758           0
## 1727                        Kazakhstan 1758           0
## 1728                             Kenya 1758           0
## 1729                          Kiribati 1758           0
## 1730                            Kuwait 1758           0
## 1731                        Kyrgysztan 1758           0
## 1732                        Kyrgyzstan 1758           0
## 1733                              Laos 1758           0
## 1734                            Latvia 1758           0
## 1735                           Lebanon 1758           0
## 1736                           Lesotho 1758           0
## 1737                           Liberia 1758           0
## 1738                             Libya 1758           0
## 1739                     Liechtenstein 1758           0
## 1740                         Lithuania 1758           0
## 1741                        Luxembourg 1758           0
## 1742                             Macao 1758           0
## 1743                         Macedonia 1758           0
## 1744                        Madagascar 1758           0
## 1745                            Malawi 1758           0
## 1746                          Malaysia 1758           0
## 1747                          Maldives 1758           0
## 1748                              Mali 1758           0
## 1749                             Malta 1758           0
## 1750                  Marshall Islands 1758           0
## 1751                        Martinique 1758           0
## 1752                        Mauritania 1758           0
## 1753                         Mauritius 1758           0
## 1754                            Mexico 1758           0
## 1755              Micronesia (country) 1758           0
## 1756                       Middle East 1758           0
## 1757                           Moldova 1758           0
## 1758                          Mongolia 1758           0
## 1759                        Montenegro 1758           0
## 1760                        Montserrat 1758           0
## 1761                           Morocco 1758           0
## 1762                        Mozambique 1758           0
## 1763                           Myanmar 1758           0
## 1764                           Namibia 1758           0
## 1765                             Nauru 1758           0
## 1766                             Nepal 1758           0
## 1767                       Netherlands 1758           0
## 1768                     New Caledonia 1758           0
## 1769                       New Zealand 1758           0
## 1770                         Nicaragua 1758           0
## 1771                             Niger 1758           0
## 1772                           Nigeria 1758           0
## 1773                              Niue 1758           0
## 1774                       North Korea 1758           0
## 1775                            Norway 1758           0
## 1776                              Oman 1758           0
## 1777                          Pakistan 1758           0
## 1778                             Palau 1758           0
## 1779                         Palestine 1758           0
## 1780                            Panama 1758           0
## 1781                  Papua New Guinea 1758           0
## 1782                          Paraguay 1758           0
## 1783                              Peru 1758           0
## 1784                       Philippines 1758           0
## 1785                            Poland 1758           0
## 1786                          Portugal 1758           0
## 1787                             Qatar 1758           0
## 1788                           Reunion 1758           0
## 1789                           Romania 1758           0
## 1790                            Russia 1758           0
## 1791                            Rwanda 1758           0
## 1792                      Saint Helena 1758           0
## 1793             Saint Kitts and Nevis 1758           0
## 1794                       Saint Lucia 1758           0
## 1795         Saint Pierre and Miquelon 1758           0
## 1796  Saint Vincent and the Grenadines 1758           0
## 1797                             Samoa 1758           0
## 1798             Sao Tome and Principe 1758           0
## 1799                      Saudi Arabia 1758           0
## 1800                           Senegal 1758           0
## 1801                            Serbia 1758           0
## 1802                        Seychelles 1758           0
## 1803                      Sierra Leone 1758           0
## 1804                         Singapore 1758           0
## 1805         Sint Maarten (Dutch part) 1758           0
## 1806                          Slovakia 1758           0
## 1807                          Slovenia 1758           0
## 1808                   Solomon Islands 1758           0
## 1809                           Somalia 1758           0
## 1810                      South Africa 1758           0
## 1811                       South Korea 1758           0
## 1812                       South Sudan 1758           0
## 1813                             Spain 1758           0
## 1814                         Sri Lanka 1758           0
## 1815                             Sudan 1758           0
## 1816                          Suriname 1758           0
## 1817                         Swaziland 1758           0
## 1818                            Sweden 1758           0
## 1819                       Switzerland 1758           0
## 1820                             Syria 1758           0
## 1821                            Taiwan 1758           0
## 1822                        Tajikistan 1758           0
## 1823                          Tanzania 1758           0
## 1824                          Thailand 1758           0
## 1825                             Timor 1758           0
## 1826                              Togo 1758           0
## 1827                             Tonga 1758           0
## 1828               Trinidad and Tobago 1758           0
## 1829                           Tunisia 1758           0
## 1830                            Turkey 1758           0
## 1831                      Turkmenistan 1758           0
## 1832          Turks and Caicos Islands 1758           0
## 1833                            Tuvalu 1758           0
## 1834                            Uganda 1758           0
## 1835                           Ukraine 1758           0
## 1836              United Arab Emirates 1758           0
## 1837                    United Kingdom 1758    76808432
## 1838                     United States 1758           0
## 1839                           Uruguay 1758           0
## 1840                        Uzbekistan 1758           0
## 1841                           Vanuatu 1758           0
## 1842                         Venezuela 1758           0
## 1843                           Vietnam 1758           0
## 1844         Wallis and Futuna Islands 1758           0
## 1845                             World 1758    76808432
## 1846                             Yemen 1758           0
## 1847                            Zambia 1758           0
## 1848                          Zimbabwe 1758           0
## 1849                       Afghanistan 1759           0
## 1850                            Africa 1759           0
## 1851                           Albania 1759           0
## 1852                           Algeria 1759           0
## 1853                  Americas (other) 1759           0
## 1854                           Andorra 1759           0
## 1855                            Angola 1759           0
## 1856                          Anguilla 1759           0
## 1857               Antarctic Fisheries 1759           0
## 1858               Antigua and Barbuda 1759           0
## 1859                         Argentina 1759           0
## 1860                           Armenia 1759           0
## 1861                             Aruba 1759           0
## 1862          Asia and Pacific (other) 1759           0
## 1863                         Australia 1759           0
## 1864                           Austria 1759           0
## 1865                        Azerbaijan 1759           0
## 1866                           Bahamas 1759           0
## 1867                           Bahrain 1759           0
## 1868                        Bangladesh 1759           0
## 1869                          Barbados 1759           0
## 1870                           Belarus 1759           0
## 1871                           Belgium 1759           0
## 1872                            Belize 1759           0
## 1873                             Benin 1759           0
## 1874                           Bermuda 1759           0
## 1875                            Bhutan 1759           0
## 1876                           Bolivia 1759           0
## 1877   Bonaire Sint Eustatius and Saba 1759           0
## 1878            Bosnia and Herzegovina 1759           0
## 1879                          Botswana 1759           0
## 1880                            Brazil 1759           0
## 1881            British Virgin Islands 1759           0
## 1882                            Brunei 1759           0
## 1883                          Bulgaria 1759           0
## 1884                      Burkina Faso 1759           0
## 1885                           Burundi 1759           0
## 1886                          Cambodia 1759           0
## 1887                          Cameroon 1759           0
## 1888                            Canada 1759           0
## 1889                        Cape Verde 1759           0
## 1890                    Cayman Islands 1759           0
## 1891          Central African Republic 1759           0
## 1892                              Chad 1759           0
## 1893                             Chile 1759           0
## 1894                             China 1759           0
## 1895                  Christmas Island 1759           0
## 1896                          Colombia 1759           0
## 1897                           Comoros 1759           0
## 1898                             Congo 1759           0
## 1899                      Cook Islands 1759           0
## 1900                        Costa Rica 1759           0
## 1901                     Cote d'Ivoire 1759           0
## 1902                           Croatia 1759           0
## 1903                              Cuba 1759           0
## 1904                           Curacao 1759           0
## 1905                            Cyprus 1759           0
## 1906                    Czech Republic 1759           0
## 1907                    Czechoslovakia 1759           0
## 1908      Democratic Republic of Congo 1759           0
## 1909                           Denmark 1759           0
## 1910                          Djibouti 1759           0
## 1911                          Dominica 1759           0
## 1912                Dominican Republic 1759           0
## 1913                             EU-28 1759    86825808
## 1914                           Ecuador 1759           0
## 1915                             Egypt 1759           0
## 1916                       El Salvador 1759           0
## 1917                 Equatorial Guinea 1759           0
## 1918                           Eritrea 1759           0
## 1919                           Estonia 1759           0
## 1920                          Ethiopia 1759           0
## 1921                    Europe (other) 1759           0
## 1922                    Faeroe Islands 1759           0
## 1923                  Falkland Islands 1759           0
## 1924                              Fiji 1759           0
## 1925                           Finland 1759           0
## 1926                            France 1759           0
## 1927                     French Guiana 1759           0
## 1928                  French Polynesia 1759           0
## 1929                             Gabon 1759           0
## 1930                            Gambia 1759           0
## 1931                           Georgia 1759           0
## 1932                           Germany 1759           0
## 1933                             Ghana 1759           0
## 1934                         Gibraltar 1759           0
## 1935                            Greece 1759           0
## 1936                         Greenland 1759           0
## 1937                           Grenada 1759           0
## 1938                        Guadeloupe 1759           0
## 1939                         Guatemala 1759           0
## 1940                            Guinea 1759           0
## 1941                     Guinea-Bissau 1759           0
## 1942                            Guyana 1759           0
## 1943                             Haiti 1759           0
## 1944                          Honduras 1759           0
## 1945                         Hong Kong 1759           0
## 1946                           Hungary 1759           0
## 1947                           Iceland 1759           0
## 1948                             India 1759           0
## 1949                         Indonesia 1759           0
## 1950                              Iran 1759           0
## 1951                              Iraq 1759           0
## 1952                           Ireland 1759           0
## 1953                            Israel 1759           0
## 1954                             Italy 1759           0
## 1955                           Jamaica 1759           0
## 1956                             Japan 1759           0
## 1957                            Jordan 1759           0
## 1958                        Kazakhstan 1759           0
## 1959                             Kenya 1759           0
## 1960                          Kiribati 1759           0
## 1961                            Kuwait 1759           0
## 1962                        Kyrgysztan 1759           0
## 1963                        Kyrgyzstan 1759           0
## 1964                              Laos 1759           0
## 1965                            Latvia 1759           0
## 1966                           Lebanon 1759           0
## 1967                           Lesotho 1759           0
## 1968                           Liberia 1759           0
## 1969                             Libya 1759           0
## 1970                     Liechtenstein 1759           0
## 1971                         Lithuania 1759           0
## 1972                        Luxembourg 1759           0
## 1973                             Macao 1759           0
## 1974                         Macedonia 1759           0
## 1975                        Madagascar 1759           0
## 1976                            Malawi 1759           0
## 1977                          Malaysia 1759           0
## 1978                          Maldives 1759           0
## 1979                              Mali 1759           0
## 1980                             Malta 1759           0
## 1981                  Marshall Islands 1759           0
## 1982                        Martinique 1759           0
## 1983                        Mauritania 1759           0
## 1984                         Mauritius 1759           0
## 1985                            Mexico 1759           0
## 1986              Micronesia (country) 1759           0
## 1987                       Middle East 1759           0
## 1988                           Moldova 1759           0
## 1989                          Mongolia 1759           0
## 1990                        Montenegro 1759           0
## 1991                        Montserrat 1759           0
## 1992                           Morocco 1759           0
## 1993                        Mozambique 1759           0
## 1994                           Myanmar 1759           0
## 1995                           Namibia 1759           0
## 1996                             Nauru 1759           0
## 1997                             Nepal 1759           0
## 1998                       Netherlands 1759           0
## 1999                     New Caledonia 1759           0
## 2000                       New Zealand 1759           0
## 2001                         Nicaragua 1759           0
## 2002                             Niger 1759           0
## 2003                           Nigeria 1759           0
## 2004                              Niue 1759           0
## 2005                       North Korea 1759           0
## 2006                            Norway 1759           0
## 2007                              Oman 1759           0
## 2008                          Pakistan 1759           0
## 2009                             Palau 1759           0
## 2010                         Palestine 1759           0
## 2011                            Panama 1759           0
## 2012                  Papua New Guinea 1759           0
## 2013                          Paraguay 1759           0
## 2014                              Peru 1759           0
## 2015                       Philippines 1759           0
## 2016                            Poland 1759           0
## 2017                          Portugal 1759           0
## 2018                             Qatar 1759           0
## 2019                           Reunion 1759           0
## 2020                           Romania 1759           0
## 2021                            Russia 1759           0
## 2022                            Rwanda 1759           0
## 2023                      Saint Helena 1759           0
## 2024             Saint Kitts and Nevis 1759           0
## 2025                       Saint Lucia 1759           0
## 2026         Saint Pierre and Miquelon 1759           0
## 2027  Saint Vincent and the Grenadines 1759           0
## 2028                             Samoa 1759           0
## 2029             Sao Tome and Principe 1759           0
## 2030                      Saudi Arabia 1759           0
## 2031                           Senegal 1759           0
## 2032                            Serbia 1759           0
## 2033                        Seychelles 1759           0
## 2034                      Sierra Leone 1759           0
## 2035                         Singapore 1759           0
## 2036         Sint Maarten (Dutch part) 1759           0
## 2037                          Slovakia 1759           0
## 2038                          Slovenia 1759           0
## 2039                   Solomon Islands 1759           0
## 2040                           Somalia 1759           0
## 2041                      South Africa 1759           0
## 2042                       South Korea 1759           0
## 2043                       South Sudan 1759           0
## 2044                             Spain 1759           0
## 2045                         Sri Lanka 1759           0
## 2046                             Sudan 1759           0
## 2047                          Suriname 1759           0
## 2048                         Swaziland 1759           0
## 2049                            Sweden 1759           0
## 2050                       Switzerland 1759           0
## 2051                             Syria 1759           0
## 2052                            Taiwan 1759           0
## 2053                        Tajikistan 1759           0
## 2054                          Tanzania 1759           0
## 2055                          Thailand 1759           0
## 2056                             Timor 1759           0
## 2057                              Togo 1759           0
## 2058                             Tonga 1759           0
## 2059               Trinidad and Tobago 1759           0
## 2060                           Tunisia 1759           0
## 2061                            Turkey 1759           0
## 2062                      Turkmenistan 1759           0
## 2063          Turks and Caicos Islands 1759           0
## 2064                            Tuvalu 1759           0
## 2065                            Uganda 1759           0
## 2066                           Ukraine 1759           0
## 2067              United Arab Emirates 1759           0
## 2068                    United Kingdom 1759    86825808
## 2069                     United States 1759           0
## 2070                           Uruguay 1759           0
## 2071                        Uzbekistan 1759           0
## 2072                           Vanuatu 1759           0
## 2073                         Venezuela 1759           0
## 2074                           Vietnam 1759           0
## 2075         Wallis and Futuna Islands 1759           0
## 2076                             World 1759    86825808
## 2077                             Yemen 1759           0
## 2078                            Zambia 1759           0
## 2079                          Zimbabwe 1759           0
## 2080                       Afghanistan 1760           0
## 2081                            Africa 1760           0
## 2082                           Albania 1760           0
## 2083                           Algeria 1760           0
## 2084                  Americas (other) 1760           0
## 2085                           Andorra 1760           0
## 2086                            Angola 1760           0
## 2087                          Anguilla 1760           0
## 2088               Antarctic Fisheries 1760           0
## 2089               Antigua and Barbuda 1760           0
## 2090                         Argentina 1760           0
## 2091                           Armenia 1760           0
## 2092                             Aruba 1760           0
## 2093          Asia and Pacific (other) 1760           0
## 2094                         Australia 1760           0
## 2095                           Austria 1760           0
## 2096                        Azerbaijan 1760           0
## 2097                           Bahamas 1760           0
## 2098                           Bahrain 1760           0
## 2099                        Bangladesh 1760           0
## 2100                          Barbados 1760           0
## 2101                           Belarus 1760           0
## 2102                           Belgium 1760           0
## 2103                            Belize 1760           0
## 2104                             Benin 1760           0
## 2105                           Bermuda 1760           0
## 2106                            Bhutan 1760           0
## 2107                           Bolivia 1760           0
## 2108   Bonaire Sint Eustatius and Saba 1760           0
## 2109            Bosnia and Herzegovina 1760           0
## 2110                          Botswana 1760           0
## 2111                            Brazil 1760           0
## 2112            British Virgin Islands 1760           0
## 2113                            Brunei 1760           0
## 2114                          Bulgaria 1760           0
## 2115                      Burkina Faso 1760           0
## 2116                           Burundi 1760           0
## 2117                          Cambodia 1760           0
## 2118                          Cameroon 1760           0
## 2119                            Canada 1760           0
## 2120                        Cape Verde 1760           0
## 2121                    Cayman Islands 1760           0
## 2122          Central African Republic 1760           0
## 2123                              Chad 1760           0
## 2124                             Chile 1760           0
## 2125                             China 1760           0
## 2126                  Christmas Island 1760           0
## 2127                          Colombia 1760           0
## 2128                           Comoros 1760           0
## 2129                             Congo 1760           0
## 2130                      Cook Islands 1760           0
## 2131                        Costa Rica 1760           0
## 2132                     Cote d'Ivoire 1760           0
## 2133                           Croatia 1760           0
## 2134                              Cuba 1760           0
## 2135                           Curacao 1760           0
## 2136                            Cyprus 1760           0
## 2137                    Czech Republic 1760           0
## 2138                    Czechoslovakia 1760           0
## 2139      Democratic Republic of Congo 1760           0
## 2140                           Denmark 1760           0
## 2141                          Djibouti 1760           0
## 2142                          Dominica 1760           0
## 2143                Dominican Republic 1760           0
## 2144                             EU-28 1760    96843184
## 2145                           Ecuador 1760           0
## 2146                             Egypt 1760           0
## 2147                       El Salvador 1760           0
## 2148                 Equatorial Guinea 1760           0
## 2149                           Eritrea 1760           0
## 2150                           Estonia 1760           0
## 2151                          Ethiopia 1760           0
## 2152                    Europe (other) 1760           0
## 2153                    Faeroe Islands 1760           0
## 2154                  Falkland Islands 1760           0
## 2155                              Fiji 1760           0
## 2156                           Finland 1760           0
## 2157                            France 1760           0
## 2158                     French Guiana 1760           0
## 2159                  French Polynesia 1760           0
## 2160                             Gabon 1760           0
## 2161                            Gambia 1760           0
## 2162                           Georgia 1760           0
## 2163                           Germany 1760           0
## 2164                             Ghana 1760           0
## 2165                         Gibraltar 1760           0
## 2166                            Greece 1760           0
## 2167                         Greenland 1760           0
## 2168                           Grenada 1760           0
## 2169                        Guadeloupe 1760           0
## 2170                         Guatemala 1760           0
## 2171                            Guinea 1760           0
## 2172                     Guinea-Bissau 1760           0
## 2173                            Guyana 1760           0
## 2174                             Haiti 1760           0
## 2175                          Honduras 1760           0
## 2176                         Hong Kong 1760           0
## 2177                           Hungary 1760           0
## 2178                           Iceland 1760           0
## 2179                             India 1760           0
## 2180                         Indonesia 1760           0
## 2181                              Iran 1760           0
## 2182                              Iraq 1760           0
## 2183                           Ireland 1760           0
## 2184                            Israel 1760           0
## 2185                             Italy 1760           0
## 2186                           Jamaica 1760           0
## 2187                             Japan 1760           0
## 2188                            Jordan 1760           0
## 2189                        Kazakhstan 1760           0
## 2190                             Kenya 1760           0
## 2191                          Kiribati 1760           0
## 2192                            Kuwait 1760           0
## 2193                        Kyrgysztan 1760           0
## 2194                        Kyrgyzstan 1760           0
## 2195                              Laos 1760           0
## 2196                            Latvia 1760           0
## 2197                           Lebanon 1760           0
## 2198                           Lesotho 1760           0
## 2199                           Liberia 1760           0
## 2200                             Libya 1760           0
## 2201                     Liechtenstein 1760           0
## 2202                         Lithuania 1760           0
## 2203                        Luxembourg 1760           0
## 2204                             Macao 1760           0
## 2205                         Macedonia 1760           0
## 2206                        Madagascar 1760           0
## 2207                            Malawi 1760           0
## 2208                          Malaysia 1760           0
## 2209                          Maldives 1760           0
## 2210                              Mali 1760           0
## 2211                             Malta 1760           0
## 2212                  Marshall Islands 1760           0
## 2213                        Martinique 1760           0
## 2214                        Mauritania 1760           0
## 2215                         Mauritius 1760           0
## 2216                            Mexico 1760           0
## 2217              Micronesia (country) 1760           0
## 2218                       Middle East 1760           0
## 2219                           Moldova 1760           0
## 2220                          Mongolia 1760           0
## 2221                        Montenegro 1760           0
## 2222                        Montserrat 1760           0
## 2223                           Morocco 1760           0
## 2224                        Mozambique 1760           0
## 2225                           Myanmar 1760           0
## 2226                           Namibia 1760           0
## 2227                             Nauru 1760           0
## 2228                             Nepal 1760           0
## 2229                       Netherlands 1760           0
## 2230                     New Caledonia 1760           0
## 2231                       New Zealand 1760           0
## 2232                         Nicaragua 1760           0
## 2233                             Niger 1760           0
## 2234                           Nigeria 1760           0
## 2235                              Niue 1760           0
## 2236                       North Korea 1760           0
## 2237                            Norway 1760           0
## 2238                              Oman 1760           0
## 2239                          Pakistan 1760           0
## 2240                             Palau 1760           0
## 2241                         Palestine 1760           0
## 2242                            Panama 1760           0
## 2243                  Papua New Guinea 1760           0
## 2244                          Paraguay 1760           0
## 2245                              Peru 1760           0
## 2246                       Philippines 1760           0
## 2247                            Poland 1760           0
## 2248                          Portugal 1760           0
## 2249                             Qatar 1760           0
## 2250                           Reunion 1760           0
## 2251                           Romania 1760           0
## 2252                            Russia 1760           0
## 2253                            Rwanda 1760           0
## 2254                      Saint Helena 1760           0
## 2255             Saint Kitts and Nevis 1760           0
## 2256                       Saint Lucia 1760           0
## 2257         Saint Pierre and Miquelon 1760           0
## 2258  Saint Vincent and the Grenadines 1760           0
## 2259                             Samoa 1760           0
## 2260             Sao Tome and Principe 1760           0
## 2261                      Saudi Arabia 1760           0
## 2262                           Senegal 1760           0
## 2263                            Serbia 1760           0
## 2264                        Seychelles 1760           0
## 2265                      Sierra Leone 1760           0
## 2266                         Singapore 1760           0
## 2267         Sint Maarten (Dutch part) 1760           0
## 2268                          Slovakia 1760           0
## 2269                          Slovenia 1760           0
## 2270                   Solomon Islands 1760           0
## 2271                           Somalia 1760           0
## 2272                      South Africa 1760           0
## 2273                       South Korea 1760           0
## 2274                       South Sudan 1760           0
## 2275                             Spain 1760           0
## 2276                         Sri Lanka 1760           0
## 2277                             Sudan 1760           0
## 2278                          Suriname 1760           0
## 2279                         Swaziland 1760           0
## 2280                            Sweden 1760           0
## 2281                       Switzerland 1760           0
## 2282                             Syria 1760           0
## 2283                            Taiwan 1760           0
## 2284                        Tajikistan 1760           0
## 2285                          Tanzania 1760           0
## 2286                          Thailand 1760           0
## 2287                             Timor 1760           0
## 2288                              Togo 1760           0
## 2289                             Tonga 1760           0
## 2290               Trinidad and Tobago 1760           0
## 2291                           Tunisia 1760           0
## 2292                            Turkey 1760           0
## 2293                      Turkmenistan 1760           0
## 2294          Turks and Caicos Islands 1760           0
## 2295                            Tuvalu 1760           0
## 2296                            Uganda 1760           0
## 2297                           Ukraine 1760           0
## 2298              United Arab Emirates 1760           0
## 2299                    United Kingdom 1760    96843184
## 2300                     United States 1760           0
## 2301                           Uruguay 1760           0
## 2302                        Uzbekistan 1760           0
## 2303                           Vanuatu 1760           0
## 2304                         Venezuela 1760           0
## 2305                           Vietnam 1760           0
## 2306         Wallis and Futuna Islands 1760           0
## 2307                             World 1760    96843184
## 2308                             Yemen 1760           0
## 2309                            Zambia 1760           0
## 2310                          Zimbabwe 1760           0
## 2311                       Afghanistan 1761           0
## 2312                            Africa 1761           0
## 2313                           Albania 1761           0
## 2314                           Algeria 1761           0
## 2315                  Americas (other) 1761           0
## 2316                           Andorra 1761           0
## 2317                            Angola 1761           0
## 2318                          Anguilla 1761           0
## 2319               Antarctic Fisheries 1761           0
## 2320               Antigua and Barbuda 1761           0
## 2321                         Argentina 1761           0
## 2322                           Armenia 1761           0
## 2323                             Aruba 1761           0
## 2324          Asia and Pacific (other) 1761           0
## 2325                         Australia 1761           0
## 2326                           Austria 1761           0
## 2327                        Azerbaijan 1761           0
## 2328                           Bahamas 1761           0
## 2329                           Bahrain 1761           0
## 2330                        Bangladesh 1761           0
## 2331                          Barbados 1761           0
## 2332                           Belarus 1761           0
## 2333                           Belgium 1761           0
## 2334                            Belize 1761           0
## 2335                             Benin 1761           0
## 2336                           Bermuda 1761           0
## 2337                            Bhutan 1761           0
## 2338                           Bolivia 1761           0
## 2339   Bonaire Sint Eustatius and Saba 1761           0
## 2340            Bosnia and Herzegovina 1761           0
## 2341                          Botswana 1761           0
## 2342                            Brazil 1761           0
## 2343            British Virgin Islands 1761           0
## 2344                            Brunei 1761           0
## 2345                          Bulgaria 1761           0
## 2346                      Burkina Faso 1761           0
## 2347                           Burundi 1761           0
## 2348                          Cambodia 1761           0
## 2349                          Cameroon 1761           0
## 2350                            Canada 1761           0
## 2351                        Cape Verde 1761           0
## 2352                    Cayman Islands 1761           0
## 2353          Central African Republic 1761           0
## 2354                              Chad 1761           0
## 2355                             Chile 1761           0
## 2356                             China 1761           0
## 2357                  Christmas Island 1761           0
## 2358                          Colombia 1761           0
## 2359                           Comoros 1761           0
## 2360                             Congo 1761           0
## 2361                      Cook Islands 1761           0
## 2362                        Costa Rica 1761           0
## 2363                     Cote d'Ivoire 1761           0
## 2364                           Croatia 1761           0
## 2365                              Cuba 1761           0
## 2366                           Curacao 1761           0
## 2367                            Cyprus 1761           0
## 2368                    Czech Republic 1761           0
## 2369                    Czechoslovakia 1761           0
## 2370      Democratic Republic of Congo 1761           0
## 2371                           Denmark 1761           0
## 2372                          Djibouti 1761           0
## 2373                          Dominica 1761           0
## 2374                Dominican Republic 1761           0
## 2375                             EU-28 1761   107816864
## 2376                           Ecuador 1761           0
## 2377                             Egypt 1761           0
## 2378                       El Salvador 1761           0
## 2379                 Equatorial Guinea 1761           0
## 2380                           Eritrea 1761           0
## 2381                           Estonia 1761           0
## 2382                          Ethiopia 1761           0
## 2383                    Europe (other) 1761           0
## 2384                    Faeroe Islands 1761           0
## 2385                  Falkland Islands 1761           0
## 2386                              Fiji 1761           0
## 2387                           Finland 1761           0
## 2388                            France 1761           0
## 2389                     French Guiana 1761           0
## 2390                  French Polynesia 1761           0
## 2391                             Gabon 1761           0
## 2392                            Gambia 1761           0
## 2393                           Georgia 1761           0
## 2394                           Germany 1761           0
## 2395                             Ghana 1761           0
## 2396                         Gibraltar 1761           0
## 2397                            Greece 1761           0
## 2398                         Greenland 1761           0
## 2399                           Grenada 1761           0
## 2400                        Guadeloupe 1761           0
## 2401                         Guatemala 1761           0
## 2402                            Guinea 1761           0
## 2403                     Guinea-Bissau 1761           0
## 2404                            Guyana 1761           0
## 2405                             Haiti 1761           0
## 2406                          Honduras 1761           0
## 2407                         Hong Kong 1761           0
## 2408                           Hungary 1761           0
## 2409                           Iceland 1761           0
## 2410                             India 1761           0
## 2411                         Indonesia 1761           0
## 2412                              Iran 1761           0
## 2413                              Iraq 1761           0
## 2414                           Ireland 1761           0
## 2415                            Israel 1761           0
## 2416                             Italy 1761           0
## 2417                           Jamaica 1761           0
## 2418                             Japan 1761           0
## 2419                            Jordan 1761           0
## 2420                        Kazakhstan 1761           0
## 2421                             Kenya 1761           0
## 2422                          Kiribati 1761           0
## 2423                            Kuwait 1761           0
## 2424                        Kyrgysztan 1761           0
## 2425                        Kyrgyzstan 1761           0
## 2426                              Laos 1761           0
## 2427                            Latvia 1761           0
## 2428                           Lebanon 1761           0
## 2429                           Lesotho 1761           0
## 2430                           Liberia 1761           0
## 2431                             Libya 1761           0
## 2432                     Liechtenstein 1761           0
## 2433                         Lithuania 1761           0
## 2434                        Luxembourg 1761           0
## 2435                             Macao 1761           0
## 2436                         Macedonia 1761           0
## 2437                        Madagascar 1761           0
## 2438                            Malawi 1761           0
## 2439                          Malaysia 1761           0
## 2440                          Maldives 1761           0
## 2441                              Mali 1761           0
## 2442                             Malta 1761           0
## 2443                  Marshall Islands 1761           0
## 2444                        Martinique 1761           0
## 2445                        Mauritania 1761           0
## 2446                         Mauritius 1761           0
## 2447                            Mexico 1761           0
## 2448              Micronesia (country) 1761           0
## 2449                       Middle East 1761           0
## 2450                           Moldova 1761           0
## 2451                          Mongolia 1761           0
## 2452                        Montenegro 1761           0
## 2453                        Montserrat 1761           0
## 2454                           Morocco 1761           0
## 2455                        Mozambique 1761           0
## 2456                           Myanmar 1761           0
## 2457                           Namibia 1761           0
## 2458                             Nauru 1761           0
## 2459                             Nepal 1761           0
## 2460                       Netherlands 1761           0
## 2461                     New Caledonia 1761           0
## 2462                       New Zealand 1761           0
## 2463                         Nicaragua 1761           0
## 2464                             Niger 1761           0
## 2465                           Nigeria 1761           0
## 2466                              Niue 1761           0
## 2467                       North Korea 1761           0
## 2468                            Norway 1761           0
## 2469                              Oman 1761           0
## 2470                          Pakistan 1761           0
## 2471                             Palau 1761           0
## 2472                         Palestine 1761           0
## 2473                            Panama 1761           0
## 2474                  Papua New Guinea 1761           0
## 2475                          Paraguay 1761           0
## 2476                              Peru 1761           0
## 2477                       Philippines 1761           0
## 2478                            Poland 1761           0
## 2479                          Portugal 1761           0
## 2480                             Qatar 1761           0
## 2481                           Reunion 1761           0
## 2482                           Romania 1761           0
## 2483                            Russia 1761           0
## 2484                            Rwanda 1761           0
## 2485                      Saint Helena 1761           0
## 2486             Saint Kitts and Nevis 1761           0
## 2487                       Saint Lucia 1761           0
## 2488         Saint Pierre and Miquelon 1761           0
## 2489  Saint Vincent and the Grenadines 1761           0
## 2490                             Samoa 1761           0
## 2491             Sao Tome and Principe 1761           0
## 2492                      Saudi Arabia 1761           0
## 2493                           Senegal 1761           0
## 2494                            Serbia 1761           0
## 2495                        Seychelles 1761           0
## 2496                      Sierra Leone 1761           0
## 2497                         Singapore 1761           0
## 2498         Sint Maarten (Dutch part) 1761           0
## 2499                          Slovakia 1761           0
## 2500                          Slovenia 1761           0
## 2501                   Solomon Islands 1761           0
## 2502                           Somalia 1761           0
## 2503                      South Africa 1761           0
## 2504                       South Korea 1761           0
## 2505                       South Sudan 1761           0
## 2506                             Spain 1761           0
## 2507                         Sri Lanka 1761           0
## 2508                             Sudan 1761           0
## 2509                          Suriname 1761           0
## 2510                         Swaziland 1761           0
## 2511                            Sweden 1761           0
## 2512                       Switzerland 1761           0
## 2513                             Syria 1761           0
## 2514                            Taiwan 1761           0
## 2515                        Tajikistan 1761           0
## 2516                          Tanzania 1761           0
## 2517                          Thailand 1761           0
## 2518                             Timor 1761           0
## 2519                              Togo 1761           0
## 2520                             Tonga 1761           0
## 2521               Trinidad and Tobago 1761           0
## 2522                           Tunisia 1761           0
## 2523                            Turkey 1761           0
## 2524                      Turkmenistan 1761           0
## 2525          Turks and Caicos Islands 1761           0
## 2526                            Tuvalu 1761           0
## 2527                            Uganda 1761           0
## 2528                           Ukraine 1761           0
## 2529              United Arab Emirates 1761           0
## 2530                    United Kingdom 1761   107816864
## 2531                     United States 1761           0
## 2532                           Uruguay 1761           0
## 2533                        Uzbekistan 1761           0
## 2534                           Vanuatu 1761           0
## 2535                         Venezuela 1761           0
## 2536                           Vietnam 1761           0
## 2537         Wallis and Futuna Islands 1761           0
## 2538                             World 1761   107816864
## 2539                             Yemen 1761           0
## 2540                            Zambia 1761           0
## 2541                          Zimbabwe 1761           0
## 2542                       Afghanistan 1762           0
## 2543                            Africa 1762           0
## 2544                           Albania 1762           0
## 2545                           Algeria 1762           0
## 2546                  Americas (other) 1762           0
## 2547                           Andorra 1762           0
## 2548                            Angola 1762           0
## 2549                          Anguilla 1762           0
## 2550               Antarctic Fisheries 1762           0
## 2551               Antigua and Barbuda 1762           0
## 2552                         Argentina 1762           0
## 2553                           Armenia 1762           0
## 2554                             Aruba 1762           0
## 2555          Asia and Pacific (other) 1762           0
## 2556                         Australia 1762           0
## 2557                           Austria 1762           0
## 2558                        Azerbaijan 1762           0
## 2559                           Bahamas 1762           0
## 2560                           Bahrain 1762           0
## 2561                        Bangladesh 1762           0
## 2562                          Barbados 1762           0
## 2563                           Belarus 1762           0
## 2564                           Belgium 1762           0
## 2565                            Belize 1762           0
## 2566                             Benin 1762           0
## 2567                           Bermuda 1762           0
## 2568                            Bhutan 1762           0
## 2569                           Bolivia 1762           0
## 2570   Bonaire Sint Eustatius and Saba 1762           0
## 2571            Bosnia and Herzegovina 1762           0
## 2572                          Botswana 1762           0
## 2573                            Brazil 1762           0
## 2574            British Virgin Islands 1762           0
## 2575                            Brunei 1762           0
## 2576                          Bulgaria 1762           0
## 2577                      Burkina Faso 1762           0
## 2578                           Burundi 1762           0
## 2579                          Cambodia 1762           0
## 2580                          Cameroon 1762           0
## 2581                            Canada 1762           0
## 2582                        Cape Verde 1762           0
## 2583                    Cayman Islands 1762           0
## 2584          Central African Republic 1762           0
## 2585                              Chad 1762           0
## 2586                             Chile 1762           0
## 2587                             China 1762           0
## 2588                  Christmas Island 1762           0
## 2589                          Colombia 1762           0
## 2590                           Comoros 1762           0
## 2591                             Congo 1762           0
## 2592                      Cook Islands 1762           0
## 2593                        Costa Rica 1762           0
## 2594                     Cote d'Ivoire 1762           0
## 2595                           Croatia 1762           0
## 2596                              Cuba 1762           0
## 2597                           Curacao 1762           0
## 2598                            Cyprus 1762           0
## 2599                    Czech Republic 1762           0
## 2600                    Czechoslovakia 1762           0
## 2601      Democratic Republic of Congo 1762           0
## 2602                           Denmark 1762           0
## 2603                          Djibouti 1762           0
## 2604                          Dominica 1762           0
## 2605                Dominican Republic 1762           0
## 2606                             EU-28 1762   118794208
## 2607                           Ecuador 1762           0
## 2608                             Egypt 1762           0
## 2609                       El Salvador 1762           0
## 2610                 Equatorial Guinea 1762           0
## 2611                           Eritrea 1762           0
## 2612                           Estonia 1762           0
## 2613                          Ethiopia 1762           0
## 2614                    Europe (other) 1762           0
## 2615                    Faeroe Islands 1762           0
## 2616                  Falkland Islands 1762           0
## 2617                              Fiji 1762           0
## 2618                           Finland 1762           0
## 2619                            France 1762           0
## 2620                     French Guiana 1762           0
## 2621                  French Polynesia 1762           0
## 2622                             Gabon 1762           0
## 2623                            Gambia 1762           0
## 2624                           Georgia 1762           0
## 2625                           Germany 1762           0
## 2626                             Ghana 1762           0
## 2627                         Gibraltar 1762           0
## 2628                            Greece 1762           0
## 2629                         Greenland 1762           0
## 2630                           Grenada 1762           0
## 2631                        Guadeloupe 1762           0
## 2632                         Guatemala 1762           0
## 2633                            Guinea 1762           0
## 2634                     Guinea-Bissau 1762           0
## 2635                            Guyana 1762           0
## 2636                             Haiti 1762           0
## 2637                          Honduras 1762           0
## 2638                         Hong Kong 1762           0
## 2639                           Hungary 1762           0
## 2640                           Iceland 1762           0
## 2641                             India 1762           0
## 2642                         Indonesia 1762           0
## 2643                              Iran 1762           0
## 2644                              Iraq 1762           0
## 2645                           Ireland 1762           0
## 2646                            Israel 1762           0
## 2647                             Italy 1762           0
## 2648                           Jamaica 1762           0
## 2649                             Japan 1762           0
## 2650                            Jordan 1762           0
## 2651                        Kazakhstan 1762           0
## 2652                             Kenya 1762           0
## 2653                          Kiribati 1762           0
## 2654                            Kuwait 1762           0
## 2655                        Kyrgysztan 1762           0
## 2656                        Kyrgyzstan 1762           0
## 2657                              Laos 1762           0
## 2658                            Latvia 1762           0
## 2659                           Lebanon 1762           0
## 2660                           Lesotho 1762           0
## 2661                           Liberia 1762           0
## 2662                             Libya 1762           0
## 2663                     Liechtenstein 1762           0
## 2664                         Lithuania 1762           0
## 2665                        Luxembourg 1762           0
## 2666                             Macao 1762           0
## 2667                         Macedonia 1762           0
## 2668                        Madagascar 1762           0
## 2669                            Malawi 1762           0
## 2670                          Malaysia 1762           0
## 2671                          Maldives 1762           0
## 2672                              Mali 1762           0
## 2673                             Malta 1762           0
## 2674                  Marshall Islands 1762           0
## 2675                        Martinique 1762           0
## 2676                        Mauritania 1762           0
## 2677                         Mauritius 1762           0
## 2678                            Mexico 1762           0
## 2679              Micronesia (country) 1762           0
## 2680                       Middle East 1762           0
## 2681                           Moldova 1762           0
## 2682                          Mongolia 1762           0
## 2683                        Montenegro 1762           0
## 2684                        Montserrat 1762           0
## 2685                           Morocco 1762           0
## 2686                        Mozambique 1762           0
## 2687                           Myanmar 1762           0
## 2688                           Namibia 1762           0
## 2689                             Nauru 1762           0
## 2690                             Nepal 1762           0
## 2691                       Netherlands 1762           0
## 2692                     New Caledonia 1762           0
## 2693                       New Zealand 1762           0
## 2694                         Nicaragua 1762           0
## 2695                             Niger 1762           0
## 2696                           Nigeria 1762           0
## 2697                              Niue 1762           0
## 2698                       North Korea 1762           0
## 2699                            Norway 1762           0
## 2700                              Oman 1762           0
## 2701                          Pakistan 1762           0
## 2702                             Palau 1762           0
## 2703                         Palestine 1762           0
## 2704                            Panama 1762           0
## 2705                  Papua New Guinea 1762           0
## 2706                          Paraguay 1762           0
## 2707                              Peru 1762           0
## 2708                       Philippines 1762           0
## 2709                            Poland 1762           0
## 2710                          Portugal 1762           0
## 2711                             Qatar 1762           0
## 2712                           Reunion 1762           0
## 2713                           Romania 1762           0
## 2714                            Russia 1762           0
## 2715                            Rwanda 1762           0
## 2716                      Saint Helena 1762           0
## 2717             Saint Kitts and Nevis 1762           0
## 2718                       Saint Lucia 1762           0
## 2719         Saint Pierre and Miquelon 1762           0
## 2720  Saint Vincent and the Grenadines 1762           0
## 2721                             Samoa 1762           0
## 2722             Sao Tome and Principe 1762           0
## 2723                      Saudi Arabia 1762           0
## 2724                           Senegal 1762           0
## 2725                            Serbia 1762           0
## 2726                        Seychelles 1762           0
## 2727                      Sierra Leone 1762           0
## 2728                         Singapore 1762           0
## 2729         Sint Maarten (Dutch part) 1762           0
## 2730                          Slovakia 1762           0
## 2731                          Slovenia 1762           0
## 2732                   Solomon Islands 1762           0
## 2733                           Somalia 1762           0
## 2734                      South Africa 1762           0
## 2735                       South Korea 1762           0
## 2736                       South Sudan 1762           0
## 2737                             Spain 1762           0
## 2738                         Sri Lanka 1762           0
## 2739                             Sudan 1762           0
## 2740                          Suriname 1762           0
## 2741                         Swaziland 1762           0
## 2742                            Sweden 1762           0
## 2743                       Switzerland 1762           0
## 2744                             Syria 1762           0
## 2745                            Taiwan 1762           0
## 2746                        Tajikistan 1762           0
## 2747                          Tanzania 1762           0
## 2748                          Thailand 1762           0
## 2749                             Timor 1762           0
## 2750                              Togo 1762           0
## 2751                             Tonga 1762           0
## 2752               Trinidad and Tobago 1762           0
## 2753                           Tunisia 1762           0
## 2754                            Turkey 1762           0
## 2755                      Turkmenistan 1762           0
## 2756          Turks and Caicos Islands 1762           0
## 2757                            Tuvalu 1762           0
## 2758                            Uganda 1762           0
## 2759                           Ukraine 1762           0
## 2760              United Arab Emirates 1762           0
## 2761                    United Kingdom 1762   118794208
## 2762                     United States 1762           0
## 2763                           Uruguay 1762           0
## 2764                        Uzbekistan 1762           0
## 2765                           Vanuatu 1762           0
## 2766                         Venezuela 1762           0
## 2767                           Vietnam 1762           0
## 2768         Wallis and Futuna Islands 1762           0
## 2769                             World 1762   118794208
## 2770                             Yemen 1762           0
## 2771                            Zambia 1762           0
## 2772                          Zimbabwe 1762           0
## 2773                       Afghanistan 1763           0
## 2774                            Africa 1763           0
## 2775                           Albania 1763           0
## 2776                           Algeria 1763           0
## 2777                  Americas (other) 1763           0
## 2778                           Andorra 1763           0
## 2779                            Angola 1763           0
## 2780                          Anguilla 1763           0
## 2781               Antarctic Fisheries 1763           0
## 2782               Antigua and Barbuda 1763           0
## 2783                         Argentina 1763           0
## 2784                           Armenia 1763           0
## 2785                             Aruba 1763           0
## 2786          Asia and Pacific (other) 1763           0
## 2787                         Australia 1763           0
## 2788                           Austria 1763           0
## 2789                        Azerbaijan 1763           0
## 2790                           Bahamas 1763           0
## 2791                           Bahrain 1763           0
## 2792                        Bangladesh 1763           0
## 2793                          Barbados 1763           0
## 2794                           Belarus 1763           0
## 2795                           Belgium 1763           0
## 2796                            Belize 1763           0
## 2797                             Benin 1763           0
## 2798                           Bermuda 1763           0
## 2799                            Bhutan 1763           0
## 2800                           Bolivia 1763           0
## 2801   Bonaire Sint Eustatius and Saba 1763           0
## 2802            Bosnia and Herzegovina 1763           0
## 2803                          Botswana 1763           0
## 2804                            Brazil 1763           0
## 2805            British Virgin Islands 1763           0
## 2806                            Brunei 1763           0
## 2807                          Bulgaria 1763           0
## 2808                      Burkina Faso 1763           0
## 2809                           Burundi 1763           0
## 2810                          Cambodia 1763           0
## 2811                          Cameroon 1763           0
## 2812                            Canada 1763           0
## 2813                        Cape Verde 1763           0
## 2814                    Cayman Islands 1763           0
## 2815          Central African Republic 1763           0
## 2816                              Chad 1763           0
## 2817                             Chile 1763           0
## 2818                             China 1763           0
## 2819                  Christmas Island 1763           0
## 2820                          Colombia 1763           0
## 2821                           Comoros 1763           0
## 2822                             Congo 1763           0
## 2823                      Cook Islands 1763           0
## 2824                        Costa Rica 1763           0
## 2825                     Cote d'Ivoire 1763           0
## 2826                           Croatia 1763           0
## 2827                              Cuba 1763           0
## 2828                           Curacao 1763           0
## 2829                            Cyprus 1763           0
## 2830                    Czech Republic 1763           0
## 2831                    Czechoslovakia 1763           0
## 2832      Democratic Republic of Congo 1763           0
## 2833                           Denmark 1763           0
## 2834                          Djibouti 1763           0
## 2835                          Dominica 1763           0
## 2836                Dominican Republic 1763           0
## 2837                             EU-28 1763   129775216
## 2838                           Ecuador 1763           0
## 2839                             Egypt 1763           0
## 2840                       El Salvador 1763           0
## 2841                 Equatorial Guinea 1763           0
## 2842                           Eritrea 1763           0
## 2843                           Estonia 1763           0
## 2844                          Ethiopia 1763           0
## 2845                    Europe (other) 1763           0
## 2846                    Faeroe Islands 1763           0
## 2847                  Falkland Islands 1763           0
## 2848                              Fiji 1763           0
## 2849                           Finland 1763           0
## 2850                            France 1763           0
## 2851                     French Guiana 1763           0
## 2852                  French Polynesia 1763           0
## 2853                             Gabon 1763           0
## 2854                            Gambia 1763           0
## 2855                           Georgia 1763           0
## 2856                           Germany 1763           0
## 2857                             Ghana 1763           0
## 2858                         Gibraltar 1763           0
## 2859                            Greece 1763           0
## 2860                         Greenland 1763           0
## 2861                           Grenada 1763           0
## 2862                        Guadeloupe 1763           0
## 2863                         Guatemala 1763           0
## 2864                            Guinea 1763           0
## 2865                     Guinea-Bissau 1763           0
## 2866                            Guyana 1763           0
## 2867                             Haiti 1763           0
## 2868                          Honduras 1763           0
## 2869                         Hong Kong 1763           0
## 2870                           Hungary 1763           0
## 2871                           Iceland 1763           0
## 2872                             India 1763           0
## 2873                         Indonesia 1763           0
## 2874                              Iran 1763           0
## 2875                              Iraq 1763           0
## 2876                           Ireland 1763           0
## 2877                            Israel 1763           0
## 2878                             Italy 1763           0
## 2879                           Jamaica 1763           0
## 2880                             Japan 1763           0
## 2881                            Jordan 1763           0
## 2882                        Kazakhstan 1763           0
## 2883                             Kenya 1763           0
## 2884                          Kiribati 1763           0
## 2885                            Kuwait 1763           0
## 2886                        Kyrgysztan 1763           0
## 2887                        Kyrgyzstan 1763           0
## 2888                              Laos 1763           0
## 2889                            Latvia 1763           0
## 2890                           Lebanon 1763           0
## 2891                           Lesotho 1763           0
## 2892                           Liberia 1763           0
## 2893                             Libya 1763           0
## 2894                     Liechtenstein 1763           0
## 2895                         Lithuania 1763           0
## 2896                        Luxembourg 1763           0
## 2897                             Macao 1763           0
## 2898                         Macedonia 1763           0
## 2899                        Madagascar 1763           0
## 2900                            Malawi 1763           0
## 2901                          Malaysia 1763           0
## 2902                          Maldives 1763           0
## 2903                              Mali 1763           0
## 2904                             Malta 1763           0
## 2905                  Marshall Islands 1763           0
## 2906                        Martinique 1763           0
## 2907                        Mauritania 1763           0
## 2908                         Mauritius 1763           0
## 2909                            Mexico 1763           0
## 2910              Micronesia (country) 1763           0
## 2911                       Middle East 1763           0
## 2912                           Moldova 1763           0
## 2913                          Mongolia 1763           0
## 2914                        Montenegro 1763           0
## 2915                        Montserrat 1763           0
## 2916                           Morocco 1763           0
## 2917                        Mozambique 1763           0
## 2918                           Myanmar 1763           0
## 2919                           Namibia 1763           0
## 2920                             Nauru 1763           0
## 2921                             Nepal 1763           0
## 2922                       Netherlands 1763           0
## 2923                     New Caledonia 1763           0
## 2924                       New Zealand 1763           0
## 2925                         Nicaragua 1763           0
## 2926                             Niger 1763           0
## 2927                           Nigeria 1763           0
## 2928                              Niue 1763           0
## 2929                       North Korea 1763           0
## 2930                            Norway 1763           0
## 2931                              Oman 1763           0
## 2932                          Pakistan 1763           0
## 2933                             Palau 1763           0
## 2934                         Palestine 1763           0
## 2935                            Panama 1763           0
## 2936                  Papua New Guinea 1763           0
## 2937                          Paraguay 1763           0
## 2938                              Peru 1763           0
## 2939                       Philippines 1763           0
## 2940                            Poland 1763           0
## 2941                          Portugal 1763           0
## 2942                             Qatar 1763           0
## 2943                           Reunion 1763           0
## 2944                           Romania 1763           0
## 2945                            Russia 1763           0
## 2946                            Rwanda 1763           0
## 2947                      Saint Helena 1763           0
## 2948             Saint Kitts and Nevis 1763           0
## 2949                       Saint Lucia 1763           0
## 2950         Saint Pierre and Miquelon 1763           0
## 2951  Saint Vincent and the Grenadines 1763           0
## 2952                             Samoa 1763           0
## 2953             Sao Tome and Principe 1763           0
## 2954                      Saudi Arabia 1763           0
## 2955                           Senegal 1763           0
## 2956                            Serbia 1763           0
## 2957                        Seychelles 1763           0
## 2958                      Sierra Leone 1763           0
## 2959                         Singapore 1763           0
## 2960         Sint Maarten (Dutch part) 1763           0
## 2961                          Slovakia 1763           0
## 2962                          Slovenia 1763           0
## 2963                   Solomon Islands 1763           0
## 2964                           Somalia 1763           0
## 2965                      South Africa 1763           0
## 2966                       South Korea 1763           0
## 2967                       South Sudan 1763           0
## 2968                             Spain 1763           0
## 2969                         Sri Lanka 1763           0
## 2970                             Sudan 1763           0
## 2971                          Suriname 1763           0
## 2972                         Swaziland 1763           0
## 2973                            Sweden 1763           0
## 2974                       Switzerland 1763           0
## 2975                             Syria 1763           0
## 2976                            Taiwan 1763           0
## 2977                        Tajikistan 1763           0
## 2978                          Tanzania 1763           0
## 2979                          Thailand 1763           0
## 2980                             Timor 1763           0
## 2981                              Togo 1763           0
## 2982                             Tonga 1763           0
## 2983               Trinidad and Tobago 1763           0
## 2984                           Tunisia 1763           0
## 2985                            Turkey 1763           0
## 2986                      Turkmenistan 1763           0
## 2987          Turks and Caicos Islands 1763           0
## 2988                            Tuvalu 1763           0
## 2989                            Uganda 1763           0
## 2990                           Ukraine 1763           0
## 2991              United Arab Emirates 1763           0
## 2992                    United Kingdom 1763   129775216
## 2993                     United States 1763           0
## 2994                           Uruguay 1763           0
## 2995                        Uzbekistan 1763           0
## 2996                           Vanuatu 1763           0
## 2997                         Venezuela 1763           0
## 2998                           Vietnam 1763           0
## 2999         Wallis and Futuna Islands 1763           0
## 3000                             World 1763   129775216
## 3001                             Yemen 1763           0
## 3002                            Zambia 1763           0
## 3003                          Zimbabwe 1763           0
## 3004                       Afghanistan 1764           0
## 3005                            Africa 1764           0
## 3006                           Albania 1764           0
## 3007                           Algeria 1764           0
## 3008                  Americas (other) 1764           0
## 3009                           Andorra 1764           0
## 3010                            Angola 1764           0
## 3011                          Anguilla 1764           0
## 3012               Antarctic Fisheries 1764           0
## 3013               Antigua and Barbuda 1764           0
## 3014                         Argentina 1764           0
## 3015                           Armenia 1764           0
## 3016                             Aruba 1764           0
## 3017          Asia and Pacific (other) 1764           0
## 3018                         Australia 1764           0
## 3019                           Austria 1764           0
## 3020                        Azerbaijan 1764           0
## 3021                           Bahamas 1764           0
## 3022                           Bahrain 1764           0
## 3023                        Bangladesh 1764           0
## 3024                          Barbados 1764           0
## 3025                           Belarus 1764           0
## 3026                           Belgium 1764           0
## 3027                            Belize 1764           0
## 3028                             Benin 1764           0
## 3029                           Bermuda 1764           0
## 3030                            Bhutan 1764           0
## 3031                           Bolivia 1764           0
## 3032   Bonaire Sint Eustatius and Saba 1764           0
## 3033            Bosnia and Herzegovina 1764           0
## 3034                          Botswana 1764           0
## 3035                            Brazil 1764           0
## 3036            British Virgin Islands 1764           0
## 3037                            Brunei 1764           0
## 3038                          Bulgaria 1764           0
## 3039                      Burkina Faso 1764           0
## 3040                           Burundi 1764           0
## 3041                          Cambodia 1764           0
## 3042                          Cameroon 1764           0
## 3043                            Canada 1764           0
## 3044                        Cape Verde 1764           0
## 3045                    Cayman Islands 1764           0
## 3046          Central African Republic 1764           0
## 3047                              Chad 1764           0
## 3048                             Chile 1764           0
## 3049                             China 1764           0
## 3050                  Christmas Island 1764           0
## 3051                          Colombia 1764           0
## 3052                           Comoros 1764           0
## 3053                             Congo 1764           0
## 3054                      Cook Islands 1764           0
## 3055                        Costa Rica 1764           0
## 3056                     Cote d'Ivoire 1764           0
## 3057                           Croatia 1764           0
## 3058                              Cuba 1764           0
## 3059                           Curacao 1764           0
## 3060                            Cyprus 1764           0
## 3061                    Czech Republic 1764           0
## 3062                    Czechoslovakia 1764           0
## 3063      Democratic Republic of Congo 1764           0
## 3064                           Denmark 1764           0
## 3065                          Djibouti 1764           0
## 3066                          Dominica 1764           0
## 3067                Dominican Republic 1764           0
## 3068                             EU-28 1764   140759888
## 3069                           Ecuador 1764           0
## 3070                             Egypt 1764           0
## 3071                       El Salvador 1764           0
## 3072                 Equatorial Guinea 1764           0
## 3073                           Eritrea 1764           0
## 3074                           Estonia 1764           0
## 3075                          Ethiopia 1764           0
## 3076                    Europe (other) 1764           0
## 3077                    Faeroe Islands 1764           0
## 3078                  Falkland Islands 1764           0
## 3079                              Fiji 1764           0
## 3080                           Finland 1764           0
## 3081                            France 1764           0
## 3082                     French Guiana 1764           0
## 3083                  French Polynesia 1764           0
## 3084                             Gabon 1764           0
## 3085                            Gambia 1764           0
## 3086                           Georgia 1764           0
## 3087                           Germany 1764           0
## 3088                             Ghana 1764           0
## 3089                         Gibraltar 1764           0
## 3090                            Greece 1764           0
## 3091                         Greenland 1764           0
## 3092                           Grenada 1764           0
## 3093                        Guadeloupe 1764           0
## 3094                         Guatemala 1764           0
## 3095                            Guinea 1764           0
## 3096                     Guinea-Bissau 1764           0
## 3097                            Guyana 1764           0
## 3098                             Haiti 1764           0
## 3099                          Honduras 1764           0
## 3100                         Hong Kong 1764           0
## 3101                           Hungary 1764           0
## 3102                           Iceland 1764           0
## 3103                             India 1764           0
## 3104                         Indonesia 1764           0
## 3105                              Iran 1764           0
## 3106                              Iraq 1764           0
## 3107                           Ireland 1764           0
## 3108                            Israel 1764           0
## 3109                             Italy 1764           0
## 3110                           Jamaica 1764           0
## 3111                             Japan 1764           0
## 3112                            Jordan 1764           0
## 3113                        Kazakhstan 1764           0
## 3114                             Kenya 1764           0
## 3115                          Kiribati 1764           0
## 3116                            Kuwait 1764           0
## 3117                        Kyrgysztan 1764           0
## 3118                        Kyrgyzstan 1764           0
## 3119                              Laos 1764           0
## 3120                            Latvia 1764           0
## 3121                           Lebanon 1764           0
## 3122                           Lesotho 1764           0
## 3123                           Liberia 1764           0
## 3124                             Libya 1764           0
## 3125                     Liechtenstein 1764           0
## 3126                         Lithuania 1764           0
## 3127                        Luxembourg 1764           0
## 3128                             Macao 1764           0
## 3129                         Macedonia 1764           0
## 3130                        Madagascar 1764           0
## 3131                            Malawi 1764           0
## 3132                          Malaysia 1764           0
## 3133                          Maldives 1764           0
## 3134                              Mali 1764           0
## 3135                             Malta 1764           0
## 3136                  Marshall Islands 1764           0
## 3137                        Martinique 1764           0
## 3138                        Mauritania 1764           0
## 3139                         Mauritius 1764           0
## 3140                            Mexico 1764           0
## 3141              Micronesia (country) 1764           0
## 3142                       Middle East 1764           0
## 3143                           Moldova 1764           0
## 3144                          Mongolia 1764           0
## 3145                        Montenegro 1764           0
## 3146                        Montserrat 1764           0
## 3147                           Morocco 1764           0
## 3148                        Mozambique 1764           0
## 3149                           Myanmar 1764           0
## 3150                           Namibia 1764           0
## 3151                             Nauru 1764           0
## 3152                             Nepal 1764           0
## 3153                       Netherlands 1764           0
## 3154                     New Caledonia 1764           0
## 3155                       New Zealand 1764           0
## 3156                         Nicaragua 1764           0
## 3157                             Niger 1764           0
## 3158                           Nigeria 1764           0
## 3159                              Niue 1764           0
## 3160                       North Korea 1764           0
## 3161                            Norway 1764           0
## 3162                              Oman 1764           0
## 3163                          Pakistan 1764           0
## 3164                             Palau 1764           0
## 3165                         Palestine 1764           0
## 3166                            Panama 1764           0
## 3167                  Papua New Guinea 1764           0
## 3168                          Paraguay 1764           0
## 3169                              Peru 1764           0
## 3170                       Philippines 1764           0
## 3171                            Poland 1764           0
## 3172                          Portugal 1764           0
## 3173                             Qatar 1764           0
## 3174                           Reunion 1764           0
## 3175                           Romania 1764           0
## 3176                            Russia 1764           0
## 3177                            Rwanda 1764           0
## 3178                      Saint Helena 1764           0
## 3179             Saint Kitts and Nevis 1764           0
## 3180                       Saint Lucia 1764           0
## 3181         Saint Pierre and Miquelon 1764           0
## 3182  Saint Vincent and the Grenadines 1764           0
## 3183                             Samoa 1764           0
## 3184             Sao Tome and Principe 1764           0
## 3185                      Saudi Arabia 1764           0
## 3186                           Senegal 1764           0
## 3187                            Serbia 1764           0
## 3188                        Seychelles 1764           0
## 3189                      Sierra Leone 1764           0
## 3190                         Singapore 1764           0
## 3191         Sint Maarten (Dutch part) 1764           0
## 3192                          Slovakia 1764           0
## 3193                          Slovenia 1764           0
## 3194                   Solomon Islands 1764           0
## 3195                           Somalia 1764           0
## 3196                      South Africa 1764           0
## 3197                       South Korea 1764           0
## 3198                       South Sudan 1764           0
## 3199                             Spain 1764           0
## 3200                         Sri Lanka 1764           0
## 3201                             Sudan 1764           0
## 3202                          Suriname 1764           0
## 3203                         Swaziland 1764           0
## 3204                            Sweden 1764           0
## 3205                       Switzerland 1764           0
## 3206                             Syria 1764           0
## 3207                            Taiwan 1764           0
## 3208                        Tajikistan 1764           0
## 3209                          Tanzania 1764           0
## 3210                          Thailand 1764           0
## 3211                             Timor 1764           0
## 3212                              Togo 1764           0
## 3213                             Tonga 1764           0
## 3214               Trinidad and Tobago 1764           0
## 3215                           Tunisia 1764           0
## 3216                            Turkey 1764           0
## 3217                      Turkmenistan 1764           0
## 3218          Turks and Caicos Islands 1764           0
## 3219                            Tuvalu 1764           0
## 3220                            Uganda 1764           0
## 3221                           Ukraine 1764           0
## 3222              United Arab Emirates 1764           0
## 3223                    United Kingdom 1764   140759888
## 3224                     United States 1764           0
## 3225                           Uruguay 1764           0
## 3226                        Uzbekistan 1764           0
## 3227                           Vanuatu 1764           0
## 3228                         Venezuela 1764           0
## 3229                           Vietnam 1764           0
## 3230         Wallis and Futuna Islands 1764           0
## 3231                             World 1764   140759888
## 3232                             Yemen 1764           0
## 3233                            Zambia 1764           0
## 3234                          Zimbabwe 1764           0
## 3235                       Afghanistan 1765           0
## 3236                            Africa 1765           0
## 3237                           Albania 1765           0
## 3238                           Algeria 1765           0
## 3239                  Americas (other) 1765           0
## 3240                           Andorra 1765           0
## 3241                            Angola 1765           0
## 3242                          Anguilla 1765           0
## 3243               Antarctic Fisheries 1765           0
## 3244               Antigua and Barbuda 1765           0
## 3245                         Argentina 1765           0
## 3246                           Armenia 1765           0
## 3247                             Aruba 1765           0
## 3248          Asia and Pacific (other) 1765           0
## 3249                         Australia 1765           0
## 3250                           Austria 1765           0
## 3251                        Azerbaijan 1765           0
## 3252                           Bahamas 1765           0
## 3253                           Bahrain 1765           0
## 3254                        Bangladesh 1765           0
## 3255                          Barbados 1765           0
## 3256                           Belarus 1765           0
## 3257                           Belgium 1765           0
## 3258                            Belize 1765           0
## 3259                             Benin 1765           0
## 3260                           Bermuda 1765           0
## 3261                            Bhutan 1765           0
## 3262                           Bolivia 1765           0
## 3263   Bonaire Sint Eustatius and Saba 1765           0
## 3264            Bosnia and Herzegovina 1765           0
## 3265                          Botswana 1765           0
## 3266                            Brazil 1765           0
## 3267            British Virgin Islands 1765           0
## 3268                            Brunei 1765           0
## 3269                          Bulgaria 1765           0
## 3270                      Burkina Faso 1765           0
## 3271                           Burundi 1765           0
## 3272                          Cambodia 1765           0
## 3273                          Cameroon 1765           0
## 3274                            Canada 1765           0
## 3275                        Cape Verde 1765           0
## 3276                    Cayman Islands 1765           0
## 3277          Central African Republic 1765           0
## 3278                              Chad 1765           0
## 3279                             Chile 1765           0
## 3280                             China 1765           0
## 3281                  Christmas Island 1765           0
## 3282                          Colombia 1765           0
## 3283                           Comoros 1765           0
## 3284                             Congo 1765           0
## 3285                      Cook Islands 1765           0
## 3286                        Costa Rica 1765           0
## 3287                     Cote d'Ivoire 1765           0
## 3288                           Croatia 1765           0
## 3289                              Cuba 1765           0
## 3290                           Curacao 1765           0
## 3291                            Cyprus 1765           0
## 3292                    Czech Republic 1765           0
## 3293                    Czechoslovakia 1765           0
## 3294      Democratic Republic of Congo 1765           0
## 3295                           Denmark 1765           0
## 3296                          Djibouti 1765           0
## 3297                          Dominica 1765           0
## 3298                Dominican Republic 1765           0
## 3299                             EU-28 1765   151748224
## 3300                           Ecuador 1765           0
## 3301                             Egypt 1765           0
## 3302                       El Salvador 1765           0
## 3303                 Equatorial Guinea 1765           0
## 3304                           Eritrea 1765           0
## 3305                           Estonia 1765           0
## 3306                          Ethiopia 1765           0
## 3307                    Europe (other) 1765           0
## 3308                    Faeroe Islands 1765           0
## 3309                  Falkland Islands 1765           0
## 3310                              Fiji 1765           0
## 3311                           Finland 1765           0
## 3312                            France 1765           0
## 3313                     French Guiana 1765           0
## 3314                  French Polynesia 1765           0
## 3315                             Gabon 1765           0
## 3316                            Gambia 1765           0
## 3317                           Georgia 1765           0
## 3318                           Germany 1765           0
## 3319                             Ghana 1765           0
## 3320                         Gibraltar 1765           0
## 3321                            Greece 1765           0
## 3322                         Greenland 1765           0
## 3323                           Grenada 1765           0
## 3324                        Guadeloupe 1765           0
## 3325                         Guatemala 1765           0
## 3326                            Guinea 1765           0
## 3327                     Guinea-Bissau 1765           0
## 3328                            Guyana 1765           0
## 3329                             Haiti 1765           0
## 3330                          Honduras 1765           0
## 3331                         Hong Kong 1765           0
## 3332                           Hungary 1765           0
## 3333                           Iceland 1765           0
## 3334                             India 1765           0
## 3335                         Indonesia 1765           0
## 3336                              Iran 1765           0
## 3337                              Iraq 1765           0
## 3338                           Ireland 1765           0
## 3339                            Israel 1765           0
## 3340                             Italy 1765           0
## 3341                           Jamaica 1765           0
## 3342                             Japan 1765           0
## 3343                            Jordan 1765           0
## 3344                        Kazakhstan 1765           0
## 3345                             Kenya 1765           0
## 3346                          Kiribati 1765           0
## 3347                            Kuwait 1765           0
## 3348                        Kyrgysztan 1765           0
## 3349                        Kyrgyzstan 1765           0
## 3350                              Laos 1765           0
## 3351                            Latvia 1765           0
## 3352                           Lebanon 1765           0
## 3353                           Lesotho 1765           0
## 3354                           Liberia 1765           0
## 3355                             Libya 1765           0
## 3356                     Liechtenstein 1765           0
## 3357                         Lithuania 1765           0
## 3358                        Luxembourg 1765           0
## 3359                             Macao 1765           0
## 3360                         Macedonia 1765           0
## 3361                        Madagascar 1765           0
## 3362                            Malawi 1765           0
## 3363                          Malaysia 1765           0
## 3364                          Maldives 1765           0
## 3365                              Mali 1765           0
## 3366                             Malta 1765           0
## 3367                  Marshall Islands 1765           0
## 3368                        Martinique 1765           0
## 3369                        Mauritania 1765           0
## 3370                         Mauritius 1765           0
## 3371                            Mexico 1765           0
## 3372              Micronesia (country) 1765           0
## 3373                       Middle East 1765           0
## 3374                           Moldova 1765           0
## 3375                          Mongolia 1765           0
## 3376                        Montenegro 1765           0
## 3377                        Montserrat 1765           0
## 3378                           Morocco 1765           0
## 3379                        Mozambique 1765           0
## 3380                           Myanmar 1765           0
## 3381                           Namibia 1765           0
## 3382                             Nauru 1765           0
## 3383                             Nepal 1765           0
## 3384                       Netherlands 1765           0
## 3385                     New Caledonia 1765           0
## 3386                       New Zealand 1765           0
## 3387                         Nicaragua 1765           0
## 3388                             Niger 1765           0
## 3389                           Nigeria 1765           0
## 3390                              Niue 1765           0
## 3391                       North Korea 1765           0
## 3392                            Norway 1765           0
## 3393                              Oman 1765           0
## 3394                          Pakistan 1765           0
## 3395                             Palau 1765           0
## 3396                         Palestine 1765           0
## 3397                            Panama 1765           0
## 3398                  Papua New Guinea 1765           0
## 3399                          Paraguay 1765           0
## 3400                              Peru 1765           0
## 3401                       Philippines 1765           0
## 3402                            Poland 1765           0
## 3403                          Portugal 1765           0
## 3404                             Qatar 1765           0
## 3405                           Reunion 1765           0
## 3406                           Romania 1765           0
## 3407                            Russia 1765           0
## 3408                            Rwanda 1765           0
## 3409                      Saint Helena 1765           0
## 3410             Saint Kitts and Nevis 1765           0
## 3411                       Saint Lucia 1765           0
## 3412         Saint Pierre and Miquelon 1765           0
## 3413  Saint Vincent and the Grenadines 1765           0
## 3414                             Samoa 1765           0
## 3415             Sao Tome and Principe 1765           0
## 3416                      Saudi Arabia 1765           0
## 3417                           Senegal 1765           0
## 3418                            Serbia 1765           0
## 3419                        Seychelles 1765           0
## 3420                      Sierra Leone 1765           0
## 3421                         Singapore 1765           0
## 3422         Sint Maarten (Dutch part) 1765           0
## 3423                          Slovakia 1765           0
## 3424                          Slovenia 1765           0
## 3425                   Solomon Islands 1765           0
## 3426                           Somalia 1765           0
## 3427                      South Africa 1765           0
## 3428                       South Korea 1765           0
## 3429                       South Sudan 1765           0
## 3430                             Spain 1765           0
## 3431                         Sri Lanka 1765           0
## 3432                             Sudan 1765           0
## 3433                          Suriname 1765           0
## 3434                         Swaziland 1765           0
## 3435                            Sweden 1765           0
## 3436                       Switzerland 1765           0
## 3437                             Syria 1765           0
## 3438                            Taiwan 1765           0
## 3439                        Tajikistan 1765           0
## 3440                          Tanzania 1765           0
## 3441                          Thailand 1765           0
## 3442                             Timor 1765           0
## 3443                              Togo 1765           0
## 3444                             Tonga 1765           0
## 3445               Trinidad and Tobago 1765           0
## 3446                           Tunisia 1765           0
## 3447                            Turkey 1765           0
## 3448                      Turkmenistan 1765           0
## 3449          Turks and Caicos Islands 1765           0
## 3450                            Tuvalu 1765           0
## 3451                            Uganda 1765           0
## 3452                           Ukraine 1765           0
## 3453              United Arab Emirates 1765           0
## 3454                    United Kingdom 1765   151748224
## 3455                     United States 1765           0
## 3456                           Uruguay 1765           0
## 3457                        Uzbekistan 1765           0
## 3458                           Vanuatu 1765           0
## 3459                         Venezuela 1765           0
## 3460                           Vietnam 1765           0
## 3461         Wallis and Futuna Islands 1765           0
## 3462                             World 1765   151748224
## 3463                             Yemen 1765           0
## 3464                            Zambia 1765           0
## 3465                          Zimbabwe 1765           0
## 3466                       Afghanistan 1766           0
## 3467                            Africa 1766           0
## 3468                           Albania 1766           0
## 3469                           Algeria 1766           0
## 3470                  Americas (other) 1766           0
## 3471                           Andorra 1766           0
## 3472                            Angola 1766           0
## 3473                          Anguilla 1766           0
## 3474               Antarctic Fisheries 1766           0
## 3475               Antigua and Barbuda 1766           0
## 3476                         Argentina 1766           0
## 3477                           Armenia 1766           0
## 3478                             Aruba 1766           0
## 3479          Asia and Pacific (other) 1766           0
## 3480                         Australia 1766           0
## 3481                           Austria 1766           0
## 3482                        Azerbaijan 1766           0
## 3483                           Bahamas 1766           0
## 3484                           Bahrain 1766           0
## 3485                        Bangladesh 1766           0
## 3486                          Barbados 1766           0
## 3487                           Belarus 1766           0
## 3488                           Belgium 1766           0
## 3489                            Belize 1766           0
## 3490                             Benin 1766           0
## 3491                           Bermuda 1766           0
## 3492                            Bhutan 1766           0
## 3493                           Bolivia 1766           0
## 3494   Bonaire Sint Eustatius and Saba 1766           0
## 3495            Bosnia and Herzegovina 1766           0
## 3496                          Botswana 1766           0
## 3497                            Brazil 1766           0
## 3498            British Virgin Islands 1766           0
## 3499                            Brunei 1766           0
## 3500                          Bulgaria 1766           0
## 3501                      Burkina Faso 1766           0
## 3502                           Burundi 1766           0
## 3503                          Cambodia 1766           0
## 3504                          Cameroon 1766           0
## 3505                            Canada 1766           0
## 3506                        Cape Verde 1766           0
## 3507                    Cayman Islands 1766           0
## 3508          Central African Republic 1766           0
## 3509                              Chad 1766           0
## 3510                             Chile 1766           0
## 3511                             China 1766           0
## 3512                  Christmas Island 1766           0
## 3513                          Colombia 1766           0
## 3514                           Comoros 1766           0
## 3515                             Congo 1766           0
## 3516                      Cook Islands 1766           0
## 3517                        Costa Rica 1766           0
## 3518                     Cote d'Ivoire 1766           0
## 3519                           Croatia 1766           0
## 3520                              Cuba 1766           0
## 3521                           Curacao 1766           0
## 3522                            Cyprus 1766           0
## 3523                    Czech Republic 1766           0
## 3524                    Czechoslovakia 1766           0
## 3525      Democratic Republic of Congo 1766           0
## 3526                           Denmark 1766           0
## 3527                          Djibouti 1766           0
## 3528                          Dominica 1766           0
## 3529                Dominican Republic 1766           0
## 3530                             EU-28 1766   164007968
## 3531                           Ecuador 1766           0
## 3532                             Egypt 1766           0
## 3533                       El Salvador 1766           0
## 3534                 Equatorial Guinea 1766           0
## 3535                           Eritrea 1766           0
## 3536                           Estonia 1766           0
## 3537                          Ethiopia 1766           0
## 3538                    Europe (other) 1766           0
## 3539                    Faeroe Islands 1766           0
## 3540                  Falkland Islands 1766           0
## 3541                              Fiji 1766           0
## 3542                           Finland 1766           0
## 3543                            France 1766           0
## 3544                     French Guiana 1766           0
## 3545                  French Polynesia 1766           0
## 3546                             Gabon 1766           0
## 3547                            Gambia 1766           0
## 3548                           Georgia 1766           0
## 3549                           Germany 1766           0
## 3550                             Ghana 1766           0
## 3551                         Gibraltar 1766           0
## 3552                            Greece 1766           0
## 3553                         Greenland 1766           0
## 3554                           Grenada 1766           0
## 3555                        Guadeloupe 1766           0
## 3556                         Guatemala 1766           0
## 3557                            Guinea 1766           0
## 3558                     Guinea-Bissau 1766           0
## 3559                            Guyana 1766           0
## 3560                             Haiti 1766           0
## 3561                          Honduras 1766           0
## 3562                         Hong Kong 1766           0
## 3563                           Hungary 1766           0
## 3564                           Iceland 1766           0
## 3565                             India 1766           0
## 3566                         Indonesia 1766           0
## 3567                              Iran 1766           0
## 3568                              Iraq 1766           0
## 3569                           Ireland 1766           0
## 3570                            Israel 1766           0
## 3571                             Italy 1766           0
## 3572                           Jamaica 1766           0
## 3573                             Japan 1766           0
## 3574                            Jordan 1766           0
## 3575                        Kazakhstan 1766           0
## 3576                             Kenya 1766           0
## 3577                          Kiribati 1766           0
## 3578                            Kuwait 1766           0
## 3579                        Kyrgysztan 1766           0
## 3580                        Kyrgyzstan 1766           0
## 3581                              Laos 1766           0
## 3582                            Latvia 1766           0
## 3583                           Lebanon 1766           0
## 3584                           Lesotho 1766           0
## 3585                           Liberia 1766           0
## 3586                             Libya 1766           0
## 3587                     Liechtenstein 1766           0
## 3588                         Lithuania 1766           0
## 3589                        Luxembourg 1766           0
## 3590                             Macao 1766           0
## 3591                         Macedonia 1766           0
## 3592                        Madagascar 1766           0
## 3593                            Malawi 1766           0
## 3594                          Malaysia 1766           0
## 3595                          Maldives 1766           0
## 3596                              Mali 1766           0
## 3597                             Malta 1766           0
## 3598                  Marshall Islands 1766           0
## 3599                        Martinique 1766           0
## 3600                        Mauritania 1766           0
## 3601                         Mauritius 1766           0
## 3602                            Mexico 1766           0
## 3603              Micronesia (country) 1766           0
## 3604                       Middle East 1766           0
## 3605                           Moldova 1766           0
## 3606                          Mongolia 1766           0
## 3607                        Montenegro 1766           0
## 3608                        Montserrat 1766           0
## 3609                           Morocco 1766           0
## 3610                        Mozambique 1766           0
## 3611                           Myanmar 1766           0
## 3612                           Namibia 1766           0
## 3613                             Nauru 1766           0
## 3614                             Nepal 1766           0
## 3615                       Netherlands 1766           0
## 3616                     New Caledonia 1766           0
## 3617                       New Zealand 1766           0
## 3618                         Nicaragua 1766           0
## 3619                             Niger 1766           0
## 3620                           Nigeria 1766           0
## 3621                              Niue 1766           0
## 3622                       North Korea 1766           0
## 3623                            Norway 1766           0
## 3624                              Oman 1766           0
## 3625                          Pakistan 1766           0
## 3626                             Palau 1766           0
## 3627                         Palestine 1766           0
## 3628                            Panama 1766           0
## 3629                  Papua New Guinea 1766           0
## 3630                          Paraguay 1766           0
## 3631                              Peru 1766           0
## 3632                       Philippines 1766           0
## 3633                            Poland 1766           0
## 3634                          Portugal 1766           0
## 3635                             Qatar 1766           0
## 3636                           Reunion 1766           0
## 3637                           Romania 1766           0
## 3638                            Russia 1766           0
## 3639                            Rwanda 1766           0
## 3640                      Saint Helena 1766           0
## 3641             Saint Kitts and Nevis 1766           0
## 3642                       Saint Lucia 1766           0
## 3643         Saint Pierre and Miquelon 1766           0
## 3644  Saint Vincent and the Grenadines 1766           0
## 3645                             Samoa 1766           0
## 3646             Sao Tome and Principe 1766           0
## 3647                      Saudi Arabia 1766           0
## 3648                           Senegal 1766           0
## 3649                            Serbia 1766           0
## 3650                        Seychelles 1766           0
## 3651                      Sierra Leone 1766           0
## 3652                         Singapore 1766           0
## 3653         Sint Maarten (Dutch part) 1766           0
## 3654                          Slovakia 1766           0
## 3655                          Slovenia 1766           0
## 3656                   Solomon Islands 1766           0
## 3657                           Somalia 1766           0
## 3658                      South Africa 1766           0
## 3659                       South Korea 1766           0
## 3660                       South Sudan 1766           0
## 3661                             Spain 1766           0
## 3662                         Sri Lanka 1766           0
## 3663                             Sudan 1766           0
## 3664                          Suriname 1766           0
## 3665                         Swaziland 1766           0
## 3666                            Sweden 1766           0
## 3667                       Switzerland 1766           0
## 3668                             Syria 1766           0
## 3669                            Taiwan 1766           0
## 3670                        Tajikistan 1766           0
## 3671                          Tanzania 1766           0
## 3672                          Thailand 1766           0
## 3673                             Timor 1766           0
## 3674                              Togo 1766           0
## 3675                             Tonga 1766           0
## 3676               Trinidad and Tobago 1766           0
## 3677                           Tunisia 1766           0
## 3678                            Turkey 1766           0
## 3679                      Turkmenistan 1766           0
## 3680          Turks and Caicos Islands 1766           0
## 3681                            Tuvalu 1766           0
## 3682                            Uganda 1766           0
## 3683                           Ukraine 1766           0
## 3684              United Arab Emirates 1766           0
## 3685                    United Kingdom 1766   164007968
## 3686                     United States 1766           0
## 3687                           Uruguay 1766           0
## 3688                        Uzbekistan 1766           0
## 3689                           Vanuatu 1766           0
## 3690                         Venezuela 1766           0
## 3691                           Vietnam 1766           0
## 3692         Wallis and Futuna Islands 1766           0
## 3693                             World 1766   164007968
## 3694                             Yemen 1766           0
## 3695                            Zambia 1766           0
## 3696                          Zimbabwe 1766           0
## 3697                       Afghanistan 1767           0
## 3698                            Africa 1767           0
## 3699                           Albania 1767           0
## 3700                           Algeria 1767           0
## 3701                  Americas (other) 1767           0
## 3702                           Andorra 1767           0
## 3703                            Angola 1767           0
## 3704                          Anguilla 1767           0
## 3705               Antarctic Fisheries 1767           0
## 3706               Antigua and Barbuda 1767           0
## 3707                         Argentina 1767           0
## 3708                           Armenia 1767           0
## 3709                             Aruba 1767           0
## 3710          Asia and Pacific (other) 1767           0
## 3711                         Australia 1767           0
## 3712                           Austria 1767           0
## 3713                        Azerbaijan 1767           0
## 3714                           Bahamas 1767           0
## 3715                           Bahrain 1767           0
## 3716                        Bangladesh 1767           0
## 3717                          Barbados 1767           0
## 3718                           Belarus 1767           0
## 3719                           Belgium 1767           0
## 3720                            Belize 1767           0
## 3721                             Benin 1767           0
## 3722                           Bermuda 1767           0
## 3723                            Bhutan 1767           0
## 3724                           Bolivia 1767           0
## 3725   Bonaire Sint Eustatius and Saba 1767           0
## 3726            Bosnia and Herzegovina 1767           0
## 3727                          Botswana 1767           0
## 3728                            Brazil 1767           0
## 3729            British Virgin Islands 1767           0
## 3730                            Brunei 1767           0
## 3731                          Bulgaria 1767           0
## 3732                      Burkina Faso 1767           0
## 3733                           Burundi 1767           0
## 3734                          Cambodia 1767           0
## 3735                          Cameroon 1767           0
## 3736                            Canada 1767           0
## 3737                        Cape Verde 1767           0
## 3738                    Cayman Islands 1767           0
## 3739          Central African Republic 1767           0
## 3740                              Chad 1767           0
## 3741                             Chile 1767           0
## 3742                             China 1767           0
## 3743                  Christmas Island 1767           0
## 3744                          Colombia 1767           0
## 3745                           Comoros 1767           0
## 3746                             Congo 1767           0
## 3747                      Cook Islands 1767           0
## 3748                        Costa Rica 1767           0
## 3749                     Cote d'Ivoire 1767           0
## 3750                           Croatia 1767           0
## 3751                              Cuba 1767           0
## 3752                           Curacao 1767           0
## 3753                            Cyprus 1767           0
## 3754                    Czech Republic 1767           0
## 3755                    Czechoslovakia 1767           0
## 3756      Democratic Republic of Congo 1767           0
## 3757                           Denmark 1767           0
## 3758                          Djibouti 1767           0
## 3759                          Dominica 1767           0
## 3760                Dominican Republic 1767           0
## 3761                             EU-28 1767   176271376
## 3762                           Ecuador 1767           0
## 3763                             Egypt 1767           0
## 3764                       El Salvador 1767           0
## 3765                 Equatorial Guinea 1767           0
## 3766                           Eritrea 1767           0
## 3767                           Estonia 1767           0
## 3768                          Ethiopia 1767           0
## 3769                    Europe (other) 1767           0
## 3770                    Faeroe Islands 1767           0
## 3771                  Falkland Islands 1767           0
## 3772                              Fiji 1767           0
## 3773                           Finland 1767           0
## 3774                            France 1767           0
## 3775                     French Guiana 1767           0
## 3776                  French Polynesia 1767           0
## 3777                             Gabon 1767           0
## 3778                            Gambia 1767           0
## 3779                           Georgia 1767           0
## 3780                           Germany 1767           0
## 3781                             Ghana 1767           0
## 3782                         Gibraltar 1767           0
## 3783                            Greece 1767           0
## 3784                         Greenland 1767           0
## 3785                           Grenada 1767           0
## 3786                        Guadeloupe 1767           0
## 3787                         Guatemala 1767           0
## 3788                            Guinea 1767           0
## 3789                     Guinea-Bissau 1767           0
## 3790                            Guyana 1767           0
## 3791                             Haiti 1767           0
## 3792                          Honduras 1767           0
## 3793                         Hong Kong 1767           0
## 3794                           Hungary 1767           0
## 3795                           Iceland 1767           0
## 3796                             India 1767           0
## 3797                         Indonesia 1767           0
## 3798                              Iran 1767           0
## 3799                              Iraq 1767           0
## 3800                           Ireland 1767           0
## 3801                            Israel 1767           0
## 3802                             Italy 1767           0
## 3803                           Jamaica 1767           0
## 3804                             Japan 1767           0
## 3805                            Jordan 1767           0
## 3806                        Kazakhstan 1767           0
## 3807                             Kenya 1767           0
## 3808                          Kiribati 1767           0
## 3809                            Kuwait 1767           0
## 3810                        Kyrgysztan 1767           0
## 3811                        Kyrgyzstan 1767           0
## 3812                              Laos 1767           0
## 3813                            Latvia 1767           0
## 3814                           Lebanon 1767           0
## 3815                           Lesotho 1767           0
## 3816                           Liberia 1767           0
## 3817                             Libya 1767           0
## 3818                     Liechtenstein 1767           0
## 3819                         Lithuania 1767           0
## 3820                        Luxembourg 1767           0
## 3821                             Macao 1767           0
## 3822                         Macedonia 1767           0
## 3823                        Madagascar 1767           0
## 3824                            Malawi 1767           0
## 3825                          Malaysia 1767           0
## 3826                          Maldives 1767           0
## 3827                              Mali 1767           0
## 3828                             Malta 1767           0
## 3829                  Marshall Islands 1767           0
## 3830                        Martinique 1767           0
## 3831                        Mauritania 1767           0
## 3832                         Mauritius 1767           0
## 3833                            Mexico 1767           0
## 3834              Micronesia (country) 1767           0
## 3835                       Middle East 1767           0
## 3836                           Moldova 1767           0
## 3837                          Mongolia 1767           0
## 3838                        Montenegro 1767           0
## 3839                        Montserrat 1767           0
## 3840                           Morocco 1767           0
## 3841                        Mozambique 1767           0
## 3842                           Myanmar 1767           0
## 3843                           Namibia 1767           0
## 3844                             Nauru 1767           0
## 3845                             Nepal 1767           0
## 3846                       Netherlands 1767           0
## 3847                     New Caledonia 1767           0
## 3848                       New Zealand 1767           0
## 3849                         Nicaragua 1767           0
## 3850                             Niger 1767           0
## 3851                           Nigeria 1767           0
## 3852                              Niue 1767           0
## 3853                       North Korea 1767           0
## 3854                            Norway 1767           0
## 3855                              Oman 1767           0
## 3856                          Pakistan 1767           0
## 3857                             Palau 1767           0
## 3858                         Palestine 1767           0
## 3859                            Panama 1767           0
## 3860                  Papua New Guinea 1767           0
## 3861                          Paraguay 1767           0
## 3862                              Peru 1767           0
## 3863                       Philippines 1767           0
## 3864                            Poland 1767           0
## 3865                          Portugal 1767           0
## 3866                             Qatar 1767           0
## 3867                           Reunion 1767           0
## 3868                           Romania 1767           0
## 3869                            Russia 1767           0
## 3870                            Rwanda 1767           0
## 3871                      Saint Helena 1767           0
## 3872             Saint Kitts and Nevis 1767           0
## 3873                       Saint Lucia 1767           0
## 3874         Saint Pierre and Miquelon 1767           0
## 3875  Saint Vincent and the Grenadines 1767           0
## 3876                             Samoa 1767           0
## 3877             Sao Tome and Principe 1767           0
## 3878                      Saudi Arabia 1767           0
## 3879                           Senegal 1767           0
## 3880                            Serbia 1767           0
## 3881                        Seychelles 1767           0
## 3882                      Sierra Leone 1767           0
## 3883                         Singapore 1767           0
## 3884         Sint Maarten (Dutch part) 1767           0
## 3885                          Slovakia 1767           0
## 3886                          Slovenia 1767           0
## 3887                   Solomon Islands 1767           0
## 3888                           Somalia 1767           0
## 3889                      South Africa 1767           0
## 3890                       South Korea 1767           0
## 3891                       South Sudan 1767           0
## 3892                             Spain 1767           0
## 3893                         Sri Lanka 1767           0
## 3894                             Sudan 1767           0
## 3895                          Suriname 1767           0
## 3896                         Swaziland 1767           0
## 3897                            Sweden 1767           0
## 3898                       Switzerland 1767           0
## 3899                             Syria 1767           0
## 3900                            Taiwan 1767           0
## 3901                        Tajikistan 1767           0
## 3902                          Tanzania 1767           0
## 3903                          Thailand 1767           0
## 3904                             Timor 1767           0
## 3905                              Togo 1767           0
## 3906                             Tonga 1767           0
## 3907               Trinidad and Tobago 1767           0
## 3908                           Tunisia 1767           0
## 3909                            Turkey 1767           0
## 3910                      Turkmenistan 1767           0
## 3911          Turks and Caicos Islands 1767           0
## 3912                            Tuvalu 1767           0
## 3913                            Uganda 1767           0
## 3914                           Ukraine 1767           0
## 3915              United Arab Emirates 1767           0
## 3916                    United Kingdom 1767   176271376
## 3917                     United States 1767           0
## 3918                           Uruguay 1767           0
## 3919                        Uzbekistan 1767           0
## 3920                           Vanuatu 1767           0
## 3921                         Venezuela 1767           0
## 3922                           Vietnam 1767           0
## 3923         Wallis and Futuna Islands 1767           0
## 3924                             World 1767   176271376
## 3925                             Yemen 1767           0
## 3926                            Zambia 1767           0
## 3927                          Zimbabwe 1767           0
## 3928                       Afghanistan 1768           0
## 3929                            Africa 1768           0
## 3930                           Albania 1768           0
## 3931                           Algeria 1768           0
## 3932                  Americas (other) 1768           0
## 3933                           Andorra 1768           0
## 3934                            Angola 1768           0
## 3935                          Anguilla 1768           0
## 3936               Antarctic Fisheries 1768           0
## 3937               Antigua and Barbuda 1768           0
## 3938                         Argentina 1768           0
## 3939                           Armenia 1768           0
## 3940                             Aruba 1768           0
## 3941          Asia and Pacific (other) 1768           0
## 3942                         Australia 1768           0
## 3943                           Austria 1768           0
## 3944                        Azerbaijan 1768           0
## 3945                           Bahamas 1768           0
## 3946                           Bahrain 1768           0
## 3947                        Bangladesh 1768           0
## 3948                          Barbados 1768           0
## 3949                           Belarus 1768           0
## 3950                           Belgium 1768           0
## 3951                            Belize 1768           0
## 3952                             Benin 1768           0
## 3953                           Bermuda 1768           0
## 3954                            Bhutan 1768           0
## 3955                           Bolivia 1768           0
## 3956   Bonaire Sint Eustatius and Saba 1768           0
## 3957            Bosnia and Herzegovina 1768           0
## 3958                          Botswana 1768           0
## 3959                            Brazil 1768           0
## 3960            British Virgin Islands 1768           0
## 3961                            Brunei 1768           0
## 3962                          Bulgaria 1768           0
## 3963                      Burkina Faso 1768           0
## 3964                           Burundi 1768           0
## 3965                          Cambodia 1768           0
## 3966                          Cameroon 1768           0
## 3967                            Canada 1768           0
## 3968                        Cape Verde 1768           0
## 3969                    Cayman Islands 1768           0
## 3970          Central African Republic 1768           0
## 3971                              Chad 1768           0
## 3972                             Chile 1768           0
## 3973                             China 1768           0
## 3974                  Christmas Island 1768           0
## 3975                          Colombia 1768           0
## 3976                           Comoros 1768           0
## 3977                             Congo 1768           0
## 3978                      Cook Islands 1768           0
## 3979                        Costa Rica 1768           0
## 3980                     Cote d'Ivoire 1768           0
## 3981                           Croatia 1768           0
## 3982                              Cuba 1768           0
## 3983                           Curacao 1768           0
## 3984                            Cyprus 1768           0
## 3985                    Czech Republic 1768           0
## 3986                    Czechoslovakia 1768           0
## 3987      Democratic Republic of Congo 1768           0
## 3988                           Denmark 1768           0
## 3989                          Djibouti 1768           0
## 3990                          Dominica 1768           0
## 3991                Dominican Republic 1768           0
## 3992                             EU-28 1768   188538448
## 3993                           Ecuador 1768           0
## 3994                             Egypt 1768           0
## 3995                       El Salvador 1768           0
## 3996                 Equatorial Guinea 1768           0
## 3997                           Eritrea 1768           0
## 3998                           Estonia 1768           0
## 3999                          Ethiopia 1768           0
## 4000                    Europe (other) 1768           0
## 4001                    Faeroe Islands 1768           0
## 4002                  Falkland Islands 1768           0
## 4003                              Fiji 1768           0
## 4004                           Finland 1768           0
## 4005                            France 1768           0
## 4006                     French Guiana 1768           0
## 4007                  French Polynesia 1768           0
## 4008                             Gabon 1768           0
## 4009                            Gambia 1768           0
## 4010                           Georgia 1768           0
## 4011                           Germany 1768           0
## 4012                             Ghana 1768           0
## 4013                         Gibraltar 1768           0
## 4014                            Greece 1768           0
## 4015                         Greenland 1768           0
## 4016                           Grenada 1768           0
## 4017                        Guadeloupe 1768           0
## 4018                         Guatemala 1768           0
## 4019                            Guinea 1768           0
## 4020                     Guinea-Bissau 1768           0
## 4021                            Guyana 1768           0
## 4022                             Haiti 1768           0
## 4023                          Honduras 1768           0
## 4024                         Hong Kong 1768           0
## 4025                           Hungary 1768           0
## 4026                           Iceland 1768           0
## 4027                             India 1768           0
## 4028                         Indonesia 1768           0
## 4029                              Iran 1768           0
## 4030                              Iraq 1768           0
## 4031                           Ireland 1768           0
## 4032                            Israel 1768           0
## 4033                             Italy 1768           0
## 4034                           Jamaica 1768           0
## 4035                             Japan 1768           0
## 4036                            Jordan 1768           0
## 4037                        Kazakhstan 1768           0
## 4038                             Kenya 1768           0
## 4039                          Kiribati 1768           0
## 4040                            Kuwait 1768           0
## 4041                        Kyrgysztan 1768           0
## 4042                        Kyrgyzstan 1768           0
## 4043                              Laos 1768           0
## 4044                            Latvia 1768           0
## 4045                           Lebanon 1768           0
## 4046                           Lesotho 1768           0
## 4047                           Liberia 1768           0
## 4048                             Libya 1768           0
## 4049                     Liechtenstein 1768           0
## 4050                         Lithuania 1768           0
## 4051                        Luxembourg 1768           0
## 4052                             Macao 1768           0
## 4053                         Macedonia 1768           0
## 4054                        Madagascar 1768           0
## 4055                            Malawi 1768           0
## 4056                          Malaysia 1768           0
## 4057                          Maldives 1768           0
## 4058                              Mali 1768           0
## 4059                             Malta 1768           0
## 4060                  Marshall Islands 1768           0
## 4061                        Martinique 1768           0
## 4062                        Mauritania 1768           0
## 4063                         Mauritius 1768           0
## 4064                            Mexico 1768           0
## 4065              Micronesia (country) 1768           0
## 4066                       Middle East 1768           0
## 4067                           Moldova 1768           0
## 4068                          Mongolia 1768           0
## 4069                        Montenegro 1768           0
## 4070                        Montserrat 1768           0
## 4071                           Morocco 1768           0
## 4072                        Mozambique 1768           0
## 4073                           Myanmar 1768           0
## 4074                           Namibia 1768           0
## 4075                             Nauru 1768           0
## 4076                             Nepal 1768           0
## 4077                       Netherlands 1768           0
## 4078                     New Caledonia 1768           0
## 4079                       New Zealand 1768           0
## 4080                         Nicaragua 1768           0
## 4081                             Niger 1768           0
## 4082                           Nigeria 1768           0
## 4083                              Niue 1768           0
## 4084                       North Korea 1768           0
## 4085                            Norway 1768           0
## 4086                              Oman 1768           0
## 4087                          Pakistan 1768           0
## 4088                             Palau 1768           0
## 4089                         Palestine 1768           0
## 4090                            Panama 1768           0
## 4091                  Papua New Guinea 1768           0
## 4092                          Paraguay 1768           0
## 4093                              Peru 1768           0
## 4094                       Philippines 1768           0
## 4095                            Poland 1768           0
## 4096                          Portugal 1768           0
## 4097                             Qatar 1768           0
## 4098                           Reunion 1768           0
## 4099                           Romania 1768           0
## 4100                            Russia 1768           0
## 4101                            Rwanda 1768           0
## 4102                      Saint Helena 1768           0
## 4103             Saint Kitts and Nevis 1768           0
## 4104                       Saint Lucia 1768           0
## 4105         Saint Pierre and Miquelon 1768           0
## 4106  Saint Vincent and the Grenadines 1768           0
## 4107                             Samoa 1768           0
## 4108             Sao Tome and Principe 1768           0
## 4109                      Saudi Arabia 1768           0
## 4110                           Senegal 1768           0
## 4111                            Serbia 1768           0
## 4112                        Seychelles 1768           0
## 4113                      Sierra Leone 1768           0
## 4114                         Singapore 1768           0
## 4115         Sint Maarten (Dutch part) 1768           0
## 4116                          Slovakia 1768           0
## 4117                          Slovenia 1768           0
## 4118                   Solomon Islands 1768           0
## 4119                           Somalia 1768           0
## 4120                      South Africa 1768           0
## 4121                       South Korea 1768           0
## 4122                       South Sudan 1768           0
## 4123                             Spain 1768           0
## 4124                         Sri Lanka 1768           0
## 4125                             Sudan 1768           0
## 4126                          Suriname 1768           0
## 4127                         Swaziland 1768           0
## 4128                            Sweden 1768           0
## 4129                       Switzerland 1768           0
## 4130                             Syria 1768           0
## 4131                            Taiwan 1768           0
## 4132                        Tajikistan 1768           0
## 4133                          Tanzania 1768           0
## 4134                          Thailand 1768           0
## 4135                             Timor 1768           0
## 4136                              Togo 1768           0
## 4137                             Tonga 1768           0
## 4138               Trinidad and Tobago 1768           0
## 4139                           Tunisia 1768           0
## 4140                            Turkey 1768           0
## 4141                      Turkmenistan 1768           0
## 4142          Turks and Caicos Islands 1768           0
## 4143                            Tuvalu 1768           0
## 4144                            Uganda 1768           0
## 4145                           Ukraine 1768           0
## 4146              United Arab Emirates 1768           0
## 4147                    United Kingdom 1768   188538448
## 4148                     United States 1768           0
## 4149                           Uruguay 1768           0
## 4150                        Uzbekistan 1768           0
## 4151                           Vanuatu 1768           0
## 4152                         Venezuela 1768           0
## 4153                           Vietnam 1768           0
## 4154         Wallis and Futuna Islands 1768           0
## 4155                             World 1768   188538448
## 4156                             Yemen 1768           0
## 4157                            Zambia 1768           0
## 4158                          Zimbabwe 1768           0
## 4159                       Afghanistan 1769           0
## 4160                            Africa 1769           0
## 4161                           Albania 1769           0
## 4162                           Algeria 1769           0
## 4163                  Americas (other) 1769           0
## 4164                           Andorra 1769           0
## 4165                            Angola 1769           0
## 4166                          Anguilla 1769           0
## 4167               Antarctic Fisheries 1769           0
## 4168               Antigua and Barbuda 1769           0
## 4169                         Argentina 1769           0
## 4170                           Armenia 1769           0
## 4171                             Aruba 1769           0
## 4172          Asia and Pacific (other) 1769           0
## 4173                         Australia 1769           0
## 4174                           Austria 1769           0
## 4175                        Azerbaijan 1769           0
## 4176                           Bahamas 1769           0
## 4177                           Bahrain 1769           0
## 4178                        Bangladesh 1769           0
## 4179                          Barbados 1769           0
## 4180                           Belarus 1769           0
## 4181                           Belgium 1769           0
## 4182                            Belize 1769           0
## 4183                             Benin 1769           0
## 4184                           Bermuda 1769           0
## 4185                            Bhutan 1769           0
## 4186                           Bolivia 1769           0
## 4187   Bonaire Sint Eustatius and Saba 1769           0
## 4188            Bosnia and Herzegovina 1769           0
## 4189                          Botswana 1769           0
## 4190                            Brazil 1769           0
## 4191            British Virgin Islands 1769           0
## 4192                            Brunei 1769           0
## 4193                          Bulgaria 1769           0
## 4194                      Burkina Faso 1769           0
## 4195                           Burundi 1769           0
## 4196                          Cambodia 1769           0
## 4197                          Cameroon 1769           0
## 4198                            Canada 1769           0
## 4199                        Cape Verde 1769           0
## 4200                    Cayman Islands 1769           0
## 4201          Central African Republic 1769           0
## 4202                              Chad 1769           0
## 4203                             Chile 1769           0
## 4204                             China 1769           0
## 4205                  Christmas Island 1769           0
## 4206                          Colombia 1769           0
## 4207                           Comoros 1769           0
## 4208                             Congo 1769           0
## 4209                      Cook Islands 1769           0
## 4210                        Costa Rica 1769           0
## 4211                     Cote d'Ivoire 1769           0
## 4212                           Croatia 1769           0
## 4213                              Cuba 1769           0
## 4214                           Curacao 1769           0
## 4215                            Cyprus 1769           0
## 4216                    Czech Republic 1769           0
## 4217                    Czechoslovakia 1769           0
## 4218      Democratic Republic of Congo 1769           0
## 4219                           Denmark 1769           0
## 4220                          Djibouti 1769           0
## 4221                          Dominica 1769           0
## 4222                Dominican Republic 1769           0
## 4223                             EU-28 1769   200809184
## 4224                           Ecuador 1769           0
## 4225                             Egypt 1769           0
## 4226                       El Salvador 1769           0
## 4227                 Equatorial Guinea 1769           0
## 4228                           Eritrea 1769           0
## 4229                           Estonia 1769           0
## 4230                          Ethiopia 1769           0
## 4231                    Europe (other) 1769           0
## 4232                    Faeroe Islands 1769           0
## 4233                  Falkland Islands 1769           0
## 4234                              Fiji 1769           0
## 4235                           Finland 1769           0
## 4236                            France 1769           0
## 4237                     French Guiana 1769           0
## 4238                  French Polynesia 1769           0
## 4239                             Gabon 1769           0
## 4240                            Gambia 1769           0
## 4241                           Georgia 1769           0
## 4242                           Germany 1769           0
## 4243                             Ghana 1769           0
## 4244                         Gibraltar 1769           0
## 4245                            Greece 1769           0
## 4246                         Greenland 1769           0
## 4247                           Grenada 1769           0
## 4248                        Guadeloupe 1769           0
## 4249                         Guatemala 1769           0
## 4250                            Guinea 1769           0
## 4251                     Guinea-Bissau 1769           0
## 4252                            Guyana 1769           0
## 4253                             Haiti 1769           0
## 4254                          Honduras 1769           0
## 4255                         Hong Kong 1769           0
## 4256                           Hungary 1769           0
## 4257                           Iceland 1769           0
## 4258                             India 1769           0
## 4259                         Indonesia 1769           0
## 4260                              Iran 1769           0
## 4261                              Iraq 1769           0
## 4262                           Ireland 1769           0
## 4263                            Israel 1769           0
## 4264                             Italy 1769           0
## 4265                           Jamaica 1769           0
## 4266                             Japan 1769           0
## 4267                            Jordan 1769           0
## 4268                        Kazakhstan 1769           0
## 4269                             Kenya 1769           0
## 4270                          Kiribati 1769           0
## 4271                            Kuwait 1769           0
## 4272                        Kyrgysztan 1769           0
## 4273                        Kyrgyzstan 1769           0
## 4274                              Laos 1769           0
## 4275                            Latvia 1769           0
## 4276                           Lebanon 1769           0
## 4277                           Lesotho 1769           0
## 4278                           Liberia 1769           0
## 4279                             Libya 1769           0
## 4280                     Liechtenstein 1769           0
## 4281                         Lithuania 1769           0
## 4282                        Luxembourg 1769           0
## 4283                             Macao 1769           0
## 4284                         Macedonia 1769           0
## 4285                        Madagascar 1769           0
## 4286                            Malawi 1769           0
## 4287                          Malaysia 1769           0
## 4288                          Maldives 1769           0
## 4289                              Mali 1769           0
## 4290                             Malta 1769           0
## 4291                  Marshall Islands 1769           0
## 4292                        Martinique 1769           0
## 4293                        Mauritania 1769           0
## 4294                         Mauritius 1769           0
## 4295                            Mexico 1769           0
## 4296              Micronesia (country) 1769           0
## 4297                       Middle East 1769           0
## 4298                           Moldova 1769           0
## 4299                          Mongolia 1769           0
## 4300                        Montenegro 1769           0
## 4301                        Montserrat 1769           0
## 4302                           Morocco 1769           0
## 4303                        Mozambique 1769           0
## 4304                           Myanmar 1769           0
## 4305                           Namibia 1769           0
## 4306                             Nauru 1769           0
## 4307                             Nepal 1769           0
## 4308                       Netherlands 1769           0
## 4309                     New Caledonia 1769           0
## 4310                       New Zealand 1769           0
## 4311                         Nicaragua 1769           0
## 4312                             Niger 1769           0
## 4313                           Nigeria 1769           0
## 4314                              Niue 1769           0
## 4315                       North Korea 1769           0
## 4316                            Norway 1769           0
## 4317                              Oman 1769           0
## 4318                          Pakistan 1769           0
## 4319                             Palau 1769           0
## 4320                         Palestine 1769           0
## 4321                            Panama 1769           0
## 4322                  Papua New Guinea 1769           0
## 4323                          Paraguay 1769           0
## 4324                              Peru 1769           0
## 4325                       Philippines 1769           0
## 4326                            Poland 1769           0
## 4327                          Portugal 1769           0
## 4328                             Qatar 1769           0
## 4329                           Reunion 1769           0
## 4330                           Romania 1769           0
## 4331                            Russia 1769           0
## 4332                            Rwanda 1769           0
## 4333                      Saint Helena 1769           0
## 4334             Saint Kitts and Nevis 1769           0
## 4335                       Saint Lucia 1769           0
## 4336         Saint Pierre and Miquelon 1769           0
## 4337  Saint Vincent and the Grenadines 1769           0
## 4338                             Samoa 1769           0
## 4339             Sao Tome and Principe 1769           0
## 4340                      Saudi Arabia 1769           0
## 4341                           Senegal 1769           0
## 4342                            Serbia 1769           0
## 4343                        Seychelles 1769           0
## 4344                      Sierra Leone 1769           0
## 4345                         Singapore 1769           0
## 4346         Sint Maarten (Dutch part) 1769           0
## 4347                          Slovakia 1769           0
## 4348                          Slovenia 1769           0
## 4349                   Solomon Islands 1769           0
## 4350                           Somalia 1769           0
## 4351                      South Africa 1769           0
## 4352                       South Korea 1769           0
## 4353                       South Sudan 1769           0
## 4354                             Spain 1769           0
## 4355                         Sri Lanka 1769           0
## 4356                             Sudan 1769           0
## 4357                          Suriname 1769           0
## 4358                         Swaziland 1769           0
## 4359                            Sweden 1769           0
## 4360                       Switzerland 1769           0
## 4361                             Syria 1769           0
## 4362                            Taiwan 1769           0
## 4363                        Tajikistan 1769           0
## 4364                          Tanzania 1769           0
## 4365                          Thailand 1769           0
## 4366                             Timor 1769           0
## 4367                              Togo 1769           0
## 4368                             Tonga 1769           0
## 4369               Trinidad and Tobago 1769           0
## 4370                           Tunisia 1769           0
## 4371                            Turkey 1769           0
## 4372                      Turkmenistan 1769           0
## 4373          Turks and Caicos Islands 1769           0
## 4374                            Tuvalu 1769           0
## 4375                            Uganda 1769           0
## 4376                           Ukraine 1769           0
## 4377              United Arab Emirates 1769           0
## 4378                    United Kingdom 1769   200809184
## 4379                     United States 1769           0
## 4380                           Uruguay 1769           0
## 4381                        Uzbekistan 1769           0
## 4382                           Vanuatu 1769           0
## 4383                         Venezuela 1769           0
## 4384                           Vietnam 1769           0
## 4385         Wallis and Futuna Islands 1769           0
## 4386                             World 1769   200809184
## 4387                             Yemen 1769           0
## 4388                            Zambia 1769           0
## 4389                          Zimbabwe 1769           0
## 4390                       Afghanistan 1770           0
## 4391                            Africa 1770           0
## 4392                           Albania 1770           0
## 4393                           Algeria 1770           0
## 4394                  Americas (other) 1770           0
## 4395                           Andorra 1770           0
## 4396                            Angola 1770           0
## 4397                          Anguilla 1770           0
## 4398               Antarctic Fisheries 1770           0
## 4399               Antigua and Barbuda 1770           0
## 4400                         Argentina 1770           0
## 4401                           Armenia 1770           0
## 4402                             Aruba 1770           0
## 4403          Asia and Pacific (other) 1770           0
## 4404                         Australia 1770           0
## 4405                           Austria 1770           0
## 4406                        Azerbaijan 1770           0
## 4407                           Bahamas 1770           0
## 4408                           Bahrain 1770           0
## 4409                        Bangladesh 1770           0
## 4410                          Barbados 1770           0
## 4411                           Belarus 1770           0
## 4412                           Belgium 1770           0
## 4413                            Belize 1770           0
## 4414                             Benin 1770           0
## 4415                           Bermuda 1770           0
## 4416                            Bhutan 1770           0
## 4417                           Bolivia 1770           0
## 4418   Bonaire Sint Eustatius and Saba 1770           0
## 4419            Bosnia and Herzegovina 1770           0
## 4420                          Botswana 1770           0
## 4421                            Brazil 1770           0
## 4422            British Virgin Islands 1770           0
## 4423                            Brunei 1770           0
## 4424                          Bulgaria 1770           0
## 4425                      Burkina Faso 1770           0
## 4426                           Burundi 1770           0
## 4427                          Cambodia 1770           0
## 4428                          Cameroon 1770           0
## 4429                            Canada 1770           0
## 4430                        Cape Verde 1770           0
## 4431                    Cayman Islands 1770           0
## 4432          Central African Republic 1770           0
## 4433                              Chad 1770           0
## 4434                             Chile 1770           0
## 4435                             China 1770           0
## 4436                  Christmas Island 1770           0
## 4437                          Colombia 1770           0
## 4438                           Comoros 1770           0
## 4439                             Congo 1770           0
## 4440                      Cook Islands 1770           0
## 4441                        Costa Rica 1770           0
## 4442                     Cote d'Ivoire 1770           0
## 4443                           Croatia 1770           0
## 4444                              Cuba 1770           0
## 4445                           Curacao 1770           0
## 4446                            Cyprus 1770           0
## 4447                    Czech Republic 1770           0
## 4448                    Czechoslovakia 1770           0
## 4449      Democratic Republic of Congo 1770           0
## 4450                           Denmark 1770           0
## 4451                          Djibouti 1770           0
## 4452                          Dominica 1770           0
## 4453                Dominican Republic 1770           0
## 4454                             EU-28 1770   213083584
## 4455                           Ecuador 1770           0
## 4456                             Egypt 1770           0
## 4457                       El Salvador 1770           0
## 4458                 Equatorial Guinea 1770           0
## 4459                           Eritrea 1770           0
## 4460                           Estonia 1770           0
## 4461                          Ethiopia 1770           0
## 4462                    Europe (other) 1770           0
## 4463                    Faeroe Islands 1770           0
## 4464                  Falkland Islands 1770           0
## 4465                              Fiji 1770           0
## 4466                           Finland 1770           0
## 4467                            France 1770           0
## 4468                     French Guiana 1770           0
## 4469                  French Polynesia 1770           0
## 4470                             Gabon 1770           0
## 4471                            Gambia 1770           0
## 4472                           Georgia 1770           0
## 4473                           Germany 1770           0
## 4474                             Ghana 1770           0
## 4475                         Gibraltar 1770           0
## 4476                            Greece 1770           0
## 4477                         Greenland 1770           0
## 4478                           Grenada 1770           0
## 4479                        Guadeloupe 1770           0
## 4480                         Guatemala 1770           0
## 4481                            Guinea 1770           0
## 4482                     Guinea-Bissau 1770           0
## 4483                            Guyana 1770           0
## 4484                             Haiti 1770           0
## 4485                          Honduras 1770           0
## 4486                         Hong Kong 1770           0
## 4487                           Hungary 1770           0
## 4488                           Iceland 1770           0
## 4489                             India 1770           0
## 4490                         Indonesia 1770           0
## 4491                              Iran 1770           0
## 4492                              Iraq 1770           0
## 4493                           Ireland 1770           0
## 4494                            Israel 1770           0
## 4495                             Italy 1770           0
## 4496                           Jamaica 1770           0
## 4497                             Japan 1770           0
## 4498                            Jordan 1770           0
## 4499                        Kazakhstan 1770           0
## 4500                             Kenya 1770           0
## 4501                          Kiribati 1770           0
## 4502                            Kuwait 1770           0
## 4503                        Kyrgysztan 1770           0
## 4504                        Kyrgyzstan 1770           0
## 4505                              Laos 1770           0
## 4506                            Latvia 1770           0
## 4507                           Lebanon 1770           0
## 4508                           Lesotho 1770           0
## 4509                           Liberia 1770           0
## 4510                             Libya 1770           0
## 4511                     Liechtenstein 1770           0
## 4512                         Lithuania 1770           0
## 4513                        Luxembourg 1770           0
## 4514                             Macao 1770           0
## 4515                         Macedonia 1770           0
## 4516                        Madagascar 1770           0
## 4517                            Malawi 1770           0
## 4518                          Malaysia 1770           0
## 4519                          Maldives 1770           0
## 4520                              Mali 1770           0
## 4521                             Malta 1770           0
## 4522                  Marshall Islands 1770           0
## 4523                        Martinique 1770           0
## 4524                        Mauritania 1770           0
## 4525                         Mauritius 1770           0
## 4526                            Mexico 1770           0
## 4527              Micronesia (country) 1770           0
## 4528                       Middle East 1770           0
## 4529                           Moldova 1770           0
## 4530                          Mongolia 1770           0
## 4531                        Montenegro 1770           0
## 4532                        Montserrat 1770           0
## 4533                           Morocco 1770           0
## 4534                        Mozambique 1770           0
## 4535                           Myanmar 1770           0
## 4536                           Namibia 1770           0
## 4537                             Nauru 1770           0
## 4538                             Nepal 1770           0
## 4539                       Netherlands 1770           0
## 4540                     New Caledonia 1770           0
## 4541                       New Zealand 1770           0
## 4542                         Nicaragua 1770           0
## 4543                             Niger 1770           0
## 4544                           Nigeria 1770           0
## 4545                              Niue 1770           0
## 4546                       North Korea 1770           0
## 4547                            Norway 1770           0
## 4548                              Oman 1770           0
## 4549                          Pakistan 1770           0
## 4550                             Palau 1770           0
## 4551                         Palestine 1770           0
## 4552                            Panama 1770           0
## 4553                  Papua New Guinea 1770           0
## 4554                          Paraguay 1770           0
## 4555                              Peru 1770           0
## 4556                       Philippines 1770           0
## 4557                            Poland 1770           0
## 4558                          Portugal 1770           0
## 4559                             Qatar 1770           0
## 4560                           Reunion 1770           0
## 4561                           Romania 1770           0
## 4562                            Russia 1770           0
## 4563                            Rwanda 1770           0
## 4564                      Saint Helena 1770           0
## 4565             Saint Kitts and Nevis 1770           0
## 4566                       Saint Lucia 1770           0
## 4567         Saint Pierre and Miquelon 1770           0
## 4568  Saint Vincent and the Grenadines 1770           0
## 4569                             Samoa 1770           0
## 4570             Sao Tome and Principe 1770           0
## 4571                      Saudi Arabia 1770           0
## 4572                           Senegal 1770           0
## 4573                            Serbia 1770           0
## 4574                        Seychelles 1770           0
## 4575                      Sierra Leone 1770           0
## 4576                         Singapore 1770           0
## 4577         Sint Maarten (Dutch part) 1770           0
## 4578                          Slovakia 1770           0
## 4579                          Slovenia 1770           0
## 4580                   Solomon Islands 1770           0
## 4581                           Somalia 1770           0
## 4582                      South Africa 1770           0
## 4583                       South Korea 1770           0
## 4584                       South Sudan 1770           0
## 4585                             Spain 1770           0
## 4586                         Sri Lanka 1770           0
## 4587                             Sudan 1770           0
## 4588                          Suriname 1770           0
## 4589                         Swaziland 1770           0
## 4590                            Sweden 1770           0
## 4591                       Switzerland 1770           0
## 4592                             Syria 1770           0
## 4593                            Taiwan 1770           0
## 4594                        Tajikistan 1770           0
## 4595                          Tanzania 1770           0
## 4596                          Thailand 1770           0
## 4597                             Timor 1770           0
## 4598                              Togo 1770           0
## 4599                             Tonga 1770           0
## 4600               Trinidad and Tobago 1770           0
## 4601                           Tunisia 1770           0
## 4602                            Turkey 1770           0
## 4603                      Turkmenistan 1770           0
## 4604          Turks and Caicos Islands 1770           0
## 4605                            Tuvalu 1770           0
## 4606                            Uganda 1770           0
## 4607                           Ukraine 1770           0
## 4608              United Arab Emirates 1770           0
## 4609                    United Kingdom 1770   213083584
## 4610                     United States 1770           0
## 4611                           Uruguay 1770           0
## 4612                        Uzbekistan 1770           0
## 4613                           Vanuatu 1770           0
## 4614                         Venezuela 1770           0
## 4615                           Vietnam 1770           0
## 4616         Wallis and Futuna Islands 1770           0
## 4617                             World 1770   213083584
## 4618                             Yemen 1770           0
## 4619                            Zambia 1770           0
## 4620                          Zimbabwe 1770           0
## 4621                       Afghanistan 1771           0
## 4622                            Africa 1771           0
## 4623                           Albania 1771           0
## 4624                           Algeria 1771           0
## 4625                  Americas (other) 1771           0
## 4626                           Andorra 1771           0
## 4627                            Angola 1771           0
## 4628                          Anguilla 1771           0
## 4629               Antarctic Fisheries 1771           0
## 4630               Antigua and Barbuda 1771           0
## 4631                         Argentina 1771           0
## 4632                           Armenia 1771           0
## 4633                             Aruba 1771           0
## 4634          Asia and Pacific (other) 1771           0
## 4635                         Australia 1771           0
## 4636                           Austria 1771           0
## 4637                        Azerbaijan 1771           0
## 4638                           Bahamas 1771           0
## 4639                           Bahrain 1771           0
## 4640                        Bangladesh 1771           0
## 4641                          Barbados 1771           0
## 4642                           Belarus 1771           0
## 4643                           Belgium 1771           0
## 4644                            Belize 1771           0
## 4645                             Benin 1771           0
## 4646                           Bermuda 1771           0
## 4647                            Bhutan 1771           0
## 4648                           Bolivia 1771           0
## 4649   Bonaire Sint Eustatius and Saba 1771           0
## 4650            Bosnia and Herzegovina 1771           0
## 4651                          Botswana 1771           0
## 4652                            Brazil 1771           0
## 4653            British Virgin Islands 1771           0
## 4654                            Brunei 1771           0
## 4655                          Bulgaria 1771           0
## 4656                      Burkina Faso 1771           0
## 4657                           Burundi 1771           0
## 4658                          Cambodia 1771           0
## 4659                          Cameroon 1771           0
## 4660                            Canada 1771           0
## 4661                        Cape Verde 1771           0
## 4662                    Cayman Islands 1771           0
## 4663          Central African Republic 1771           0
## 4664                              Chad 1771           0
## 4665                             Chile 1771           0
## 4666                             China 1771           0
## 4667                  Christmas Island 1771           0
## 4668                          Colombia 1771           0
## 4669                           Comoros 1771           0
## 4670                             Congo 1771           0
## 4671                      Cook Islands 1771           0
## 4672                        Costa Rica 1771           0
## 4673                     Cote d'Ivoire 1771           0
## 4674                           Croatia 1771           0
## 4675                              Cuba 1771           0
## 4676                           Curacao 1771           0
## 4677                            Cyprus 1771           0
## 4678                    Czech Republic 1771           0
## 4679                    Czechoslovakia 1771           0
## 4680      Democratic Republic of Congo 1771           0
## 4681                           Denmark 1771           0
## 4682                          Djibouti 1771           0
## 4683                          Dominica 1771           0
## 4684                Dominican Republic 1771           0
## 4685                             EU-28 1771   226695344
## 4686                           Ecuador 1771           0
## 4687                             Egypt 1771           0
## 4688                       El Salvador 1771           0
## 4689                 Equatorial Guinea 1771           0
## 4690                           Eritrea 1771           0
## 4691                           Estonia 1771           0
## 4692                          Ethiopia 1771           0
## 4693                    Europe (other) 1771           0
## 4694                    Faeroe Islands 1771           0
## 4695                  Falkland Islands 1771           0
## 4696                              Fiji 1771           0
## 4697                           Finland 1771           0
## 4698                            France 1771           0
## 4699                     French Guiana 1771           0
## 4700                  French Polynesia 1771           0
## 4701                             Gabon 1771           0
## 4702                            Gambia 1771           0
## 4703                           Georgia 1771           0
## 4704                           Germany 1771           0
## 4705                             Ghana 1771           0
## 4706                         Gibraltar 1771           0
## 4707                            Greece 1771           0
## 4708                         Greenland 1771           0
## 4709                           Grenada 1771           0
## 4710                        Guadeloupe 1771           0
## 4711                         Guatemala 1771           0
## 4712                            Guinea 1771           0
## 4713                     Guinea-Bissau 1771           0
## 4714                            Guyana 1771           0
## 4715                             Haiti 1771           0
## 4716                          Honduras 1771           0
## 4717                         Hong Kong 1771           0
## 4718                           Hungary 1771           0
## 4719                           Iceland 1771           0
## 4720                             India 1771           0
## 4721                         Indonesia 1771           0
## 4722                              Iran 1771           0
## 4723                              Iraq 1771           0
## 4724                           Ireland 1771           0
## 4725                            Israel 1771           0
## 4726                             Italy 1771           0
## 4727                           Jamaica 1771           0
## 4728                             Japan 1771           0
## 4729                            Jordan 1771           0
## 4730                        Kazakhstan 1771           0
## 4731                             Kenya 1771           0
## 4732                          Kiribati 1771           0
## 4733                            Kuwait 1771           0
## 4734                        Kyrgysztan 1771           0
## 4735                        Kyrgyzstan 1771           0
## 4736                              Laos 1771           0
## 4737                            Latvia 1771           0
## 4738                           Lebanon 1771           0
## 4739                           Lesotho 1771           0
## 4740                           Liberia 1771           0
## 4741                             Libya 1771           0
## 4742                     Liechtenstein 1771           0
## 4743                         Lithuania 1771           0
## 4744                        Luxembourg 1771           0
## 4745                             Macao 1771           0
## 4746                         Macedonia 1771           0
## 4747                        Madagascar 1771           0
## 4748                            Malawi 1771           0
## 4749                          Malaysia 1771           0
## 4750                          Maldives 1771           0
## 4751                              Mali 1771           0
## 4752                             Malta 1771           0
## 4753                  Marshall Islands 1771           0
## 4754                        Martinique 1771           0
## 4755                        Mauritania 1771           0
## 4756                         Mauritius 1771           0
## 4757                            Mexico 1771           0
## 4758              Micronesia (country) 1771           0
## 4759                       Middle East 1771           0
## 4760                           Moldova 1771           0
## 4761                          Mongolia 1771           0
## 4762                        Montenegro 1771           0
## 4763                        Montserrat 1771           0
## 4764                           Morocco 1771           0
## 4765                        Mozambique 1771           0
## 4766                           Myanmar 1771           0
## 4767                           Namibia 1771           0
## 4768                             Nauru 1771           0
## 4769                             Nepal 1771           0
## 4770                       Netherlands 1771           0
## 4771                     New Caledonia 1771           0
## 4772                       New Zealand 1771           0
## 4773                         Nicaragua 1771           0
## 4774                             Niger 1771           0
## 4775                           Nigeria 1771           0
## 4776                              Niue 1771           0
## 4777                       North Korea 1771           0
## 4778                            Norway 1771           0
## 4779                              Oman 1771           0
## 4780                          Pakistan 1771           0
## 4781                             Palau 1771           0
## 4782                         Palestine 1771           0
## 4783                            Panama 1771           0
## 4784                  Papua New Guinea 1771           0
## 4785                          Paraguay 1771           0
## 4786                              Peru 1771           0
## 4787                       Philippines 1771           0
## 4788                            Poland 1771           0
## 4789                          Portugal 1771           0
## 4790                             Qatar 1771           0
## 4791                           Reunion 1771           0
## 4792                           Romania 1771           0
## 4793                            Russia 1771           0
## 4794                            Rwanda 1771           0
## 4795                      Saint Helena 1771           0
## 4796             Saint Kitts and Nevis 1771           0
## 4797                       Saint Lucia 1771           0
## 4798         Saint Pierre and Miquelon 1771           0
## 4799  Saint Vincent and the Grenadines 1771           0
## 4800                             Samoa 1771           0
## 4801             Sao Tome and Principe 1771           0
## 4802                      Saudi Arabia 1771           0
## 4803                           Senegal 1771           0
## 4804                            Serbia 1771           0
## 4805                        Seychelles 1771           0
## 4806                      Sierra Leone 1771           0
## 4807                         Singapore 1771           0
## 4808         Sint Maarten (Dutch part) 1771           0
## 4809                          Slovakia 1771           0
## 4810                          Slovenia 1771           0
## 4811                   Solomon Islands 1771           0
## 4812                           Somalia 1771           0
## 4813                      South Africa 1771           0
## 4814                       South Korea 1771           0
## 4815                       South Sudan 1771           0
## 4816                             Spain 1771           0
## 4817                         Sri Lanka 1771           0
## 4818                             Sudan 1771           0
## 4819                          Suriname 1771           0
## 4820                         Swaziland 1771           0
## 4821                            Sweden 1771           0
## 4822                       Switzerland 1771           0
## 4823                             Syria 1771           0
## 4824                            Taiwan 1771           0
## 4825                        Tajikistan 1771           0
## 4826                          Tanzania 1771           0
## 4827                          Thailand 1771           0
## 4828                             Timor 1771           0
## 4829                              Togo 1771           0
## 4830                             Tonga 1771           0
## 4831               Trinidad and Tobago 1771           0
## 4832                           Tunisia 1771           0
## 4833                            Turkey 1771           0
## 4834                      Turkmenistan 1771           0
## 4835          Turks and Caicos Islands 1771           0
## 4836                            Tuvalu 1771           0
## 4837                            Uganda 1771           0
## 4838                           Ukraine 1771           0
## 4839              United Arab Emirates 1771           0
## 4840                    United Kingdom 1771   226695344
## 4841                     United States 1771           0
## 4842                           Uruguay 1771           0
## 4843                        Uzbekistan 1771           0
## 4844                           Vanuatu 1771           0
## 4845                         Venezuela 1771           0
## 4846                           Vietnam 1771           0
## 4847         Wallis and Futuna Islands 1771           0
## 4848                             World 1771   226695344
## 4849                             Yemen 1771           0
## 4850                            Zambia 1771           0
## 4851                          Zimbabwe 1771           0
## 4852                       Afghanistan 1772           0
## 4853                            Africa 1772           0
## 4854                           Albania 1772           0
## 4855                           Algeria 1772           0
## 4856                  Americas (other) 1772           0
## 4857                           Andorra 1772           0
## 4858                            Angola 1772           0
## 4859                          Anguilla 1772           0
## 4860               Antarctic Fisheries 1772           0
## 4861               Antigua and Barbuda 1772           0
## 4862                         Argentina 1772           0
## 4863                           Armenia 1772           0
## 4864                             Aruba 1772           0
## 4865          Asia and Pacific (other) 1772           0
## 4866                         Australia 1772           0
## 4867                           Austria 1772           0
## 4868                        Azerbaijan 1772           0
## 4869                           Bahamas 1772           0
## 4870                           Bahrain 1772           0
## 4871                        Bangladesh 1772           0
## 4872                          Barbados 1772           0
## 4873                           Belarus 1772           0
## 4874                           Belgium 1772           0
## 4875                            Belize 1772           0
## 4876                             Benin 1772           0
## 4877                           Bermuda 1772           0
## 4878                            Bhutan 1772           0
## 4879                           Bolivia 1772           0
## 4880   Bonaire Sint Eustatius and Saba 1772           0
## 4881            Bosnia and Herzegovina 1772           0
## 4882                          Botswana 1772           0
## 4883                            Brazil 1772           0
## 4884            British Virgin Islands 1772           0
## 4885                            Brunei 1772           0
## 4886                          Bulgaria 1772           0
## 4887                      Burkina Faso 1772           0
## 4888                           Burundi 1772           0
## 4889                          Cambodia 1772           0
## 4890                          Cameroon 1772           0
## 4891                            Canada 1772           0
## 4892                        Cape Verde 1772           0
## 4893                    Cayman Islands 1772           0
## 4894          Central African Republic 1772           0
## 4895                              Chad 1772           0
## 4896                             Chile 1772           0
## 4897                             China 1772           0
## 4898                  Christmas Island 1772           0
## 4899                          Colombia 1772           0
## 4900                           Comoros 1772           0
## 4901                             Congo 1772           0
## 4902                      Cook Islands 1772           0
## 4903                        Costa Rica 1772           0
## 4904                     Cote d'Ivoire 1772           0
## 4905                           Croatia 1772           0
## 4906                              Cuba 1772           0
## 4907                           Curacao 1772           0
## 4908                            Cyprus 1772           0
## 4909                    Czech Republic 1772           0
## 4910                    Czechoslovakia 1772           0
## 4911      Democratic Republic of Congo 1772           0
## 4912                           Denmark 1772           0
## 4913                          Djibouti 1772           0
## 4914                          Dominica 1772           0
## 4915                Dominican Republic 1772           0
## 4916                             EU-28 1772   240310768
## 4917                           Ecuador 1772           0
## 4918                             Egypt 1772           0
## 4919                       El Salvador 1772           0
## 4920                 Equatorial Guinea 1772           0
## 4921                           Eritrea 1772           0
## 4922                           Estonia 1772           0
## 4923                          Ethiopia 1772           0
## 4924                    Europe (other) 1772           0
## 4925                    Faeroe Islands 1772           0
## 4926                  Falkland Islands 1772           0
## 4927                              Fiji 1772           0
## 4928                           Finland 1772           0
## 4929                            France 1772           0
## 4930                     French Guiana 1772           0
## 4931                  French Polynesia 1772           0
## 4932                             Gabon 1772           0
## 4933                            Gambia 1772           0
## 4934                           Georgia 1772           0
## 4935                           Germany 1772           0
## 4936                             Ghana 1772           0
## 4937                         Gibraltar 1772           0
## 4938                            Greece 1772           0
## 4939                         Greenland 1772           0
## 4940                           Grenada 1772           0
## 4941                        Guadeloupe 1772           0
## 4942                         Guatemala 1772           0
## 4943                            Guinea 1772           0
## 4944                     Guinea-Bissau 1772           0
## 4945                            Guyana 1772           0
## 4946                             Haiti 1772           0
## 4947                          Honduras 1772           0
## 4948                         Hong Kong 1772           0
## 4949                           Hungary 1772           0
## 4950                           Iceland 1772           0
## 4951                             India 1772           0
## 4952                         Indonesia 1772           0
## 4953                              Iran 1772           0
## 4954                              Iraq 1772           0
## 4955                           Ireland 1772           0
## 4956                            Israel 1772           0
## 4957                             Italy 1772           0
## 4958                           Jamaica 1772           0
## 4959                             Japan 1772           0
## 4960                            Jordan 1772           0
## 4961                        Kazakhstan 1772           0
## 4962                             Kenya 1772           0
## 4963                          Kiribati 1772           0
## 4964                            Kuwait 1772           0
## 4965                        Kyrgysztan 1772           0
## 4966                        Kyrgyzstan 1772           0
## 4967                              Laos 1772           0
## 4968                            Latvia 1772           0
## 4969                           Lebanon 1772           0
## 4970                           Lesotho 1772           0
## 4971                           Liberia 1772           0
## 4972                             Libya 1772           0
## 4973                     Liechtenstein 1772           0
## 4974                         Lithuania 1772           0
## 4975                        Luxembourg 1772           0
## 4976                             Macao 1772           0
## 4977                         Macedonia 1772           0
## 4978                        Madagascar 1772           0
## 4979                            Malawi 1772           0
## 4980                          Malaysia 1772           0
## 4981                          Maldives 1772           0
## 4982                              Mali 1772           0
## 4983                             Malta 1772           0
## 4984                  Marshall Islands 1772           0
## 4985                        Martinique 1772           0
## 4986                        Mauritania 1772           0
## 4987                         Mauritius 1772           0
## 4988                            Mexico 1772           0
## 4989              Micronesia (country) 1772           0
## 4990                       Middle East 1772           0
## 4991                           Moldova 1772           0
## 4992                          Mongolia 1772           0
## 4993                        Montenegro 1772           0
## 4994                        Montserrat 1772           0
## 4995                           Morocco 1772           0
## 4996                        Mozambique 1772           0
## 4997                           Myanmar 1772           0
## 4998                           Namibia 1772           0
## 4999                             Nauru 1772           0
## 5000                             Nepal 1772           0
## 5001                       Netherlands 1772           0
## 5002                     New Caledonia 1772           0
## 5003                       New Zealand 1772           0
## 5004                         Nicaragua 1772           0
## 5005                             Niger 1772           0
## 5006                           Nigeria 1772           0
## 5007                              Niue 1772           0
## 5008                       North Korea 1772           0
## 5009                            Norway 1772           0
## 5010                              Oman 1772           0
## 5011                          Pakistan 1772           0
## 5012                             Palau 1772           0
## 5013                         Palestine 1772           0
## 5014                            Panama 1772           0
## 5015                  Papua New Guinea 1772           0
## 5016                          Paraguay 1772           0
## 5017                              Peru 1772           0
## 5018                       Philippines 1772           0
## 5019                            Poland 1772           0
## 5020                          Portugal 1772           0
## 5021                             Qatar 1772           0
## 5022                           Reunion 1772           0
## 5023                           Romania 1772           0
## 5024                            Russia 1772           0
## 5025                            Rwanda 1772           0
## 5026                      Saint Helena 1772           0
## 5027             Saint Kitts and Nevis 1772           0
## 5028                       Saint Lucia 1772           0
## 5029         Saint Pierre and Miquelon 1772           0
## 5030  Saint Vincent and the Grenadines 1772           0
## 5031                             Samoa 1772           0
## 5032             Sao Tome and Principe 1772           0
## 5033                      Saudi Arabia 1772           0
## 5034                           Senegal 1772           0
## 5035                            Serbia 1772           0
## 5036                        Seychelles 1772           0
## 5037                      Sierra Leone 1772           0
## 5038                         Singapore 1772           0
## 5039         Sint Maarten (Dutch part) 1772           0
## 5040                          Slovakia 1772           0
## 5041                          Slovenia 1772           0
## 5042                   Solomon Islands 1772           0
## 5043                           Somalia 1772           0
## 5044                      South Africa 1772           0
## 5045                       South Korea 1772           0
## 5046                       South Sudan 1772           0
## 5047                             Spain 1772           0
## 5048                         Sri Lanka 1772           0
## 5049                             Sudan 1772           0
## 5050                          Suriname 1772           0
## 5051                         Swaziland 1772           0
## 5052                            Sweden 1772           0
## 5053                       Switzerland 1772           0
## 5054                             Syria 1772           0
## 5055                            Taiwan 1772           0
## 5056                        Tajikistan 1772           0
## 5057                          Tanzania 1772           0
## 5058                          Thailand 1772           0
## 5059                             Timor 1772           0
## 5060                              Togo 1772           0
## 5061                             Tonga 1772           0
## 5062               Trinidad and Tobago 1772           0
## 5063                           Tunisia 1772           0
## 5064                            Turkey 1772           0
## 5065                      Turkmenistan 1772           0
## 5066          Turks and Caicos Islands 1772           0
## 5067                            Tuvalu 1772           0
## 5068                            Uganda 1772           0
## 5069                           Ukraine 1772           0
## 5070              United Arab Emirates 1772           0
## 5071                    United Kingdom 1772   240310768
## 5072                     United States 1772           0
## 5073                           Uruguay 1772           0
## 5074                        Uzbekistan 1772           0
## 5075                           Vanuatu 1772           0
## 5076                         Venezuela 1772           0
## 5077                           Vietnam 1772           0
## 5078         Wallis and Futuna Islands 1772           0
## 5079                             World 1772   240310768
## 5080                             Yemen 1772           0
## 5081                            Zambia 1772           0
## 5082                          Zimbabwe 1772           0
## 5083                       Afghanistan 1773           0
## 5084                            Africa 1773           0
## 5085                           Albania 1773           0
## 5086                           Algeria 1773           0
## 5087                  Americas (other) 1773           0
## 5088                           Andorra 1773           0
## 5089                            Angola 1773           0
## 5090                          Anguilla 1773           0
## 5091               Antarctic Fisheries 1773           0
## 5092               Antigua and Barbuda 1773           0
## 5093                         Argentina 1773           0
## 5094                           Armenia 1773           0
## 5095                             Aruba 1773           0
## 5096          Asia and Pacific (other) 1773           0
## 5097                         Australia 1773           0
## 5098                           Austria 1773           0
## 5099                        Azerbaijan 1773           0
## 5100                           Bahamas 1773           0
## 5101                           Bahrain 1773           0
## 5102                        Bangladesh 1773           0
## 5103                          Barbados 1773           0
## 5104                           Belarus 1773           0
## 5105                           Belgium 1773           0
## 5106                            Belize 1773           0
## 5107                             Benin 1773           0
## 5108                           Bermuda 1773           0
## 5109                            Bhutan 1773           0
## 5110                           Bolivia 1773           0
## 5111   Bonaire Sint Eustatius and Saba 1773           0
## 5112            Bosnia and Herzegovina 1773           0
## 5113                          Botswana 1773           0
## 5114                            Brazil 1773           0
## 5115            British Virgin Islands 1773           0
## 5116                            Brunei 1773           0
## 5117                          Bulgaria 1773           0
## 5118                      Burkina Faso 1773           0
## 5119                           Burundi 1773           0
## 5120                          Cambodia 1773           0
## 5121                          Cameroon 1773           0
## 5122                            Canada 1773           0
## 5123                        Cape Verde 1773           0
## 5124                    Cayman Islands 1773           0
## 5125          Central African Republic 1773           0
## 5126                              Chad 1773           0
## 5127                             Chile 1773           0
## 5128                             China 1773           0
## 5129                  Christmas Island 1773           0
## 5130                          Colombia 1773           0
## 5131                           Comoros 1773           0
## 5132                             Congo 1773           0
## 5133                      Cook Islands 1773           0
## 5134                        Costa Rica 1773           0
## 5135                     Cote d'Ivoire 1773           0
## 5136                           Croatia 1773           0
## 5137                              Cuba 1773           0
## 5138                           Curacao 1773           0
## 5139                            Cyprus 1773           0
## 5140                    Czech Republic 1773           0
## 5141                    Czechoslovakia 1773           0
## 5142      Democratic Republic of Congo 1773           0
## 5143                           Denmark 1773           0
## 5144                          Djibouti 1773           0
## 5145                          Dominica 1773           0
## 5146                Dominican Republic 1773           0
## 5147                             EU-28 1773   253929856
## 5148                           Ecuador 1773           0
## 5149                             Egypt 1773           0
## 5150                       El Salvador 1773           0
## 5151                 Equatorial Guinea 1773           0
## 5152                           Eritrea 1773           0
## 5153                           Estonia 1773           0
## 5154                          Ethiopia 1773           0
## 5155                    Europe (other) 1773           0
## 5156                    Faeroe Islands 1773           0
## 5157                  Falkland Islands 1773           0
## 5158                              Fiji 1773           0
## 5159                           Finland 1773           0
## 5160                            France 1773           0
## 5161                     French Guiana 1773           0
## 5162                  French Polynesia 1773           0
## 5163                             Gabon 1773           0
## 5164                            Gambia 1773           0
## 5165                           Georgia 1773           0
## 5166                           Germany 1773           0
## 5167                             Ghana 1773           0
## 5168                         Gibraltar 1773           0
## 5169                            Greece 1773           0
## 5170                         Greenland 1773           0
## 5171                           Grenada 1773           0
## 5172                        Guadeloupe 1773           0
## 5173                         Guatemala 1773           0
## 5174                            Guinea 1773           0
## 5175                     Guinea-Bissau 1773           0
## 5176                            Guyana 1773           0
## 5177                             Haiti 1773           0
## 5178                          Honduras 1773           0
## 5179                         Hong Kong 1773           0
## 5180                           Hungary 1773           0
## 5181                           Iceland 1773           0
## 5182                             India 1773           0
## 5183                         Indonesia 1773           0
## 5184                              Iran 1773           0
## 5185                              Iraq 1773           0
## 5186                           Ireland 1773           0
## 5187                            Israel 1773           0
## 5188                             Italy 1773           0
## 5189                           Jamaica 1773           0
## 5190                             Japan 1773           0
## 5191                            Jordan 1773           0
## 5192                        Kazakhstan 1773           0
## 5193                             Kenya 1773           0
## 5194                          Kiribati 1773           0
## 5195                            Kuwait 1773           0
## 5196                        Kyrgysztan 1773           0
## 5197                        Kyrgyzstan 1773           0
## 5198                              Laos 1773           0
## 5199                            Latvia 1773           0
## 5200                           Lebanon 1773           0
## 5201                           Lesotho 1773           0
## 5202                           Liberia 1773           0
## 5203                             Libya 1773           0
## 5204                     Liechtenstein 1773           0
## 5205                         Lithuania 1773           0
## 5206                        Luxembourg 1773           0
## 5207                             Macao 1773           0
## 5208                         Macedonia 1773           0
## 5209                        Madagascar 1773           0
## 5210                            Malawi 1773           0
## 5211                          Malaysia 1773           0
## 5212                          Maldives 1773           0
## 5213                              Mali 1773           0
## 5214                             Malta 1773           0
## 5215                  Marshall Islands 1773           0
## 5216                        Martinique 1773           0
## 5217                        Mauritania 1773           0
## 5218                         Mauritius 1773           0
## 5219                            Mexico 1773           0
## 5220              Micronesia (country) 1773           0
## 5221                       Middle East 1773           0
## 5222                           Moldova 1773           0
## 5223                          Mongolia 1773           0
## 5224                        Montenegro 1773           0
## 5225                        Montserrat 1773           0
## 5226                           Morocco 1773           0
## 5227                        Mozambique 1773           0
## 5228                           Myanmar 1773           0
## 5229                           Namibia 1773           0
## 5230                             Nauru 1773           0
## 5231                             Nepal 1773           0
## 5232                       Netherlands 1773           0
## 5233                     New Caledonia 1773           0
## 5234                       New Zealand 1773           0
## 5235                         Nicaragua 1773           0
## 5236                             Niger 1773           0
## 5237                           Nigeria 1773           0
## 5238                              Niue 1773           0
## 5239                       North Korea 1773           0
## 5240                            Norway 1773           0
## 5241                              Oman 1773           0
## 5242                          Pakistan 1773           0
## 5243                             Palau 1773           0
## 5244                         Palestine 1773           0
## 5245                            Panama 1773           0
## 5246                  Papua New Guinea 1773           0
## 5247                          Paraguay 1773           0
## 5248                              Peru 1773           0
## 5249                       Philippines 1773           0
## 5250                            Poland 1773           0
## 5251                          Portugal 1773           0
## 5252                             Qatar 1773           0
## 5253                           Reunion 1773           0
## 5254                           Romania 1773           0
## 5255                            Russia 1773           0
## 5256                            Rwanda 1773           0
## 5257                      Saint Helena 1773           0
## 5258             Saint Kitts and Nevis 1773           0
## 5259                       Saint Lucia 1773           0
## 5260         Saint Pierre and Miquelon 1773           0
## 5261  Saint Vincent and the Grenadines 1773           0
## 5262                             Samoa 1773           0
## 5263             Sao Tome and Principe 1773           0
## 5264                      Saudi Arabia 1773           0
## 5265                           Senegal 1773           0
## 5266                            Serbia 1773           0
## 5267                        Seychelles 1773           0
## 5268                      Sierra Leone 1773           0
## 5269                         Singapore 1773           0
## 5270         Sint Maarten (Dutch part) 1773           0
## 5271                          Slovakia 1773           0
## 5272                          Slovenia 1773           0
## 5273                   Solomon Islands 1773           0
## 5274                           Somalia 1773           0
## 5275                      South Africa 1773           0
## 5276                       South Korea 1773           0
## 5277                       South Sudan 1773           0
## 5278                             Spain 1773           0
## 5279                         Sri Lanka 1773           0
## 5280                             Sudan 1773           0
## 5281                          Suriname 1773           0
## 5282                         Swaziland 1773           0
## 5283                            Sweden 1773           0
## 5284                       Switzerland 1773           0
## 5285                             Syria 1773           0
## 5286                            Taiwan 1773           0
## 5287                        Tajikistan 1773           0
## 5288                          Tanzania 1773           0
## 5289                          Thailand 1773           0
## 5290                             Timor 1773           0
## 5291                              Togo 1773           0
## 5292                             Tonga 1773           0
## 5293               Trinidad and Tobago 1773           0
## 5294                           Tunisia 1773           0
## 5295                            Turkey 1773           0
## 5296                      Turkmenistan 1773           0
## 5297          Turks and Caicos Islands 1773           0
## 5298                            Tuvalu 1773           0
## 5299                            Uganda 1773           0
## 5300                           Ukraine 1773           0
## 5301              United Arab Emirates 1773           0
## 5302                    United Kingdom 1773   253929856
## 5303                     United States 1773           0
## 5304                           Uruguay 1773           0
## 5305                        Uzbekistan 1773           0
## 5306                           Vanuatu 1773           0
## 5307                         Venezuela 1773           0
## 5308                           Vietnam 1773           0
## 5309         Wallis and Futuna Islands 1773           0
## 5310                             World 1773   253929856
## 5311                             Yemen 1773           0
## 5312                            Zambia 1773           0
## 5313                          Zimbabwe 1773           0
## 5314                       Afghanistan 1774           0
## 5315                            Africa 1774           0
## 5316                           Albania 1774           0
## 5317                           Algeria 1774           0
## 5318                  Americas (other) 1774           0
## 5319                           Andorra 1774           0
## 5320                            Angola 1774           0
## 5321                          Anguilla 1774           0
## 5322               Antarctic Fisheries 1774           0
## 5323               Antigua and Barbuda 1774           0
## 5324                         Argentina 1774           0
## 5325                           Armenia 1774           0
## 5326                             Aruba 1774           0
## 5327          Asia and Pacific (other) 1774           0
## 5328                         Australia 1774           0
## 5329                           Austria 1774           0
## 5330                        Azerbaijan 1774           0
## 5331                           Bahamas 1774           0
## 5332                           Bahrain 1774           0
## 5333                        Bangladesh 1774           0
## 5334                          Barbados 1774           0
## 5335                           Belarus 1774           0
## 5336                           Belgium 1774           0
## 5337                            Belize 1774           0
## 5338                             Benin 1774           0
## 5339                           Bermuda 1774           0
## 5340                            Bhutan 1774           0
## 5341                           Bolivia 1774           0
## 5342   Bonaire Sint Eustatius and Saba 1774           0
## 5343            Bosnia and Herzegovina 1774           0
## 5344                          Botswana 1774           0
## 5345                            Brazil 1774           0
## 5346            British Virgin Islands 1774           0
## 5347                            Brunei 1774           0
## 5348                          Bulgaria 1774           0
## 5349                      Burkina Faso 1774           0
## 5350                           Burundi 1774           0
## 5351                          Cambodia 1774           0
## 5352                          Cameroon 1774           0
## 5353                            Canada 1774           0
## 5354                        Cape Verde 1774           0
## 5355                    Cayman Islands 1774           0
## 5356          Central African Republic 1774           0
## 5357                              Chad 1774           0
## 5358                             Chile 1774           0
## 5359                             China 1774           0
## 5360                  Christmas Island 1774           0
## 5361                          Colombia 1774           0
## 5362                           Comoros 1774           0
## 5363                             Congo 1774           0
## 5364                      Cook Islands 1774           0
## 5365                        Costa Rica 1774           0
## 5366                     Cote d'Ivoire 1774           0
## 5367                           Croatia 1774           0
## 5368                              Cuba 1774           0
## 5369                           Curacao 1774           0
## 5370                            Cyprus 1774           0
## 5371                    Czech Republic 1774           0
## 5372                    Czechoslovakia 1774           0
## 5373      Democratic Republic of Congo 1774           0
## 5374                           Denmark 1774           0
## 5375                          Djibouti 1774           0
## 5376                          Dominica 1774           0
## 5377                Dominican Republic 1774           0
## 5378                             EU-28 1774   267552608
## 5379                           Ecuador 1774           0
## 5380                             Egypt 1774           0
## 5381                       El Salvador 1774           0
## 5382                 Equatorial Guinea 1774           0
## 5383                           Eritrea 1774           0
## 5384                           Estonia 1774           0
## 5385                          Ethiopia 1774           0
## 5386                    Europe (other) 1774           0
## 5387                    Faeroe Islands 1774           0
## 5388                  Falkland Islands 1774           0
## 5389                              Fiji 1774           0
## 5390                           Finland 1774           0
## 5391                            France 1774           0
## 5392                     French Guiana 1774           0
## 5393                  French Polynesia 1774           0
## 5394                             Gabon 1774           0
## 5395                            Gambia 1774           0
## 5396                           Georgia 1774           0
## 5397                           Germany 1774           0
## 5398                             Ghana 1774           0
## 5399                         Gibraltar 1774           0
## 5400                            Greece 1774           0
## 5401                         Greenland 1774           0
## 5402                           Grenada 1774           0
## 5403                        Guadeloupe 1774           0
## 5404                         Guatemala 1774           0
## 5405                            Guinea 1774           0
## 5406                     Guinea-Bissau 1774           0
## 5407                            Guyana 1774           0
## 5408                             Haiti 1774           0
## 5409                          Honduras 1774           0
## 5410                         Hong Kong 1774           0
## 5411                           Hungary 1774           0
## 5412                           Iceland 1774           0
## 5413                             India 1774           0
## 5414                         Indonesia 1774           0
## 5415                              Iran 1774           0
## 5416                              Iraq 1774           0
## 5417                           Ireland 1774           0
## 5418                            Israel 1774           0
## 5419                             Italy 1774           0
## 5420                           Jamaica 1774           0
## 5421                             Japan 1774           0
## 5422                            Jordan 1774           0
## 5423                        Kazakhstan 1774           0
## 5424                             Kenya 1774           0
## 5425                          Kiribati 1774           0
## 5426                            Kuwait 1774           0
## 5427                        Kyrgysztan 1774           0
## 5428                        Kyrgyzstan 1774           0
## 5429                              Laos 1774           0
## 5430                            Latvia 1774           0
## 5431                           Lebanon 1774           0
## 5432                           Lesotho 1774           0
## 5433                           Liberia 1774           0
## 5434                             Libya 1774           0
## 5435                     Liechtenstein 1774           0
## 5436                         Lithuania 1774           0
## 5437                        Luxembourg 1774           0
## 5438                             Macao 1774           0
## 5439                         Macedonia 1774           0
## 5440                        Madagascar 1774           0
## 5441                            Malawi 1774           0
## 5442                          Malaysia 1774           0
## 5443                          Maldives 1774           0
## 5444                              Mali 1774           0
## 5445                             Malta 1774           0
## 5446                  Marshall Islands 1774           0
## 5447                        Martinique 1774           0
## 5448                        Mauritania 1774           0
## 5449                         Mauritius 1774           0
## 5450                            Mexico 1774           0
## 5451              Micronesia (country) 1774           0
## 5452                       Middle East 1774           0
## 5453                           Moldova 1774           0
## 5454                          Mongolia 1774           0
## 5455                        Montenegro 1774           0
## 5456                        Montserrat 1774           0
## 5457                           Morocco 1774           0
## 5458                        Mozambique 1774           0
## 5459                           Myanmar 1774           0
## 5460                           Namibia 1774           0
## 5461                             Nauru 1774           0
## 5462                             Nepal 1774           0
## 5463                       Netherlands 1774           0
## 5464                     New Caledonia 1774           0
## 5465                       New Zealand 1774           0
## 5466                         Nicaragua 1774           0
## 5467                             Niger 1774           0
## 5468                           Nigeria 1774           0
## 5469                              Niue 1774           0
## 5470                       North Korea 1774           0
## 5471                            Norway 1774           0
## 5472                              Oman 1774           0
## 5473                          Pakistan 1774           0
## 5474                             Palau 1774           0
## 5475                         Palestine 1774           0
## 5476                            Panama 1774           0
## 5477                  Papua New Guinea 1774           0
## 5478                          Paraguay 1774           0
## 5479                              Peru 1774           0
## 5480                       Philippines 1774           0
## 5481                            Poland 1774           0
## 5482                          Portugal 1774           0
## 5483                             Qatar 1774           0
## 5484                           Reunion 1774           0
## 5485                           Romania 1774           0
## 5486                            Russia 1774           0
## 5487                            Rwanda 1774           0
## 5488                      Saint Helena 1774           0
## 5489             Saint Kitts and Nevis 1774           0
## 5490                       Saint Lucia 1774           0
## 5491         Saint Pierre and Miquelon 1774           0
## 5492  Saint Vincent and the Grenadines 1774           0
## 5493                             Samoa 1774           0
## 5494             Sao Tome and Principe 1774           0
## 5495                      Saudi Arabia 1774           0
## 5496                           Senegal 1774           0
## 5497                            Serbia 1774           0
## 5498                        Seychelles 1774           0
## 5499                      Sierra Leone 1774           0
## 5500                         Singapore 1774           0
## 5501         Sint Maarten (Dutch part) 1774           0
## 5502                          Slovakia 1774           0
## 5503                          Slovenia 1774           0
## 5504                   Solomon Islands 1774           0
## 5505                           Somalia 1774           0
## 5506                      South Africa 1774           0
## 5507                       South Korea 1774           0
## 5508                       South Sudan 1774           0
## 5509                             Spain 1774           0
## 5510                         Sri Lanka 1774           0
## 5511                             Sudan 1774           0
## 5512                          Suriname 1774           0
## 5513                         Swaziland 1774           0
## 5514                            Sweden 1774           0
## 5515                       Switzerland 1774           0
## 5516                             Syria 1774           0
## 5517                            Taiwan 1774           0
## 5518                        Tajikistan 1774           0
## 5519                          Tanzania 1774           0
## 5520                          Thailand 1774           0
## 5521                             Timor 1774           0
## 5522                              Togo 1774           0
## 5523                             Tonga 1774           0
## 5524               Trinidad and Tobago 1774           0
## 5525                           Tunisia 1774           0
## 5526                            Turkey 1774           0
## 5527                      Turkmenistan 1774           0
## 5528          Turks and Caicos Islands 1774           0
## 5529                            Tuvalu 1774           0
## 5530                            Uganda 1774           0
## 5531                           Ukraine 1774           0
## 5532              United Arab Emirates 1774           0
## 5533                    United Kingdom 1774   267552608
## 5534                     United States 1774           0
## 5535                           Uruguay 1774           0
## 5536                        Uzbekistan 1774           0
## 5537                           Vanuatu 1774           0
## 5538                         Venezuela 1774           0
## 5539                           Vietnam 1774           0
## 5540         Wallis and Futuna Islands 1774           0
## 5541                             World 1774   267552608
## 5542                             Yemen 1774           0
## 5543                            Zambia 1774           0
## 5544                          Zimbabwe 1774           0
## 5545                       Afghanistan 1775           0
## 5546                            Africa 1775           0
## 5547                           Albania 1775           0
## 5548                           Algeria 1775           0
## 5549                  Americas (other) 1775           0
## 5550                           Andorra 1775           0
## 5551                            Angola 1775           0
## 5552                          Anguilla 1775           0
## 5553               Antarctic Fisheries 1775           0
## 5554               Antigua and Barbuda 1775           0
## 5555                         Argentina 1775           0
## 5556                           Armenia 1775           0
## 5557                             Aruba 1775           0
## 5558          Asia and Pacific (other) 1775           0
## 5559                         Australia 1775           0
## 5560                           Austria 1775           0
## 5561                        Azerbaijan 1775           0
## 5562                           Bahamas 1775           0
## 5563                           Bahrain 1775           0
## 5564                        Bangladesh 1775           0
## 5565                          Barbados 1775           0
## 5566                           Belarus 1775           0
## 5567                           Belgium 1775           0
## 5568                            Belize 1775           0
## 5569                             Benin 1775           0
## 5570                           Bermuda 1775           0
## 5571                            Bhutan 1775           0
## 5572                           Bolivia 1775           0
## 5573   Bonaire Sint Eustatius and Saba 1775           0
## 5574            Bosnia and Herzegovina 1775           0
## 5575                          Botswana 1775           0
## 5576                            Brazil 1775           0
## 5577            British Virgin Islands 1775           0
## 5578                            Brunei 1775           0
## 5579                          Bulgaria 1775           0
## 5580                      Burkina Faso 1775           0
## 5581                           Burundi 1775           0
## 5582                          Cambodia 1775           0
## 5583                          Cameroon 1775           0
## 5584                            Canada 1775           0
## 5585                        Cape Verde 1775           0
## 5586                    Cayman Islands 1775           0
## 5587          Central African Republic 1775           0
## 5588                              Chad 1775           0
## 5589                             Chile 1775           0
## 5590                             China 1775           0
## 5591                  Christmas Island 1775           0
## 5592                          Colombia 1775           0
## 5593                           Comoros 1775           0
## 5594                             Congo 1775           0
## 5595                      Cook Islands 1775           0
## 5596                        Costa Rica 1775           0
## 5597                     Cote d'Ivoire 1775           0
## 5598                           Croatia 1775           0
## 5599                              Cuba 1775           0
## 5600                           Curacao 1775           0
## 5601                            Cyprus 1775           0
## 5602                    Czech Republic 1775           0
## 5603                    Czechoslovakia 1775           0
## 5604      Democratic Republic of Congo 1775           0
## 5605                           Denmark 1775           0
## 5606                          Djibouti 1775           0
## 5607                          Dominica 1775           0
## 5608                Dominican Republic 1775           0
## 5609                             EU-28 1775   281179024
## 5610                           Ecuador 1775           0
## 5611                             Egypt 1775           0
## 5612                       El Salvador 1775           0
## 5613                 Equatorial Guinea 1775           0
## 5614                           Eritrea 1775           0
## 5615                           Estonia 1775           0
## 5616                          Ethiopia 1775           0
## 5617                    Europe (other) 1775           0
## 5618                    Faeroe Islands 1775           0
## 5619                  Falkland Islands 1775           0
## 5620                              Fiji 1775           0
## 5621                           Finland 1775           0
## 5622                            France 1775           0
## 5623                     French Guiana 1775           0
## 5624                  French Polynesia 1775           0
## 5625                             Gabon 1775           0
## 5626                            Gambia 1775           0
## 5627                           Georgia 1775           0
## 5628                           Germany 1775           0
## 5629                             Ghana 1775           0
## 5630                         Gibraltar 1775           0
## 5631                            Greece 1775           0
## 5632                         Greenland 1775           0
## 5633                           Grenada 1775           0
## 5634                        Guadeloupe 1775           0
## 5635                         Guatemala 1775           0
## 5636                            Guinea 1775           0
## 5637                     Guinea-Bissau 1775           0
## 5638                            Guyana 1775           0
## 5639                             Haiti 1775           0
## 5640                          Honduras 1775           0
## 5641                         Hong Kong 1775           0
## 5642                           Hungary 1775           0
## 5643                           Iceland 1775           0
## 5644                             India 1775           0
## 5645                         Indonesia 1775           0
## 5646                              Iran 1775           0
## 5647                              Iraq 1775           0
## 5648                           Ireland 1775           0
## 5649                            Israel 1775           0
## 5650                             Italy 1775           0
## 5651                           Jamaica 1775           0
## 5652                             Japan 1775           0
## 5653                            Jordan 1775           0
## 5654                        Kazakhstan 1775           0
## 5655                             Kenya 1775           0
## 5656                          Kiribati 1775           0
## 5657                            Kuwait 1775           0
## 5658                        Kyrgysztan 1775           0
## 5659                        Kyrgyzstan 1775           0
## 5660                              Laos 1775           0
## 5661                            Latvia 1775           0
## 5662                           Lebanon 1775           0
## 5663                           Lesotho 1775           0
## 5664                           Liberia 1775           0
## 5665                             Libya 1775           0
## 5666                     Liechtenstein 1775           0
## 5667                         Lithuania 1775           0
## 5668                        Luxembourg 1775           0
## 5669                             Macao 1775           0
## 5670                         Macedonia 1775           0
## 5671                        Madagascar 1775           0
## 5672                            Malawi 1775           0
## 5673                          Malaysia 1775           0
## 5674                          Maldives 1775           0
## 5675                              Mali 1775           0
## 5676                             Malta 1775           0
## 5677                  Marshall Islands 1775           0
## 5678                        Martinique 1775           0
## 5679                        Mauritania 1775           0
## 5680                         Mauritius 1775           0
## 5681                            Mexico 1775           0
## 5682              Micronesia (country) 1775           0
## 5683                       Middle East 1775           0
## 5684                           Moldova 1775           0
## 5685                          Mongolia 1775           0
## 5686                        Montenegro 1775           0
## 5687                        Montserrat 1775           0
## 5688                           Morocco 1775           0
## 5689                        Mozambique 1775           0
## 5690                           Myanmar 1775           0
## 5691                           Namibia 1775           0
## 5692                             Nauru 1775           0
## 5693                             Nepal 1775           0
## 5694                       Netherlands 1775           0
## 5695                     New Caledonia 1775           0
## 5696                       New Zealand 1775           0
## 5697                         Nicaragua 1775           0
## 5698                             Niger 1775           0
## 5699                           Nigeria 1775           0
## 5700                              Niue 1775           0
## 5701                       North Korea 1775           0
## 5702                            Norway 1775           0
## 5703                              Oman 1775           0
## 5704                          Pakistan 1775           0
## 5705                             Palau 1775           0
## 5706                         Palestine 1775           0
## 5707                            Panama 1775           0
## 5708                  Papua New Guinea 1775           0
## 5709                          Paraguay 1775           0
## 5710                              Peru 1775           0
## 5711                       Philippines 1775           0
## 5712                            Poland 1775           0
## 5713                          Portugal 1775           0
## 5714                             Qatar 1775           0
## 5715                           Reunion 1775           0
## 5716                           Romania 1775           0
## 5717                            Russia 1775           0
## 5718                            Rwanda 1775           0
## 5719                      Saint Helena 1775           0
## 5720             Saint Kitts and Nevis 1775           0
## 5721                       Saint Lucia 1775           0
## 5722         Saint Pierre and Miquelon 1775           0
## 5723  Saint Vincent and the Grenadines 1775           0
## 5724                             Samoa 1775           0
## 5725             Sao Tome and Principe 1775           0
## 5726                      Saudi Arabia 1775           0
## 5727                           Senegal 1775           0
## 5728                            Serbia 1775           0
## 5729                        Seychelles 1775           0
## 5730                      Sierra Leone 1775           0
## 5731                         Singapore 1775           0
## 5732         Sint Maarten (Dutch part) 1775           0
## 5733                          Slovakia 1775           0
## 5734                          Slovenia 1775           0
## 5735                   Solomon Islands 1775           0
## 5736                           Somalia 1775           0
## 5737                      South Africa 1775           0
## 5738                       South Korea 1775           0
## 5739                       South Sudan 1775           0
## 5740                             Spain 1775           0
## 5741                         Sri Lanka 1775           0
## 5742                             Sudan 1775           0
## 5743                          Suriname 1775           0
## 5744                         Swaziland 1775           0
## 5745                            Sweden 1775           0
## 5746                       Switzerland 1775           0
## 5747                             Syria 1775           0
## 5748                            Taiwan 1775           0
## 5749                        Tajikistan 1775           0
## 5750                          Tanzania 1775           0
## 5751                          Thailand 1775           0
## 5752                             Timor 1775           0
## 5753                              Togo 1775           0
## 5754                             Tonga 1775           0
## 5755               Trinidad and Tobago 1775           0
## 5756                           Tunisia 1775           0
## 5757                            Turkey 1775           0
## 5758                      Turkmenistan 1775           0
## 5759          Turks and Caicos Islands 1775           0
## 5760                            Tuvalu 1775           0
## 5761                            Uganda 1775           0
## 5762                           Ukraine 1775           0
## 5763              United Arab Emirates 1775           0
## 5764                    United Kingdom 1775   281179024
## 5765                     United States 1775           0
## 5766                           Uruguay 1775           0
## 5767                        Uzbekistan 1775           0
## 5768                           Vanuatu 1775           0
## 5769                         Venezuela 1775           0
## 5770                           Vietnam 1775           0
## 5771         Wallis and Futuna Islands 1775           0
## 5772                             World 1775   281179024
## 5773                             Yemen 1775           0
## 5774                            Zambia 1775           0
## 5775                          Zimbabwe 1775           0
## 5776                       Afghanistan 1776           0
## 5777                            Africa 1776           0
## 5778                           Albania 1776           0
## 5779                           Algeria 1776           0
## 5780                  Americas (other) 1776           0
## 5781                           Andorra 1776           0
## 5782                            Angola 1776           0
## 5783                          Anguilla 1776           0
## 5784               Antarctic Fisheries 1776           0
## 5785               Antigua and Barbuda 1776           0
## 5786                         Argentina 1776           0
## 5787                           Armenia 1776           0
## 5788                             Aruba 1776           0
## 5789          Asia and Pacific (other) 1776           0
## 5790                         Australia 1776           0
## 5791                           Austria 1776           0
## 5792                        Azerbaijan 1776           0
## 5793                           Bahamas 1776           0
## 5794                           Bahrain 1776           0
## 5795                        Bangladesh 1776           0
## 5796                          Barbados 1776           0
## 5797                           Belarus 1776           0
## 5798                           Belgium 1776           0
## 5799                            Belize 1776           0
## 5800                             Benin 1776           0
## 5801                           Bermuda 1776           0
## 5802                            Bhutan 1776           0
## 5803                           Bolivia 1776           0
## 5804   Bonaire Sint Eustatius and Saba 1776           0
## 5805            Bosnia and Herzegovina 1776           0
## 5806                          Botswana 1776           0
## 5807                            Brazil 1776           0
## 5808            British Virgin Islands 1776           0
## 5809                            Brunei 1776           0
## 5810                          Bulgaria 1776           0
## 5811                      Burkina Faso 1776           0
## 5812                           Burundi 1776           0
## 5813                          Cambodia 1776           0
## 5814                          Cameroon 1776           0
## 5815                            Canada 1776           0
## 5816                        Cape Verde 1776           0
## 5817                    Cayman Islands 1776           0
## 5818          Central African Republic 1776           0
## 5819                              Chad 1776           0
## 5820                             Chile 1776           0
## 5821                             China 1776           0
## 5822                  Christmas Island 1776           0
## 5823                          Colombia 1776           0
## 5824                           Comoros 1776           0
## 5825                             Congo 1776           0
## 5826                      Cook Islands 1776           0
## 5827                        Costa Rica 1776           0
## 5828                     Cote d'Ivoire 1776           0
## 5829                           Croatia 1776           0
## 5830                              Cuba 1776           0
## 5831                           Curacao 1776           0
## 5832                            Cyprus 1776           0
## 5833                    Czech Republic 1776           0
## 5834                    Czechoslovakia 1776           0
## 5835      Democratic Republic of Congo 1776           0
## 5836                           Denmark 1776           0
## 5837                          Djibouti 1776           0
## 5838                          Dominica 1776           0
## 5839                Dominican Republic 1776           0
## 5840                             EU-28 1776   296216080
## 5841                           Ecuador 1776           0
## 5842                             Egypt 1776           0
## 5843                       El Salvador 1776           0
## 5844                 Equatorial Guinea 1776           0
## 5845                           Eritrea 1776           0
## 5846                           Estonia 1776           0
## 5847                          Ethiopia 1776           0
## 5848                    Europe (other) 1776           0
## 5849                    Faeroe Islands 1776           0
## 5850                  Falkland Islands 1776           0
## 5851                              Fiji 1776           0
## 5852                           Finland 1776           0
## 5853                            France 1776           0
## 5854                     French Guiana 1776           0
## 5855                  French Polynesia 1776           0
## 5856                             Gabon 1776           0
## 5857                            Gambia 1776           0
## 5858                           Georgia 1776           0
## 5859                           Germany 1776           0
## 5860                             Ghana 1776           0
## 5861                         Gibraltar 1776           0
## 5862                            Greece 1776           0
## 5863                         Greenland 1776           0
## 5864                           Grenada 1776           0
## 5865                        Guadeloupe 1776           0
## 5866                         Guatemala 1776           0
## 5867                            Guinea 1776           0
## 5868                     Guinea-Bissau 1776           0
## 5869                            Guyana 1776           0
## 5870                             Haiti 1776           0
## 5871                          Honduras 1776           0
## 5872                         Hong Kong 1776           0
## 5873                           Hungary 1776           0
## 5874                           Iceland 1776           0
## 5875                             India 1776           0
## 5876                         Indonesia 1776           0
## 5877                              Iran 1776           0
## 5878                              Iraq 1776           0
## 5879                           Ireland 1776           0
## 5880                            Israel 1776           0
## 5881                             Italy 1776           0
## 5882                           Jamaica 1776           0
## 5883                             Japan 1776           0
## 5884                            Jordan 1776           0
## 5885                        Kazakhstan 1776           0
## 5886                             Kenya 1776           0
## 5887                          Kiribati 1776           0
## 5888                            Kuwait 1776           0
## 5889                        Kyrgysztan 1776           0
## 5890                        Kyrgyzstan 1776           0
## 5891                              Laos 1776           0
## 5892                            Latvia 1776           0
## 5893                           Lebanon 1776           0
## 5894                           Lesotho 1776           0
## 5895                           Liberia 1776           0
## 5896                             Libya 1776           0
## 5897                     Liechtenstein 1776           0
## 5898                         Lithuania 1776           0
## 5899                        Luxembourg 1776           0
## 5900                             Macao 1776           0
## 5901                         Macedonia 1776           0
## 5902                        Madagascar 1776           0
## 5903                            Malawi 1776           0
## 5904                          Malaysia 1776           0
## 5905                          Maldives 1776           0
## 5906                              Mali 1776           0
## 5907                             Malta 1776           0
## 5908                  Marshall Islands 1776           0
## 5909                        Martinique 1776           0
## 5910                        Mauritania 1776           0
## 5911                         Mauritius 1776           0
## 5912                            Mexico 1776           0
## 5913              Micronesia (country) 1776           0
## 5914                       Middle East 1776           0
## 5915                           Moldova 1776           0
## 5916                          Mongolia 1776           0
## 5917                        Montenegro 1776           0
## 5918                        Montserrat 1776           0
## 5919                           Morocco 1776           0
## 5920                        Mozambique 1776           0
## 5921                           Myanmar 1776           0
## 5922                           Namibia 1776           0
## 5923                             Nauru 1776           0
## 5924                             Nepal 1776           0
## 5925                       Netherlands 1776           0
## 5926                     New Caledonia 1776           0
## 5927                       New Zealand 1776           0
## 5928                         Nicaragua 1776           0
## 5929                             Niger 1776           0
## 5930                           Nigeria 1776           0
## 5931                              Niue 1776           0
## 5932                       North Korea 1776           0
## 5933                            Norway 1776           0
## 5934                              Oman 1776           0
## 5935                          Pakistan 1776           0
## 5936                             Palau 1776           0
## 5937                         Palestine 1776           0
## 5938                            Panama 1776           0
## 5939                  Papua New Guinea 1776           0
## 5940                          Paraguay 1776           0
## 5941                              Peru 1776           0
## 5942                       Philippines 1776           0
## 5943                            Poland 1776           0
## 5944                          Portugal 1776           0
## 5945                             Qatar 1776           0
## 5946                           Reunion 1776           0
## 5947                           Romania 1776           0
## 5948                            Russia 1776           0
## 5949                            Rwanda 1776           0
## 5950                      Saint Helena 1776           0
## 5951             Saint Kitts and Nevis 1776           0
## 5952                       Saint Lucia 1776           0
## 5953         Saint Pierre and Miquelon 1776           0
## 5954  Saint Vincent and the Grenadines 1776           0
## 5955                             Samoa 1776           0
## 5956             Sao Tome and Principe 1776           0
## 5957                      Saudi Arabia 1776           0
## 5958                           Senegal 1776           0
## 5959                            Serbia 1776           0
## 5960                        Seychelles 1776           0
## 5961                      Sierra Leone 1776           0
## 5962                         Singapore 1776           0
## 5963         Sint Maarten (Dutch part) 1776           0
## 5964                          Slovakia 1776           0
## 5965                          Slovenia 1776           0
## 5966                   Solomon Islands 1776           0
## 5967                           Somalia 1776           0
## 5968                      South Africa 1776           0
## 5969                       South Korea 1776           0
## 5970                       South Sudan 1776           0
## 5971                             Spain 1776           0
## 5972                         Sri Lanka 1776           0
## 5973                             Sudan 1776           0
## 5974                          Suriname 1776           0
## 5975                         Swaziland 1776           0
## 5976                            Sweden 1776           0
## 5977                       Switzerland 1776           0
## 5978                             Syria 1776           0
## 5979                            Taiwan 1776           0
## 5980                        Tajikistan 1776           0
## 5981                          Tanzania 1776           0
## 5982                          Thailand 1776           0
## 5983                             Timor 1776           0
## 5984                              Togo 1776           0
## 5985                             Tonga 1776           0
## 5986               Trinidad and Tobago 1776           0
## 5987                           Tunisia 1776           0
## 5988                            Turkey 1776           0
## 5989                      Turkmenistan 1776           0
## 5990          Turks and Caicos Islands 1776           0
## 5991                            Tuvalu 1776           0
## 5992                            Uganda 1776           0
## 5993                           Ukraine 1776           0
## 5994              United Arab Emirates 1776           0
## 5995                    United Kingdom 1776   296216080
## 5996                     United States 1776           0
## 5997                           Uruguay 1776           0
## 5998                        Uzbekistan 1776           0
## 5999                           Vanuatu 1776           0
## 6000                         Venezuela 1776           0
## 6001                           Vietnam 1776           0
## 6002         Wallis and Futuna Islands 1776           0
## 6003                             World 1776   296216080
## 6004                             Yemen 1776           0
## 6005                            Zambia 1776           0
## 6006                          Zimbabwe 1776           0
## 6007                       Afghanistan 1777           0
## 6008                            Africa 1777           0
## 6009                           Albania 1777           0
## 6010                           Algeria 1777           0
## 6011                  Americas (other) 1777           0
## 6012                           Andorra 1777           0
## 6013                            Angola 1777           0
## 6014                          Anguilla 1777           0
## 6015               Antarctic Fisheries 1777           0
## 6016               Antigua and Barbuda 1777           0
## 6017                         Argentina 1777           0
## 6018                           Armenia 1777           0
## 6019                             Aruba 1777           0
## 6020          Asia and Pacific (other) 1777           0
## 6021                         Australia 1777           0
## 6022                           Austria 1777           0
## 6023                        Azerbaijan 1777           0
## 6024                           Bahamas 1777           0
## 6025                           Bahrain 1777           0
## 6026                        Bangladesh 1777           0
## 6027                          Barbados 1777           0
## 6028                           Belarus 1777           0
## 6029                           Belgium 1777           0
## 6030                            Belize 1777           0
## 6031                             Benin 1777           0
## 6032                           Bermuda 1777           0
## 6033                            Bhutan 1777           0
## 6034                           Bolivia 1777           0
## 6035   Bonaire Sint Eustatius and Saba 1777           0
## 6036            Bosnia and Herzegovina 1777           0
## 6037                          Botswana 1777           0
## 6038                            Brazil 1777           0
## 6039            British Virgin Islands 1777           0
## 6040                            Brunei 1777           0
## 6041                          Bulgaria 1777           0
## 6042                      Burkina Faso 1777           0
## 6043                           Burundi 1777           0
## 6044                          Cambodia 1777           0
## 6045                          Cameroon 1777           0
## 6046                            Canada 1777           0
## 6047                        Cape Verde 1777           0
## 6048                    Cayman Islands 1777           0
## 6049          Central African Republic 1777           0
## 6050                              Chad 1777           0
## 6051                             Chile 1777           0
## 6052                             China 1777           0
## 6053                  Christmas Island 1777           0
## 6054                          Colombia 1777           0
## 6055                           Comoros 1777           0
## 6056                             Congo 1777           0
## 6057                      Cook Islands 1777           0
## 6058                        Costa Rica 1777           0
## 6059                     Cote d'Ivoire 1777           0
## 6060                           Croatia 1777           0
## 6061                              Cuba 1777           0
## 6062                           Curacao 1777           0
## 6063                            Cyprus 1777           0
## 6064                    Czech Republic 1777           0
## 6065                    Czechoslovakia 1777           0
## 6066      Democratic Republic of Congo 1777           0
## 6067                           Denmark 1777           0
## 6068                          Djibouti 1777           0
## 6069                          Dominica 1777           0
## 6070                Dominican Republic 1777           0
## 6071                             EU-28 1777   311256800
## 6072                           Ecuador 1777           0
## 6073                             Egypt 1777           0
## 6074                       El Salvador 1777           0
## 6075                 Equatorial Guinea 1777           0
## 6076                           Eritrea 1777           0
## 6077                           Estonia 1777           0
## 6078                          Ethiopia 1777           0
## 6079                    Europe (other) 1777           0
## 6080                    Faeroe Islands 1777           0
## 6081                  Falkland Islands 1777           0
## 6082                              Fiji 1777           0
## 6083                           Finland 1777           0
## 6084                            France 1777           0
## 6085                     French Guiana 1777           0
## 6086                  French Polynesia 1777           0
## 6087                             Gabon 1777           0
## 6088                            Gambia 1777           0
## 6089                           Georgia 1777           0
## 6090                           Germany 1777           0
## 6091                             Ghana 1777           0
## 6092                         Gibraltar 1777           0
## 6093                            Greece 1777           0
## 6094                         Greenland 1777           0
## 6095                           Grenada 1777           0
## 6096                        Guadeloupe 1777           0
## 6097                         Guatemala 1777           0
## 6098                            Guinea 1777           0
## 6099                     Guinea-Bissau 1777           0
## 6100                            Guyana 1777           0
## 6101                             Haiti 1777           0
## 6102                          Honduras 1777           0
## 6103                         Hong Kong 1777           0
## 6104                           Hungary 1777           0
## 6105                           Iceland 1777           0
## 6106                             India 1777           0
## 6107                         Indonesia 1777           0
## 6108                              Iran 1777           0
## 6109                              Iraq 1777           0
## 6110                           Ireland 1777           0
## 6111                            Israel 1777           0
## 6112                             Italy 1777           0
## 6113                           Jamaica 1777           0
## 6114                             Japan 1777           0
## 6115                            Jordan 1777           0
## 6116                        Kazakhstan 1777           0
## 6117                             Kenya 1777           0
## 6118                          Kiribati 1777           0
## 6119                            Kuwait 1777           0
## 6120                        Kyrgysztan 1777           0
## 6121                        Kyrgyzstan 1777           0
## 6122                              Laos 1777           0
## 6123                            Latvia 1777           0
## 6124                           Lebanon 1777           0
## 6125                           Lesotho 1777           0
## 6126                           Liberia 1777           0
## 6127                             Libya 1777           0
## 6128                     Liechtenstein 1777           0
## 6129                         Lithuania 1777           0
## 6130                        Luxembourg 1777           0
## 6131                             Macao 1777           0
## 6132                         Macedonia 1777           0
## 6133                        Madagascar 1777           0
## 6134                            Malawi 1777           0
## 6135                          Malaysia 1777           0
## 6136                          Maldives 1777           0
## 6137                              Mali 1777           0
## 6138                             Malta 1777           0
## 6139                  Marshall Islands 1777           0
## 6140                        Martinique 1777           0
## 6141                        Mauritania 1777           0
## 6142                         Mauritius 1777           0
## 6143                            Mexico 1777           0
## 6144              Micronesia (country) 1777           0
## 6145                       Middle East 1777           0
## 6146                           Moldova 1777           0
## 6147                          Mongolia 1777           0
## 6148                        Montenegro 1777           0
## 6149                        Montserrat 1777           0
## 6150                           Morocco 1777           0
## 6151                        Mozambique 1777           0
## 6152                           Myanmar 1777           0
## 6153                           Namibia 1777           0
## 6154                             Nauru 1777           0
## 6155                             Nepal 1777           0
## 6156                       Netherlands 1777           0
## 6157                     New Caledonia 1777           0
## 6158                       New Zealand 1777           0
## 6159                         Nicaragua 1777           0
## 6160                             Niger 1777           0
## 6161                           Nigeria 1777           0
## 6162                              Niue 1777           0
## 6163                       North Korea 1777           0
## 6164                            Norway 1777           0
## 6165                              Oman 1777           0
## 6166                          Pakistan 1777           0
## 6167                             Palau 1777           0
## 6168                         Palestine 1777           0
## 6169                            Panama 1777           0
## 6170                  Papua New Guinea 1777           0
## 6171                          Paraguay 1777           0
## 6172                              Peru 1777           0
## 6173                       Philippines 1777           0
## 6174                            Poland 1777           0
## 6175                          Portugal 1777           0
## 6176                             Qatar 1777           0
## 6177                           Reunion 1777           0
## 6178                           Romania 1777           0
## 6179                            Russia 1777           0
## 6180                            Rwanda 1777           0
## 6181                      Saint Helena 1777           0
## 6182             Saint Kitts and Nevis 1777           0
## 6183                       Saint Lucia 1777           0
## 6184         Saint Pierre and Miquelon 1777           0
## 6185  Saint Vincent and the Grenadines 1777           0
## 6186                             Samoa 1777           0
## 6187             Sao Tome and Principe 1777           0
## 6188                      Saudi Arabia 1777           0
## 6189                           Senegal 1777           0
## 6190                            Serbia 1777           0
## 6191                        Seychelles 1777           0
## 6192                      Sierra Leone 1777           0
## 6193                         Singapore 1777           0
## 6194         Sint Maarten (Dutch part) 1777           0
## 6195                          Slovakia 1777           0
## 6196                          Slovenia 1777           0
## 6197                   Solomon Islands 1777           0
## 6198                           Somalia 1777           0
## 6199                      South Africa 1777           0
## 6200                       South Korea 1777           0
## 6201                       South Sudan 1777           0
## 6202                             Spain 1777           0
## 6203                         Sri Lanka 1777           0
## 6204                             Sudan 1777           0
## 6205                          Suriname 1777           0
## 6206                         Swaziland 1777           0
## 6207                            Sweden 1777           0
## 6208                       Switzerland 1777           0
## 6209                             Syria 1777           0
## 6210                            Taiwan 1777           0
## 6211                        Tajikistan 1777           0
## 6212                          Tanzania 1777           0
## 6213                          Thailand 1777           0
## 6214                             Timor 1777           0
## 6215                              Togo 1777           0
## 6216                             Tonga 1777           0
## 6217               Trinidad and Tobago 1777           0
## 6218                           Tunisia 1777           0
## 6219                            Turkey 1777           0
## 6220                      Turkmenistan 1777           0
## 6221          Turks and Caicos Islands 1777           0
## 6222                            Tuvalu 1777           0
## 6223                            Uganda 1777           0
## 6224                           Ukraine 1777           0
## 6225              United Arab Emirates 1777           0
## 6226                    United Kingdom 1777   311256800
## 6227                     United States 1777           0
## 6228                           Uruguay 1777           0
## 6229                        Uzbekistan 1777           0
## 6230                           Vanuatu 1777           0
## 6231                         Venezuela 1777           0
## 6232                           Vietnam 1777           0
## 6233         Wallis and Futuna Islands 1777           0
## 6234                             World 1777   311256800
## 6235                             Yemen 1777           0
## 6236                            Zambia 1777           0
## 6237                          Zimbabwe 1777           0
## 6238                       Afghanistan 1778           0
## 6239                            Africa 1778           0
## 6240                           Albania 1778           0
## 6241                           Algeria 1778           0
## 6242                  Americas (other) 1778           0
## 6243                           Andorra 1778           0
## 6244                            Angola 1778           0
## 6245                          Anguilla 1778           0
## 6246               Antarctic Fisheries 1778           0
## 6247               Antigua and Barbuda 1778           0
## 6248                         Argentina 1778           0
## 6249                           Armenia 1778           0
## 6250                             Aruba 1778           0
## 6251          Asia and Pacific (other) 1778           0
## 6252                         Australia 1778           0
## 6253                           Austria 1778           0
## 6254                        Azerbaijan 1778           0
## 6255                           Bahamas 1778           0
## 6256                           Bahrain 1778           0
## 6257                        Bangladesh 1778           0
## 6258                          Barbados 1778           0
## 6259                           Belarus 1778           0
## 6260                           Belgium 1778           0
## 6261                            Belize 1778           0
## 6262                             Benin 1778           0
## 6263                           Bermuda 1778           0
## 6264                            Bhutan 1778           0
## 6265                           Bolivia 1778           0
## 6266   Bonaire Sint Eustatius and Saba 1778           0
## 6267            Bosnia and Herzegovina 1778           0
## 6268                          Botswana 1778           0
## 6269                            Brazil 1778           0
## 6270            British Virgin Islands 1778           0
## 6271                            Brunei 1778           0
## 6272                          Bulgaria 1778           0
## 6273                      Burkina Faso 1778           0
## 6274                           Burundi 1778           0
## 6275                          Cambodia 1778           0
## 6276                          Cameroon 1778           0
## 6277                            Canada 1778           0
## 6278                        Cape Verde 1778           0
## 6279                    Cayman Islands 1778           0
## 6280          Central African Republic 1778           0
## 6281                              Chad 1778           0
## 6282                             Chile 1778           0
## 6283                             China 1778           0
## 6284                  Christmas Island 1778           0
## 6285                          Colombia 1778           0
## 6286                           Comoros 1778           0
## 6287                             Congo 1778           0
## 6288                      Cook Islands 1778           0
## 6289                        Costa Rica 1778           0
## 6290                     Cote d'Ivoire 1778           0
## 6291                           Croatia 1778           0
## 6292                              Cuba 1778           0
## 6293                           Curacao 1778           0
## 6294                            Cyprus 1778           0
## 6295                    Czech Republic 1778           0
## 6296                    Czechoslovakia 1778           0
## 6297      Democratic Republic of Congo 1778           0
## 6298                           Denmark 1778           0
## 6299                          Djibouti 1778           0
## 6300                          Dominica 1778           0
## 6301                Dominican Republic 1778           0
## 6302                             EU-28 1778   326301184
## 6303                           Ecuador 1778           0
## 6304                             Egypt 1778           0
## 6305                       El Salvador 1778           0
## 6306                 Equatorial Guinea 1778           0
## 6307                           Eritrea 1778           0
## 6308                           Estonia 1778           0
## 6309                          Ethiopia 1778           0
## 6310                    Europe (other) 1778           0
## 6311                    Faeroe Islands 1778           0
## 6312                  Falkland Islands 1778           0
## 6313                              Fiji 1778           0
## 6314                           Finland 1778           0
## 6315                            France 1778           0
## 6316                     French Guiana 1778           0
## 6317                  French Polynesia 1778           0
## 6318                             Gabon 1778           0
## 6319                            Gambia 1778           0
## 6320                           Georgia 1778           0
## 6321                           Germany 1778           0
## 6322                             Ghana 1778           0
## 6323                         Gibraltar 1778           0
## 6324                            Greece 1778           0
## 6325                         Greenland 1778           0
## 6326                           Grenada 1778           0
## 6327                        Guadeloupe 1778           0
## 6328                         Guatemala 1778           0
## 6329                            Guinea 1778           0
## 6330                     Guinea-Bissau 1778           0
## 6331                            Guyana 1778           0
## 6332                             Haiti 1778           0
## 6333                          Honduras 1778           0
## 6334                         Hong Kong 1778           0
## 6335                           Hungary 1778           0
## 6336                           Iceland 1778           0
## 6337                             India 1778           0
## 6338                         Indonesia 1778           0
## 6339                              Iran 1778           0
## 6340                              Iraq 1778           0
## 6341                           Ireland 1778           0
## 6342                            Israel 1778           0
## 6343                             Italy 1778           0
## 6344                           Jamaica 1778           0
## 6345                             Japan 1778           0
## 6346                            Jordan 1778           0
## 6347                        Kazakhstan 1778           0
## 6348                             Kenya 1778           0
## 6349                          Kiribati 1778           0
## 6350                            Kuwait 1778           0
## 6351                        Kyrgysztan 1778           0
## 6352                        Kyrgyzstan 1778           0
## 6353                              Laos 1778           0
## 6354                            Latvia 1778           0
## 6355                           Lebanon 1778           0
## 6356                           Lesotho 1778           0
## 6357                           Liberia 1778           0
## 6358                             Libya 1778           0
## 6359                     Liechtenstein 1778           0
## 6360                         Lithuania 1778           0
## 6361                        Luxembourg 1778           0
## 6362                             Macao 1778           0
## 6363                         Macedonia 1778           0
## 6364                        Madagascar 1778           0
## 6365                            Malawi 1778           0
## 6366                          Malaysia 1778           0
## 6367                          Maldives 1778           0
## 6368                              Mali 1778           0
## 6369                             Malta 1778           0
## 6370                  Marshall Islands 1778           0
## 6371                        Martinique 1778           0
## 6372                        Mauritania 1778           0
## 6373                         Mauritius 1778           0
## 6374                            Mexico 1778           0
## 6375              Micronesia (country) 1778           0
## 6376                       Middle East 1778           0
## 6377                           Moldova 1778           0
## 6378                          Mongolia 1778           0
## 6379                        Montenegro 1778           0
## 6380                        Montserrat 1778           0
## 6381                           Morocco 1778           0
## 6382                        Mozambique 1778           0
## 6383                           Myanmar 1778           0
## 6384                           Namibia 1778           0
## 6385                             Nauru 1778           0
## 6386                             Nepal 1778           0
## 6387                       Netherlands 1778           0
## 6388                     New Caledonia 1778           0
## 6389                       New Zealand 1778           0
## 6390                         Nicaragua 1778           0
## 6391                             Niger 1778           0
## 6392                           Nigeria 1778           0
## 6393                              Niue 1778           0
## 6394                       North Korea 1778           0
## 6395                            Norway 1778           0
## 6396                              Oman 1778           0
## 6397                          Pakistan 1778           0
## 6398                             Palau 1778           0
## 6399                         Palestine 1778           0
## 6400                            Panama 1778           0
## 6401                  Papua New Guinea 1778           0
## 6402                          Paraguay 1778           0
## 6403                              Peru 1778           0
## 6404                       Philippines 1778           0
## 6405                            Poland 1778           0
## 6406                          Portugal 1778           0
## 6407                             Qatar 1778           0
## 6408                           Reunion 1778           0
## 6409                           Romania 1778           0
## 6410                            Russia 1778           0
## 6411                            Rwanda 1778           0
## 6412                      Saint Helena 1778           0
## 6413             Saint Kitts and Nevis 1778           0
## 6414                       Saint Lucia 1778           0
## 6415         Saint Pierre and Miquelon 1778           0
## 6416  Saint Vincent and the Grenadines 1778           0
## 6417                             Samoa 1778           0
## 6418             Sao Tome and Principe 1778           0
## 6419                      Saudi Arabia 1778           0
## 6420                           Senegal 1778           0
## 6421                            Serbia 1778           0
## 6422                        Seychelles 1778           0
## 6423                      Sierra Leone 1778           0
## 6424                         Singapore 1778           0
## 6425         Sint Maarten (Dutch part) 1778           0
## 6426                          Slovakia 1778           0
## 6427                          Slovenia 1778           0
## 6428                   Solomon Islands 1778           0
## 6429                           Somalia 1778           0
## 6430                      South Africa 1778           0
## 6431                       South Korea 1778           0
## 6432                       South Sudan 1778           0
## 6433                             Spain 1778           0
## 6434                         Sri Lanka 1778           0
## 6435                             Sudan 1778           0
## 6436                          Suriname 1778           0
## 6437                         Swaziland 1778           0
## 6438                            Sweden 1778           0
## 6439                       Switzerland 1778           0
## 6440                             Syria 1778           0
## 6441                            Taiwan 1778           0
## 6442                        Tajikistan 1778           0
## 6443                          Tanzania 1778           0
## 6444                          Thailand 1778           0
## 6445                             Timor 1778           0
## 6446                              Togo 1778           0
## 6447                             Tonga 1778           0
## 6448               Trinidad and Tobago 1778           0
## 6449                           Tunisia 1778           0
## 6450                            Turkey 1778           0
## 6451                      Turkmenistan 1778           0
## 6452          Turks and Caicos Islands 1778           0
## 6453                            Tuvalu 1778           0
## 6454                            Uganda 1778           0
## 6455                           Ukraine 1778           0
## 6456              United Arab Emirates 1778           0
## 6457                    United Kingdom 1778   326301184
## 6458                     United States 1778           0
## 6459                           Uruguay 1778           0
## 6460                        Uzbekistan 1778           0
## 6461                           Vanuatu 1778           0
## 6462                         Venezuela 1778           0
## 6463                           Vietnam 1778           0
## 6464         Wallis and Futuna Islands 1778           0
## 6465                             World 1778   326301184
## 6466                             Yemen 1778           0
## 6467                            Zambia 1778           0
## 6468                          Zimbabwe 1778           0
## 6469                       Afghanistan 1779           0
## 6470                            Africa 1779           0
## 6471                           Albania 1779           0
## 6472                           Algeria 1779           0
## 6473                  Americas (other) 1779           0
## 6474                           Andorra 1779           0
## 6475                            Angola 1779           0
## 6476                          Anguilla 1779           0
## 6477               Antarctic Fisheries 1779           0
## 6478               Antigua and Barbuda 1779           0
## 6479                         Argentina 1779           0
## 6480                           Armenia 1779           0
## 6481                             Aruba 1779           0
## 6482          Asia and Pacific (other) 1779           0
## 6483                         Australia 1779           0
## 6484                           Austria 1779           0
## 6485                        Azerbaijan 1779           0
## 6486                           Bahamas 1779           0
## 6487                           Bahrain 1779           0
## 6488                        Bangladesh 1779           0
## 6489                          Barbados 1779           0
## 6490                           Belarus 1779           0
## 6491                           Belgium 1779           0
## 6492                            Belize 1779           0
## 6493                             Benin 1779           0
## 6494                           Bermuda 1779           0
## 6495                            Bhutan 1779           0
## 6496                           Bolivia 1779           0
## 6497   Bonaire Sint Eustatius and Saba 1779           0
## 6498            Bosnia and Herzegovina 1779           0
## 6499                          Botswana 1779           0
## 6500                            Brazil 1779           0
## 6501            British Virgin Islands 1779           0
## 6502                            Brunei 1779           0
## 6503                          Bulgaria 1779           0
## 6504                      Burkina Faso 1779           0
## 6505                           Burundi 1779           0
## 6506                          Cambodia 1779           0
## 6507                          Cameroon 1779           0
## 6508                            Canada 1779           0
## 6509                        Cape Verde 1779           0
## 6510                    Cayman Islands 1779           0
## 6511          Central African Republic 1779           0
## 6512                              Chad 1779           0
## 6513                             Chile 1779           0
## 6514                             China 1779           0
## 6515                  Christmas Island 1779           0
## 6516                          Colombia 1779           0
## 6517                           Comoros 1779           0
## 6518                             Congo 1779           0
## 6519                      Cook Islands 1779           0
## 6520                        Costa Rica 1779           0
## 6521                     Cote d'Ivoire 1779           0
## 6522                           Croatia 1779           0
## 6523                              Cuba 1779           0
## 6524                           Curacao 1779           0
## 6525                            Cyprus 1779           0
## 6526                    Czech Republic 1779           0
## 6527                    Czechoslovakia 1779           0
## 6528      Democratic Republic of Congo 1779           0
## 6529                           Denmark 1779           0
## 6530                          Djibouti 1779           0
## 6531                          Dominica 1779           0
## 6532                Dominican Republic 1779           0
## 6533                             EU-28 1779   341349232
## 6534                           Ecuador 1779           0
## 6535                             Egypt 1779           0
## 6536                       El Salvador 1779           0
## 6537                 Equatorial Guinea 1779           0
## 6538                           Eritrea 1779           0
## 6539                           Estonia 1779           0
## 6540                          Ethiopia 1779           0
## 6541                    Europe (other) 1779           0
## 6542                    Faeroe Islands 1779           0
## 6543                  Falkland Islands 1779           0
## 6544                              Fiji 1779           0
## 6545                           Finland 1779           0
## 6546                            France 1779           0
## 6547                     French Guiana 1779           0
## 6548                  French Polynesia 1779           0
## 6549                             Gabon 1779           0
## 6550                            Gambia 1779           0
## 6551                           Georgia 1779           0
## 6552                           Germany 1779           0
## 6553                             Ghana 1779           0
## 6554                         Gibraltar 1779           0
## 6555                            Greece 1779           0
## 6556                         Greenland 1779           0
## 6557                           Grenada 1779           0
## 6558                        Guadeloupe 1779           0
## 6559                         Guatemala 1779           0
## 6560                            Guinea 1779           0
## 6561                     Guinea-Bissau 1779           0
## 6562                            Guyana 1779           0
## 6563                             Haiti 1779           0
## 6564                          Honduras 1779           0
## 6565                         Hong Kong 1779           0
## 6566                           Hungary 1779           0
## 6567                           Iceland 1779           0
## 6568                             India 1779           0
## 6569                         Indonesia 1779           0
## 6570                              Iran 1779           0
## 6571                              Iraq 1779           0
## 6572                           Ireland 1779           0
## 6573                            Israel 1779           0
## 6574                             Italy 1779           0
## 6575                           Jamaica 1779           0
## 6576                             Japan 1779           0
## 6577                            Jordan 1779           0
## 6578                        Kazakhstan 1779           0
## 6579                             Kenya 1779           0
## 6580                          Kiribati 1779           0
## 6581                            Kuwait 1779           0
## 6582                        Kyrgysztan 1779           0
## 6583                        Kyrgyzstan 1779           0
## 6584                              Laos 1779           0
## 6585                            Latvia 1779           0
## 6586                           Lebanon 1779           0
## 6587                           Lesotho 1779           0
## 6588                           Liberia 1779           0
## 6589                             Libya 1779           0
## 6590                     Liechtenstein 1779           0
## 6591                         Lithuania 1779           0
## 6592                        Luxembourg 1779           0
## 6593                             Macao 1779           0
## 6594                         Macedonia 1779           0
## 6595                        Madagascar 1779           0
## 6596                            Malawi 1779           0
## 6597                          Malaysia 1779           0
## 6598                          Maldives 1779           0
## 6599                              Mali 1779           0
## 6600                             Malta 1779           0
## 6601                  Marshall Islands 1779           0
## 6602                        Martinique 1779           0
## 6603                        Mauritania 1779           0
## 6604                         Mauritius 1779           0
## 6605                            Mexico 1779           0
## 6606              Micronesia (country) 1779           0
## 6607                       Middle East 1779           0
## 6608                           Moldova 1779           0
## 6609                          Mongolia 1779           0
## 6610                        Montenegro 1779           0
## 6611                        Montserrat 1779           0
## 6612                           Morocco 1779           0
## 6613                        Mozambique 1779           0
## 6614                           Myanmar 1779           0
## 6615                           Namibia 1779           0
## 6616                             Nauru 1779           0
## 6617                             Nepal 1779           0
## 6618                       Netherlands 1779           0
## 6619                     New Caledonia 1779           0
## 6620                       New Zealand 1779           0
## 6621                         Nicaragua 1779           0
## 6622                             Niger 1779           0
## 6623                           Nigeria 1779           0
## 6624                              Niue 1779           0
## 6625                       North Korea 1779           0
## 6626                            Norway 1779           0
## 6627                              Oman 1779           0
## 6628                          Pakistan 1779           0
## 6629                             Palau 1779           0
## 6630                         Palestine 1779           0
## 6631                            Panama 1779           0
## 6632                  Papua New Guinea 1779           0
## 6633                          Paraguay 1779           0
## 6634                              Peru 1779           0
## 6635                       Philippines 1779           0
## 6636                            Poland 1779           0
## 6637                          Portugal 1779           0
## 6638                             Qatar 1779           0
## 6639                           Reunion 1779           0
## 6640                           Romania 1779           0
## 6641                            Russia 1779           0
## 6642                            Rwanda 1779           0
## 6643                      Saint Helena 1779           0
## 6644             Saint Kitts and Nevis 1779           0
## 6645                       Saint Lucia 1779           0
## 6646         Saint Pierre and Miquelon 1779           0
## 6647  Saint Vincent and the Grenadines 1779           0
## 6648                             Samoa 1779           0
## 6649             Sao Tome and Principe 1779           0
## 6650                      Saudi Arabia 1779           0
## 6651                           Senegal 1779           0
## 6652                            Serbia 1779           0
## 6653                        Seychelles 1779           0
## 6654                      Sierra Leone 1779           0
## 6655                         Singapore 1779           0
## 6656         Sint Maarten (Dutch part) 1779           0
## 6657                          Slovakia 1779           0
## 6658                          Slovenia 1779           0
## 6659                   Solomon Islands 1779           0
## 6660                           Somalia 1779           0
## 6661                      South Africa 1779           0
## 6662                       South Korea 1779           0
## 6663                       South Sudan 1779           0
## 6664                             Spain 1779           0
## 6665                         Sri Lanka 1779           0
## 6666                             Sudan 1779           0
## 6667                          Suriname 1779           0
## 6668                         Swaziland 1779           0
## 6669                            Sweden 1779           0
## 6670                       Switzerland 1779           0
## 6671                             Syria 1779           0
## 6672                            Taiwan 1779           0
## 6673                        Tajikistan 1779           0
## 6674                          Tanzania 1779           0
## 6675                          Thailand 1779           0
## 6676                             Timor 1779           0
## 6677                              Togo 1779           0
## 6678                             Tonga 1779           0
## 6679               Trinidad and Tobago 1779           0
## 6680                           Tunisia 1779           0
## 6681                            Turkey 1779           0
## 6682                      Turkmenistan 1779           0
## 6683          Turks and Caicos Islands 1779           0
## 6684                            Tuvalu 1779           0
## 6685                            Uganda 1779           0
## 6686                           Ukraine 1779           0
## 6687              United Arab Emirates 1779           0
## 6688                    United Kingdom 1779   341349232
## 6689                     United States 1779           0
## 6690                           Uruguay 1779           0
## 6691                        Uzbekistan 1779           0
## 6692                           Vanuatu 1779           0
## 6693                         Venezuela 1779           0
## 6694                           Vietnam 1779           0
## 6695         Wallis and Futuna Islands 1779           0
## 6696                             World 1779   341349232
## 6697                             Yemen 1779           0
## 6698                            Zambia 1779           0
## 6699                          Zimbabwe 1779           0
## 6700                       Afghanistan 1780           0
## 6701                            Africa 1780           0
## 6702                           Albania 1780           0
## 6703                           Algeria 1780           0
## 6704                  Americas (other) 1780           0
## 6705                           Andorra 1780           0
## 6706                            Angola 1780           0
## 6707                          Anguilla 1780           0
## 6708               Antarctic Fisheries 1780           0
## 6709               Antigua and Barbuda 1780           0
## 6710                         Argentina 1780           0
## 6711                           Armenia 1780           0
## 6712                             Aruba 1780           0
## 6713          Asia and Pacific (other) 1780           0
## 6714                         Australia 1780           0
## 6715                           Austria 1780           0
## 6716                        Azerbaijan 1780           0
## 6717                           Bahamas 1780           0
## 6718                           Bahrain 1780           0
## 6719                        Bangladesh 1780           0
## 6720                          Barbados 1780           0
## 6721                           Belarus 1780           0
## 6722                           Belgium 1780           0
## 6723                            Belize 1780           0
## 6724                             Benin 1780           0
## 6725                           Bermuda 1780           0
## 6726                            Bhutan 1780           0
## 6727                           Bolivia 1780           0
## 6728   Bonaire Sint Eustatius and Saba 1780           0
## 6729            Bosnia and Herzegovina 1780           0
## 6730                          Botswana 1780           0
## 6731                            Brazil 1780           0
## 6732            British Virgin Islands 1780           0
## 6733                            Brunei 1780           0
## 6734                          Bulgaria 1780           0
## 6735                      Burkina Faso 1780           0
## 6736                           Burundi 1780           0
## 6737                          Cambodia 1780           0
## 6738                          Cameroon 1780           0
## 6739                            Canada 1780           0
## 6740                        Cape Verde 1780           0
## 6741                    Cayman Islands 1780           0
## 6742          Central African Republic 1780           0
## 6743                              Chad 1780           0
## 6744                             Chile 1780           0
## 6745                             China 1780           0
## 6746                  Christmas Island 1780           0
## 6747                          Colombia 1780           0
## 6748                           Comoros 1780           0
## 6749                             Congo 1780           0
## 6750                      Cook Islands 1780           0
## 6751                        Costa Rica 1780           0
## 6752                     Cote d'Ivoire 1780           0
## 6753                           Croatia 1780           0
## 6754                              Cuba 1780           0
## 6755                           Curacao 1780           0
## 6756                            Cyprus 1780           0
## 6757                    Czech Republic 1780           0
## 6758                    Czechoslovakia 1780           0
## 6759      Democratic Republic of Congo 1780           0
## 6760                           Denmark 1780           0
## 6761                          Djibouti 1780           0
## 6762                          Dominica 1780           0
## 6763                Dominican Republic 1780           0
## 6764                             EU-28 1780   356404608
## 6765                           Ecuador 1780           0
## 6766                             Egypt 1780           0
## 6767                       El Salvador 1780           0
## 6768                 Equatorial Guinea 1780           0
## 6769                           Eritrea 1780           0
## 6770                           Estonia 1780           0
## 6771                          Ethiopia 1780           0
## 6772                    Europe (other) 1780           0
## 6773                    Faeroe Islands 1780           0
## 6774                  Falkland Islands 1780           0
## 6775                              Fiji 1780           0
## 6776                           Finland 1780           0
## 6777                            France 1780           0
## 6778                     French Guiana 1780           0
## 6779                  French Polynesia 1780           0
## 6780                             Gabon 1780           0
## 6781                            Gambia 1780           0
## 6782                           Georgia 1780           0
## 6783                           Germany 1780           0
## 6784                             Ghana 1780           0
## 6785                         Gibraltar 1780           0
## 6786                            Greece 1780           0
## 6787                         Greenland 1780           0
## 6788                           Grenada 1780           0
## 6789                        Guadeloupe 1780           0
## 6790                         Guatemala 1780           0
## 6791                            Guinea 1780           0
## 6792                     Guinea-Bissau 1780           0
## 6793                            Guyana 1780           0
## 6794                             Haiti 1780           0
## 6795                          Honduras 1780           0
## 6796                         Hong Kong 1780           0
## 6797                           Hungary 1780           0
## 6798                           Iceland 1780           0
## 6799                             India 1780           0
## 6800                         Indonesia 1780           0
## 6801                              Iran 1780           0
## 6802                              Iraq 1780           0
## 6803                           Ireland 1780           0
## 6804                            Israel 1780           0
## 6805                             Italy 1780           0
## 6806                           Jamaica 1780           0
## 6807                             Japan 1780           0
## 6808                            Jordan 1780           0
## 6809                        Kazakhstan 1780           0
## 6810                             Kenya 1780           0
## 6811                          Kiribati 1780           0
## 6812                            Kuwait 1780           0
## 6813                        Kyrgysztan 1780           0
## 6814                        Kyrgyzstan 1780           0
## 6815                              Laos 1780           0
## 6816                            Latvia 1780           0
## 6817                           Lebanon 1780           0
## 6818                           Lesotho 1780           0
## 6819                           Liberia 1780           0
## 6820                             Libya 1780           0
## 6821                     Liechtenstein 1780           0
## 6822                         Lithuania 1780           0
## 6823                        Luxembourg 1780           0
## 6824                             Macao 1780           0
## 6825                         Macedonia 1780           0
## 6826                        Madagascar 1780           0
## 6827                            Malawi 1780           0
## 6828                          Malaysia 1780           0
## 6829                          Maldives 1780           0
## 6830                              Mali 1780           0
## 6831                             Malta 1780           0
## 6832                  Marshall Islands 1780           0
## 6833                        Martinique 1780           0
## 6834                        Mauritania 1780           0
## 6835                         Mauritius 1780           0
## 6836                            Mexico 1780           0
## 6837              Micronesia (country) 1780           0
## 6838                       Middle East 1780           0
## 6839                           Moldova 1780           0
## 6840                          Mongolia 1780           0
## 6841                        Montenegro 1780           0
## 6842                        Montserrat 1780           0
## 6843                           Morocco 1780           0
## 6844                        Mozambique 1780           0
## 6845                           Myanmar 1780           0
## 6846                           Namibia 1780           0
## 6847                             Nauru 1780           0
## 6848                             Nepal 1780           0
## 6849                       Netherlands 1780           0
## 6850                     New Caledonia 1780           0
## 6851                       New Zealand 1780           0
## 6852                         Nicaragua 1780           0
## 6853                             Niger 1780           0
## 6854                           Nigeria 1780           0
## 6855                              Niue 1780           0
## 6856                       North Korea 1780           0
## 6857                            Norway 1780           0
## 6858                              Oman 1780           0
## 6859                          Pakistan 1780           0
## 6860                             Palau 1780           0
## 6861                         Palestine 1780           0
## 6862                            Panama 1780           0
## 6863                  Papua New Guinea 1780           0
## 6864                          Paraguay 1780           0
## 6865                              Peru 1780           0
## 6866                       Philippines 1780           0
## 6867                            Poland 1780           0
## 6868                          Portugal 1780           0
## 6869                             Qatar 1780           0
## 6870                           Reunion 1780           0
## 6871                           Romania 1780           0
## 6872                            Russia 1780           0
## 6873                            Rwanda 1780           0
## 6874                      Saint Helena 1780           0
## 6875             Saint Kitts and Nevis 1780           0
## 6876                       Saint Lucia 1780           0
## 6877         Saint Pierre and Miquelon 1780           0
## 6878  Saint Vincent and the Grenadines 1780           0
## 6879                             Samoa 1780           0
## 6880             Sao Tome and Principe 1780           0
## 6881                      Saudi Arabia 1780           0
## 6882                           Senegal 1780           0
## 6883                            Serbia 1780           0
## 6884                        Seychelles 1780           0
## 6885                      Sierra Leone 1780           0
## 6886                         Singapore 1780           0
## 6887         Sint Maarten (Dutch part) 1780           0
## 6888                          Slovakia 1780           0
## 6889                          Slovenia 1780           0
## 6890                   Solomon Islands 1780           0
## 6891                           Somalia 1780           0
## 6892                      South Africa 1780           0
## 6893                       South Korea 1780           0
## 6894                       South Sudan 1780           0
## 6895                             Spain 1780           0
## 6896                         Sri Lanka 1780           0
## 6897                             Sudan 1780           0
## 6898                          Suriname 1780           0
## 6899                         Swaziland 1780           0
## 6900                            Sweden 1780           0
## 6901                       Switzerland 1780           0
## 6902                             Syria 1780           0
## 6903                            Taiwan 1780           0
## 6904                        Tajikistan 1780           0
## 6905                          Tanzania 1780           0
## 6906                          Thailand 1780           0
## 6907                             Timor 1780           0
## 6908                              Togo 1780           0
## 6909                             Tonga 1780           0
## 6910               Trinidad and Tobago 1780           0
## 6911                           Tunisia 1780           0
## 6912                            Turkey 1780           0
## 6913                      Turkmenistan 1780           0
## 6914          Turks and Caicos Islands 1780           0
## 6915                            Tuvalu 1780           0
## 6916                            Uganda 1780           0
## 6917                           Ukraine 1780           0
## 6918              United Arab Emirates 1780           0
## 6919                    United Kingdom 1780   356404608
## 6920                     United States 1780           0
## 6921                           Uruguay 1780           0
## 6922                        Uzbekistan 1780           0
## 6923                           Vanuatu 1780           0
## 6924                         Venezuela 1780           0
## 6925                           Vietnam 1780           0
## 6926         Wallis and Futuna Islands 1780           0
## 6927                             World 1780   356404608
## 6928                             Yemen 1780           0
## 6929                            Zambia 1780           0
## 6930                          Zimbabwe 1780           0
## 6931                       Afghanistan 1781           0
## 6932                            Africa 1781           0
## 6933                           Albania 1781           0
## 6934                           Algeria 1781           0
## 6935                  Americas (other) 1781           0
## 6936                           Andorra 1781           0
## 6937                            Angola 1781           0
## 6938                          Anguilla 1781           0
## 6939               Antarctic Fisheries 1781           0
## 6940               Antigua and Barbuda 1781           0
## 6941                         Argentina 1781           0
## 6942                           Armenia 1781           0
## 6943                             Aruba 1781           0
## 6944          Asia and Pacific (other) 1781           0
## 6945                         Australia 1781           0
## 6946                           Austria 1781           0
## 6947                        Azerbaijan 1781           0
## 6948                           Bahamas 1781           0
## 6949                           Bahrain 1781           0
## 6950                        Bangladesh 1781           0
## 6951                          Barbados 1781           0
## 6952                           Belarus 1781           0
## 6953                           Belgium 1781           0
## 6954                            Belize 1781           0
## 6955                             Benin 1781           0
## 6956                           Bermuda 1781           0
## 6957                            Bhutan 1781           0
## 6958                           Bolivia 1781           0
## 6959   Bonaire Sint Eustatius and Saba 1781           0
## 6960            Bosnia and Herzegovina 1781           0
## 6961                          Botswana 1781           0
## 6962                            Brazil 1781           0
## 6963            British Virgin Islands 1781           0
## 6964                            Brunei 1781           0
## 6965                          Bulgaria 1781           0
## 6966                      Burkina Faso 1781           0
## 6967                           Burundi 1781           0
## 6968                          Cambodia 1781           0
## 6969                          Cameroon 1781           0
## 6970                            Canada 1781           0
## 6971                        Cape Verde 1781           0
## 6972                    Cayman Islands 1781           0
## 6973          Central African Republic 1781           0
## 6974                              Chad 1781           0
## 6975                             Chile 1781           0
## 6976                             China 1781           0
## 6977                  Christmas Island 1781           0
## 6978                          Colombia 1781           0
## 6979                           Comoros 1781           0
## 6980                             Congo 1781           0
## 6981                      Cook Islands 1781           0
## 6982                        Costa Rica 1781           0
## 6983                     Cote d'Ivoire 1781           0
## 6984                           Croatia 1781           0
## 6985                              Cuba 1781           0
## 6986                           Curacao 1781           0
## 6987                            Cyprus 1781           0
## 6988                    Czech Republic 1781           0
## 6989                    Czechoslovakia 1781           0
## 6990      Democratic Republic of Congo 1781           0
## 6991                           Denmark 1781           0
## 6992                          Djibouti 1781           0
## 6993                          Dominica 1781           0
## 6994                Dominican Republic 1781           0
## 6995                             EU-28 1781   373248016
## 6996                           Ecuador 1781           0
## 6997                             Egypt 1781           0
## 6998                       El Salvador 1781           0
## 6999                 Equatorial Guinea 1781           0
## 7000                           Eritrea 1781           0
## 7001                           Estonia 1781           0
## 7002                          Ethiopia 1781           0
## 7003                    Europe (other) 1781           0
## 7004                    Faeroe Islands 1781           0
## 7005                  Falkland Islands 1781           0
## 7006                              Fiji 1781           0
## 7007                           Finland 1781           0
## 7008                            France 1781           0
## 7009                     French Guiana 1781           0
## 7010                  French Polynesia 1781           0
## 7011                             Gabon 1781           0
## 7012                            Gambia 1781           0
## 7013                           Georgia 1781           0
## 7014                           Germany 1781           0
## 7015                             Ghana 1781           0
## 7016                         Gibraltar 1781           0
## 7017                            Greece 1781           0
## 7018                         Greenland 1781           0
## 7019                           Grenada 1781           0
## 7020                        Guadeloupe 1781           0
## 7021                         Guatemala 1781           0
## 7022                            Guinea 1781           0
## 7023                     Guinea-Bissau 1781           0
## 7024                            Guyana 1781           0
## 7025                             Haiti 1781           0
## 7026                          Honduras 1781           0
## 7027                         Hong Kong 1781           0
## 7028                           Hungary 1781           0
## 7029                           Iceland 1781           0
## 7030                             India 1781           0
## 7031                         Indonesia 1781           0
## 7032                              Iran 1781           0
## 7033                              Iraq 1781           0
## 7034                           Ireland 1781           0
## 7035                            Israel 1781           0
## 7036                             Italy 1781           0
## 7037                           Jamaica 1781           0
## 7038                             Japan 1781           0
## 7039                            Jordan 1781           0
## 7040                        Kazakhstan 1781           0
## 7041                             Kenya 1781           0
## 7042                          Kiribati 1781           0
## 7043                            Kuwait 1781           0
## 7044                        Kyrgysztan 1781           0
## 7045                        Kyrgyzstan 1781           0
## 7046                              Laos 1781           0
## 7047                            Latvia 1781           0
## 7048                           Lebanon 1781           0
## 7049                           Lesotho 1781           0
## 7050                           Liberia 1781           0
## 7051                             Libya 1781           0
## 7052                     Liechtenstein 1781           0
## 7053                         Lithuania 1781           0
## 7054                        Luxembourg 1781           0
## 7055                             Macao 1781           0
## 7056                         Macedonia 1781           0
## 7057                        Madagascar 1781           0
## 7058                            Malawi 1781           0
## 7059                          Malaysia 1781           0
## 7060                          Maldives 1781           0
## 7061                              Mali 1781           0
## 7062                             Malta 1781           0
## 7063                  Marshall Islands 1781           0
## 7064                        Martinique 1781           0
## 7065                        Mauritania 1781           0
## 7066                         Mauritius 1781           0
## 7067                            Mexico 1781           0
## 7068              Micronesia (country) 1781           0
## 7069                       Middle East 1781           0
## 7070                           Moldova 1781           0
## 7071                          Mongolia 1781           0
## 7072                        Montenegro 1781           0
## 7073                        Montserrat 1781           0
## 7074                           Morocco 1781           0
## 7075                        Mozambique 1781           0
## 7076                           Myanmar 1781           0
## 7077                           Namibia 1781           0
## 7078                             Nauru 1781           0
## 7079                             Nepal 1781           0
## 7080                       Netherlands 1781           0
## 7081                     New Caledonia 1781           0
## 7082                       New Zealand 1781           0
## 7083                         Nicaragua 1781           0
## 7084                             Niger 1781           0
## 7085                           Nigeria 1781           0
## 7086                              Niue 1781           0
## 7087                       North Korea 1781           0
## 7088                            Norway 1781           0
## 7089                              Oman 1781           0
## 7090                          Pakistan 1781           0
## 7091                             Palau 1781           0
## 7092                         Palestine 1781           0
## 7093                            Panama 1781           0
## 7094                  Papua New Guinea 1781           0
## 7095                          Paraguay 1781           0
## 7096                              Peru 1781           0
## 7097                       Philippines 1781           0
## 7098                            Poland 1781           0
## 7099                          Portugal 1781           0
## 7100                             Qatar 1781           0
## 7101                           Reunion 1781           0
## 7102                           Romania 1781           0
## 7103                            Russia 1781           0
## 7104                            Rwanda 1781           0
## 7105                      Saint Helena 1781           0
## 7106             Saint Kitts and Nevis 1781           0
## 7107                       Saint Lucia 1781           0
## 7108         Saint Pierre and Miquelon 1781           0
## 7109  Saint Vincent and the Grenadines 1781           0
## 7110                             Samoa 1781           0
## 7111             Sao Tome and Principe 1781           0
## 7112                      Saudi Arabia 1781           0
## 7113                           Senegal 1781           0
## 7114                            Serbia 1781           0
## 7115                        Seychelles 1781           0
## 7116                      Sierra Leone 1781           0
## 7117                         Singapore 1781           0
## 7118         Sint Maarten (Dutch part) 1781           0
## 7119                          Slovakia 1781           0
## 7120                          Slovenia 1781           0
## 7121                   Solomon Islands 1781           0
## 7122                           Somalia 1781           0
## 7123                      South Africa 1781           0
## 7124                       South Korea 1781           0
## 7125                       South Sudan 1781           0
## 7126                             Spain 1781           0
## 7127                         Sri Lanka 1781           0
## 7128                             Sudan 1781           0
## 7129                          Suriname 1781           0
## 7130                         Swaziland 1781           0
## 7131                            Sweden 1781           0
## 7132                       Switzerland 1781           0
## 7133                             Syria 1781           0
## 7134                            Taiwan 1781           0
## 7135                        Tajikistan 1781           0
## 7136                          Tanzania 1781           0
## 7137                          Thailand 1781           0
## 7138                             Timor 1781           0
## 7139                              Togo 1781           0
## 7140                             Tonga 1781           0
## 7141               Trinidad and Tobago 1781           0
## 7142                           Tunisia 1781           0
## 7143                            Turkey 1781           0
## 7144                      Turkmenistan 1781           0
## 7145          Turks and Caicos Islands 1781           0
## 7146                            Tuvalu 1781           0
## 7147                            Uganda 1781           0
## 7148                           Ukraine 1781           0
## 7149              United Arab Emirates 1781           0
## 7150                    United Kingdom 1781   373248016
## 7151                     United States 1781           0
## 7152                           Uruguay 1781           0
## 7153                        Uzbekistan 1781           0
## 7154                           Vanuatu 1781           0
## 7155                         Venezuela 1781           0
## 7156                           Vietnam 1781           0
## 7157         Wallis and Futuna Islands 1781           0
## 7158                             World 1781   373248016
## 7159                             Yemen 1781           0
## 7160                            Zambia 1781           0
## 7161                          Zimbabwe 1781           0
## 7162                       Afghanistan 1782           0
## 7163                            Africa 1782           0
## 7164                           Albania 1782           0
## 7165                           Algeria 1782           0
## 7166                  Americas (other) 1782           0
## 7167                           Andorra 1782           0
## 7168                            Angola 1782           0
## 7169                          Anguilla 1782           0
## 7170               Antarctic Fisheries 1782           0
## 7171               Antigua and Barbuda 1782           0
## 7172                         Argentina 1782           0
## 7173                           Armenia 1782           0
## 7174                             Aruba 1782           0
## 7175          Asia and Pacific (other) 1782           0
## 7176                         Australia 1782           0
## 7177                           Austria 1782           0
## 7178                        Azerbaijan 1782           0
## 7179                           Bahamas 1782           0
## 7180                           Bahrain 1782           0
## 7181                        Bangladesh 1782           0
## 7182                          Barbados 1782           0
## 7183                           Belarus 1782           0
## 7184                           Belgium 1782           0
## 7185                            Belize 1782           0
## 7186                             Benin 1782           0
## 7187                           Bermuda 1782           0
## 7188                            Bhutan 1782           0
## 7189                           Bolivia 1782           0
## 7190   Bonaire Sint Eustatius and Saba 1782           0
## 7191            Bosnia and Herzegovina 1782           0
## 7192                          Botswana 1782           0
## 7193                            Brazil 1782           0
## 7194            British Virgin Islands 1782           0
## 7195                            Brunei 1782           0
## 7196                          Bulgaria 1782           0
## 7197                      Burkina Faso 1782           0
## 7198                           Burundi 1782           0
## 7199                          Cambodia 1782           0
## 7200                          Cameroon 1782           0
## 7201                            Canada 1782           0
## 7202                        Cape Verde 1782           0
## 7203                    Cayman Islands 1782           0
## 7204          Central African Republic 1782           0
## 7205                              Chad 1782           0
## 7206                             Chile 1782           0
## 7207                             China 1782           0
## 7208                  Christmas Island 1782           0
## 7209                          Colombia 1782           0
## 7210                           Comoros 1782           0
## 7211                             Congo 1782           0
## 7212                      Cook Islands 1782           0
## 7213                        Costa Rica 1782           0
## 7214                     Cote d'Ivoire 1782           0
## 7215                           Croatia 1782           0
## 7216                              Cuba 1782           0
## 7217                           Curacao 1782           0
## 7218                            Cyprus 1782           0
## 7219                    Czech Republic 1782           0
## 7220                    Czechoslovakia 1782           0
## 7221      Democratic Republic of Congo 1782           0
## 7222                           Denmark 1782           0
## 7223                          Djibouti 1782           0
## 7224                          Dominica 1782           0
## 7225                Dominican Republic 1782           0
## 7226                             EU-28 1782   390095088
## 7227                           Ecuador 1782           0
## 7228                             Egypt 1782           0
## 7229                       El Salvador 1782           0
## 7230                 Equatorial Guinea 1782           0
## 7231                           Eritrea 1782           0
## 7232                           Estonia 1782           0
## 7233                          Ethiopia 1782           0
## 7234                    Europe (other) 1782           0
## 7235                    Faeroe Islands 1782           0
## 7236                  Falkland Islands 1782           0
## 7237                              Fiji 1782           0
## 7238                           Finland 1782           0
## 7239                            France 1782           0
## 7240                     French Guiana 1782           0
## 7241                  French Polynesia 1782           0
## 7242                             Gabon 1782           0
## 7243                            Gambia 1782           0
## 7244                           Georgia 1782           0
## 7245                           Germany 1782           0
## 7246                             Ghana 1782           0
## 7247                         Gibraltar 1782           0
## 7248                            Greece 1782           0
## 7249                         Greenland 1782           0
## 7250                           Grenada 1782           0
## 7251                        Guadeloupe 1782           0
## 7252                         Guatemala 1782           0
## 7253                            Guinea 1782           0
## 7254                     Guinea-Bissau 1782           0
## 7255                            Guyana 1782           0
## 7256                             Haiti 1782           0
## 7257                          Honduras 1782           0
## 7258                         Hong Kong 1782           0
## 7259                           Hungary 1782           0
## 7260                           Iceland 1782           0
## 7261                             India 1782           0
## 7262                         Indonesia 1782           0
## 7263                              Iran 1782           0
## 7264                              Iraq 1782           0
## 7265                           Ireland 1782           0
## 7266                            Israel 1782           0
## 7267                             Italy 1782           0
## 7268                           Jamaica 1782           0
## 7269                             Japan 1782           0
## 7270                            Jordan 1782           0
## 7271                        Kazakhstan 1782           0
## 7272                             Kenya 1782           0
## 7273                          Kiribati 1782           0
## 7274                            Kuwait 1782           0
## 7275                        Kyrgysztan 1782           0
## 7276                        Kyrgyzstan 1782           0
## 7277                              Laos 1782           0
## 7278                            Latvia 1782           0
## 7279                           Lebanon 1782           0
## 7280                           Lesotho 1782           0
## 7281                           Liberia 1782           0
## 7282                             Libya 1782           0
## 7283                     Liechtenstein 1782           0
## 7284                         Lithuania 1782           0
## 7285                        Luxembourg 1782           0
## 7286                             Macao 1782           0
## 7287                         Macedonia 1782           0
## 7288                        Madagascar 1782           0
## 7289                            Malawi 1782           0
## 7290                          Malaysia 1782           0
## 7291                          Maldives 1782           0
## 7292                              Mali 1782           0
## 7293                             Malta 1782           0
## 7294                  Marshall Islands 1782           0
## 7295                        Martinique 1782           0
## 7296                        Mauritania 1782           0
## 7297                         Mauritius 1782           0
## 7298                            Mexico 1782           0
## 7299              Micronesia (country) 1782           0
## 7300                       Middle East 1782           0
## 7301                           Moldova 1782           0
## 7302                          Mongolia 1782           0
## 7303                        Montenegro 1782           0
## 7304                        Montserrat 1782           0
## 7305                           Morocco 1782           0
## 7306                        Mozambique 1782           0
## 7307                           Myanmar 1782           0
## 7308                           Namibia 1782           0
## 7309                             Nauru 1782           0
## 7310                             Nepal 1782           0
## 7311                       Netherlands 1782           0
## 7312                     New Caledonia 1782           0
## 7313                       New Zealand 1782           0
## 7314                         Nicaragua 1782           0
## 7315                             Niger 1782           0
## 7316                           Nigeria 1782           0
## 7317                              Niue 1782           0
## 7318                       North Korea 1782           0
## 7319                            Norway 1782           0
## 7320                              Oman 1782           0
## 7321                          Pakistan 1782           0
## 7322                             Palau 1782           0
## 7323                         Palestine 1782           0
## 7324                            Panama 1782           0
## 7325                  Papua New Guinea 1782           0
## 7326                          Paraguay 1782           0
## 7327                              Peru 1782           0
## 7328                       Philippines 1782           0
## 7329                            Poland 1782           0
## 7330                          Portugal 1782           0
## 7331                             Qatar 1782           0
## 7332                           Reunion 1782           0
## 7333                           Romania 1782           0
## 7334                            Russia 1782           0
## 7335                            Rwanda 1782           0
## 7336                      Saint Helena 1782           0
## 7337             Saint Kitts and Nevis 1782           0
## 7338                       Saint Lucia 1782           0
## 7339         Saint Pierre and Miquelon 1782           0
## 7340  Saint Vincent and the Grenadines 1782           0
## 7341                             Samoa 1782           0
## 7342             Sao Tome and Principe 1782           0
## 7343                      Saudi Arabia 1782           0
## 7344                           Senegal 1782           0
## 7345                            Serbia 1782           0
## 7346                        Seychelles 1782           0
## 7347                      Sierra Leone 1782           0
## 7348                         Singapore 1782           0
## 7349         Sint Maarten (Dutch part) 1782           0
## 7350                          Slovakia 1782           0
## 7351                          Slovenia 1782           0
## 7352                   Solomon Islands 1782           0
## 7353                           Somalia 1782           0
## 7354                      South Africa 1782           0
## 7355                       South Korea 1782           0
## 7356                       South Sudan 1782           0
## 7357                             Spain 1782           0
## 7358                         Sri Lanka 1782           0
## 7359                             Sudan 1782           0
## 7360                          Suriname 1782           0
## 7361                         Swaziland 1782           0
## 7362                            Sweden 1782           0
## 7363                       Switzerland 1782           0
## 7364                             Syria 1782           0
## 7365                            Taiwan 1782           0
## 7366                        Tajikistan 1782           0
## 7367                          Tanzania 1782           0
## 7368                          Thailand 1782           0
## 7369                             Timor 1782           0
## 7370                              Togo 1782           0
## 7371                             Tonga 1782           0
## 7372               Trinidad and Tobago 1782           0
## 7373                           Tunisia 1782           0
## 7374                            Turkey 1782           0
## 7375                      Turkmenistan 1782           0
## 7376          Turks and Caicos Islands 1782           0
## 7377                            Tuvalu 1782           0
## 7378                            Uganda 1782           0
## 7379                           Ukraine 1782           0
## 7380              United Arab Emirates 1782           0
## 7381                    United Kingdom 1782   390095088
## 7382                     United States 1782           0
## 7383                           Uruguay 1782           0
## 7384                        Uzbekistan 1782           0
## 7385                           Vanuatu 1782           0
## 7386                         Venezuela 1782           0
## 7387                           Vietnam 1782           0
## 7388         Wallis and Futuna Islands 1782           0
## 7389                             World 1782   390095088
## 7390                             Yemen 1782           0
## 7391                            Zambia 1782           0
## 7392                          Zimbabwe 1782           0
## 7393                       Afghanistan 1783           0
## 7394                            Africa 1783           0
## 7395                           Albania 1783           0
## 7396                           Algeria 1783           0
## 7397                  Americas (other) 1783           0
## 7398                           Andorra 1783           0
## 7399                            Angola 1783           0
## 7400                          Anguilla 1783           0
## 7401               Antarctic Fisheries 1783           0
## 7402               Antigua and Barbuda 1783           0
## 7403                         Argentina 1783           0
## 7404                           Armenia 1783           0
## 7405                             Aruba 1783           0
## 7406          Asia and Pacific (other) 1783           0
## 7407                         Australia 1783           0
## 7408                           Austria 1783           0
## 7409                        Azerbaijan 1783           0
## 7410                           Bahamas 1783           0
## 7411                           Bahrain 1783           0
## 7412                        Bangladesh 1783           0
## 7413                          Barbados 1783           0
## 7414                           Belarus 1783           0
## 7415                           Belgium 1783           0
## 7416                            Belize 1783           0
## 7417                             Benin 1783           0
## 7418                           Bermuda 1783           0
## 7419                            Bhutan 1783           0
## 7420                           Bolivia 1783           0
## 7421   Bonaire Sint Eustatius and Saba 1783           0
## 7422            Bosnia and Herzegovina 1783           0
## 7423                          Botswana 1783           0
## 7424                            Brazil 1783           0
## 7425            British Virgin Islands 1783           0
## 7426                            Brunei 1783           0
## 7427                          Bulgaria 1783           0
## 7428                      Burkina Faso 1783           0
## 7429                           Burundi 1783           0
## 7430                          Cambodia 1783           0
## 7431                          Cameroon 1783           0
## 7432                            Canada 1783           0
## 7433                        Cape Verde 1783           0
## 7434                    Cayman Islands 1783           0
## 7435          Central African Republic 1783           0
## 7436                              Chad 1783           0
## 7437                             Chile 1783           0
## 7438                             China 1783           0
## 7439                  Christmas Island 1783           0
## 7440                          Colombia 1783           0
## 7441                           Comoros 1783           0
## 7442                             Congo 1783           0
## 7443                      Cook Islands 1783           0
## 7444                        Costa Rica 1783           0
## 7445                     Cote d'Ivoire 1783           0
## 7446                           Croatia 1783           0
## 7447                              Cuba 1783           0
## 7448                           Curacao 1783           0
## 7449                            Cyprus 1783           0
## 7450                    Czech Republic 1783           0
## 7451                    Czechoslovakia 1783           0
## 7452      Democratic Republic of Congo 1783           0
## 7453                           Denmark 1783           0
## 7454                          Djibouti 1783           0
## 7455                          Dominica 1783           0
## 7456                Dominican Republic 1783           0
## 7457                             EU-28 1783   406949488
## 7458                           Ecuador 1783           0
## 7459                             Egypt 1783           0
## 7460                       El Salvador 1783           0
## 7461                 Equatorial Guinea 1783           0
## 7462                           Eritrea 1783           0
## 7463                           Estonia 1783           0
## 7464                          Ethiopia 1783           0
## 7465                    Europe (other) 1783           0
## 7466                    Faeroe Islands 1783           0
## 7467                  Falkland Islands 1783           0
## 7468                              Fiji 1783           0
## 7469                           Finland 1783           0
## 7470                            France 1783           0
## 7471                     French Guiana 1783           0
## 7472                  French Polynesia 1783           0
## 7473                             Gabon 1783           0
## 7474                            Gambia 1783           0
## 7475                           Georgia 1783           0
## 7476                           Germany 1783           0
## 7477                             Ghana 1783           0
## 7478                         Gibraltar 1783           0
## 7479                            Greece 1783           0
## 7480                         Greenland 1783           0
## 7481                           Grenada 1783           0
## 7482                        Guadeloupe 1783           0
## 7483                         Guatemala 1783           0
## 7484                            Guinea 1783           0
## 7485                     Guinea-Bissau 1783           0
## 7486                            Guyana 1783           0
## 7487                             Haiti 1783           0
## 7488                          Honduras 1783           0
## 7489                         Hong Kong 1783           0
## 7490                           Hungary 1783           0
## 7491                           Iceland 1783           0
## 7492                             India 1783           0
## 7493                         Indonesia 1783           0
## 7494                              Iran 1783           0
## 7495                              Iraq 1783           0
## 7496                           Ireland 1783           0
## 7497                            Israel 1783           0
## 7498                             Italy 1783           0
## 7499                           Jamaica 1783           0
## 7500                             Japan 1783           0
## 7501                            Jordan 1783           0
## 7502                        Kazakhstan 1783           0
## 7503                             Kenya 1783           0
## 7504                          Kiribati 1783           0
## 7505                            Kuwait 1783           0
## 7506                        Kyrgysztan 1783           0
## 7507                        Kyrgyzstan 1783           0
## 7508                              Laos 1783           0
## 7509                            Latvia 1783           0
## 7510                           Lebanon 1783           0
## 7511                           Lesotho 1783           0
## 7512                           Liberia 1783           0
## 7513                             Libya 1783           0
## 7514                     Liechtenstein 1783           0
## 7515                         Lithuania 1783           0
## 7516                        Luxembourg 1783           0
## 7517                             Macao 1783           0
## 7518                         Macedonia 1783           0
## 7519                        Madagascar 1783           0
## 7520                            Malawi 1783           0
## 7521                          Malaysia 1783           0
## 7522                          Maldives 1783           0
## 7523                              Mali 1783           0
## 7524                             Malta 1783           0
## 7525                  Marshall Islands 1783           0
## 7526                        Martinique 1783           0
## 7527                        Mauritania 1783           0
## 7528                         Mauritius 1783           0
## 7529                            Mexico 1783           0
## 7530              Micronesia (country) 1783           0
## 7531                       Middle East 1783           0
## 7532                           Moldova 1783           0
## 7533                          Mongolia 1783           0
## 7534                        Montenegro 1783           0
## 7535                        Montserrat 1783           0
## 7536                           Morocco 1783           0
## 7537                        Mozambique 1783           0
## 7538                           Myanmar 1783           0
## 7539                           Namibia 1783           0
## 7540                             Nauru 1783           0
## 7541                             Nepal 1783           0
## 7542                       Netherlands 1783           0
## 7543                     New Caledonia 1783           0
## 7544                       New Zealand 1783           0
## 7545                         Nicaragua 1783           0
## 7546                             Niger 1783           0
## 7547                           Nigeria 1783           0
## 7548                              Niue 1783           0
## 7549                       North Korea 1783           0
## 7550                            Norway 1783           0
## 7551                              Oman 1783           0
## 7552                          Pakistan 1783           0
## 7553                             Palau 1783           0
## 7554                         Palestine 1783           0
## 7555                            Panama 1783           0
## 7556                  Papua New Guinea 1783           0
## 7557                          Paraguay 1783           0
## 7558                              Peru 1783           0
## 7559                       Philippines 1783           0
## 7560                            Poland 1783           0
## 7561                          Portugal 1783           0
## 7562                             Qatar 1783           0
## 7563                           Reunion 1783           0
## 7564                           Romania 1783           0
## 7565                            Russia 1783           0
## 7566                            Rwanda 1783           0
## 7567                      Saint Helena 1783           0
## 7568             Saint Kitts and Nevis 1783           0
## 7569                       Saint Lucia 1783           0
## 7570         Saint Pierre and Miquelon 1783           0
## 7571  Saint Vincent and the Grenadines 1783           0
## 7572                             Samoa 1783           0
## 7573             Sao Tome and Principe 1783           0
## 7574                      Saudi Arabia 1783           0
## 7575                           Senegal 1783           0
## 7576                            Serbia 1783           0
## 7577                        Seychelles 1783           0
## 7578                      Sierra Leone 1783           0
## 7579                         Singapore 1783           0
## 7580         Sint Maarten (Dutch part) 1783           0
## 7581                          Slovakia 1783           0
## 7582                          Slovenia 1783           0
## 7583                   Solomon Islands 1783           0
## 7584                           Somalia 1783           0
## 7585                      South Africa 1783           0
## 7586                       South Korea 1783           0
## 7587                       South Sudan 1783           0
## 7588                             Spain 1783           0
## 7589                         Sri Lanka 1783           0
## 7590                             Sudan 1783           0
## 7591                          Suriname 1783           0
## 7592                         Swaziland 1783           0
## 7593                            Sweden 1783           0
## 7594                       Switzerland 1783           0
## 7595                             Syria 1783           0
## 7596                            Taiwan 1783           0
## 7597                        Tajikistan 1783           0
## 7598                          Tanzania 1783           0
## 7599                          Thailand 1783           0
## 7600                             Timor 1783           0
## 7601                              Togo 1783           0
## 7602                             Tonga 1783           0
## 7603               Trinidad and Tobago 1783           0
## 7604                           Tunisia 1783           0
## 7605                            Turkey 1783           0
## 7606                      Turkmenistan 1783           0
## 7607          Turks and Caicos Islands 1783           0
## 7608                            Tuvalu 1783           0
## 7609                            Uganda 1783           0
## 7610                           Ukraine 1783           0
## 7611              United Arab Emirates 1783           0
## 7612                    United Kingdom 1783   406949488
## 7613                     United States 1783           0
## 7614                           Uruguay 1783           0
## 7615                        Uzbekistan 1783           0
## 7616                           Vanuatu 1783           0
## 7617                         Venezuela 1783           0
## 7618                           Vietnam 1783           0
## 7619         Wallis and Futuna Islands 1783           0
## 7620                             World 1783   406949488
## 7621                             Yemen 1783           0
## 7622                            Zambia 1783           0
## 7623                          Zimbabwe 1783           0
## 7624                       Afghanistan 1784           0
## 7625                            Africa 1784           0
## 7626                           Albania 1784           0
## 7627                           Algeria 1784           0
## 7628                  Americas (other) 1784           0
## 7629                           Andorra 1784           0
## 7630                            Angola 1784           0
## 7631                          Anguilla 1784           0
## 7632               Antarctic Fisheries 1784           0
## 7633               Antigua and Barbuda 1784           0
## 7634                         Argentina 1784           0
## 7635                           Armenia 1784           0
## 7636                             Aruba 1784           0
## 7637          Asia and Pacific (other) 1784           0
## 7638                         Australia 1784           0
## 7639                           Austria 1784           0
## 7640                        Azerbaijan 1784           0
## 7641                           Bahamas 1784           0
## 7642                           Bahrain 1784           0
## 7643                        Bangladesh 1784           0
## 7644                          Barbados 1784           0
## 7645                           Belarus 1784           0
## 7646                           Belgium 1784           0
## 7647                            Belize 1784           0
## 7648                             Benin 1784           0
## 7649                           Bermuda 1784           0
## 7650                            Bhutan 1784           0
## 7651                           Bolivia 1784           0
## 7652   Bonaire Sint Eustatius and Saba 1784           0
## 7653            Bosnia and Herzegovina 1784           0
## 7654                          Botswana 1784           0
## 7655                            Brazil 1784           0
## 7656            British Virgin Islands 1784           0
## 7657                            Brunei 1784           0
## 7658                          Bulgaria 1784           0
## 7659                      Burkina Faso 1784           0
## 7660                           Burundi 1784           0
## 7661                          Cambodia 1784           0
## 7662                          Cameroon 1784           0
## 7663                            Canada 1784           0
## 7664                        Cape Verde 1784           0
## 7665                    Cayman Islands 1784           0
## 7666          Central African Republic 1784           0
## 7667                              Chad 1784           0
## 7668                             Chile 1784           0
## 7669                             China 1784           0
## 7670                  Christmas Island 1784           0
## 7671                          Colombia 1784           0
## 7672                           Comoros 1784           0
## 7673                             Congo 1784           0
## 7674                      Cook Islands 1784           0
## 7675                        Costa Rica 1784           0
## 7676                     Cote d'Ivoire 1784           0
## 7677                           Croatia 1784           0
## 7678                              Cuba 1784           0
## 7679                           Curacao 1784           0
## 7680                            Cyprus 1784           0
## 7681                    Czech Republic 1784           0
## 7682                    Czechoslovakia 1784           0
## 7683      Democratic Republic of Congo 1784           0
## 7684                           Denmark 1784           0
## 7685                          Djibouti 1784           0
## 7686                          Dominica 1784           0
## 7687                Dominican Republic 1784           0
## 7688                             EU-28 1784   423807552
## 7689                           Ecuador 1784           0
## 7690                             Egypt 1784           0
## 7691                       El Salvador 1784           0
## 7692                 Equatorial Guinea 1784           0
## 7693                           Eritrea 1784           0
## 7694                           Estonia 1784           0
## 7695                          Ethiopia 1784           0
## 7696                    Europe (other) 1784           0
## 7697                    Faeroe Islands 1784           0
## 7698                  Falkland Islands 1784           0
## 7699                              Fiji 1784           0
## 7700                           Finland 1784           0
## 7701                            France 1784           0
## 7702                     French Guiana 1784           0
## 7703                  French Polynesia 1784           0
## 7704                             Gabon 1784           0
## 7705                            Gambia 1784           0
## 7706                           Georgia 1784           0
## 7707                           Germany 1784           0
## 7708                             Ghana 1784           0
## 7709                         Gibraltar 1784           0
## 7710                            Greece 1784           0
## 7711                         Greenland 1784           0
## 7712                           Grenada 1784           0
## 7713                        Guadeloupe 1784           0
## 7714                         Guatemala 1784           0
## 7715                            Guinea 1784           0
## 7716                     Guinea-Bissau 1784           0
## 7717                            Guyana 1784           0
## 7718                             Haiti 1784           0
## 7719                          Honduras 1784           0
## 7720                         Hong Kong 1784           0
## 7721                           Hungary 1784           0
## 7722                           Iceland 1784           0
## 7723                             India 1784           0
## 7724                         Indonesia 1784           0
## 7725                              Iran 1784           0
## 7726                              Iraq 1784           0
## 7727                           Ireland 1784           0
## 7728                            Israel 1784           0
## 7729                             Italy 1784           0
## 7730                           Jamaica 1784           0
## 7731                             Japan 1784           0
## 7732                            Jordan 1784           0
## 7733                        Kazakhstan 1784           0
## 7734                             Kenya 1784           0
## 7735                          Kiribati 1784           0
## 7736                            Kuwait 1784           0
## 7737                        Kyrgysztan 1784           0
## 7738                        Kyrgyzstan 1784           0
## 7739                              Laos 1784           0
## 7740                            Latvia 1784           0
## 7741                           Lebanon 1784           0
## 7742                           Lesotho 1784           0
## 7743                           Liberia 1784           0
## 7744                             Libya 1784           0
## 7745                     Liechtenstein 1784           0
## 7746                         Lithuania 1784           0
## 7747                        Luxembourg 1784           0
## 7748                             Macao 1784           0
## 7749                         Macedonia 1784           0
## 7750                        Madagascar 1784           0
## 7751                            Malawi 1784           0
## 7752                          Malaysia 1784           0
## 7753                          Maldives 1784           0
## 7754                              Mali 1784           0
## 7755                             Malta 1784           0
## 7756                  Marshall Islands 1784           0
## 7757                        Martinique 1784           0
## 7758                        Mauritania 1784           0
## 7759                         Mauritius 1784           0
## 7760                            Mexico 1784           0
## 7761              Micronesia (country) 1784           0
## 7762                       Middle East 1784           0
## 7763                           Moldova 1784           0
## 7764                          Mongolia 1784           0
## 7765                        Montenegro 1784           0
## 7766                        Montserrat 1784           0
## 7767                           Morocco 1784           0
## 7768                        Mozambique 1784           0
## 7769                           Myanmar 1784           0
## 7770                           Namibia 1784           0
## 7771                             Nauru 1784           0
## 7772                             Nepal 1784           0
## 7773                       Netherlands 1784           0
## 7774                     New Caledonia 1784           0
## 7775                       New Zealand 1784           0
## 7776                         Nicaragua 1784           0
## 7777                             Niger 1784           0
## 7778                           Nigeria 1784           0
## 7779                              Niue 1784           0
## 7780                       North Korea 1784           0
## 7781                            Norway 1784           0
## 7782                              Oman 1784           0
## 7783                          Pakistan 1784           0
## 7784                             Palau 1784           0
## 7785                         Palestine 1784           0
## 7786                            Panama 1784           0
## 7787                  Papua New Guinea 1784           0
## 7788                          Paraguay 1784           0
## 7789                              Peru 1784           0
## 7790                       Philippines 1784           0
## 7791                            Poland 1784           0
## 7792                          Portugal 1784           0
## 7793                             Qatar 1784           0
## 7794                           Reunion 1784           0
## 7795                           Romania 1784           0
## 7796                            Russia 1784           0
## 7797                            Rwanda 1784           0
## 7798                      Saint Helena 1784           0
## 7799             Saint Kitts and Nevis 1784           0
## 7800                       Saint Lucia 1784           0
## 7801         Saint Pierre and Miquelon 1784           0
## 7802  Saint Vincent and the Grenadines 1784           0
## 7803                             Samoa 1784           0
## 7804             Sao Tome and Principe 1784           0
## 7805                      Saudi Arabia 1784           0
## 7806                           Senegal 1784           0
## 7807                            Serbia 1784           0
## 7808                        Seychelles 1784           0
## 7809                      Sierra Leone 1784           0
## 7810                         Singapore 1784           0
## 7811         Sint Maarten (Dutch part) 1784           0
## 7812                          Slovakia 1784           0
## 7813                          Slovenia 1784           0
## 7814                   Solomon Islands 1784           0
## 7815                           Somalia 1784           0
## 7816                      South Africa 1784           0
## 7817                       South Korea 1784           0
## 7818                       South Sudan 1784           0
## 7819                             Spain 1784           0
## 7820                         Sri Lanka 1784           0
## 7821                             Sudan 1784           0
## 7822                          Suriname 1784           0
## 7823                         Swaziland 1784           0
## 7824                            Sweden 1784           0
## 7825                       Switzerland 1784           0
## 7826                             Syria 1784           0
## 7827                            Taiwan 1784           0
## 7828                        Tajikistan 1784           0
## 7829                          Tanzania 1784           0
## 7830                          Thailand 1784           0
## 7831                             Timor 1784           0
## 7832                              Togo 1784           0
## 7833                             Tonga 1784           0
## 7834               Trinidad and Tobago 1784           0
## 7835                           Tunisia 1784           0
## 7836                            Turkey 1784           0
## 7837                      Turkmenistan 1784           0
## 7838          Turks and Caicos Islands 1784           0
## 7839                            Tuvalu 1784           0
## 7840                            Uganda 1784           0
## 7841                           Ukraine 1784           0
## 7842              United Arab Emirates 1784           0
## 7843                    United Kingdom 1784   423807552
## 7844                     United States 1784           0
## 7845                           Uruguay 1784           0
## 7846                        Uzbekistan 1784           0
## 7847                           Vanuatu 1784           0
## 7848                         Venezuela 1784           0
## 7849                           Vietnam 1784           0
## 7850         Wallis and Futuna Islands 1784           0
## 7851                             World 1784   423807552
## 7852                             Yemen 1784           0
## 7853                            Zambia 1784           0
## 7854                          Zimbabwe 1784           0
## 7855                       Afghanistan 1785           0
## 7856                            Africa 1785           0
## 7857                           Albania 1785           0
## 7858                           Algeria 1785           0
## 7859                  Americas (other) 1785        3664
## 7860                           Andorra 1785           0
## 7861                            Angola 1785           0
## 7862                          Anguilla 1785           0
## 7863               Antarctic Fisheries 1785           0
## 7864               Antigua and Barbuda 1785           0
## 7865                         Argentina 1785           0
## 7866                           Armenia 1785           0
## 7867                             Aruba 1785           0
## 7868          Asia and Pacific (other) 1785           0
## 7869                         Australia 1785           0
## 7870                           Austria 1785           0
## 7871                        Azerbaijan 1785           0
## 7872                           Bahamas 1785           0
## 7873                           Bahrain 1785           0
## 7874                        Bangladesh 1785           0
## 7875                          Barbados 1785           0
## 7876                           Belarus 1785           0
## 7877                           Belgium 1785           0
## 7878                            Belize 1785           0
## 7879                             Benin 1785           0
## 7880                           Bermuda 1785           0
## 7881                            Bhutan 1785           0
## 7882                           Bolivia 1785           0
## 7883   Bonaire Sint Eustatius and Saba 1785           0
## 7884            Bosnia and Herzegovina 1785           0
## 7885                          Botswana 1785           0
## 7886                            Brazil 1785           0
## 7887            British Virgin Islands 1785           0
## 7888                            Brunei 1785           0
## 7889                          Bulgaria 1785           0
## 7890                      Burkina Faso 1785           0
## 7891                           Burundi 1785           0
## 7892                          Cambodia 1785           0
## 7893                          Cameroon 1785           0
## 7894                            Canada 1785        3664
## 7895                        Cape Verde 1785           0
## 7896                    Cayman Islands 1785           0
## 7897          Central African Republic 1785           0
## 7898                              Chad 1785           0
## 7899                             Chile 1785           0
## 7900                             China 1785           0
## 7901                  Christmas Island 1785           0
## 7902                          Colombia 1785           0
## 7903                           Comoros 1785           0
## 7904                             Congo 1785           0
## 7905                      Cook Islands 1785           0
## 7906                        Costa Rica 1785           0
## 7907                     Cote d'Ivoire 1785           0
## 7908                           Croatia 1785           0
## 7909                              Cuba 1785           0
## 7910                           Curacao 1785           0
## 7911                            Cyprus 1785           0
## 7912                    Czech Republic 1785           0
## 7913                    Czechoslovakia 1785           0
## 7914      Democratic Republic of Congo 1785           0
## 7915                           Denmark 1785           0
## 7916                          Djibouti 1785           0
## 7917                          Dominica 1785           0
## 7918                Dominican Republic 1785           0
## 7919                             EU-28 1785   440672944
## 7920                           Ecuador 1785           0
## 7921                             Egypt 1785           0
## 7922                       El Salvador 1785           0
## 7923                 Equatorial Guinea 1785           0
## 7924                           Eritrea 1785           0
## 7925                           Estonia 1785           0
## 7926                          Ethiopia 1785           0
## 7927                    Europe (other) 1785           0
## 7928                    Faeroe Islands 1785           0
## 7929                  Falkland Islands 1785           0
## 7930                              Fiji 1785           0
## 7931                           Finland 1785           0
## 7932                            France 1785           0
## 7933                     French Guiana 1785           0
## 7934                  French Polynesia 1785           0
## 7935                             Gabon 1785           0
## 7936                            Gambia 1785           0
## 7937                           Georgia 1785           0
## 7938                           Germany 1785           0
## 7939                             Ghana 1785           0
## 7940                         Gibraltar 1785           0
## 7941                            Greece 1785           0
## 7942                         Greenland 1785           0
## 7943                           Grenada 1785           0
## 7944                        Guadeloupe 1785           0
## 7945                         Guatemala 1785           0
## 7946                            Guinea 1785           0
## 7947                     Guinea-Bissau 1785           0
## 7948                            Guyana 1785           0
## 7949                             Haiti 1785           0
## 7950                          Honduras 1785           0
## 7951                         Hong Kong 1785           0
## 7952                           Hungary 1785           0
## 7953                           Iceland 1785           0
## 7954                             India 1785           0
## 7955                         Indonesia 1785           0
## 7956                              Iran 1785           0
## 7957                              Iraq 1785           0
## 7958                           Ireland 1785           0
## 7959                            Israel 1785           0
## 7960                             Italy 1785           0
## 7961                           Jamaica 1785           0
## 7962                             Japan 1785           0
## 7963                            Jordan 1785           0
## 7964                        Kazakhstan 1785           0
## 7965                             Kenya 1785           0
## 7966                          Kiribati 1785           0
## 7967                            Kuwait 1785           0
## 7968                        Kyrgysztan 1785           0
## 7969                        Kyrgyzstan 1785           0
## 7970                              Laos 1785           0
## 7971                            Latvia 1785           0
## 7972                           Lebanon 1785           0
## 7973                           Lesotho 1785           0
## 7974                           Liberia 1785           0
## 7975                             Libya 1785           0
## 7976                     Liechtenstein 1785           0
## 7977                         Lithuania 1785           0
## 7978                        Luxembourg 1785           0
## 7979                             Macao 1785           0
## 7980                         Macedonia 1785           0
## 7981                        Madagascar 1785           0
## 7982                            Malawi 1785           0
## 7983                          Malaysia 1785           0
## 7984                          Maldives 1785           0
## 7985                              Mali 1785           0
## 7986                             Malta 1785           0
## 7987                  Marshall Islands 1785           0
## 7988                        Martinique 1785           0
## 7989                        Mauritania 1785           0
## 7990                         Mauritius 1785           0
## 7991                            Mexico 1785           0
## 7992              Micronesia (country) 1785           0
## 7993                       Middle East 1785           0
## 7994                           Moldova 1785           0
## 7995                          Mongolia 1785           0
## 7996                        Montenegro 1785           0
## 7997                        Montserrat 1785           0
## 7998                           Morocco 1785           0
## 7999                        Mozambique 1785           0
## 8000                           Myanmar 1785           0
## 8001                           Namibia 1785           0
## 8002                             Nauru 1785           0
## 8003                             Nepal 1785           0
## 8004                       Netherlands 1785           0
## 8005                     New Caledonia 1785           0
## 8006                       New Zealand 1785           0
## 8007                         Nicaragua 1785           0
## 8008                             Niger 1785           0
## 8009                           Nigeria 1785           0
## 8010                              Niue 1785           0
## 8011                       North Korea 1785           0
## 8012                            Norway 1785           0
## 8013                              Oman 1785           0
## 8014                          Pakistan 1785           0
## 8015                             Palau 1785           0
## 8016                         Palestine 1785           0
## 8017                            Panama 1785           0
## 8018                  Papua New Guinea 1785           0
## 8019                          Paraguay 1785           0
## 8020                              Peru 1785           0
## 8021                       Philippines 1785           0
## 8022                            Poland 1785           0
## 8023                          Portugal 1785           0
## 8024                             Qatar 1785           0
## 8025                           Reunion 1785           0
## 8026                           Romania 1785           0
## 8027                            Russia 1785           0
## 8028                            Rwanda 1785           0
## 8029                      Saint Helena 1785           0
## 8030             Saint Kitts and Nevis 1785           0
## 8031                       Saint Lucia 1785           0
## 8032         Saint Pierre and Miquelon 1785           0
## 8033  Saint Vincent and the Grenadines 1785           0
## 8034                             Samoa 1785           0
## 8035             Sao Tome and Principe 1785           0
## 8036                      Saudi Arabia 1785           0
## 8037                           Senegal 1785           0
## 8038                            Serbia 1785           0
## 8039                        Seychelles 1785           0
## 8040                      Sierra Leone 1785           0
## 8041                         Singapore 1785           0
## 8042         Sint Maarten (Dutch part) 1785           0
## 8043                          Slovakia 1785           0
## 8044                          Slovenia 1785           0
## 8045                   Solomon Islands 1785           0
## 8046                           Somalia 1785           0
## 8047                      South Africa 1785           0
## 8048                       South Korea 1785           0
## 8049                       South Sudan 1785           0
## 8050                             Spain 1785           0
## 8051                         Sri Lanka 1785           0
## 8052                             Sudan 1785           0
## 8053                          Suriname 1785           0
## 8054                         Swaziland 1785           0
## 8055                            Sweden 1785           0
## 8056                       Switzerland 1785           0
## 8057                             Syria 1785           0
## 8058                            Taiwan 1785           0
## 8059                        Tajikistan 1785           0
## 8060                          Tanzania 1785           0
## 8061                          Thailand 1785           0
## 8062                             Timor 1785           0
## 8063                              Togo 1785           0
## 8064                             Tonga 1785           0
## 8065               Trinidad and Tobago 1785           0
## 8066                           Tunisia 1785           0
## 8067                            Turkey 1785           0
## 8068                      Turkmenistan 1785           0
## 8069          Turks and Caicos Islands 1785           0
## 8070                            Tuvalu 1785           0
## 8071                            Uganda 1785           0
## 8072                           Ukraine 1785           0
## 8073              United Arab Emirates 1785           0
## 8074                    United Kingdom 1785   440672944
## 8075                     United States 1785           0
## 8076                           Uruguay 1785           0
## 8077                        Uzbekistan 1785           0
## 8078                           Vanuatu 1785           0
## 8079                         Venezuela 1785           0
## 8080                           Vietnam 1785           0
## 8081         Wallis and Futuna Islands 1785           0
## 8082                             World 1785   440676608
## 8083                             Yemen 1785           0
## 8084                            Zambia 1785           0
## 8085                          Zimbabwe 1785           0
## 8086                       Afghanistan 1786           0
## 8087                            Africa 1786           0
## 8088                           Albania 1786           0
## 8089                           Algeria 1786           0
## 8090                  Americas (other) 1786        7328
## 8091                           Andorra 1786           0
## 8092                            Angola 1786           0
## 8093                          Anguilla 1786           0
## 8094               Antarctic Fisheries 1786           0
## 8095               Antigua and Barbuda 1786           0
## 8096                         Argentina 1786           0
## 8097                           Armenia 1786           0
## 8098                             Aruba 1786           0
## 8099          Asia and Pacific (other) 1786           0
## 8100                         Australia 1786           0
## 8101                           Austria 1786           0
## 8102                        Azerbaijan 1786           0
## 8103                           Bahamas 1786           0
## 8104                           Bahrain 1786           0
## 8105                        Bangladesh 1786           0
## 8106                          Barbados 1786           0
## 8107                           Belarus 1786           0
## 8108                           Belgium 1786           0
## 8109                            Belize 1786           0
## 8110                             Benin 1786           0
## 8111                           Bermuda 1786           0
## 8112                            Bhutan 1786           0
## 8113                           Bolivia 1786           0
## 8114   Bonaire Sint Eustatius and Saba 1786           0
## 8115            Bosnia and Herzegovina 1786           0
## 8116                          Botswana 1786           0
## 8117                            Brazil 1786           0
## 8118            British Virgin Islands 1786           0
## 8119                            Brunei 1786           0
## 8120                          Bulgaria 1786           0
## 8121                      Burkina Faso 1786           0
## 8122                           Burundi 1786           0
## 8123                          Cambodia 1786           0
## 8124                          Cameroon 1786           0
## 8125                            Canada 1786        7328
## 8126                        Cape Verde 1786           0
## 8127                    Cayman Islands 1786           0
## 8128          Central African Republic 1786           0
## 8129                              Chad 1786           0
## 8130                             Chile 1786           0
## 8131                             China 1786           0
## 8132                  Christmas Island 1786           0
## 8133                          Colombia 1786           0
## 8134                           Comoros 1786           0
## 8135                             Congo 1786           0
## 8136                      Cook Islands 1786           0
## 8137                        Costa Rica 1786           0
## 8138                     Cote d'Ivoire 1786           0
## 8139                           Croatia 1786           0
## 8140                              Cuba 1786           0
## 8141                           Curacao 1786           0
## 8142                            Cyprus 1786           0
## 8143                    Czech Republic 1786           0
## 8144                    Czechoslovakia 1786           0
## 8145      Democratic Republic of Congo 1786           0
## 8146                           Denmark 1786           0
## 8147                          Djibouti 1786           0
## 8148                          Dominica 1786           0
## 8149                Dominican Republic 1786           0
## 8150                             EU-28 1786   459821008
## 8151                           Ecuador 1786           0
## 8152                             Egypt 1786           0
## 8153                       El Salvador 1786           0
## 8154                 Equatorial Guinea 1786           0
## 8155                           Eritrea 1786           0
## 8156                           Estonia 1786           0
## 8157                          Ethiopia 1786           0
## 8158                    Europe (other) 1786           0
## 8159                    Faeroe Islands 1786           0
## 8160                  Falkland Islands 1786           0
## 8161                              Fiji 1786           0
## 8162                           Finland 1786           0
## 8163                            France 1786           0
## 8164                     French Guiana 1786           0
## 8165                  French Polynesia 1786           0
## 8166                             Gabon 1786           0
## 8167                            Gambia 1786           0
## 8168                           Georgia 1786           0
## 8169                           Germany 1786           0
## 8170                             Ghana 1786           0
## 8171                         Gibraltar 1786           0
## 8172                            Greece 1786           0
## 8173                         Greenland 1786           0
## 8174                           Grenada 1786           0
## 8175                        Guadeloupe 1786           0
## 8176                         Guatemala 1786           0
## 8177                            Guinea 1786           0
## 8178                     Guinea-Bissau 1786           0
## 8179                            Guyana 1786           0
## 8180                             Haiti 1786           0
## 8181                          Honduras 1786           0
## 8182                         Hong Kong 1786           0
## 8183                           Hungary 1786           0
## 8184                           Iceland 1786           0
## 8185                             India 1786           0
## 8186                         Indonesia 1786           0
## 8187                              Iran 1786           0
## 8188                              Iraq 1786           0
## 8189                           Ireland 1786           0
## 8190                            Israel 1786           0
## 8191                             Italy 1786           0
## 8192                           Jamaica 1786           0
## 8193                             Japan 1786           0
## 8194                            Jordan 1786           0
## 8195                        Kazakhstan 1786           0
## 8196                             Kenya 1786           0
## 8197                          Kiribati 1786           0
## 8198                            Kuwait 1786           0
## 8199                        Kyrgysztan 1786           0
## 8200                        Kyrgyzstan 1786           0
## 8201                              Laos 1786           0
## 8202                            Latvia 1786           0
## 8203                           Lebanon 1786           0
## 8204                           Lesotho 1786           0
## 8205                           Liberia 1786           0
## 8206                             Libya 1786           0
## 8207                     Liechtenstein 1786           0
## 8208                         Lithuania 1786           0
## 8209                        Luxembourg 1786           0
## 8210                             Macao 1786           0
## 8211                         Macedonia 1786           0
## 8212                        Madagascar 1786           0
## 8213                            Malawi 1786           0
## 8214                          Malaysia 1786           0
## 8215                          Maldives 1786           0
## 8216                              Mali 1786           0
## 8217                             Malta 1786           0
## 8218                  Marshall Islands 1786           0
## 8219                        Martinique 1786           0
## 8220                        Mauritania 1786           0
## 8221                         Mauritius 1786           0
## 8222                            Mexico 1786           0
## 8223              Micronesia (country) 1786           0
## 8224                       Middle East 1786           0
## 8225                           Moldova 1786           0
## 8226                          Mongolia 1786           0
## 8227                        Montenegro 1786           0
## 8228                        Montserrat 1786           0
## 8229                           Morocco 1786           0
## 8230                        Mozambique 1786           0
## 8231                           Myanmar 1786           0
## 8232                           Namibia 1786           0
## 8233                             Nauru 1786           0
## 8234                             Nepal 1786           0
## 8235                       Netherlands 1786           0
## 8236                     New Caledonia 1786           0
## 8237                       New Zealand 1786           0
## 8238                         Nicaragua 1786           0
## 8239                             Niger 1786           0
## 8240                           Nigeria 1786           0
## 8241                              Niue 1786           0
## 8242                       North Korea 1786           0
## 8243                            Norway 1786           0
## 8244                              Oman 1786           0
## 8245                          Pakistan 1786           0
## 8246                             Palau 1786           0
## 8247                         Palestine 1786           0
## 8248                            Panama 1786           0
## 8249                  Papua New Guinea 1786           0
## 8250                          Paraguay 1786           0
## 8251                              Peru 1786           0
## 8252                       Philippines 1786           0
## 8253                            Poland 1786           0
## 8254                          Portugal 1786           0
## 8255                             Qatar 1786           0
## 8256                           Reunion 1786           0
## 8257                           Romania 1786           0
## 8258                            Russia 1786           0
## 8259                            Rwanda 1786           0
## 8260                      Saint Helena 1786           0
## 8261             Saint Kitts and Nevis 1786           0
## 8262                       Saint Lucia 1786           0
## 8263         Saint Pierre and Miquelon 1786           0
## 8264  Saint Vincent and the Grenadines 1786           0
## 8265                             Samoa 1786           0
## 8266             Sao Tome and Principe 1786           0
## 8267                      Saudi Arabia 1786           0
## 8268                           Senegal 1786           0
## 8269                            Serbia 1786           0
## 8270                        Seychelles 1786           0
## 8271                      Sierra Leone 1786           0
## 8272                         Singapore 1786           0
## 8273         Sint Maarten (Dutch part) 1786           0
## 8274                          Slovakia 1786           0
## 8275                          Slovenia 1786           0
## 8276                   Solomon Islands 1786           0
## 8277                           Somalia 1786           0
## 8278                      South Africa 1786           0
## 8279                       South Korea 1786           0
## 8280                       South Sudan 1786           0
## 8281                             Spain 1786           0
## 8282                         Sri Lanka 1786           0
## 8283                             Sudan 1786           0
## 8284                          Suriname 1786           0
## 8285                         Swaziland 1786           0
## 8286                            Sweden 1786           0
## 8287                       Switzerland 1786           0
## 8288                             Syria 1786           0
## 8289                            Taiwan 1786           0
## 8290                        Tajikistan 1786           0
## 8291                          Tanzania 1786           0
## 8292                          Thailand 1786           0
## 8293                             Timor 1786           0
## 8294                              Togo 1786           0
## 8295                             Tonga 1786           0
## 8296               Trinidad and Tobago 1786           0
## 8297                           Tunisia 1786           0
## 8298                            Turkey 1786           0
## 8299                      Turkmenistan 1786           0
## 8300          Turks and Caicos Islands 1786           0
## 8301                            Tuvalu 1786           0
## 8302                            Uganda 1786           0
## 8303                           Ukraine 1786           0
## 8304              United Arab Emirates 1786           0
## 8305                    United Kingdom 1786   459821008
## 8306                     United States 1786           0
## 8307                           Uruguay 1786           0
## 8308                        Uzbekistan 1786           0
## 8309                           Vanuatu 1786           0
## 8310                         Venezuela 1786           0
## 8311                           Vietnam 1786           0
## 8312         Wallis and Futuna Islands 1786           0
## 8313                             World 1786   459828336
## 8314                             Yemen 1786           0
## 8315                            Zambia 1786           0
## 8316                          Zimbabwe 1786           0
## 8317                       Afghanistan 1787           0
## 8318                            Africa 1787           0
## 8319                           Albania 1787           0
## 8320                           Algeria 1787           0
## 8321                  Americas (other) 1787       10992
## 8322                           Andorra 1787           0
## 8323                            Angola 1787           0
## 8324                          Anguilla 1787           0
## 8325               Antarctic Fisheries 1787           0
## 8326               Antigua and Barbuda 1787           0
## 8327                         Argentina 1787           0
## 8328                           Armenia 1787           0
## 8329                             Aruba 1787           0
## 8330          Asia and Pacific (other) 1787           0
## 8331                         Australia 1787           0
## 8332                           Austria 1787           0
## 8333                        Azerbaijan 1787           0
## 8334                           Bahamas 1787           0
## 8335                           Bahrain 1787           0
## 8336                        Bangladesh 1787           0
## 8337                          Barbados 1787           0
## 8338                           Belarus 1787           0
## 8339                           Belgium 1787           0
## 8340                            Belize 1787           0
## 8341                             Benin 1787           0
## 8342                           Bermuda 1787           0
## 8343                            Bhutan 1787           0
## 8344                           Bolivia 1787           0
## 8345   Bonaire Sint Eustatius and Saba 1787           0
## 8346            Bosnia and Herzegovina 1787           0
## 8347                          Botswana 1787           0
## 8348                            Brazil 1787           0
## 8349            British Virgin Islands 1787           0
## 8350                            Brunei 1787           0
## 8351                          Bulgaria 1787           0
## 8352                      Burkina Faso 1787           0
## 8353                           Burundi 1787           0
## 8354                          Cambodia 1787           0
## 8355                          Cameroon 1787           0
## 8356                            Canada 1787       10992
## 8357                        Cape Verde 1787           0
## 8358                    Cayman Islands 1787           0
## 8359          Central African Republic 1787           0
## 8360                              Chad 1787           0
## 8361                             Chile 1787           0
## 8362                             China 1787           0
## 8363                  Christmas Island 1787           0
## 8364                          Colombia 1787           0
## 8365                           Comoros 1787           0
## 8366                             Congo 1787           0
## 8367                      Cook Islands 1787           0
## 8368                        Costa Rica 1787           0
## 8369                     Cote d'Ivoire 1787           0
## 8370                           Croatia 1787           0
## 8371                              Cuba 1787           0
## 8372                           Curacao 1787           0
## 8373                            Cyprus 1787           0
## 8374                    Czech Republic 1787           0
## 8375                    Czechoslovakia 1787           0
## 8376      Democratic Republic of Congo 1787           0
## 8377                           Denmark 1787           0
## 8378                          Djibouti 1787           0
## 8379                          Dominica 1787           0
## 8380                Dominican Republic 1787           0
## 8381                             EU-28 1787   478976400
## 8382                           Ecuador 1787           0
## 8383                             Egypt 1787           0
## 8384                       El Salvador 1787           0
## 8385                 Equatorial Guinea 1787           0
## 8386                           Eritrea 1787           0
## 8387                           Estonia 1787           0
## 8388                          Ethiopia 1787           0
## 8389                    Europe (other) 1787           0
## 8390                    Faeroe Islands 1787           0
## 8391                  Falkland Islands 1787           0
## 8392                              Fiji 1787           0
## 8393                           Finland 1787           0
## 8394                            France 1787           0
## 8395                     French Guiana 1787           0
## 8396                  French Polynesia 1787           0
## 8397                             Gabon 1787           0
## 8398                            Gambia 1787           0
## 8399                           Georgia 1787           0
## 8400                           Germany 1787           0
## 8401                             Ghana 1787           0
## 8402                         Gibraltar 1787           0
## 8403                            Greece 1787           0
## 8404                         Greenland 1787           0
## 8405                           Grenada 1787           0
## 8406                        Guadeloupe 1787           0
## 8407                         Guatemala 1787           0
## 8408                            Guinea 1787           0
## 8409                     Guinea-Bissau 1787           0
## 8410                            Guyana 1787           0
## 8411                             Haiti 1787           0
## 8412                          Honduras 1787           0
## 8413                         Hong Kong 1787           0
## 8414                           Hungary 1787           0
## 8415                           Iceland 1787           0
## 8416                             India 1787           0
## 8417                         Indonesia 1787           0
## 8418                              Iran 1787           0
## 8419                              Iraq 1787           0
## 8420                           Ireland 1787           0
## 8421                            Israel 1787           0
## 8422                             Italy 1787           0
## 8423                           Jamaica 1787           0
## 8424                             Japan 1787           0
## 8425                            Jordan 1787           0
## 8426                        Kazakhstan 1787           0
## 8427                             Kenya 1787           0
## 8428                          Kiribati 1787           0
## 8429                            Kuwait 1787           0
## 8430                        Kyrgysztan 1787           0
## 8431                        Kyrgyzstan 1787           0
## 8432                              Laos 1787           0
## 8433                            Latvia 1787           0
## 8434                           Lebanon 1787           0
## 8435                           Lesotho 1787           0
## 8436                           Liberia 1787           0
## 8437                             Libya 1787           0
## 8438                     Liechtenstein 1787           0
## 8439                         Lithuania 1787           0
## 8440                        Luxembourg 1787           0
## 8441                             Macao 1787           0
## 8442                         Macedonia 1787           0
## 8443                        Madagascar 1787           0
## 8444                            Malawi 1787           0
## 8445                          Malaysia 1787           0
## 8446                          Maldives 1787           0
## 8447                              Mali 1787           0
## 8448                             Malta 1787           0
## 8449                  Marshall Islands 1787           0
## 8450                        Martinique 1787           0
## 8451                        Mauritania 1787           0
## 8452                         Mauritius 1787           0
## 8453                            Mexico 1787           0
## 8454              Micronesia (country) 1787           0
## 8455                       Middle East 1787           0
## 8456                           Moldova 1787           0
## 8457                          Mongolia 1787           0
## 8458                        Montenegro 1787           0
## 8459                        Montserrat 1787           0
## 8460                           Morocco 1787           0
## 8461                        Mozambique 1787           0
## 8462                           Myanmar 1787           0
## 8463                           Namibia 1787           0
## 8464                             Nauru 1787           0
## 8465                             Nepal 1787           0
## 8466                       Netherlands 1787           0
## 8467                     New Caledonia 1787           0
## 8468                       New Zealand 1787           0
## 8469                         Nicaragua 1787           0
## 8470                             Niger 1787           0
## 8471                           Nigeria 1787           0
## 8472                              Niue 1787           0
## 8473                       North Korea 1787           0
## 8474                            Norway 1787           0
## 8475                              Oman 1787           0
## 8476                          Pakistan 1787           0
## 8477                             Palau 1787           0
## 8478                         Palestine 1787           0
## 8479                            Panama 1787           0
## 8480                  Papua New Guinea 1787           0
## 8481                          Paraguay 1787           0
## 8482                              Peru 1787           0
## 8483                       Philippines 1787           0
## 8484                            Poland 1787           0
## 8485                          Portugal 1787           0
## 8486                             Qatar 1787           0
## 8487                           Reunion 1787           0
## 8488                           Romania 1787           0
## 8489                            Russia 1787           0
## 8490                            Rwanda 1787           0
## 8491                      Saint Helena 1787           0
## 8492             Saint Kitts and Nevis 1787           0
## 8493                       Saint Lucia 1787           0
## 8494         Saint Pierre and Miquelon 1787           0
## 8495  Saint Vincent and the Grenadines 1787           0
## 8496                             Samoa 1787           0
## 8497             Sao Tome and Principe 1787           0
## 8498                      Saudi Arabia 1787           0
## 8499                           Senegal 1787           0
## 8500                            Serbia 1787           0
## 8501                        Seychelles 1787           0
## 8502                      Sierra Leone 1787           0
## 8503                         Singapore 1787           0
## 8504         Sint Maarten (Dutch part) 1787           0
## 8505                          Slovakia 1787           0
## 8506                          Slovenia 1787           0
## 8507                   Solomon Islands 1787           0
## 8508                           Somalia 1787           0
## 8509                      South Africa 1787           0
## 8510                       South Korea 1787           0
## 8511                       South Sudan 1787           0
## 8512                             Spain 1787           0
## 8513                         Sri Lanka 1787           0
## 8514                             Sudan 1787           0
## 8515                          Suriname 1787           0
## 8516                         Swaziland 1787           0
## 8517                            Sweden 1787           0
## 8518                       Switzerland 1787           0
## 8519                             Syria 1787           0
## 8520                            Taiwan 1787           0
## 8521                        Tajikistan 1787           0
## 8522                          Tanzania 1787           0
## 8523                          Thailand 1787           0
## 8524                             Timor 1787           0
## 8525                              Togo 1787           0
## 8526                             Tonga 1787           0
## 8527               Trinidad and Tobago 1787           0
## 8528                           Tunisia 1787           0
## 8529                            Turkey 1787           0
## 8530                      Turkmenistan 1787           0
## 8531          Turks and Caicos Islands 1787           0
## 8532                            Tuvalu 1787           0
## 8533                            Uganda 1787           0
## 8534                           Ukraine 1787           0
## 8535              United Arab Emirates 1787           0
## 8536                    United Kingdom 1787   478976400
## 8537                     United States 1787           0
## 8538                           Uruguay 1787           0
## 8539                        Uzbekistan 1787           0
## 8540                           Vanuatu 1787           0
## 8541                         Venezuela 1787           0
## 8542                           Vietnam 1787           0
## 8543         Wallis and Futuna Islands 1787           0
## 8544                             World 1787   478987392
## 8545                             Yemen 1787           0
## 8546                            Zambia 1787           0
## 8547                          Zimbabwe 1787           0
## 8548                       Afghanistan 1788           0
## 8549                            Africa 1788           0
## 8550                           Albania 1788           0
## 8551                           Algeria 1788           0
## 8552                  Americas (other) 1788       14656
## 8553                           Andorra 1788           0
## 8554                            Angola 1788           0
## 8555                          Anguilla 1788           0
## 8556               Antarctic Fisheries 1788           0
## 8557               Antigua and Barbuda 1788           0
## 8558                         Argentina 1788           0
## 8559                           Armenia 1788           0
## 8560                             Aruba 1788           0
## 8561          Asia and Pacific (other) 1788           0
## 8562                         Australia 1788           0
## 8563                           Austria 1788           0
## 8564                        Azerbaijan 1788           0
## 8565                           Bahamas 1788           0
## 8566                           Bahrain 1788           0
## 8567                        Bangladesh 1788           0
## 8568                          Barbados 1788           0
## 8569                           Belarus 1788           0
## 8570                           Belgium 1788           0
## 8571                            Belize 1788           0
## 8572                             Benin 1788           0
## 8573                           Bermuda 1788           0
## 8574                            Bhutan 1788           0
## 8575                           Bolivia 1788           0
## 8576   Bonaire Sint Eustatius and Saba 1788           0
## 8577            Bosnia and Herzegovina 1788           0
## 8578                          Botswana 1788           0
## 8579                            Brazil 1788           0
## 8580            British Virgin Islands 1788           0
## 8581                            Brunei 1788           0
## 8582                          Bulgaria 1788           0
## 8583                      Burkina Faso 1788           0
## 8584                           Burundi 1788           0
## 8585                          Cambodia 1788           0
## 8586                          Cameroon 1788           0
## 8587                            Canada 1788       14656
## 8588                        Cape Verde 1788           0
## 8589                    Cayman Islands 1788           0
## 8590          Central African Republic 1788           0
## 8591                              Chad 1788           0
## 8592                             Chile 1788           0
## 8593                             China 1788           0
## 8594                  Christmas Island 1788           0
## 8595                          Colombia 1788           0
## 8596                           Comoros 1788           0
## 8597                             Congo 1788           0
## 8598                      Cook Islands 1788           0
## 8599                        Costa Rica 1788           0
## 8600                     Cote d'Ivoire 1788           0
## 8601                           Croatia 1788           0
## 8602                              Cuba 1788           0
## 8603                           Curacao 1788           0
## 8604                            Cyprus 1788           0
## 8605                    Czech Republic 1788           0
## 8606                    Czechoslovakia 1788           0
## 8607      Democratic Republic of Congo 1788           0
## 8608                           Denmark 1788           0
## 8609                          Djibouti 1788           0
## 8610                          Dominica 1788           0
## 8611                Dominican Republic 1788           0
## 8612                             EU-28 1788   498135456
## 8613                           Ecuador 1788           0
## 8614                             Egypt 1788           0
## 8615                       El Salvador 1788           0
## 8616                 Equatorial Guinea 1788           0
## 8617                           Eritrea 1788           0
## 8618                           Estonia 1788           0
## 8619                          Ethiopia 1788           0
## 8620                    Europe (other) 1788           0
## 8621                    Faeroe Islands 1788           0
## 8622                  Falkland Islands 1788           0
## 8623                              Fiji 1788           0
## 8624                           Finland 1788           0
## 8625                            France 1788           0
## 8626                     French Guiana 1788           0
## 8627                  French Polynesia 1788           0
## 8628                             Gabon 1788           0
## 8629                            Gambia 1788           0
## 8630                           Georgia 1788           0
## 8631                           Germany 1788           0
## 8632                             Ghana 1788           0
## 8633                         Gibraltar 1788           0
## 8634                            Greece 1788           0
## 8635                         Greenland 1788           0
## 8636                           Grenada 1788           0
## 8637                        Guadeloupe 1788           0
## 8638                         Guatemala 1788           0
## 8639                            Guinea 1788           0
## 8640                     Guinea-Bissau 1788           0
## 8641                            Guyana 1788           0
## 8642                             Haiti 1788           0
## 8643                          Honduras 1788           0
## 8644                         Hong Kong 1788           0
## 8645                           Hungary 1788           0
## 8646                           Iceland 1788           0
## 8647                             India 1788           0
## 8648                         Indonesia 1788           0
## 8649                              Iran 1788           0
## 8650                              Iraq 1788           0
## 8651                           Ireland 1788           0
## 8652                            Israel 1788           0
## 8653                             Italy 1788           0
## 8654                           Jamaica 1788           0
## 8655                             Japan 1788           0
## 8656                            Jordan 1788           0
## 8657                        Kazakhstan 1788           0
## 8658                             Kenya 1788           0
## 8659                          Kiribati 1788           0
## 8660                            Kuwait 1788           0
## 8661                        Kyrgysztan 1788           0
## 8662                        Kyrgyzstan 1788           0
## 8663                              Laos 1788           0
## 8664                            Latvia 1788           0
## 8665                           Lebanon 1788           0
## 8666                           Lesotho 1788           0
## 8667                           Liberia 1788           0
## 8668                             Libya 1788           0
## 8669                     Liechtenstein 1788           0
## 8670                         Lithuania 1788           0
## 8671                        Luxembourg 1788           0
## 8672                             Macao 1788           0
## 8673                         Macedonia 1788           0
## 8674                        Madagascar 1788           0
## 8675                            Malawi 1788           0
## 8676                          Malaysia 1788           0
## 8677                          Maldives 1788           0
## 8678                              Mali 1788           0
## 8679                             Malta 1788           0
## 8680                  Marshall Islands 1788           0
## 8681                        Martinique 1788           0
## 8682                        Mauritania 1788           0
## 8683                         Mauritius 1788           0
## 8684                            Mexico 1788           0
## 8685              Micronesia (country) 1788           0
## 8686                       Middle East 1788           0
## 8687                           Moldova 1788           0
## 8688                          Mongolia 1788           0
## 8689                        Montenegro 1788           0
## 8690                        Montserrat 1788           0
## 8691                           Morocco 1788           0
## 8692                        Mozambique 1788           0
## 8693                           Myanmar 1788           0
## 8694                           Namibia 1788           0
## 8695                             Nauru 1788           0
## 8696                             Nepal 1788           0
## 8697                       Netherlands 1788           0
## 8698                     New Caledonia 1788           0
## 8699                       New Zealand 1788           0
## 8700                         Nicaragua 1788           0
## 8701                             Niger 1788           0
## 8702                           Nigeria 1788           0
## 8703                              Niue 1788           0
## 8704                       North Korea 1788           0
## 8705                            Norway 1788           0
## 8706                              Oman 1788           0
## 8707                          Pakistan 1788           0
## 8708                             Palau 1788           0
## 8709                         Palestine 1788           0
## 8710                            Panama 1788           0
## 8711                  Papua New Guinea 1788           0
## 8712                          Paraguay 1788           0
## 8713                              Peru 1788           0
## 8714                       Philippines 1788           0
## 8715                            Poland 1788           0
## 8716                          Portugal 1788           0
## 8717                             Qatar 1788           0
## 8718                           Reunion 1788           0
## 8719                           Romania 1788           0
## 8720                            Russia 1788           0
## 8721                            Rwanda 1788           0
## 8722                      Saint Helena 1788           0
## 8723             Saint Kitts and Nevis 1788           0
## 8724                       Saint Lucia 1788           0
## 8725         Saint Pierre and Miquelon 1788           0
## 8726  Saint Vincent and the Grenadines 1788           0
## 8727                             Samoa 1788           0
## 8728             Sao Tome and Principe 1788           0
## 8729                      Saudi Arabia 1788           0
## 8730                           Senegal 1788           0
## 8731                            Serbia 1788           0
## 8732                        Seychelles 1788           0
## 8733                      Sierra Leone 1788           0
## 8734                         Singapore 1788           0
## 8735         Sint Maarten (Dutch part) 1788           0
## 8736                          Slovakia 1788           0
## 8737                          Slovenia 1788           0
## 8738                   Solomon Islands 1788           0
## 8739                           Somalia 1788           0
## 8740                      South Africa 1788           0
## 8741                       South Korea 1788           0
## 8742                       South Sudan 1788           0
## 8743                             Spain 1788           0
## 8744                         Sri Lanka 1788           0
## 8745                             Sudan 1788           0
## 8746                          Suriname 1788           0
## 8747                         Swaziland 1788           0
## 8748                            Sweden 1788           0
## 8749                       Switzerland 1788           0
## 8750                             Syria 1788           0
## 8751                            Taiwan 1788           0
## 8752                        Tajikistan 1788           0
## 8753                          Tanzania 1788           0
## 8754                          Thailand 1788           0
## 8755                             Timor 1788           0
## 8756                              Togo 1788           0
## 8757                             Tonga 1788           0
## 8758               Trinidad and Tobago 1788           0
## 8759                           Tunisia 1788           0
## 8760                            Turkey 1788           0
## 8761                      Turkmenistan 1788           0
## 8762          Turks and Caicos Islands 1788           0
## 8763                            Tuvalu 1788           0
## 8764                            Uganda 1788           0
## 8765                           Ukraine 1788           0
## 8766              United Arab Emirates 1788           0
## 8767                    United Kingdom 1788   498135456
## 8768                     United States 1788           0
## 8769                           Uruguay 1788           0
## 8770                        Uzbekistan 1788           0
## 8771                           Vanuatu 1788           0
## 8772                         Venezuela 1788           0
## 8773                           Vietnam 1788           0
## 8774         Wallis and Futuna Islands 1788           0
## 8775                             World 1788   498150112
## 8776                             Yemen 1788           0
## 8777                            Zambia 1788           0
## 8778                          Zimbabwe 1788           0
## 8779                       Afghanistan 1789           0
## 8780                            Africa 1789           0
## 8781                           Albania 1789           0
## 8782                           Algeria 1789           0
## 8783                  Americas (other) 1789       18320
## 8784                           Andorra 1789           0
## 8785                            Angola 1789           0
## 8786                          Anguilla 1789           0
## 8787               Antarctic Fisheries 1789           0
## 8788               Antigua and Barbuda 1789           0
## 8789                         Argentina 1789           0
## 8790                           Armenia 1789           0
## 8791                             Aruba 1789           0
## 8792          Asia and Pacific (other) 1789           0
## 8793                         Australia 1789           0
## 8794                           Austria 1789           0
## 8795                        Azerbaijan 1789           0
## 8796                           Bahamas 1789           0
## 8797                           Bahrain 1789           0
## 8798                        Bangladesh 1789           0
## 8799                          Barbados 1789           0
## 8800                           Belarus 1789           0
## 8801                           Belgium 1789           0
## 8802                            Belize 1789           0
## 8803                             Benin 1789           0
## 8804                           Bermuda 1789           0
## 8805                            Bhutan 1789           0
## 8806                           Bolivia 1789           0
## 8807   Bonaire Sint Eustatius and Saba 1789           0
## 8808            Bosnia and Herzegovina 1789           0
## 8809                          Botswana 1789           0
## 8810                            Brazil 1789           0
## 8811            British Virgin Islands 1789           0
## 8812                            Brunei 1789           0
## 8813                          Bulgaria 1789           0
## 8814                      Burkina Faso 1789           0
## 8815                           Burundi 1789           0
## 8816                          Cambodia 1789           0
## 8817                          Cameroon 1789           0
## 8818                            Canada 1789       18320
## 8819                        Cape Verde 1789           0
## 8820                    Cayman Islands 1789           0
## 8821          Central African Republic 1789           0
## 8822                              Chad 1789           0
## 8823                             Chile 1789           0
## 8824                             China 1789           0
## 8825                  Christmas Island 1789           0
## 8826                          Colombia 1789           0
## 8827                           Comoros 1789           0
## 8828                             Congo 1789           0
## 8829                      Cook Islands 1789           0
## 8830                        Costa Rica 1789           0
## 8831                     Cote d'Ivoire 1789           0
## 8832                           Croatia 1789           0
## 8833                              Cuba 1789           0
## 8834                           Curacao 1789           0
## 8835                            Cyprus 1789           0
## 8836                    Czech Republic 1789           0
## 8837                    Czechoslovakia 1789           0
## 8838      Democratic Republic of Congo 1789           0
## 8839                           Denmark 1789           0
## 8840                          Djibouti 1789           0
## 8841                          Dominica 1789           0
## 8842                Dominican Republic 1789           0
## 8843                             EU-28 1789   517301840
## 8844                           Ecuador 1789           0
## 8845                             Egypt 1789           0
## 8846                       El Salvador 1789           0
## 8847                 Equatorial Guinea 1789           0
## 8848                           Eritrea 1789           0
## 8849                           Estonia 1789           0
## 8850                          Ethiopia 1789           0
## 8851                    Europe (other) 1789           0
## 8852                    Faeroe Islands 1789           0
## 8853                  Falkland Islands 1789           0
## 8854                              Fiji 1789           0
## 8855                           Finland 1789           0
## 8856                            France 1789           0
## 8857                     French Guiana 1789           0
## 8858                  French Polynesia 1789           0
## 8859                             Gabon 1789           0
## 8860                            Gambia 1789           0
## 8861                           Georgia 1789           0
## 8862                           Germany 1789           0
## 8863                             Ghana 1789           0
## 8864                         Gibraltar 1789           0
## 8865                            Greece 1789           0
## 8866                         Greenland 1789           0
## 8867                           Grenada 1789           0
## 8868                        Guadeloupe 1789           0
## 8869                         Guatemala 1789           0
## 8870                            Guinea 1789           0
## 8871                     Guinea-Bissau 1789           0
## 8872                            Guyana 1789           0
## 8873                             Haiti 1789           0
## 8874                          Honduras 1789           0
## 8875                         Hong Kong 1789           0
## 8876                           Hungary 1789           0
## 8877                           Iceland 1789           0
## 8878                             India 1789           0
## 8879                         Indonesia 1789           0
## 8880                              Iran 1789           0
## 8881                              Iraq 1789           0
## 8882                           Ireland 1789           0
## 8883                            Israel 1789           0
## 8884                             Italy 1789           0
## 8885                           Jamaica 1789           0
## 8886                             Japan 1789           0
## 8887                            Jordan 1789           0
## 8888                        Kazakhstan 1789           0
## 8889                             Kenya 1789           0
## 8890                          Kiribati 1789           0
## 8891                            Kuwait 1789           0
## 8892                        Kyrgysztan 1789           0
## 8893                        Kyrgyzstan 1789           0
## 8894                              Laos 1789           0
## 8895                            Latvia 1789           0
## 8896                           Lebanon 1789           0
## 8897                           Lesotho 1789           0
## 8898                           Liberia 1789           0
## 8899                             Libya 1789           0
## 8900                     Liechtenstein 1789           0
## 8901                         Lithuania 1789           0
## 8902                        Luxembourg 1789           0
## 8903                             Macao 1789           0
## 8904                         Macedonia 1789           0
## 8905                        Madagascar 1789           0
## 8906                            Malawi 1789           0
## 8907                          Malaysia 1789           0
## 8908                          Maldives 1789           0
## 8909                              Mali 1789           0
## 8910                             Malta 1789           0
## 8911                  Marshall Islands 1789           0
## 8912                        Martinique 1789           0
## 8913                        Mauritania 1789           0
## 8914                         Mauritius 1789           0
## 8915                            Mexico 1789           0
## 8916              Micronesia (country) 1789           0
## 8917                       Middle East 1789           0
## 8918                           Moldova 1789           0
## 8919                          Mongolia 1789           0
## 8920                        Montenegro 1789           0
## 8921                        Montserrat 1789           0
## 8922                           Morocco 1789           0
## 8923                        Mozambique 1789           0
## 8924                           Myanmar 1789           0
## 8925                           Namibia 1789           0
## 8926                             Nauru 1789           0
## 8927                             Nepal 1789           0
## 8928                       Netherlands 1789           0
## 8929                     New Caledonia 1789           0
## 8930                       New Zealand 1789           0
## 8931                         Nicaragua 1789           0
## 8932                             Niger 1789           0
## 8933                           Nigeria 1789           0
## 8934                              Niue 1789           0
## 8935                       North Korea 1789           0
## 8936                            Norway 1789           0
## 8937                              Oman 1789           0
## 8938                          Pakistan 1789           0
## 8939                             Palau 1789           0
## 8940                         Palestine 1789           0
## 8941                            Panama 1789           0
## 8942                  Papua New Guinea 1789           0
## 8943                          Paraguay 1789           0
## 8944                              Peru 1789           0
## 8945                       Philippines 1789           0
## 8946                            Poland 1789           0
## 8947                          Portugal 1789           0
## 8948                             Qatar 1789           0
## 8949                           Reunion 1789           0
## 8950                           Romania 1789           0
## 8951                            Russia 1789           0
## 8952                            Rwanda 1789           0
## 8953                      Saint Helena 1789           0
## 8954             Saint Kitts and Nevis 1789           0
## 8955                       Saint Lucia 1789           0
## 8956         Saint Pierre and Miquelon 1789           0
## 8957  Saint Vincent and the Grenadines 1789           0
## 8958                             Samoa 1789           0
## 8959             Sao Tome and Principe 1789           0
## 8960                      Saudi Arabia 1789           0
## 8961                           Senegal 1789           0
## 8962                            Serbia 1789           0
## 8963                        Seychelles 1789           0
## 8964                      Sierra Leone 1789           0
## 8965                         Singapore 1789           0
## 8966         Sint Maarten (Dutch part) 1789           0
## 8967                          Slovakia 1789           0
## 8968                          Slovenia 1789           0
## 8969                   Solomon Islands 1789           0
## 8970                           Somalia 1789           0
## 8971                      South Africa 1789           0
## 8972                       South Korea 1789           0
## 8973                       South Sudan 1789           0
## 8974                             Spain 1789           0
## 8975                         Sri Lanka 1789           0
## 8976                             Sudan 1789           0
## 8977                          Suriname 1789           0
## 8978                         Swaziland 1789           0
## 8979                            Sweden 1789           0
## 8980                       Switzerland 1789           0
## 8981                             Syria 1789           0
## 8982                            Taiwan 1789           0
## 8983                        Tajikistan 1789           0
## 8984                          Tanzania 1789           0
## 8985                          Thailand 1789           0
## 8986                             Timor 1789           0
## 8987                              Togo 1789           0
## 8988                             Tonga 1789           0
## 8989               Trinidad and Tobago 1789           0
## 8990                           Tunisia 1789           0
## 8991                            Turkey 1789           0
## 8992                      Turkmenistan 1789           0
## 8993          Turks and Caicos Islands 1789           0
## 8994                            Tuvalu 1789           0
## 8995                            Uganda 1789           0
## 8996                           Ukraine 1789           0
## 8997              United Arab Emirates 1789           0
## 8998                    United Kingdom 1789   517301840
## 8999                     United States 1789           0
## 9000                           Uruguay 1789           0
## 9001                        Uzbekistan 1789           0
## 9002                           Vanuatu 1789           0
## 9003                         Venezuela 1789           0
## 9004                           Vietnam 1789           0
## 9005         Wallis and Futuna Islands 1789           0
## 9006                             World 1789   517320160
## 9007                             Yemen 1789           0
## 9008                            Zambia 1789           0
## 9009                          Zimbabwe 1789           0
## 9010                       Afghanistan 1790           0
## 9011                            Africa 1790           0
## 9012                           Albania 1790           0
## 9013                           Algeria 1790           0
## 9014                  Americas (other) 1790       21984
## 9015                           Andorra 1790           0
## 9016                            Angola 1790           0
## 9017                          Anguilla 1790           0
## 9018               Antarctic Fisheries 1790           0
## 9019               Antigua and Barbuda 1790           0
## 9020                         Argentina 1790           0
## 9021                           Armenia 1790           0
## 9022                             Aruba 1790           0
## 9023          Asia and Pacific (other) 1790           0
## 9024                         Australia 1790           0
## 9025                           Austria 1790           0
## 9026                        Azerbaijan 1790           0
## 9027                           Bahamas 1790           0
## 9028                           Bahrain 1790           0
## 9029                        Bangladesh 1790           0
## 9030                          Barbados 1790           0
## 9031                           Belarus 1790           0
## 9032                           Belgium 1790           0
## 9033                            Belize 1790           0
## 9034                             Benin 1790           0
## 9035                           Bermuda 1790           0
## 9036                            Bhutan 1790           0
## 9037                           Bolivia 1790           0
## 9038   Bonaire Sint Eustatius and Saba 1790           0
## 9039            Bosnia and Herzegovina 1790           0
## 9040                          Botswana 1790           0
## 9041                            Brazil 1790           0
## 9042            British Virgin Islands 1790           0
## 9043                            Brunei 1790           0
## 9044                          Bulgaria 1790           0
## 9045                      Burkina Faso 1790           0
## 9046                           Burundi 1790           0
## 9047                          Cambodia 1790           0
## 9048                          Cameroon 1790           0
## 9049                            Canada 1790       21984
## 9050                        Cape Verde 1790           0
## 9051                    Cayman Islands 1790           0
## 9052          Central African Republic 1790           0
## 9053                              Chad 1790           0
## 9054                             Chile 1790           0
## 9055                             China 1790           0
## 9056                  Christmas Island 1790           0
## 9057                          Colombia 1790           0
## 9058                           Comoros 1790           0
## 9059                             Congo 1790           0
## 9060                      Cook Islands 1790           0
## 9061                        Costa Rica 1790           0
## 9062                     Cote d'Ivoire 1790           0
## 9063                           Croatia 1790           0
## 9064                              Cuba 1790           0
## 9065                           Curacao 1790           0
## 9066                            Cyprus 1790           0
## 9067                    Czech Republic 1790           0
## 9068                    Czechoslovakia 1790           0
## 9069      Democratic Republic of Congo 1790           0
## 9070                           Denmark 1790           0
## 9071                          Djibouti 1790           0
## 9072                          Dominica 1790           0
## 9073                Dominican Republic 1790           0
## 9074                             EU-28 1790   536475552
## 9075                           Ecuador 1790           0
## 9076                             Egypt 1790           0
## 9077                       El Salvador 1790           0
## 9078                 Equatorial Guinea 1790           0
## 9079                           Eritrea 1790           0
## 9080                           Estonia 1790           0
## 9081                          Ethiopia 1790           0
## 9082                    Europe (other) 1790           0
## 9083                    Faeroe Islands 1790           0
## 9084                  Falkland Islands 1790           0
## 9085                              Fiji 1790           0
## 9086                           Finland 1790           0
## 9087                            France 1790           0
## 9088                     French Guiana 1790           0
## 9089                  French Polynesia 1790           0
## 9090                             Gabon 1790           0
## 9091                            Gambia 1790           0
## 9092                           Georgia 1790           0
## 9093                           Germany 1790           0
## 9094                             Ghana 1790           0
## 9095                         Gibraltar 1790           0
## 9096                            Greece 1790           0
## 9097                         Greenland 1790           0
## 9098                           Grenada 1790           0
## 9099                        Guadeloupe 1790           0
## 9100                         Guatemala 1790           0
## 9101                            Guinea 1790           0
## 9102                     Guinea-Bissau 1790           0
## 9103                            Guyana 1790           0
## 9104                             Haiti 1790           0
## 9105                          Honduras 1790           0
## 9106                         Hong Kong 1790           0
## 9107                           Hungary 1790           0
## 9108                           Iceland 1790           0
## 9109                             India 1790           0
## 9110                         Indonesia 1790           0
## 9111                              Iran 1790           0
## 9112                              Iraq 1790           0
## 9113                           Ireland 1790           0
## 9114                            Israel 1790           0
## 9115                             Italy 1790           0
## 9116                           Jamaica 1790           0
## 9117                             Japan 1790           0
## 9118                            Jordan 1790           0
## 9119                        Kazakhstan 1790           0
## 9120                             Kenya 1790           0
## 9121                          Kiribati 1790           0
## 9122                            Kuwait 1790           0
## 9123                        Kyrgysztan 1790           0
## 9124                        Kyrgyzstan 1790           0
## 9125                              Laos 1790           0
## 9126                            Latvia 1790           0
## 9127                           Lebanon 1790           0
## 9128                           Lesotho 1790           0
## 9129                           Liberia 1790           0
## 9130                             Libya 1790           0
## 9131                     Liechtenstein 1790           0
## 9132                         Lithuania 1790           0
## 9133                        Luxembourg 1790           0
## 9134                             Macao 1790           0
## 9135                         Macedonia 1790           0
## 9136                        Madagascar 1790           0
## 9137                            Malawi 1790           0
## 9138                          Malaysia 1790           0
## 9139                          Maldives 1790           0
## 9140                              Mali 1790           0
## 9141                             Malta 1790           0
## 9142                  Marshall Islands 1790           0
## 9143                        Martinique 1790           0
## 9144                        Mauritania 1790           0
## 9145                         Mauritius 1790           0
## 9146                            Mexico 1790           0
## 9147              Micronesia (country) 1790           0
## 9148                       Middle East 1790           0
## 9149                           Moldova 1790           0
## 9150                          Mongolia 1790           0
## 9151                        Montenegro 1790           0
## 9152                        Montserrat 1790           0
## 9153                           Morocco 1790           0
## 9154                        Mozambique 1790           0
## 9155                           Myanmar 1790           0
## 9156                           Namibia 1790           0
## 9157                             Nauru 1790           0
## 9158                             Nepal 1790           0
## 9159                       Netherlands 1790           0
## 9160                     New Caledonia 1790           0
## 9161                       New Zealand 1790           0
## 9162                         Nicaragua 1790           0
## 9163                             Niger 1790           0
## 9164                           Nigeria 1790           0
## 9165                              Niue 1790           0
## 9166                       North Korea 1790           0
## 9167                            Norway 1790           0
## 9168                              Oman 1790           0
## 9169                          Pakistan 1790           0
## 9170                             Palau 1790           0
## 9171                         Palestine 1790           0
## 9172                            Panama 1790           0
## 9173                  Papua New Guinea 1790           0
## 9174                          Paraguay 1790           0
## 9175                              Peru 1790           0
## 9176                       Philippines 1790           0
## 9177                            Poland 1790           0
## 9178                          Portugal 1790           0
## 9179                             Qatar 1790           0
## 9180                           Reunion 1790           0
## 9181                           Romania 1790           0
## 9182                            Russia 1790           0
## 9183                            Rwanda 1790           0
## 9184                      Saint Helena 1790           0
## 9185             Saint Kitts and Nevis 1790           0
## 9186                       Saint Lucia 1790           0
## 9187         Saint Pierre and Miquelon 1790           0
## 9188  Saint Vincent and the Grenadines 1790           0
## 9189                             Samoa 1790           0
## 9190             Sao Tome and Principe 1790           0
## 9191                      Saudi Arabia 1790           0
## 9192                           Senegal 1790           0
## 9193                            Serbia 1790           0
## 9194                        Seychelles 1790           0
## 9195                      Sierra Leone 1790           0
## 9196                         Singapore 1790           0
## 9197         Sint Maarten (Dutch part) 1790           0
## 9198                          Slovakia 1790           0
## 9199                          Slovenia 1790           0
## 9200                   Solomon Islands 1790           0
## 9201                           Somalia 1790           0
## 9202                      South Africa 1790           0
## 9203                       South Korea 1790           0
## 9204                       South Sudan 1790           0
## 9205                             Spain 1790           0
## 9206                         Sri Lanka 1790           0
## 9207                             Sudan 1790           0
## 9208                          Suriname 1790           0
## 9209                         Swaziland 1790           0
## 9210                            Sweden 1790           0
## 9211                       Switzerland 1790           0
## 9212                             Syria 1790           0
## 9213                            Taiwan 1790           0
## 9214                        Tajikistan 1790           0
## 9215                          Tanzania 1790           0
## 9216                          Thailand 1790           0
## 9217                             Timor 1790           0
## 9218                              Togo 1790           0
## 9219                             Tonga 1790           0
## 9220               Trinidad and Tobago 1790           0
## 9221                           Tunisia 1790           0
## 9222                            Turkey 1790           0
## 9223                      Turkmenistan 1790           0
## 9224          Turks and Caicos Islands 1790           0
## 9225                            Tuvalu 1790           0
## 9226                            Uganda 1790           0
## 9227                           Ukraine 1790           0
## 9228              United Arab Emirates 1790           0
## 9229                    United Kingdom 1790   536475552
## 9230                     United States 1790           0
## 9231                           Uruguay 1790           0
## 9232                        Uzbekistan 1790           0
## 9233                           Vanuatu 1790           0
## 9234                         Venezuela 1790           0
## 9235                           Vietnam 1790           0
## 9236         Wallis and Futuna Islands 1790           0
## 9237                             World 1790   536497536
## 9238                             Yemen 1790           0
## 9239                            Zambia 1790           0
## 9240                          Zimbabwe 1790           0
## 9241                       Afghanistan 1791           0
## 9242                            Africa 1791           0
## 9243                           Albania 1791           0
## 9244                           Algeria 1791           0
## 9245                  Americas (other) 1791       25648
## 9246                           Andorra 1791           0
## 9247                            Angola 1791           0
## 9248                          Anguilla 1791           0
## 9249               Antarctic Fisheries 1791           0
## 9250               Antigua and Barbuda 1791           0
## 9251                         Argentina 1791           0
## 9252                           Armenia 1791           0
## 9253                             Aruba 1791           0
## 9254          Asia and Pacific (other) 1791           0
## 9255                         Australia 1791           0
## 9256                           Austria 1791           0
## 9257                        Azerbaijan 1791           0
## 9258                           Bahamas 1791           0
## 9259                           Bahrain 1791           0
## 9260                        Bangladesh 1791           0
## 9261                          Barbados 1791           0
## 9262                           Belarus 1791           0
## 9263                           Belgium 1791           0
## 9264                            Belize 1791           0
## 9265                             Benin 1791           0
## 9266                           Bermuda 1791           0
## 9267                            Bhutan 1791           0
## 9268                           Bolivia 1791           0
## 9269   Bonaire Sint Eustatius and Saba 1791           0
## 9270            Bosnia and Herzegovina 1791           0
## 9271                          Botswana 1791           0
## 9272                            Brazil 1791           0
## 9273            British Virgin Islands 1791           0
## 9274                            Brunei 1791           0
## 9275                          Bulgaria 1791           0
## 9276                      Burkina Faso 1791           0
## 9277                           Burundi 1791           0
## 9278                          Cambodia 1791           0
## 9279                          Cameroon 1791           0
## 9280                            Canada 1791       25648
## 9281                        Cape Verde 1791           0
## 9282                    Cayman Islands 1791           0
## 9283          Central African Republic 1791           0
## 9284                              Chad 1791           0
## 9285                             Chile 1791           0
## 9286                             China 1791           0
## 9287                  Christmas Island 1791           0
## 9288                          Colombia 1791           0
## 9289                           Comoros 1791           0
## 9290                             Congo 1791           0
## 9291                      Cook Islands 1791           0
## 9292                        Costa Rica 1791           0
## 9293                     Cote d'Ivoire 1791           0
## 9294                           Croatia 1791           0
## 9295                              Cuba 1791           0
## 9296                           Curacao 1791           0
## 9297                            Cyprus 1791           0
## 9298                    Czech Republic 1791           0
## 9299                    Czechoslovakia 1791           0
## 9300      Democratic Republic of Congo 1791           0
## 9301                           Denmark 1791           0
## 9302                          Djibouti 1791           0
## 9303                          Dominica 1791           0
## 9304                Dominican Republic 1791           0
## 9305                             EU-28 1791   557891632
## 9306                           Ecuador 1791           0
## 9307                             Egypt 1791           0
## 9308                       El Salvador 1791           0
## 9309                 Equatorial Guinea 1791           0
## 9310                           Eritrea 1791           0
## 9311                           Estonia 1791           0
## 9312                          Ethiopia 1791           0
## 9313                    Europe (other) 1791           0
## 9314                    Faeroe Islands 1791           0
## 9315                  Falkland Islands 1791           0
## 9316                              Fiji 1791           0
## 9317                           Finland 1791           0
## 9318                            France 1791           0
## 9319                     French Guiana 1791           0
## 9320                  French Polynesia 1791           0
## 9321                             Gabon 1791           0
## 9322                            Gambia 1791           0
## 9323                           Georgia 1791           0
## 9324                           Germany 1791           0
## 9325                             Ghana 1791           0
## 9326                         Gibraltar 1791           0
## 9327                            Greece 1791           0
## 9328                         Greenland 1791           0
## 9329                           Grenada 1791           0
## 9330                        Guadeloupe 1791           0
## 9331                         Guatemala 1791           0
## 9332                            Guinea 1791           0
## 9333                     Guinea-Bissau 1791           0
## 9334                            Guyana 1791           0
## 9335                             Haiti 1791           0
## 9336                          Honduras 1791           0
## 9337                         Hong Kong 1791           0
## 9338                           Hungary 1791           0
## 9339                           Iceland 1791           0
## 9340                             India 1791           0
## 9341                         Indonesia 1791           0
## 9342                              Iran 1791           0
## 9343                              Iraq 1791           0
## 9344                           Ireland 1791           0
## 9345                            Israel 1791           0
## 9346                             Italy 1791           0
## 9347                           Jamaica 1791           0
## 9348                             Japan 1791           0
## 9349                            Jordan 1791           0
## 9350                        Kazakhstan 1791           0
## 9351                             Kenya 1791           0
## 9352                          Kiribati 1791           0
## 9353                            Kuwait 1791           0
## 9354                        Kyrgysztan 1791           0
## 9355                        Kyrgyzstan 1791           0
## 9356                              Laos 1791           0
## 9357                            Latvia 1791           0
## 9358                           Lebanon 1791           0
## 9359                           Lesotho 1791           0
## 9360                           Liberia 1791           0
## 9361                             Libya 1791           0
## 9362                     Liechtenstein 1791           0
## 9363                         Lithuania 1791           0
## 9364                        Luxembourg 1791           0
## 9365                             Macao 1791           0
## 9366                         Macedonia 1791           0
## 9367                        Madagascar 1791           0
## 9368                            Malawi 1791           0
## 9369                          Malaysia 1791           0
## 9370                          Maldives 1791           0
## 9371                              Mali 1791           0
## 9372                             Malta 1791           0
## 9373                  Marshall Islands 1791           0
## 9374                        Martinique 1791           0
## 9375                        Mauritania 1791           0
## 9376                         Mauritius 1791           0
## 9377                            Mexico 1791           0
## 9378              Micronesia (country) 1791           0
## 9379                       Middle East 1791           0
## 9380                           Moldova 1791           0
## 9381                          Mongolia 1791           0
## 9382                        Montenegro 1791           0
## 9383                        Montserrat 1791           0
## 9384                           Morocco 1791           0
## 9385                        Mozambique 1791           0
## 9386                           Myanmar 1791           0
## 9387                           Namibia 1791           0
## 9388                             Nauru 1791           0
## 9389                             Nepal 1791           0
## 9390                       Netherlands 1791           0
## 9391                     New Caledonia 1791           0
## 9392                       New Zealand 1791           0
## 9393                         Nicaragua 1791           0
## 9394                             Niger 1791           0
## 9395                           Nigeria 1791           0
## 9396                              Niue 1791           0
## 9397                       North Korea 1791           0
## 9398                            Norway 1791           0
## 9399                              Oman 1791           0
## 9400                          Pakistan 1791           0
## 9401                             Palau 1791           0
## 9402                         Palestine 1791           0
## 9403                            Panama 1791           0
## 9404                  Papua New Guinea 1791           0
## 9405                          Paraguay 1791           0
## 9406                              Peru 1791           0
## 9407                       Philippines 1791           0
## 9408                            Poland 1791           0
## 9409                          Portugal 1791           0
## 9410                             Qatar 1791           0
## 9411                           Reunion 1791           0
## 9412                           Romania 1791           0
## 9413                            Russia 1791           0
## 9414                            Rwanda 1791           0
## 9415                      Saint Helena 1791           0
## 9416             Saint Kitts and Nevis 1791           0
## 9417                       Saint Lucia 1791           0
## 9418         Saint Pierre and Miquelon 1791           0
## 9419  Saint Vincent and the Grenadines 1791           0
## 9420                             Samoa 1791           0
## 9421             Sao Tome and Principe 1791           0
## 9422                      Saudi Arabia 1791           0
## 9423                           Senegal 1791           0
## 9424                            Serbia 1791           0
## 9425                        Seychelles 1791           0
## 9426                      Sierra Leone 1791           0
## 9427                         Singapore 1791           0
## 9428         Sint Maarten (Dutch part) 1791           0
## 9429                          Slovakia 1791           0
## 9430                          Slovenia 1791           0
## 9431                   Solomon Islands 1791           0
## 9432                           Somalia 1791           0
## 9433                      South Africa 1791           0
## 9434                       South Korea 1791           0
## 9435                       South Sudan 1791           0
## 9436                             Spain 1791           0
## 9437                         Sri Lanka 1791           0
## 9438                             Sudan 1791           0
## 9439                          Suriname 1791           0
## 9440                         Swaziland 1791           0
## 9441                            Sweden 1791           0
## 9442                       Switzerland 1791           0
## 9443                             Syria 1791           0
## 9444                            Taiwan 1791           0
## 9445                        Tajikistan 1791           0
## 9446                          Tanzania 1791           0
## 9447                          Thailand 1791           0
## 9448                             Timor 1791           0
## 9449                              Togo 1791           0
## 9450                             Tonga 1791           0
## 9451               Trinidad and Tobago 1791           0
## 9452                           Tunisia 1791           0
## 9453                            Turkey 1791           0
## 9454                      Turkmenistan 1791           0
## 9455          Turks and Caicos Islands 1791           0
## 9456                            Tuvalu 1791           0
## 9457                            Uganda 1791           0
## 9458                           Ukraine 1791           0
## 9459              United Arab Emirates 1791           0
## 9460                    United Kingdom 1791   557891632
## 9461                     United States 1791           0
## 9462                           Uruguay 1791           0
## 9463                        Uzbekistan 1791           0
## 9464                           Vanuatu 1791           0
## 9465                         Venezuela 1791           0
## 9466                           Vietnam 1791           0
## 9467         Wallis and Futuna Islands 1791           0
## 9468                             World 1791   557917280
## 9469                             Yemen 1791           0
## 9470                            Zambia 1791           0
## 9471                          Zimbabwe 1791           0
## 9472                       Afghanistan 1792           0
## 9473                            Africa 1792           0
## 9474                           Albania 1792           0
## 9475                           Algeria 1792           0
## 9476                  Americas (other) 1792       29312
## 9477                           Andorra 1792           0
## 9478                            Angola 1792           0
## 9479                          Anguilla 1792           0
## 9480               Antarctic Fisheries 1792           0
## 9481               Antigua and Barbuda 1792           0
## 9482                         Argentina 1792           0
## 9483                           Armenia 1792           0
## 9484                             Aruba 1792           0
## 9485          Asia and Pacific (other) 1792           0
## 9486                         Australia 1792           0
## 9487                           Austria 1792           0
## 9488                        Azerbaijan 1792           0
## 9489                           Bahamas 1792           0
## 9490                           Bahrain 1792           0
## 9491                        Bangladesh 1792           0
## 9492                          Barbados 1792           0
## 9493                           Belarus 1792           0
## 9494                           Belgium 1792           0
## 9495                            Belize 1792           0
## 9496                             Benin 1792           0
## 9497                           Bermuda 1792           0
## 9498                            Bhutan 1792           0
## 9499                           Bolivia 1792           0
## 9500   Bonaire Sint Eustatius and Saba 1792           0
## 9501            Bosnia and Herzegovina 1792           0
## 9502                          Botswana 1792           0
## 9503                            Brazil 1792           0
## 9504            British Virgin Islands 1792           0
## 9505                            Brunei 1792           0
## 9506                          Bulgaria 1792           0
## 9507                      Burkina Faso 1792           0
## 9508                           Burundi 1792           0
## 9509                          Cambodia 1792           0
## 9510                          Cameroon 1792           0
## 9511                            Canada 1792       29312
## 9512                        Cape Verde 1792           0
## 9513                    Cayman Islands 1792           0
## 9514          Central African Republic 1792           0
## 9515                              Chad 1792           0
## 9516                             Chile 1792           0
## 9517                             China 1792           0
## 9518                  Christmas Island 1792           0
## 9519                          Colombia 1792           0
## 9520                           Comoros 1792           0
## 9521                             Congo 1792           0
## 9522                      Cook Islands 1792           0
## 9523                        Costa Rica 1792           0
## 9524                     Cote d'Ivoire 1792           0
## 9525                           Croatia 1792           0
## 9526                              Cuba 1792           0
## 9527                           Curacao 1792           0
## 9528                            Cyprus 1792           0
## 9529                    Czech Republic 1792           0
## 9530                    Czechoslovakia 1792           0
## 9531      Democratic Republic of Congo 1792           0
## 9532                           Denmark 1792           0
## 9533                          Djibouti 1792           0
## 9534                          Dominica 1792           0
## 9535                Dominican Republic 1792           0
## 9536                             EU-28 1792   579784032
## 9537                           Ecuador 1792           0
## 9538                             Egypt 1792           0
## 9539                       El Salvador 1792           0
## 9540                 Equatorial Guinea 1792           0
## 9541                           Eritrea 1792           0
## 9542                           Estonia 1792           0
## 9543                          Ethiopia 1792           0
## 9544                    Europe (other) 1792           0
## 9545                    Faeroe Islands 1792           0
## 9546                  Falkland Islands 1792           0
## 9547                              Fiji 1792           0
## 9548                           Finland 1792           0
## 9549                            France 1792           0
## 9550                     French Guiana 1792           0
## 9551                  French Polynesia 1792           0
## 9552                             Gabon 1792           0
## 9553                            Gambia 1792           0
## 9554                           Georgia 1792           0
## 9555                           Germany 1792      468992
## 9556                             Ghana 1792           0
## 9557                         Gibraltar 1792           0
## 9558                            Greece 1792           0
## 9559                         Greenland 1792           0
## 9560                           Grenada 1792           0
## 9561                        Guadeloupe 1792           0
## 9562                         Guatemala 1792           0
## 9563                            Guinea 1792           0
## 9564                     Guinea-Bissau 1792           0
## 9565                            Guyana 1792           0
## 9566                             Haiti 1792           0
## 9567                          Honduras 1792           0
## 9568                         Hong Kong 1792           0
## 9569                           Hungary 1792           0
## 9570                           Iceland 1792           0
## 9571                             India 1792           0
## 9572                         Indonesia 1792           0
## 9573                              Iran 1792           0
## 9574                              Iraq 1792           0
## 9575                           Ireland 1792           0
## 9576                            Israel 1792           0
## 9577                             Italy 1792           0
## 9578                           Jamaica 1792           0
## 9579                             Japan 1792           0
## 9580                            Jordan 1792           0
## 9581                        Kazakhstan 1792           0
## 9582                             Kenya 1792           0
## 9583                          Kiribati 1792           0
## 9584                            Kuwait 1792           0
## 9585                        Kyrgysztan 1792           0
## 9586                        Kyrgyzstan 1792           0
## 9587                              Laos 1792           0
## 9588                            Latvia 1792           0
## 9589                           Lebanon 1792           0
## 9590                           Lesotho 1792           0
## 9591                           Liberia 1792           0
## 9592                             Libya 1792           0
## 9593                     Liechtenstein 1792           0
## 9594                         Lithuania 1792           0
## 9595                        Luxembourg 1792           0
## 9596                             Macao 1792           0
## 9597                         Macedonia 1792           0
## 9598                        Madagascar 1792           0
## 9599                            Malawi 1792           0
## 9600                          Malaysia 1792           0
## 9601                          Maldives 1792           0
## 9602                              Mali 1792           0
## 9603                             Malta 1792           0
## 9604                  Marshall Islands 1792           0
## 9605                        Martinique 1792           0
## 9606                        Mauritania 1792           0
## 9607                         Mauritius 1792           0
## 9608                            Mexico 1792           0
## 9609              Micronesia (country) 1792           0
## 9610                       Middle East 1792           0
## 9611                           Moldova 1792           0
## 9612                          Mongolia 1792           0
## 9613                        Montenegro 1792           0
## 9614                        Montserrat 1792           0
## 9615                           Morocco 1792           0
## 9616                        Mozambique 1792           0
## 9617                           Myanmar 1792           0
## 9618                           Namibia 1792           0
## 9619                             Nauru 1792           0
## 9620                             Nepal 1792           0
## 9621                       Netherlands 1792           0
## 9622                     New Caledonia 1792           0
## 9623                       New Zealand 1792           0
## 9624                         Nicaragua 1792           0
## 9625                             Niger 1792           0
## 9626                           Nigeria 1792           0
## 9627                              Niue 1792           0
## 9628                       North Korea 1792           0
## 9629                            Norway 1792           0
## 9630                              Oman 1792           0
## 9631                          Pakistan 1792           0
## 9632                             Palau 1792           0
## 9633                         Palestine 1792           0
## 9634                            Panama 1792           0
## 9635                  Papua New Guinea 1792           0
## 9636                          Paraguay 1792           0
## 9637                              Peru 1792           0
## 9638                       Philippines 1792           0
## 9639                            Poland 1792           0
## 9640                          Portugal 1792           0
## 9641                             Qatar 1792           0
## 9642                           Reunion 1792           0
## 9643                           Romania 1792           0
## 9644                            Russia 1792           0
## 9645                            Rwanda 1792           0
## 9646                      Saint Helena 1792           0
## 9647             Saint Kitts and Nevis 1792           0
## 9648                       Saint Lucia 1792           0
## 9649         Saint Pierre and Miquelon 1792           0
## 9650  Saint Vincent and the Grenadines 1792           0
## 9651                             Samoa 1792           0
## 9652             Sao Tome and Principe 1792           0
## 9653                      Saudi Arabia 1792           0
## 9654                           Senegal 1792           0
## 9655                            Serbia 1792           0
## 9656                        Seychelles 1792           0
## 9657                      Sierra Leone 1792           0
## 9658                         Singapore 1792           0
## 9659         Sint Maarten (Dutch part) 1792           0
## 9660                          Slovakia 1792           0
## 9661                          Slovenia 1792           0
## 9662                   Solomon Islands 1792           0
## 9663                           Somalia 1792           0
## 9664                      South Africa 1792           0
## 9665                       South Korea 1792           0
## 9666                       South Sudan 1792           0
## 9667                             Spain 1792           0
## 9668                         Sri Lanka 1792           0
## 9669                             Sudan 1792           0
## 9670                          Suriname 1792           0
## 9671                         Swaziland 1792           0
## 9672                            Sweden 1792           0
## 9673                       Switzerland 1792           0
## 9674                             Syria 1792           0
## 9675                            Taiwan 1792           0
## 9676                        Tajikistan 1792           0
## 9677                          Tanzania 1792           0
## 9678                          Thailand 1792           0
## 9679                             Timor 1792           0
## 9680                              Togo 1792           0
## 9681                             Tonga 1792           0
## 9682               Trinidad and Tobago 1792           0
## 9683                           Tunisia 1792           0
## 9684                            Turkey 1792           0
## 9685                      Turkmenistan 1792           0
## 9686          Turks and Caicos Islands 1792           0
## 9687                            Tuvalu 1792           0
## 9688                            Uganda 1792           0
## 9689                           Ukraine 1792           0
## 9690              United Arab Emirates 1792           0
## 9691                    United Kingdom 1792   579315040
## 9692                     United States 1792           0
## 9693                           Uruguay 1792           0
## 9694                        Uzbekistan 1792           0
## 9695                           Vanuatu 1792           0
## 9696                         Venezuela 1792           0
## 9697                           Vietnam 1792           0
## 9698         Wallis and Futuna Islands 1792           0
## 9699                             World 1792   579813344
## 9700                             Yemen 1792           0
## 9701                            Zambia 1792           0
## 9702                          Zimbabwe 1792           0
## 9703                       Afghanistan 1793           0
## 9704                            Africa 1793           0
## 9705                           Albania 1793           0
## 9706                           Algeria 1793           0
## 9707                  Americas (other) 1793       32976
## 9708                           Andorra 1793           0
## 9709                            Angola 1793           0
## 9710                          Anguilla 1793           0
## 9711               Antarctic Fisheries 1793           0
## 9712               Antigua and Barbuda 1793           0
## 9713                         Argentina 1793           0
## 9714                           Armenia 1793           0
## 9715                             Aruba 1793           0
## 9716          Asia and Pacific (other) 1793           0
## 9717                         Australia 1793           0
## 9718                           Austria 1793           0
## 9719                        Azerbaijan 1793           0
## 9720                           Bahamas 1793           0
## 9721                           Bahrain 1793           0
## 9722                        Bangladesh 1793           0
## 9723                          Barbados 1793           0
## 9724                           Belarus 1793           0
## 9725                           Belgium 1793           0
## 9726                            Belize 1793           0
## 9727                             Benin 1793           0
## 9728                           Bermuda 1793           0
## 9729                            Bhutan 1793           0
## 9730                           Bolivia 1793           0
## 9731   Bonaire Sint Eustatius and Saba 1793           0
## 9732            Bosnia and Herzegovina 1793           0
## 9733                          Botswana 1793           0
## 9734                            Brazil 1793           0
## 9735            British Virgin Islands 1793           0
## 9736                            Brunei 1793           0
## 9737                          Bulgaria 1793           0
## 9738                      Burkina Faso 1793           0
## 9739                           Burundi 1793           0
## 9740                          Cambodia 1793           0
## 9741                          Cameroon 1793           0
## 9742                            Canada 1793       32976
## 9743                        Cape Verde 1793           0
## 9744                    Cayman Islands 1793           0
## 9745          Central African Republic 1793           0
## 9746                              Chad 1793           0
## 9747                             Chile 1793           0
## 9748                             China 1793           0
## 9749                  Christmas Island 1793           0
## 9750                          Colombia 1793           0
## 9751                           Comoros 1793           0
## 9752                             Congo 1793           0
## 9753                      Cook Islands 1793           0
## 9754                        Costa Rica 1793           0
## 9755                     Cote d'Ivoire 1793           0
## 9756                           Croatia 1793           0
## 9757                              Cuba 1793           0
## 9758                           Curacao 1793           0
## 9759                            Cyprus 1793           0
## 9760                    Czech Republic 1793           0
## 9761                    Czechoslovakia 1793           0
## 9762      Democratic Republic of Congo 1793           0
## 9763                           Denmark 1793           0
## 9764                          Djibouti 1793           0
## 9765                          Dominica 1793           0
## 9766                Dominican Republic 1793           0
## 9767                             EU-28 1793   601694752
## 9768                           Ecuador 1793           0
## 9769                             Egypt 1793           0
## 9770                       El Salvador 1793           0
## 9771                 Equatorial Guinea 1793           0
## 9772                           Eritrea 1793           0
## 9773                           Estonia 1793           0
## 9774                          Ethiopia 1793           0
## 9775                    Europe (other) 1793           0
## 9776                    Faeroe Islands 1793           0
## 9777                  Falkland Islands 1793           0
## 9778                              Fiji 1793           0
## 9779                           Finland 1793           0
## 9780                            France 1793           0
## 9781                     French Guiana 1793           0
## 9782                  French Polynesia 1793           0
## 9783                             Gabon 1793           0
## 9784                            Gambia 1793           0
## 9785                           Georgia 1793           0
## 9786                           Germany 1793      948976
## 9787                             Ghana 1793           0
## 9788                         Gibraltar 1793           0
## 9789                            Greece 1793           0
## 9790                         Greenland 1793           0
## 9791                           Grenada 1793           0
## 9792                        Guadeloupe 1793           0
## 9793                         Guatemala 1793           0
## 9794                            Guinea 1793           0
## 9795                     Guinea-Bissau 1793           0
## 9796                            Guyana 1793           0
## 9797                             Haiti 1793           0
## 9798                          Honduras 1793           0
## 9799                         Hong Kong 1793           0
## 9800                           Hungary 1793           0
## 9801                           Iceland 1793           0
## 9802                             India 1793           0
## 9803                         Indonesia 1793           0
## 9804                              Iran 1793           0
## 9805                              Iraq 1793           0
## 9806                           Ireland 1793           0
## 9807                            Israel 1793           0
## 9808                             Italy 1793           0
## 9809                           Jamaica 1793           0
## 9810                             Japan 1793           0
## 9811                            Jordan 1793           0
## 9812                        Kazakhstan 1793           0
## 9813                             Kenya 1793           0
## 9814                          Kiribati 1793           0
## 9815                            Kuwait 1793           0
## 9816                        Kyrgysztan 1793           0
## 9817                        Kyrgyzstan 1793           0
## 9818                              Laos 1793           0
## 9819                            Latvia 1793           0
## 9820                           Lebanon 1793           0
## 9821                           Lesotho 1793           0
## 9822                           Liberia 1793           0
## 9823                             Libya 1793           0
## 9824                     Liechtenstein 1793           0
## 9825                         Lithuania 1793           0
## 9826                        Luxembourg 1793           0
## 9827                             Macao 1793           0
## 9828                         Macedonia 1793           0
## 9829                        Madagascar 1793           0
## 9830                            Malawi 1793           0
## 9831                          Malaysia 1793           0
## 9832                          Maldives 1793           0
## 9833                              Mali 1793           0
## 9834                             Malta 1793           0
## 9835                  Marshall Islands 1793           0
## 9836                        Martinique 1793           0
## 9837                        Mauritania 1793           0
## 9838                         Mauritius 1793           0
## 9839                            Mexico 1793           0
## 9840              Micronesia (country) 1793           0
## 9841                       Middle East 1793           0
## 9842                           Moldova 1793           0
## 9843                          Mongolia 1793           0
## 9844                        Montenegro 1793           0
## 9845                        Montserrat 1793           0
## 9846                           Morocco 1793           0
## 9847                        Mozambique 1793           0
## 9848                           Myanmar 1793           0
## 9849                           Namibia 1793           0
## 9850                             Nauru 1793           0
## 9851                             Nepal 1793           0
## 9852                       Netherlands 1793           0
## 9853                     New Caledonia 1793           0
## 9854                       New Zealand 1793           0
## 9855                         Nicaragua 1793           0
## 9856                             Niger 1793           0
## 9857                           Nigeria 1793           0
## 9858                              Niue 1793           0
## 9859                       North Korea 1793           0
## 9860                            Norway 1793           0
## 9861                              Oman 1793           0
## 9862                          Pakistan 1793           0
## 9863                             Palau 1793           0
## 9864                         Palestine 1793           0
## 9865                            Panama 1793           0
## 9866                  Papua New Guinea 1793           0
## 9867                          Paraguay 1793           0
## 9868                              Peru 1793           0
## 9869                       Philippines 1793           0
## 9870                            Poland 1793           0
## 9871                          Portugal 1793           0
## 9872                             Qatar 1793           0
## 9873                           Reunion 1793           0
## 9874                           Romania 1793           0
## 9875                            Russia 1793           0
## 9876                            Rwanda 1793           0
## 9877                      Saint Helena 1793           0
## 9878             Saint Kitts and Nevis 1793           0
## 9879                       Saint Lucia 1793           0
## 9880         Saint Pierre and Miquelon 1793           0
## 9881  Saint Vincent and the Grenadines 1793           0
## 9882                             Samoa 1793           0
## 9883             Sao Tome and Principe 1793           0
## 9884                      Saudi Arabia 1793           0
## 9885                           Senegal 1793           0
## 9886                            Serbia 1793           0
## 9887                        Seychelles 1793           0
## 9888                      Sierra Leone 1793           0
## 9889                         Singapore 1793           0
## 9890         Sint Maarten (Dutch part) 1793           0
## 9891                          Slovakia 1793           0
## 9892                          Slovenia 1793           0
## 9893                   Solomon Islands 1793           0
## 9894                           Somalia 1793           0
## 9895                      South Africa 1793           0
## 9896                       South Korea 1793           0
## 9897                       South Sudan 1793           0
## 9898                             Spain 1793           0
## 9899                         Sri Lanka 1793           0
## 9900                             Sudan 1793           0
## 9901                          Suriname 1793           0
## 9902                         Swaziland 1793           0
## 9903                            Sweden 1793           0
## 9904                       Switzerland 1793           0
## 9905                             Syria 1793           0
## 9906                            Taiwan 1793           0
## 9907                        Tajikistan 1793           0
## 9908                          Tanzania 1793           0
## 9909                          Thailand 1793           0
## 9910                             Timor 1793           0
## 9911                              Togo 1793           0
## 9912                             Tonga 1793           0
## 9913               Trinidad and Tobago 1793           0
## 9914                           Tunisia 1793           0
## 9915                            Turkey 1793           0
## 9916                      Turkmenistan 1793           0
## 9917          Turks and Caicos Islands 1793           0
## 9918                            Tuvalu 1793           0
## 9919                            Uganda 1793           0
## 9920                           Ukraine 1793           0
## 9921              United Arab Emirates 1793           0
## 9922                    United Kingdom 1793   600745776
## 9923                     United States 1793           0
## 9924                           Uruguay 1793           0
## 9925                        Uzbekistan 1793           0
## 9926                           Vanuatu 1793           0
## 9927                         Venezuela 1793           0
## 9928                           Vietnam 1793           0
## 9929         Wallis and Futuna Islands 1793           0
## 9930                             World 1793   601727728
## 9931                             Yemen 1793           0
## 9932                            Zambia 1793           0
## 9933                          Zimbabwe 1793           0
## 9934                       Afghanistan 1794           0
## 9935                            Africa 1794           0
## 9936                           Albania 1794           0
## 9937                           Algeria 1794           0
## 9938                  Americas (other) 1794       36640
## 9939                           Andorra 1794           0
## 9940                            Angola 1794           0
## 9941                          Anguilla 1794           0
## 9942               Antarctic Fisheries 1794           0
## 9943               Antigua and Barbuda 1794           0
## 9944                         Argentina 1794           0
## 9945                           Armenia 1794           0
## 9946                             Aruba 1794           0
## 9947          Asia and Pacific (other) 1794           0
## 9948                         Australia 1794           0
## 9949                           Austria 1794           0
## 9950                        Azerbaijan 1794           0
## 9951                           Bahamas 1794           0
## 9952                           Bahrain 1794           0
## 9953                        Bangladesh 1794           0
## 9954                          Barbados 1794           0
## 9955                           Belarus 1794           0
## 9956                           Belgium 1794           0
## 9957                            Belize 1794           0
## 9958                             Benin 1794           0
## 9959                           Bermuda 1794           0
## 9960                            Bhutan 1794           0
## 9961                           Bolivia 1794           0
## 9962   Bonaire Sint Eustatius and Saba 1794           0
## 9963            Bosnia and Herzegovina 1794           0
## 9964                          Botswana 1794           0
## 9965                            Brazil 1794           0
## 9966            British Virgin Islands 1794           0
## 9967                            Brunei 1794           0
## 9968                          Bulgaria 1794           0
## 9969                      Burkina Faso 1794           0
## 9970                           Burundi 1794           0
## 9971                          Cambodia 1794           0
## 9972                          Cameroon 1794           0
## 9973                            Canada 1794       36640
## 9974                        Cape Verde 1794           0
## 9975                    Cayman Islands 1794           0
## 9976          Central African Republic 1794           0
## 9977                              Chad 1794           0
## 9978                             Chile 1794           0
## 9979                             China 1794           0
## 9980                  Christmas Island 1794           0
## 9981                          Colombia 1794           0
## 9982                           Comoros 1794           0
## 9983                             Congo 1794           0
## 9984                      Cook Islands 1794           0
## 9985                        Costa Rica 1794           0
## 9986                     Cote d'Ivoire 1794           0
## 9987                           Croatia 1794           0
## 9988                              Cuba 1794           0
## 9989                           Curacao 1794           0
## 9990                            Cyprus 1794           0
## 9991                    Czech Republic 1794           0
## 9992                    Czechoslovakia 1794           0
## 9993      Democratic Republic of Congo 1794           0
## 9994                           Denmark 1794           0
## 9995                          Djibouti 1794           0
## 9996                          Dominica 1794           0
## 9997                Dominican Republic 1794           0
## 9998                             EU-28 1794   623572496
## 9999                           Ecuador 1794           0
## 10000                            Egypt 1794           0
## 10001                      El Salvador 1794           0
## 10002                Equatorial Guinea 1794           0
## 10003                          Eritrea 1794           0
## 10004                          Estonia 1794           0
## 10005                         Ethiopia 1794           0
## 10006                   Europe (other) 1794           0
## 10007                   Faeroe Islands 1794           0
## 10008                 Falkland Islands 1794           0
## 10009                             Fiji 1794           0
## 10010                          Finland 1794           0
## 10011                           France 1794           0
## 10012                    French Guiana 1794           0
## 10013                 French Polynesia 1794           0
## 10014                            Gabon 1794           0
## 10015                           Gambia 1794           0
## 10016                          Georgia 1794           0
## 10017                          Germany 1794     1392320
## 10018                            Ghana 1794           0
## 10019                        Gibraltar 1794           0
## 10020                           Greece 1794           0
## 10021                        Greenland 1794           0
## 10022                          Grenada 1794           0
## 10023                       Guadeloupe 1794           0
## 10024                        Guatemala 1794           0
## 10025                           Guinea 1794           0
## 10026                    Guinea-Bissau 1794           0
## 10027                           Guyana 1794           0
## 10028                            Haiti 1794           0
## 10029                         Honduras 1794           0
## 10030                        Hong Kong 1794           0
## 10031                          Hungary 1794           0
## 10032                          Iceland 1794           0
## 10033                            India 1794           0
## 10034                        Indonesia 1794           0
## 10035                             Iran 1794           0
## 10036                             Iraq 1794           0
## 10037                          Ireland 1794           0
## 10038                           Israel 1794           0
## 10039                            Italy 1794           0
## 10040                          Jamaica 1794           0
## 10041                            Japan 1794           0
## 10042                           Jordan 1794           0
## 10043                       Kazakhstan 1794           0
## 10044                            Kenya 1794           0
## 10045                         Kiribati 1794           0
## 10046                           Kuwait 1794           0
## 10047                       Kyrgysztan 1794           0
## 10048                       Kyrgyzstan 1794           0
## 10049                             Laos 1794           0
## 10050                           Latvia 1794           0
## 10051                          Lebanon 1794           0
## 10052                          Lesotho 1794           0
## 10053                          Liberia 1794           0
## 10054                            Libya 1794           0
## 10055                    Liechtenstein 1794           0
## 10056                        Lithuania 1794           0
## 10057                       Luxembourg 1794           0
## 10058                            Macao 1794           0
## 10059                        Macedonia 1794           0
## 10060                       Madagascar 1794           0
## 10061                           Malawi 1794           0
## 10062                         Malaysia 1794           0
## 10063                         Maldives 1794           0
## 10064                             Mali 1794           0
## 10065                            Malta 1794           0
## 10066                 Marshall Islands 1794           0
## 10067                       Martinique 1794           0
## 10068                       Mauritania 1794           0
## 10069                        Mauritius 1794           0
## 10070                           Mexico 1794           0
## 10071             Micronesia (country) 1794           0
## 10072                      Middle East 1794           0
## 10073                          Moldova 1794           0
## 10074                         Mongolia 1794           0
## 10075                       Montenegro 1794           0
## 10076                       Montserrat 1794           0
## 10077                          Morocco 1794           0
## 10078                       Mozambique 1794           0
## 10079                          Myanmar 1794           0
## 10080                          Namibia 1794           0
## 10081                            Nauru 1794           0
## 10082                            Nepal 1794           0
## 10083                      Netherlands 1794           0
## 10084                    New Caledonia 1794           0
## 10085                      New Zealand 1794           0
## 10086                        Nicaragua 1794           0
## 10087                            Niger 1794           0
## 10088                          Nigeria 1794           0
## 10089                             Niue 1794           0
## 10090                      North Korea 1794           0
## 10091                           Norway 1794           0
## 10092                             Oman 1794           0
## 10093                         Pakistan 1794           0
## 10094                            Palau 1794           0
## 10095                        Palestine 1794           0
## 10096                           Panama 1794           0
## 10097                 Papua New Guinea 1794           0
## 10098                         Paraguay 1794           0
## 10099                             Peru 1794           0
## 10100                      Philippines 1794           0
## 10101                           Poland 1794           0
## 10102                         Portugal 1794           0
## 10103                            Qatar 1794           0
## 10104                          Reunion 1794           0
## 10105                          Romania 1794           0
## 10106                           Russia 1794           0
## 10107                           Rwanda 1794           0
## 10108                     Saint Helena 1794           0
## 10109            Saint Kitts and Nevis 1794           0
## 10110                      Saint Lucia 1794           0
## 10111        Saint Pierre and Miquelon 1794           0
## 10112 Saint Vincent and the Grenadines 1794           0
## 10113                            Samoa 1794           0
## 10114            Sao Tome and Principe 1794           0
## 10115                     Saudi Arabia 1794           0
## 10116                          Senegal 1794           0
## 10117                           Serbia 1794           0
## 10118                       Seychelles 1794           0
## 10119                     Sierra Leone 1794           0
## 10120                        Singapore 1794           0
## 10121        Sint Maarten (Dutch part) 1794           0
## 10122                         Slovakia 1794           0
## 10123                         Slovenia 1794           0
## 10124                  Solomon Islands 1794           0
## 10125                          Somalia 1794           0
## 10126                     South Africa 1794           0
## 10127                      South Korea 1794           0
## 10128                      South Sudan 1794           0
## 10129                            Spain 1794           0
## 10130                        Sri Lanka 1794           0
## 10131                            Sudan 1794           0
## 10132                         Suriname 1794           0
## 10133                        Swaziland 1794           0
## 10134                           Sweden 1794           0
## 10135                      Switzerland 1794           0
## 10136                            Syria 1794           0
## 10137                           Taiwan 1794           0
## 10138                       Tajikistan 1794           0
## 10139                         Tanzania 1794           0
## 10140                         Thailand 1794           0
## 10141                            Timor 1794           0
## 10142                             Togo 1794           0
## 10143                            Tonga 1794           0
## 10144              Trinidad and Tobago 1794           0
## 10145                          Tunisia 1794           0
## 10146                           Turkey 1794           0
## 10147                     Turkmenistan 1794           0
## 10148         Turks and Caicos Islands 1794           0
## 10149                           Tuvalu 1794           0
## 10150                           Uganda 1794           0
## 10151                          Ukraine 1794           0
## 10152             United Arab Emirates 1794           0
## 10153                   United Kingdom 1794   622180176
## 10154                    United States 1794           0
## 10155                          Uruguay 1794           0
## 10156                       Uzbekistan 1794           0
## 10157                          Vanuatu 1794           0
## 10158                        Venezuela 1794           0
## 10159                          Vietnam 1794           0
## 10160        Wallis and Futuna Islands 1794           0
## 10161                            World 1794   623609136
## 10162                            Yemen 1794           0
## 10163                           Zambia 1794           0
## 10164                         Zimbabwe 1794           0
## 10165                      Afghanistan 1795           0
## 10166                           Africa 1795           0
## 10167                          Albania 1795           0
## 10168                          Algeria 1795           0
## 10169                 Americas (other) 1795       40304
## 10170                          Andorra 1795           0
## 10171                           Angola 1795           0
## 10172                         Anguilla 1795           0
## 10173              Antarctic Fisheries 1795           0
## 10174              Antigua and Barbuda 1795           0
## 10175                        Argentina 1795           0
## 10176                          Armenia 1795           0
## 10177                            Aruba 1795           0
## 10178         Asia and Pacific (other) 1795           0
## 10179                        Australia 1795           0
## 10180                          Austria 1795           0
## 10181                       Azerbaijan 1795           0
## 10182                          Bahamas 1795           0
## 10183                          Bahrain 1795           0
## 10184                       Bangladesh 1795           0
## 10185                         Barbados 1795           0
## 10186                          Belarus 1795           0
## 10187                          Belgium 1795           0
## 10188                           Belize 1795           0
## 10189                            Benin 1795           0
## 10190                          Bermuda 1795           0
## 10191                           Bhutan 1795           0
## 10192                          Bolivia 1795           0
## 10193  Bonaire Sint Eustatius and Saba 1795           0
## 10194           Bosnia and Herzegovina 1795           0
## 10195                         Botswana 1795           0
## 10196                           Brazil 1795           0
## 10197           British Virgin Islands 1795           0
## 10198                           Brunei 1795           0
## 10199                         Bulgaria 1795           0
## 10200                     Burkina Faso 1795           0
## 10201                          Burundi 1795           0
## 10202                         Cambodia 1795           0
## 10203                         Cameroon 1795           0
## 10204                           Canada 1795       40304
## 10205                       Cape Verde 1795           0
## 10206                   Cayman Islands 1795           0
## 10207         Central African Republic 1795           0
## 10208                             Chad 1795           0
## 10209                            Chile 1795           0
## 10210                            China 1795           0
## 10211                 Christmas Island 1795           0
## 10212                         Colombia 1795           0
## 10213                          Comoros 1795           0
## 10214                            Congo 1795           0
## 10215                     Cook Islands 1795           0
## 10216                       Costa Rica 1795           0
## 10217                    Cote d'Ivoire 1795           0
## 10218                          Croatia 1795           0
## 10219                             Cuba 1795           0
## 10220                          Curacao 1795           0
## 10221                           Cyprus 1795           0
## 10222                   Czech Republic 1795           0
## 10223                   Czechoslovakia 1795           0
## 10224     Democratic Republic of Congo 1795           0
## 10225                          Denmark 1795           0
## 10226                         Djibouti 1795           0
## 10227                         Dominica 1795           0
## 10228               Dominican Republic 1795           0
## 10229                            EU-28 1795   645461232
## 10230                          Ecuador 1795           0
## 10231                            Egypt 1795           0
## 10232                      El Salvador 1795           0
## 10233                Equatorial Guinea 1795           0
## 10234                          Eritrea 1795           0
## 10235                          Estonia 1795           0
## 10236                         Ethiopia 1795           0
## 10237                   Europe (other) 1795           0
## 10238                   Faeroe Islands 1795           0
## 10239                 Falkland Islands 1795           0
## 10240                             Fiji 1795           0
## 10241                          Finland 1795           0
## 10242                           France 1795           0
## 10243                    French Guiana 1795           0
## 10244                 French Polynesia 1795           0
## 10245                            Gabon 1795           0
## 10246                           Gambia 1795           0
## 10247                          Georgia 1795           0
## 10248                          Germany 1795     1839328
## 10249                            Ghana 1795           0
## 10250                        Gibraltar 1795           0
## 10251                           Greece 1795           0
## 10252                        Greenland 1795           0
## 10253                          Grenada 1795           0
## 10254                       Guadeloupe 1795           0
## 10255                        Guatemala 1795           0
## 10256                           Guinea 1795           0
## 10257                    Guinea-Bissau 1795           0
## 10258                           Guyana 1795           0
## 10259                            Haiti 1795           0
## 10260                         Honduras 1795           0
## 10261                        Hong Kong 1795           0
## 10262                          Hungary 1795           0
## 10263                          Iceland 1795           0
## 10264                            India 1795           0
## 10265                        Indonesia 1795           0
## 10266                             Iran 1795           0
## 10267                             Iraq 1795           0
## 10268                          Ireland 1795           0
## 10269                           Israel 1795           0
## 10270                            Italy 1795           0
## 10271                          Jamaica 1795           0
## 10272                            Japan 1795           0
## 10273                           Jordan 1795           0
## 10274                       Kazakhstan 1795           0
## 10275                            Kenya 1795           0
## 10276                         Kiribati 1795           0
## 10277                           Kuwait 1795           0
## 10278                       Kyrgysztan 1795           0
## 10279                       Kyrgyzstan 1795           0
## 10280                             Laos 1795           0
## 10281                           Latvia 1795           0
## 10282                          Lebanon 1795           0
## 10283                          Lesotho 1795           0
## 10284                          Liberia 1795           0
## 10285                            Libya 1795           0
## 10286                    Liechtenstein 1795           0
## 10287                        Lithuania 1795           0
## 10288                       Luxembourg 1795           0
## 10289                            Macao 1795           0
## 10290                        Macedonia 1795           0
## 10291                       Madagascar 1795           0
## 10292                           Malawi 1795           0
## 10293                         Malaysia 1795           0
## 10294                         Maldives 1795           0
## 10295                             Mali 1795           0
## 10296                            Malta 1795           0
## 10297                 Marshall Islands 1795           0
## 10298                       Martinique 1795           0
## 10299                       Mauritania 1795           0
## 10300                        Mauritius 1795           0
## 10301                           Mexico 1795           0
## 10302             Micronesia (country) 1795           0
## 10303                      Middle East 1795           0
## 10304                          Moldova 1795           0
## 10305                         Mongolia 1795           0
## 10306                       Montenegro 1795           0
## 10307                       Montserrat 1795           0
## 10308                          Morocco 1795           0
## 10309                       Mozambique 1795           0
## 10310                          Myanmar 1795           0
## 10311                          Namibia 1795           0
## 10312                            Nauru 1795           0
## 10313                            Nepal 1795           0
## 10314                      Netherlands 1795           0
## 10315                    New Caledonia 1795           0
## 10316                      New Zealand 1795           0
## 10317                        Nicaragua 1795           0
## 10318                            Niger 1795           0
## 10319                          Nigeria 1795           0
## 10320                             Niue 1795           0
## 10321                      North Korea 1795           0
## 10322                           Norway 1795           0
## 10323                             Oman 1795           0
## 10324                         Pakistan 1795           0
## 10325                            Palau 1795           0
## 10326                        Palestine 1795           0
## 10327                           Panama 1795           0
## 10328                 Papua New Guinea 1795           0
## 10329                         Paraguay 1795           0
## 10330                             Peru 1795           0
## 10331                      Philippines 1795           0
## 10332                           Poland 1795           0
## 10333                         Portugal 1795           0
## 10334                            Qatar 1795           0
## 10335                          Reunion 1795           0
## 10336                          Romania 1795           0
## 10337                           Russia 1795           0
## 10338                           Rwanda 1795           0
## 10339                     Saint Helena 1795           0
## 10340            Saint Kitts and Nevis 1795           0
## 10341                      Saint Lucia 1795           0
## 10342        Saint Pierre and Miquelon 1795           0
## 10343 Saint Vincent and the Grenadines 1795           0
## 10344                            Samoa 1795           0
## 10345            Sao Tome and Principe 1795           0
## 10346                     Saudi Arabia 1795           0
## 10347                          Senegal 1795           0
## 10348                           Serbia 1795           0
## 10349                       Seychelles 1795           0
## 10350                     Sierra Leone 1795           0
## 10351                        Singapore 1795           0
## 10352        Sint Maarten (Dutch part) 1795           0
## 10353                         Slovakia 1795           0
## 10354                         Slovenia 1795           0
## 10355                  Solomon Islands 1795           0
## 10356                          Somalia 1795           0
## 10357                     South Africa 1795           0
## 10358                      South Korea 1795           0
## 10359                      South Sudan 1795           0
## 10360                            Spain 1795           0
## 10361                        Sri Lanka 1795           0
## 10362                            Sudan 1795           0
## 10363                         Suriname 1795           0
## 10364                        Swaziland 1795           0
## 10365                           Sweden 1795           0
## 10366                      Switzerland 1795           0
## 10367                            Syria 1795           0
## 10368                           Taiwan 1795           0
## 10369                       Tajikistan 1795           0
## 10370                         Tanzania 1795           0
## 10371                         Thailand 1795           0
## 10372                            Timor 1795           0
## 10373                             Togo 1795           0
## 10374                            Tonga 1795           0
## 10375              Trinidad and Tobago 1795           0
## 10376                          Tunisia 1795           0
## 10377                           Turkey 1795           0
## 10378                     Turkmenistan 1795           0
## 10379         Turks and Caicos Islands 1795           0
## 10380                           Tuvalu 1795           0
## 10381                           Uganda 1795           0
## 10382                          Ukraine 1795           0
## 10383             United Arab Emirates 1795           0
## 10384                   United Kingdom 1795   643621904
## 10385                    United States 1795           0
## 10386                          Uruguay 1795           0
## 10387                       Uzbekistan 1795           0
## 10388                          Vanuatu 1795           0
## 10389                        Venezuela 1795           0
## 10390                          Vietnam 1795           0
## 10391        Wallis and Futuna Islands 1795           0
## 10392                            World 1795   645501536
## 10393                            Yemen 1795           0
## 10394                           Zambia 1795           0
## 10395                         Zimbabwe 1795           0
## 10396                      Afghanistan 1796           0
## 10397                           Africa 1796           0
## 10398                          Albania 1796           0
## 10399                          Algeria 1796           0
## 10400                 Americas (other) 1796       43968
## 10401                          Andorra 1796           0
## 10402                           Angola 1796           0
## 10403                         Anguilla 1796           0
## 10404              Antarctic Fisheries 1796           0
## 10405              Antigua and Barbuda 1796           0
## 10406                        Argentina 1796           0
## 10407                          Armenia 1796           0
## 10408                            Aruba 1796           0
## 10409         Asia and Pacific (other) 1796           0
## 10410                        Australia 1796           0
## 10411                          Austria 1796           0
## 10412                       Azerbaijan 1796           0
## 10413                          Bahamas 1796           0
## 10414                          Bahrain 1796           0
## 10415                       Bangladesh 1796           0
## 10416                         Barbados 1796           0
## 10417                          Belarus 1796           0
## 10418                          Belgium 1796           0
## 10419                           Belize 1796           0
## 10420                            Benin 1796           0
## 10421                          Bermuda 1796           0
## 10422                           Bhutan 1796           0
## 10423                          Bolivia 1796           0
## 10424  Bonaire Sint Eustatius and Saba 1796           0
## 10425           Bosnia and Herzegovina 1796           0
## 10426                         Botswana 1796           0
## 10427                           Brazil 1796           0
## 10428           British Virgin Islands 1796           0
## 10429                           Brunei 1796           0
## 10430                         Bulgaria 1796           0
## 10431                     Burkina Faso 1796           0
## 10432                          Burundi 1796           0
## 10433                         Cambodia 1796           0
## 10434                         Cameroon 1796           0
## 10435                           Canada 1796       43968
## 10436                       Cape Verde 1796           0
## 10437                   Cayman Islands 1796           0
## 10438         Central African Republic 1796           0
## 10439                             Chad 1796           0
## 10440                            Chile 1796           0
## 10441                            China 1796           0
## 10442                 Christmas Island 1796           0
## 10443                         Colombia 1796           0
## 10444                          Comoros 1796           0
## 10445                            Congo 1796           0
## 10446                     Cook Islands 1796           0
## 10447                       Costa Rica 1796           0
## 10448                    Cote d'Ivoire 1796           0
## 10449                          Croatia 1796           0
## 10450                             Cuba 1796           0
## 10451                          Curacao 1796           0
## 10452                           Cyprus 1796           0
## 10453                   Czech Republic 1796           0
## 10454                   Czechoslovakia 1796           0
## 10455     Democratic Republic of Congo 1796           0
## 10456                          Denmark 1796           0
## 10457                         Djibouti 1796           0
## 10458                         Dominica 1796           0
## 10459               Dominican Republic 1796           0
## 10460                            EU-28 1796   668408864
## 10461                          Ecuador 1796           0
## 10462                            Egypt 1796           0
## 10463                      El Salvador 1796           0
## 10464                Equatorial Guinea 1796           0
## 10465                          Eritrea 1796           0
## 10466                          Estonia 1796           0
## 10467                         Ethiopia 1796           0
## 10468                   Europe (other) 1796           0
## 10469                   Faeroe Islands 1796           0
## 10470                 Falkland Islands 1796           0
## 10471                             Fiji 1796           0
## 10472                          Finland 1796           0
## 10473                           France 1796           0
## 10474                    French Guiana 1796           0
## 10475                 French Polynesia 1796           0
## 10476                            Gabon 1796           0
## 10477                           Gambia 1796           0
## 10478                          Georgia 1796           0
## 10479                          Germany 1796     2374272
## 10480                            Ghana 1796           0
## 10481                        Gibraltar 1796           0
## 10482                           Greece 1796           0
## 10483                        Greenland 1796           0
## 10484                          Grenada 1796           0
## 10485                       Guadeloupe 1796           0
## 10486                        Guatemala 1796           0
## 10487                           Guinea 1796           0
## 10488                    Guinea-Bissau 1796           0
## 10489                           Guyana 1796           0
## 10490                            Haiti 1796           0
## 10491                         Honduras 1796           0
## 10492                        Hong Kong 1796           0
## 10493                          Hungary 1796           0
## 10494                          Iceland 1796           0
## 10495                            India 1796           0
## 10496                        Indonesia 1796           0
## 10497                             Iran 1796           0
## 10498                             Iraq 1796           0
## 10499                          Ireland 1796           0
## 10500                           Israel 1796           0
## 10501                            Italy 1796           0
## 10502                          Jamaica 1796           0
## 10503                            Japan 1796           0
## 10504                           Jordan 1796           0
## 10505                       Kazakhstan 1796           0
## 10506                            Kenya 1796           0
## 10507                         Kiribati 1796           0
## 10508                           Kuwait 1796           0
## 10509                       Kyrgysztan 1796           0
## 10510                       Kyrgyzstan 1796           0
## 10511                             Laos 1796           0
## 10512                           Latvia 1796           0
## 10513                          Lebanon 1796           0
## 10514                          Lesotho 1796           0
## 10515                          Liberia 1796           0
## 10516                            Libya 1796           0
## 10517                    Liechtenstein 1796           0
## 10518                        Lithuania 1796           0
## 10519                       Luxembourg 1796           0
## 10520                            Macao 1796           0
## 10521                        Macedonia 1796           0
## 10522                       Madagascar 1796           0
## 10523                           Malawi 1796           0
## 10524                         Malaysia 1796           0
## 10525                         Maldives 1796           0
## 10526                             Mali 1796           0
## 10527                            Malta 1796           0
## 10528                 Marshall Islands 1796           0
## 10529                       Martinique 1796           0
## 10530                       Mauritania 1796           0
## 10531                        Mauritius 1796           0
## 10532                           Mexico 1796           0
## 10533             Micronesia (country) 1796           0
## 10534                      Middle East 1796           0
## 10535                          Moldova 1796           0
## 10536                         Mongolia 1796           0
## 10537                       Montenegro 1796           0
## 10538                       Montserrat 1796           0
## 10539                          Morocco 1796           0
## 10540                       Mozambique 1796           0
## 10541                          Myanmar 1796           0
## 10542                          Namibia 1796           0
## 10543                            Nauru 1796           0
## 10544                            Nepal 1796           0
## 10545                      Netherlands 1796           0
## 10546                    New Caledonia 1796           0
## 10547                      New Zealand 1796           0
## 10548                        Nicaragua 1796           0
## 10549                            Niger 1796           0
## 10550                          Nigeria 1796           0
## 10551                             Niue 1796           0
## 10552                      North Korea 1796           0
## 10553                           Norway 1796           0
## 10554                             Oman 1796           0
## 10555                         Pakistan 1796           0
## 10556                            Palau 1796           0
## 10557                        Palestine 1796           0
## 10558                           Panama 1796           0
## 10559                 Papua New Guinea 1796           0
## 10560                         Paraguay 1796           0
## 10561                             Peru 1796           0
## 10562                      Philippines 1796           0
## 10563                           Poland 1796           0
## 10564                         Portugal 1796           0
## 10565                            Qatar 1796           0
## 10566                          Reunion 1796           0
## 10567                          Romania 1796           0
## 10568                           Russia 1796           0
## 10569                           Rwanda 1796           0
## 10570                     Saint Helena 1796           0
## 10571            Saint Kitts and Nevis 1796           0
## 10572                      Saint Lucia 1796           0
## 10573        Saint Pierre and Miquelon 1796           0
## 10574 Saint Vincent and the Grenadines 1796           0
## 10575                            Samoa 1796           0
## 10576            Sao Tome and Principe 1796           0
## 10577                     Saudi Arabia 1796           0
## 10578                          Senegal 1796           0
## 10579                           Serbia 1796           0
## 10580                       Seychelles 1796           0
## 10581                     Sierra Leone 1796           0
## 10582                        Singapore 1796           0
## 10583        Sint Maarten (Dutch part) 1796           0
## 10584                         Slovakia 1796           0
## 10585                         Slovenia 1796           0
## 10586                  Solomon Islands 1796           0
## 10587                          Somalia 1796           0
## 10588                     South Africa 1796           0
## 10589                      South Korea 1796           0
## 10590                      South Sudan 1796           0
## 10591                            Spain 1796           0
## 10592                        Sri Lanka 1796           0
## 10593                            Sudan 1796           0
## 10594                         Suriname 1796           0
## 10595                        Swaziland 1796           0
## 10596                           Sweden 1796           0
## 10597                      Switzerland 1796           0
## 10598                            Syria 1796           0
## 10599                           Taiwan 1796           0
## 10600                       Tajikistan 1796           0
## 10601                         Tanzania 1796           0
## 10602                         Thailand 1796           0
## 10603                            Timor 1796           0
## 10604                             Togo 1796           0
## 10605                            Tonga 1796           0
## 10606              Trinidad and Tobago 1796           0
## 10607                          Tunisia 1796           0
## 10608                           Turkey 1796           0
## 10609                     Turkmenistan 1796           0
## 10610         Turks and Caicos Islands 1796           0
## 10611                           Tuvalu 1796           0
## 10612                           Uganda 1796           0
## 10613                          Ukraine 1796           0
## 10614             United Arab Emirates 1796           0
## 10615                   United Kingdom 1796   666034592
## 10616                    United States 1796           0
## 10617                          Uruguay 1796           0
## 10618                       Uzbekistan 1796           0
## 10619                          Vanuatu 1796           0
## 10620                        Venezuela 1796           0
## 10621                          Vietnam 1796           0
## 10622        Wallis and Futuna Islands 1796           0
## 10623                            World 1796   668452832
## 10624                            Yemen 1796           0
## 10625                           Zambia 1796           0
## 10626                         Zimbabwe 1796           0
## 10627                      Afghanistan 1797           0
## 10628                           Africa 1797           0
## 10629                          Albania 1797           0
## 10630                          Algeria 1797           0
## 10631                 Americas (other) 1797       47632
## 10632                          Andorra 1797           0
## 10633                           Angola 1797           0
## 10634                         Anguilla 1797           0
## 10635              Antarctic Fisheries 1797           0
## 10636              Antigua and Barbuda 1797           0
## 10637                        Argentina 1797           0
## 10638                          Armenia 1797           0
## 10639                            Aruba 1797           0
## 10640         Asia and Pacific (other) 1797           0
## 10641                        Australia 1797           0
## 10642                          Austria 1797           0
## 10643                       Azerbaijan 1797           0
## 10644                          Bahamas 1797           0
## 10645                          Bahrain 1797           0
## 10646                       Bangladesh 1797           0
## 10647                         Barbados 1797           0
## 10648                          Belarus 1797           0
## 10649                          Belgium 1797           0
## 10650                           Belize 1797           0
## 10651                            Benin 1797           0
## 10652                          Bermuda 1797           0
## 10653                           Bhutan 1797           0
## 10654                          Bolivia 1797           0
## 10655  Bonaire Sint Eustatius and Saba 1797           0
## 10656           Bosnia and Herzegovina 1797           0
## 10657                         Botswana 1797           0
## 10658                           Brazil 1797           0
## 10659           British Virgin Islands 1797           0
## 10660                           Brunei 1797           0
## 10661                         Bulgaria 1797           0
## 10662                     Burkina Faso 1797           0
## 10663                          Burundi 1797           0
## 10664                         Cambodia 1797           0
## 10665                         Cameroon 1797           0
## 10666                           Canada 1797       47632
## 10667                       Cape Verde 1797           0
## 10668                   Cayman Islands 1797           0
## 10669         Central African Republic 1797           0
## 10670                             Chad 1797           0
## 10671                            Chile 1797           0
## 10672                            China 1797           0
## 10673                 Christmas Island 1797           0
## 10674                         Colombia 1797           0
## 10675                          Comoros 1797           0
## 10676                            Congo 1797           0
## 10677                     Cook Islands 1797           0
## 10678                       Costa Rica 1797           0
## 10679                    Cote d'Ivoire 1797           0
## 10680                          Croatia 1797           0
## 10681                             Cuba 1797           0
## 10682                          Curacao 1797           0
## 10683                           Cyprus 1797           0
## 10684                   Czech Republic 1797           0
## 10685                   Czechoslovakia 1797           0
## 10686     Democratic Republic of Congo 1797           0
## 10687                          Denmark 1797           0
## 10688                         Djibouti 1797           0
## 10689                         Dominica 1797           0
## 10690               Dominican Republic 1797           0
## 10691                            EU-28 1797   692499664
## 10692                          Ecuador 1797           0
## 10693                            Egypt 1797           0
## 10694                      El Salvador 1797           0
## 10695                Equatorial Guinea 1797           0
## 10696                          Eritrea 1797           0
## 10697                          Estonia 1797           0
## 10698                         Ethiopia 1797           0
## 10699                   Europe (other) 1797           0
## 10700                   Faeroe Islands 1797           0
## 10701                 Falkland Islands 1797           0
## 10702                             Fiji 1797           0
## 10703                          Finland 1797           0
## 10704                           France 1797           0
## 10705                    French Guiana 1797           0
## 10706                 French Polynesia 1797           0
## 10707                            Gabon 1797           0
## 10708                           Gambia 1797           0
## 10709                          Georgia 1797           0
## 10710                          Germany 1797     2923872
## 10711                            Ghana 1797           0
## 10712                        Gibraltar 1797           0
## 10713                           Greece 1797           0
## 10714                        Greenland 1797           0
## 10715                          Grenada 1797           0
## 10716                       Guadeloupe 1797           0
## 10717                        Guatemala 1797           0
## 10718                           Guinea 1797           0
## 10719                    Guinea-Bissau 1797           0
## 10720                           Guyana 1797           0
## 10721                            Haiti 1797           0
## 10722                         Honduras 1797           0
## 10723                        Hong Kong 1797           0
## 10724                          Hungary 1797           0
## 10725                          Iceland 1797           0
## 10726                            India 1797           0
## 10727                        Indonesia 1797           0
## 10728                             Iran 1797           0
## 10729                             Iraq 1797           0
## 10730                          Ireland 1797           0
## 10731                           Israel 1797           0
## 10732                            Italy 1797           0
## 10733                          Jamaica 1797           0
## 10734                            Japan 1797           0
## 10735                           Jordan 1797           0
## 10736                       Kazakhstan 1797           0
## 10737                            Kenya 1797           0
## 10738                         Kiribati 1797           0
## 10739                           Kuwait 1797           0
## 10740                       Kyrgysztan 1797           0
## 10741                       Kyrgyzstan 1797           0
## 10742                             Laos 1797           0
## 10743                           Latvia 1797           0
## 10744                          Lebanon 1797           0
## 10745                          Lesotho 1797           0
## 10746                          Liberia 1797           0
## 10747                            Libya 1797           0
## 10748                    Liechtenstein 1797           0
## 10749                        Lithuania 1797           0
## 10750                       Luxembourg 1797           0
## 10751                            Macao 1797           0
## 10752                        Macedonia 1797           0
## 10753                       Madagascar 1797           0
## 10754                           Malawi 1797           0
## 10755                         Malaysia 1797           0
## 10756                         Maldives 1797           0
## 10757                             Mali 1797           0
## 10758                            Malta 1797           0
## 10759                 Marshall Islands 1797           0
## 10760                       Martinique 1797           0
## 10761                       Mauritania 1797           0
## 10762                        Mauritius 1797           0
## 10763                           Mexico 1797           0
## 10764             Micronesia (country) 1797           0
## 10765                      Middle East 1797           0
## 10766                          Moldova 1797           0
## 10767                         Mongolia 1797           0
## 10768                       Montenegro 1797           0
## 10769                       Montserrat 1797           0
## 10770                          Morocco 1797           0
## 10771                       Mozambique 1797           0
## 10772                          Myanmar 1797           0
## 10773                          Namibia 1797           0
## 10774                            Nauru 1797           0
## 10775                            Nepal 1797           0
## 10776                      Netherlands 1797           0
## 10777                    New Caledonia 1797           0
## 10778                      New Zealand 1797           0
## 10779                        Nicaragua 1797           0
## 10780                            Niger 1797           0
## 10781                          Nigeria 1797           0
## 10782                             Niue 1797           0
## 10783                      North Korea 1797           0
## 10784                           Norway 1797           0
## 10785                             Oman 1797           0
## 10786                         Pakistan 1797           0
## 10787                            Palau 1797           0
## 10788                        Palestine 1797           0
## 10789                           Panama 1797           0
## 10790                 Papua New Guinea 1797           0
## 10791                         Paraguay 1797           0
## 10792                             Peru 1797           0
## 10793                      Philippines 1797           0
## 10794                           Poland 1797           0
## 10795                         Portugal 1797           0
## 10796                            Qatar 1797           0
## 10797                          Reunion 1797           0
## 10798                          Romania 1797           0
## 10799                           Russia 1797           0
## 10800                           Rwanda 1797           0
## 10801                     Saint Helena 1797           0
## 10802            Saint Kitts and Nevis 1797           0
## 10803                      Saint Lucia 1797           0
## 10804        Saint Pierre and Miquelon 1797           0
## 10805 Saint Vincent and the Grenadines 1797           0
## 10806                            Samoa 1797           0
## 10807            Sao Tome and Principe 1797           0
## 10808                     Saudi Arabia 1797           0
## 10809                          Senegal 1797           0
## 10810                           Serbia 1797           0
## 10811                       Seychelles 1797           0
## 10812                     Sierra Leone 1797           0
## 10813                        Singapore 1797           0
## 10814        Sint Maarten (Dutch part) 1797           0
## 10815                         Slovakia 1797           0
## 10816                         Slovenia 1797           0
## 10817                  Solomon Islands 1797           0
## 10818                          Somalia 1797           0
## 10819                     South Africa 1797           0
## 10820                      South Korea 1797           0
## 10821                      South Sudan 1797           0
## 10822                            Spain 1797           0
## 10823                        Sri Lanka 1797           0
## 10824                            Sudan 1797           0
## 10825                         Suriname 1797           0
## 10826                        Swaziland 1797           0
## 10827                           Sweden 1797           0
## 10828                      Switzerland 1797           0
## 10829                            Syria 1797           0
## 10830                           Taiwan 1797           0
## 10831                       Tajikistan 1797           0
## 10832                         Tanzania 1797           0
## 10833                         Thailand 1797           0
## 10834                            Timor 1797           0
## 10835                             Togo 1797           0
## 10836                            Tonga 1797           0
## 10837              Trinidad and Tobago 1797           0
## 10838                          Tunisia 1797           0
## 10839                           Turkey 1797           0
## 10840                     Turkmenistan 1797           0
## 10841         Turks and Caicos Islands 1797           0
## 10842                           Tuvalu 1797           0
## 10843                           Uganda 1797           0
## 10844                          Ukraine 1797           0
## 10845             United Arab Emirates 1797           0
## 10846                   United Kingdom 1797   689575792
## 10847                    United States 1797           0
## 10848                          Uruguay 1797           0
## 10849                       Uzbekistan 1797           0
## 10850                          Vanuatu 1797           0
## 10851                        Venezuela 1797           0
## 10852                          Vietnam 1797           0
## 10853        Wallis and Futuna Islands 1797           0
## 10854                            World 1797   692547296
## 10855                            Yemen 1797           0
## 10856                           Zambia 1797           0
## 10857                         Zimbabwe 1797           0
## 10858                      Afghanistan 1798           0
## 10859                           Africa 1798           0
## 10860                          Albania 1798           0
## 10861                          Algeria 1798           0
## 10862                 Americas (other) 1798       51296
## 10863                          Andorra 1798           0
## 10864                           Angola 1798           0
## 10865                         Anguilla 1798           0
## 10866              Antarctic Fisheries 1798           0
## 10867              Antigua and Barbuda 1798           0
## 10868                        Argentina 1798           0
## 10869                          Armenia 1798           0
## 10870                            Aruba 1798           0
## 10871         Asia and Pacific (other) 1798           0
## 10872                        Australia 1798           0
## 10873                          Austria 1798           0
## 10874                       Azerbaijan 1798           0
## 10875                          Bahamas 1798           0
## 10876                          Bahrain 1798           0
## 10877                       Bangladesh 1798           0
## 10878                         Barbados 1798           0
## 10879                          Belarus 1798           0
## 10880                          Belgium 1798           0
## 10881                           Belize 1798           0
## 10882                            Benin 1798           0
## 10883                          Bermuda 1798           0
## 10884                           Bhutan 1798           0
## 10885                          Bolivia 1798           0
## 10886  Bonaire Sint Eustatius and Saba 1798           0
## 10887           Bosnia and Herzegovina 1798           0
## 10888                         Botswana 1798           0
## 10889                           Brazil 1798           0
## 10890           British Virgin Islands 1798           0
## 10891                           Brunei 1798           0
## 10892                         Bulgaria 1798           0
## 10893                     Burkina Faso 1798           0
## 10894                          Burundi 1798           0
## 10895                         Cambodia 1798           0
## 10896                         Cameroon 1798           0
## 10897                           Canada 1798       51296
## 10898                       Cape Verde 1798           0
## 10899                   Cayman Islands 1798           0
## 10900         Central African Republic 1798           0
## 10901                             Chad 1798           0
## 10902                            Chile 1798           0
## 10903                            China 1798           0
## 10904                 Christmas Island 1798           0
## 10905                         Colombia 1798           0
## 10906                          Comoros 1798           0
## 10907                            Congo 1798           0
## 10908                     Cook Islands 1798           0
## 10909                       Costa Rica 1798           0
## 10910                    Cote d'Ivoire 1798           0
## 10911                          Croatia 1798           0
## 10912                             Cuba 1798           0
## 10913                          Curacao 1798           0
## 10914                           Cyprus 1798           0
## 10915                   Czech Republic 1798           0
## 10916                   Czechoslovakia 1798           0
## 10917     Democratic Republic of Congo 1798           0
## 10918                          Denmark 1798           0
## 10919                         Djibouti 1798           0
## 10920                         Dominica 1798           0
## 10921               Dominican Republic 1798           0
## 10922                            EU-28 1798   717590736
## 10923                          Ecuador 1798           0
## 10924                            Egypt 1798           0
## 10925                      El Salvador 1798           0
## 10926                Equatorial Guinea 1798           0
## 10927                          Eritrea 1798           0
## 10928                          Estonia 1798           0
## 10929                         Ethiopia 1798           0
## 10930                   Europe (other) 1798           0
## 10931                   Faeroe Islands 1798           0
## 10932                 Falkland Islands 1798           0
## 10933                             Fiji 1798           0
## 10934                          Finland 1798           0
## 10935                           France 1798           0
## 10936                    French Guiana 1798           0
## 10937                 French Polynesia 1798           0
## 10938                            Gabon 1798           0
## 10939                           Gambia 1798           0
## 10940                          Georgia 1798           0
## 10941                          Germany 1798     3499120
## 10942                            Ghana 1798           0
## 10943                        Gibraltar 1798           0
## 10944                           Greece 1798           0
## 10945                        Greenland 1798           0
## 10946                          Grenada 1798           0
## 10947                       Guadeloupe 1798           0
## 10948                        Guatemala 1798           0
## 10949                           Guinea 1798           0
## 10950                    Guinea-Bissau 1798           0
## 10951                           Guyana 1798           0
## 10952                            Haiti 1798           0
## 10953                         Honduras 1798           0
## 10954                        Hong Kong 1798           0
## 10955                          Hungary 1798           0
## 10956                          Iceland 1798           0
## 10957                            India 1798           0
## 10958                        Indonesia 1798           0
## 10959                             Iran 1798           0
## 10960                             Iraq 1798           0
## 10961                          Ireland 1798           0
## 10962                           Israel 1798           0
## 10963                            Italy 1798           0
## 10964                          Jamaica 1798           0
## 10965                            Japan 1798           0
## 10966                           Jordan 1798           0
## 10967                       Kazakhstan 1798           0
## 10968                            Kenya 1798           0
## 10969                         Kiribati 1798           0
## 10970                           Kuwait 1798           0
## 10971                       Kyrgysztan 1798           0
## 10972                       Kyrgyzstan 1798           0
## 10973                             Laos 1798           0
## 10974                           Latvia 1798           0
## 10975                          Lebanon 1798           0
## 10976                          Lesotho 1798           0
## 10977                          Liberia 1798           0
## 10978                            Libya 1798           0
## 10979                    Liechtenstein 1798           0
## 10980                        Lithuania 1798           0
## 10981                       Luxembourg 1798           0
## 10982                            Macao 1798           0
## 10983                        Macedonia 1798           0
## 10984                       Madagascar 1798           0
## 10985                           Malawi 1798           0
## 10986                         Malaysia 1798           0
## 10987                         Maldives 1798           0
## 10988                             Mali 1798           0
## 10989                            Malta 1798           0
## 10990                 Marshall Islands 1798           0
## 10991                       Martinique 1798           0
## 10992                       Mauritania 1798           0
## 10993                        Mauritius 1798           0
## 10994                           Mexico 1798           0
## 10995             Micronesia (country) 1798           0
## 10996                      Middle East 1798           0
## 10997                          Moldova 1798           0
## 10998                         Mongolia 1798           0
## 10999                       Montenegro 1798           0
## 11000                       Montserrat 1798           0
## 11001                          Morocco 1798           0
## 11002                       Mozambique 1798           0
## 11003                          Myanmar 1798           0
## 11004                          Namibia 1798           0
## 11005                            Nauru 1798           0
## 11006                            Nepal 1798           0
## 11007                      Netherlands 1798           0
## 11008                    New Caledonia 1798           0
## 11009                      New Zealand 1798           0
## 11010                        Nicaragua 1798           0
## 11011                            Niger 1798           0
## 11012                          Nigeria 1798           0
## 11013                             Niue 1798           0
## 11014                      North Korea 1798           0
## 11015                           Norway 1798           0
## 11016                             Oman 1798           0
## 11017                         Pakistan 1798           0
## 11018                            Palau 1798           0
## 11019                        Palestine 1798           0
## 11020                           Panama 1798           0
## 11021                 Papua New Guinea 1798           0
## 11022                         Paraguay 1798           0
## 11023                             Peru 1798           0
## 11024                      Philippines 1798           0
## 11025                           Poland 1798           0
## 11026                         Portugal 1798           0
## 11027                            Qatar 1798           0
## 11028                          Reunion 1798           0
## 11029                          Romania 1798           0
## 11030                           Russia 1798           0
## 11031                           Rwanda 1798           0
## 11032                     Saint Helena 1798           0
## 11033            Saint Kitts and Nevis 1798           0
## 11034                      Saint Lucia 1798           0
## 11035        Saint Pierre and Miquelon 1798           0
## 11036 Saint Vincent and the Grenadines 1798           0
## 11037                            Samoa 1798           0
## 11038            Sao Tome and Principe 1798           0
## 11039                     Saudi Arabia 1798           0
## 11040                          Senegal 1798           0
## 11041                           Serbia 1798           0
## 11042                       Seychelles 1798           0
## 11043                     Sierra Leone 1798           0
## 11044                        Singapore 1798           0
## 11045        Sint Maarten (Dutch part) 1798           0
## 11046                         Slovakia 1798           0
## 11047                         Slovenia 1798           0
## 11048                  Solomon Islands 1798           0
## 11049                          Somalia 1798           0
## 11050                     South Africa 1798           0
## 11051                      South Korea 1798           0
## 11052                      South Sudan 1798           0
## 11053                            Spain 1798           0
## 11054                        Sri Lanka 1798           0
## 11055                            Sudan 1798           0
## 11056                         Suriname 1798           0
## 11057                        Swaziland 1798           0
## 11058                           Sweden 1798           0
## 11059                      Switzerland 1798           0
## 11060                            Syria 1798           0
## 11061                           Taiwan 1798           0
## 11062                       Tajikistan 1798           0
## 11063                         Tanzania 1798           0
## 11064                         Thailand 1798           0
## 11065                            Timor 1798           0
## 11066                             Togo 1798           0
## 11067                            Tonga 1798           0
## 11068              Trinidad and Tobago 1798           0
## 11069                          Tunisia 1798           0
## 11070                           Turkey 1798           0
## 11071                     Turkmenistan 1798           0
## 11072         Turks and Caicos Islands 1798           0
## 11073                           Tuvalu 1798           0
## 11074                           Uganda 1798           0
## 11075                          Ukraine 1798           0
## 11076             United Arab Emirates 1798           0
## 11077                   United Kingdom 1798   714091616
## 11078                    United States 1798           0
## 11079                          Uruguay 1798           0
## 11080                       Uzbekistan 1798           0
## 11081                          Vanuatu 1798           0
## 11082                        Venezuela 1798           0
## 11083                          Vietnam 1798           0
## 11084        Wallis and Futuna Islands 1798           0
## 11085                            World 1798   717642032
## 11086                            Yemen 1798           0
## 11087                           Zambia 1798           0
## 11088                         Zimbabwe 1798           0
## 11089                      Afghanistan 1799           0
## 11090                           Africa 1799           0
## 11091                          Albania 1799           0
## 11092                          Algeria 1799           0
## 11093                 Americas (other) 1799       54960
## 11094                          Andorra 1799           0
## 11095                           Angola 1799           0
## 11096                         Anguilla 1799           0
## 11097              Antarctic Fisheries 1799           0
## 11098              Antigua and Barbuda 1799           0
## 11099                        Argentina 1799           0
## 11100                          Armenia 1799           0
## 11101                            Aruba 1799           0
## 11102         Asia and Pacific (other) 1799           0
## 11103                        Australia 1799           0
## 11104                          Austria 1799           0
## 11105                       Azerbaijan 1799           0
## 11106                          Bahamas 1799           0
## 11107                          Bahrain 1799           0
## 11108                       Bangladesh 1799           0
## 11109                         Barbados 1799           0
## 11110                          Belarus 1799           0
## 11111                          Belgium 1799           0
## 11112                           Belize 1799           0
## 11113                            Benin 1799           0
## 11114                          Bermuda 1799           0
## 11115                           Bhutan 1799           0
## 11116                          Bolivia 1799           0
## 11117  Bonaire Sint Eustatius and Saba 1799           0
## 11118           Bosnia and Herzegovina 1799           0
## 11119                         Botswana 1799           0
## 11120                           Brazil 1799           0
## 11121           British Virgin Islands 1799           0
## 11122                           Brunei 1799           0
## 11123                         Bulgaria 1799           0
## 11124                     Burkina Faso 1799           0
## 11125                          Burundi 1799           0
## 11126                         Cambodia 1799           0
## 11127                         Cameroon 1799           0
## 11128                           Canada 1799       54960
## 11129                       Cape Verde 1799           0
## 11130                   Cayman Islands 1799           0
## 11131         Central African Republic 1799           0
## 11132                             Chad 1799           0
## 11133                            Chile 1799           0
## 11134                            China 1799           0
## 11135                 Christmas Island 1799           0
## 11136                         Colombia 1799           0
## 11137                          Comoros 1799           0
## 11138                            Congo 1799           0
## 11139                     Cook Islands 1799           0
## 11140                       Costa Rica 1799           0
## 11141                    Cote d'Ivoire 1799           0
## 11142                          Croatia 1799           0
## 11143                             Cuba 1799           0
## 11144                          Curacao 1799           0
## 11145                           Cyprus 1799           0
## 11146                   Czech Republic 1799           0
## 11147                   Czechoslovakia 1799           0
## 11148     Democratic Republic of Congo 1799           0
## 11149                          Denmark 1799           0
## 11150                         Djibouti 1799           0
## 11151                         Dominica 1799           0
## 11152               Dominican Republic 1799           0
## 11153                            EU-28 1799   744015504
## 11154                          Ecuador 1799           0
## 11155                            Egypt 1799           0
## 11156                      El Salvador 1799           0
## 11157                Equatorial Guinea 1799           0
## 11158                          Eritrea 1799           0
## 11159                          Estonia 1799           0
## 11160                         Ethiopia 1799           0
## 11161                   Europe (other) 1799           0
## 11162                   Faeroe Islands 1799           0
## 11163                 Falkland Islands 1799           0
## 11164                             Fiji 1799           0
## 11165                          Finland 1799           0
## 11166                           France 1799           0
## 11167                    French Guiana 1799           0
## 11168                 French Polynesia 1799           0
## 11169                            Gabon 1799           0
## 11170                           Gambia 1799           0
## 11171                          Georgia 1799           0
## 11172                          Germany 1799     4125664
## 11173                            Ghana 1799           0
## 11174                        Gibraltar 1799           0
## 11175                           Greece 1799           0
## 11176                        Greenland 1799           0
## 11177                          Grenada 1799           0
## 11178                       Guadeloupe 1799           0
## 11179                        Guatemala 1799           0
## 11180                           Guinea 1799           0
## 11181                    Guinea-Bissau 1799           0
## 11182                           Guyana 1799           0
## 11183                            Haiti 1799           0
## 11184                         Honduras 1799           0
## 11185                        Hong Kong 1799           0
## 11186                          Hungary 1799           0
## 11187                          Iceland 1799           0
## 11188                            India 1799           0
## 11189                        Indonesia 1799           0
## 11190                             Iran 1799           0
## 11191                             Iraq 1799           0
## 11192                          Ireland 1799           0
## 11193                           Israel 1799           0
## 11194                            Italy 1799           0
## 11195                          Jamaica 1799           0
## 11196                            Japan 1799           0
## 11197                           Jordan 1799           0
## 11198                       Kazakhstan 1799           0
## 11199                            Kenya 1799           0
## 11200                         Kiribati 1799           0
## 11201                           Kuwait 1799           0
## 11202                       Kyrgysztan 1799           0
## 11203                       Kyrgyzstan 1799           0
## 11204                             Laos 1799           0
## 11205                           Latvia 1799           0
## 11206                          Lebanon 1799           0
## 11207                          Lesotho 1799           0
## 11208                          Liberia 1799           0
## 11209                            Libya 1799           0
## 11210                    Liechtenstein 1799           0
## 11211                        Lithuania 1799           0
## 11212                       Luxembourg 1799           0
## 11213                            Macao 1799           0
## 11214                        Macedonia 1799           0
## 11215                       Madagascar 1799           0
## 11216                           Malawi 1799           0
## 11217                         Malaysia 1799           0
## 11218                         Maldives 1799           0
## 11219                             Mali 1799           0
## 11220                            Malta 1799           0
## 11221                 Marshall Islands 1799           0
## 11222                       Martinique 1799           0
## 11223                       Mauritania 1799           0
## 11224                        Mauritius 1799           0
## 11225                           Mexico 1799           0
## 11226             Micronesia (country) 1799           0
## 11227                      Middle East 1799           0
## 11228                          Moldova 1799           0
## 11229                         Mongolia 1799           0
## 11230                       Montenegro 1799           0
## 11231                       Montserrat 1799           0
## 11232                          Morocco 1799           0
## 11233                       Mozambique 1799           0
## 11234                          Myanmar 1799           0
## 11235                          Namibia 1799           0
## 11236                            Nauru 1799           0
## 11237                            Nepal 1799           0
## 11238                      Netherlands 1799           0
## 11239                    New Caledonia 1799           0
## 11240                      New Zealand 1799           0
## 11241                        Nicaragua 1799           0
## 11242                            Niger 1799           0
## 11243                          Nigeria 1799           0
## 11244                             Niue 1799           0
## 11245                      North Korea 1799           0
## 11246                           Norway 1799           0
## 11247                             Oman 1799           0
## 11248                         Pakistan 1799           0
## 11249                            Palau 1799           0
## 11250                        Palestine 1799           0
## 11251                           Panama 1799           0
## 11252                 Papua New Guinea 1799           0
## 11253                         Paraguay 1799           0
## 11254                             Peru 1799           0
## 11255                      Philippines 1799           0
## 11256                           Poland 1799           0
## 11257                         Portugal 1799           0
## 11258                            Qatar 1799           0
## 11259                          Reunion 1799           0
## 11260                          Romania 1799           0
## 11261                           Russia 1799           0
## 11262                           Rwanda 1799           0
## 11263                     Saint Helena 1799           0
## 11264            Saint Kitts and Nevis 1799           0
## 11265                      Saint Lucia 1799           0
## 11266        Saint Pierre and Miquelon 1799           0
## 11267 Saint Vincent and the Grenadines 1799           0
## 11268                            Samoa 1799           0
## 11269            Sao Tome and Principe 1799           0
## 11270                     Saudi Arabia 1799           0
## 11271                          Senegal 1799           0
## 11272                           Serbia 1799           0
## 11273                       Seychelles 1799           0
## 11274                     Sierra Leone 1799           0
## 11275                        Singapore 1799           0
## 11276        Sint Maarten (Dutch part) 1799           0
## 11277                         Slovakia 1799           0
## 11278                         Slovenia 1799           0
## 11279                  Solomon Islands 1799           0
## 11280                          Somalia 1799           0
## 11281                     South Africa 1799           0
## 11282                      South Korea 1799           0
## 11283                      South Sudan 1799           0
## 11284                            Spain 1799           0
## 11285                        Sri Lanka 1799           0
## 11286                            Sudan 1799           0
## 11287                         Suriname 1799           0
## 11288                        Swaziland 1799           0
## 11289                           Sweden 1799           0
## 11290                      Switzerland 1799           0
## 11291                            Syria 1799           0
## 11292                           Taiwan 1799           0
## 11293                       Tajikistan 1799           0
## 11294                         Tanzania 1799           0
## 11295                         Thailand 1799           0
## 11296                            Timor 1799           0
## 11297                             Togo 1799           0
## 11298                            Tonga 1799           0
## 11299              Trinidad and Tobago 1799           0
## 11300                          Tunisia 1799           0
## 11301                           Turkey 1799           0
## 11302                     Turkmenistan 1799           0
## 11303         Turks and Caicos Islands 1799           0
## 11304                           Tuvalu 1799           0
## 11305                           Uganda 1799           0
## 11306                          Ukraine 1799           0
## 11307             United Arab Emirates 1799           0
## 11308                   United Kingdom 1799   739889840
## 11309                    United States 1799           0
## 11310                          Uruguay 1799           0
## 11311                       Uzbekistan 1799           0
## 11312                          Vanuatu 1799           0
## 11313                        Venezuela 1799           0
## 11314                          Vietnam 1799           0
## 11315        Wallis and Futuna Islands 1799           0
## 11316                            World 1799   744070464
## 11317                            Yemen 1799           0
## 11318                           Zambia 1799           0
## 11319                         Zimbabwe 1799           0
## 11320                      Afghanistan 1800           0
## 11321                           Africa 1800           0
## 11322                          Albania 1800           0
## 11323                          Algeria 1800           0
## 11324                 Americas (other) 1800       58624
## 11325                          Andorra 1800           0
## 11326                           Angola 1800           0
## 11327                         Anguilla 1800           0
## 11328              Antarctic Fisheries 1800           0
## 11329              Antigua and Barbuda 1800           0
## 11330                        Argentina 1800           0
## 11331                          Armenia 1800           0
## 11332                            Aruba 1800           0
## 11333         Asia and Pacific (other) 1800           0
## 11334                        Australia 1800           0
## 11335                          Austria 1800           0
## 11336                       Azerbaijan 1800           0
## 11337                          Bahamas 1800           0
## 11338                          Bahrain 1800           0
## 11339                       Bangladesh 1800           0
## 11340                         Barbados 1800           0
## 11341                          Belarus 1800           0
## 11342                          Belgium 1800           0
## 11343                           Belize 1800           0
## 11344                            Benin 1800           0
## 11345                          Bermuda 1800           0
## 11346                           Bhutan 1800           0
## 11347                          Bolivia 1800           0
## 11348  Bonaire Sint Eustatius and Saba 1800           0
## 11349           Bosnia and Herzegovina 1800           0
## 11350                         Botswana 1800           0
## 11351                           Brazil 1800           0
## 11352           British Virgin Islands 1800           0
## 11353                           Brunei 1800           0
## 11354                         Bulgaria 1800           0
## 11355                     Burkina Faso 1800           0
## 11356                          Burundi 1800           0
## 11357                         Cambodia 1800           0
## 11358                         Cameroon 1800           0
## 11359                           Canada 1800       58624
## 11360                       Cape Verde 1800           0
## 11361                   Cayman Islands 1800           0
## 11362         Central African Republic 1800           0
## 11363                             Chad 1800           0
## 11364                            Chile 1800           0
## 11365                            China 1800           0
## 11366                 Christmas Island 1800           0
## 11367                         Colombia 1800           0
## 11368                          Comoros 1800           0
## 11369                            Congo 1800           0
## 11370                     Cook Islands 1800           0
## 11371                       Costa Rica 1800           0
## 11372                    Cote d'Ivoire 1800           0
## 11373                          Croatia 1800           0
## 11374                             Cuba 1800           0
## 11375                          Curacao 1800           0
## 11376                           Cyprus 1800           0
## 11377                   Czech Republic 1800           0
## 11378                   Czechoslovakia 1800           0
## 11379     Democratic Republic of Congo 1800           0
## 11380                          Denmark 1800           0
## 11381                         Djibouti 1800           0
## 11382                         Dominica 1800           0
## 11383               Dominican Republic 1800           0
## 11384                            EU-28 1800   771850912
## 11385                          Ecuador 1800           0
## 11386                            Egypt 1800           0
## 11387                      El Salvador 1800           0
## 11388                Equatorial Guinea 1800           0
## 11389                          Eritrea 1800           0
## 11390                          Estonia 1800           0
## 11391                         Ethiopia 1800           0
## 11392                   Europe (other) 1800           0
## 11393                   Faeroe Islands 1800           0
## 11394                 Falkland Islands 1800           0
## 11395                             Fiji 1800           0
## 11396                          Finland 1800           0
## 11397                           France 1800           0
## 11398                    French Guiana 1800           0
## 11399                 French Polynesia 1800           0
## 11400                            Gabon 1800           0
## 11401                           Gambia 1800           0
## 11402                          Georgia 1800           0
## 11403                          Germany 1800     4920752
## 11404                            Ghana 1800           0
## 11405                        Gibraltar 1800           0
## 11406                           Greece 1800           0
## 11407                        Greenland 1800           0
## 11408                          Grenada 1800           0
## 11409                       Guadeloupe 1800           0
## 11410                        Guatemala 1800           0
## 11411                           Guinea 1800           0
## 11412                    Guinea-Bissau 1800           0
## 11413                           Guyana 1800           0
## 11414                            Haiti 1800           0
## 11415                         Honduras 1800           0
## 11416                        Hong Kong 1800           0
## 11417                          Hungary 1800           0
## 11418                          Iceland 1800           0
## 11419                            India 1800           0
## 11420                        Indonesia 1800           0
## 11421                             Iran 1800           0
## 11422                             Iraq 1800           0
## 11423                          Ireland 1800           0
## 11424                           Israel 1800           0
## 11425                            Italy 1800           0
## 11426                          Jamaica 1800           0
## 11427                            Japan 1800           0
## 11428                           Jordan 1800           0
## 11429                       Kazakhstan 1800           0
## 11430                            Kenya 1800           0
## 11431                         Kiribati 1800           0
## 11432                           Kuwait 1800           0
## 11433                       Kyrgysztan 1800           0
## 11434                       Kyrgyzstan 1800           0
## 11435                             Laos 1800           0
## 11436                           Latvia 1800           0
## 11437                          Lebanon 1800           0
## 11438                          Lesotho 1800           0
## 11439                          Liberia 1800           0
## 11440                            Libya 1800           0
## 11441                    Liechtenstein 1800           0
## 11442                        Lithuania 1800           0
## 11443                       Luxembourg 1800           0
## 11444                            Macao 1800           0
## 11445                        Macedonia 1800           0
## 11446                       Madagascar 1800           0
## 11447                           Malawi 1800           0
## 11448                         Malaysia 1800           0
## 11449                         Maldives 1800           0
## 11450                             Mali 1800           0
## 11451                            Malta 1800           0
## 11452                 Marshall Islands 1800           0
## 11453                       Martinique 1800           0
## 11454                       Mauritania 1800           0
## 11455                        Mauritius 1800           0
## 11456                           Mexico 1800           0
## 11457             Micronesia (country) 1800           0
## 11458                      Middle East 1800           0
## 11459                          Moldova 1800           0
## 11460                         Mongolia 1800           0
## 11461                       Montenegro 1800           0
## 11462                       Montserrat 1800           0
## 11463                          Morocco 1800           0
## 11464                       Mozambique 1800           0
## 11465                          Myanmar 1800           0
## 11466                          Namibia 1800           0
## 11467                            Nauru 1800           0
## 11468                            Nepal 1800           0
## 11469                      Netherlands 1800           0
## 11470                    New Caledonia 1800           0
## 11471                      New Zealand 1800           0
## 11472                        Nicaragua 1800           0
## 11473                            Niger 1800           0
## 11474                          Nigeria 1800           0
## 11475                             Niue 1800           0
## 11476                      North Korea 1800           0
## 11477                           Norway 1800           0
## 11478                             Oman 1800           0
## 11479                         Pakistan 1800           0
## 11480                            Palau 1800           0
## 11481                        Palestine 1800           0
## 11482                           Panama 1800           0
## 11483                 Papua New Guinea 1800           0
## 11484                         Paraguay 1800           0
## 11485                             Peru 1800           0
## 11486                      Philippines 1800           0
## 11487                           Poland 1800      406704
## 11488                         Portugal 1800           0
## 11489                            Qatar 1800           0
## 11490                          Reunion 1800           0
## 11491                          Romania 1800           0
## 11492                           Russia 1800           0
## 11493                           Rwanda 1800           0
## 11494                     Saint Helena 1800           0
## 11495            Saint Kitts and Nevis 1800           0
## 11496                      Saint Lucia 1800           0
## 11497        Saint Pierre and Miquelon 1800           0
## 11498 Saint Vincent and the Grenadines 1800           0
## 11499                            Samoa 1800           0
## 11500            Sao Tome and Principe 1800           0
## 11501                     Saudi Arabia 1800           0
## 11502                          Senegal 1800           0
## 11503                           Serbia 1800           0
## 11504                       Seychelles 1800           0
## 11505                     Sierra Leone 1800           0
## 11506                        Singapore 1800           0
## 11507        Sint Maarten (Dutch part) 1800           0
## 11508                         Slovakia 1800           0
## 11509                         Slovenia 1800           0
## 11510                  Solomon Islands 1800           0
## 11511                          Somalia 1800           0
## 11512                     South Africa 1800           0
## 11513                      South Korea 1800           0
## 11514                      South Sudan 1800           0
## 11515                            Spain 1800           0
## 11516                        Sri Lanka 1800           0
## 11517                            Sudan 1800           0
## 11518                         Suriname 1800           0
## 11519                        Swaziland 1800           0
## 11520                           Sweden 1800           0
## 11521                      Switzerland 1800           0
## 11522                            Syria 1800           0
## 11523                           Taiwan 1800           0
## 11524                       Tajikistan 1800           0
## 11525                         Tanzania 1800           0
## 11526                         Thailand 1800           0
## 11527                            Timor 1800           0
## 11528                             Togo 1800           0
## 11529                            Tonga 1800           0
## 11530              Trinidad and Tobago 1800           0
## 11531                          Tunisia 1800           0
## 11532                           Turkey 1800           0
## 11533                     Turkmenistan 1800           0
## 11534         Turks and Caicos Islands 1800           0
## 11535                           Tuvalu 1800           0
## 11536                           Uganda 1800           0
## 11537                          Ukraine 1800           0
## 11538             United Arab Emirates 1800           0
## 11539                   United Kingdom 1800   766523456
## 11540                    United States 1800      252816
## 11541                          Uruguay 1800           0
## 11542                       Uzbekistan 1800           0
## 11543                          Vanuatu 1800           0
## 11544                        Venezuela 1800           0
## 11545                          Vietnam 1800           0
## 11546        Wallis and Futuna Islands 1800           0
## 11547                            World 1800   772162352
## 11548                            Yemen 1800           0
## 11549                           Zambia 1800           0
## 11550                         Zimbabwe 1800           0
## 11551                      Afghanistan 1801           0
## 11552                           Africa 1801           0
## 11553                          Albania 1801           0
## 11554                          Algeria 1801           0
## 11555                 Americas (other) 1801       62288
## 11556                          Andorra 1801           0
## 11557                           Angola 1801           0
## 11558                         Anguilla 1801           0
## 11559              Antarctic Fisheries 1801           0
## 11560              Antigua and Barbuda 1801           0
## 11561                        Argentina 1801           0
## 11562                          Armenia 1801           0
## 11563                            Aruba 1801           0
## 11564         Asia and Pacific (other) 1801           0
## 11565                        Australia 1801           0
## 11566                          Austria 1801           0
## 11567                       Azerbaijan 1801           0
## 11568                          Bahamas 1801           0
## 11569                          Bahrain 1801           0
## 11570                       Bangladesh 1801           0
## 11571                         Barbados 1801           0
## 11572                          Belarus 1801           0
## 11573                          Belgium 1801           0
## 11574                           Belize 1801           0
## 11575                            Benin 1801           0
## 11576                          Bermuda 1801           0
## 11577                           Bhutan 1801           0
## 11578                          Bolivia 1801           0
## 11579  Bonaire Sint Eustatius and Saba 1801           0
## 11580           Bosnia and Herzegovina 1801           0
## 11581                         Botswana 1801           0
## 11582                           Brazil 1801           0
## 11583           British Virgin Islands 1801           0
## 11584                           Brunei 1801           0
## 11585                         Bulgaria 1801           0
## 11586                     Burkina Faso 1801           0
## 11587                          Burundi 1801           0
## 11588                         Cambodia 1801           0
## 11589                         Cameroon 1801           0
## 11590                           Canada 1801       62288
## 11591                       Cape Verde 1801           0
## 11592                   Cayman Islands 1801           0
## 11593         Central African Republic 1801           0
## 11594                             Chad 1801           0
## 11595                            Chile 1801           0
## 11596                            China 1801           0
## 11597                 Christmas Island 1801           0
## 11598                         Colombia 1801           0
## 11599                          Comoros 1801           0
## 11600                            Congo 1801           0
## 11601                     Cook Islands 1801           0
## 11602                       Costa Rica 1801           0
## 11603                    Cote d'Ivoire 1801           0
## 11604                          Croatia 1801           0
## 11605                             Cuba 1801           0
## 11606                          Curacao 1801           0
## 11607                           Cyprus 1801           0
## 11608                   Czech Republic 1801           0
## 11609                   Czechoslovakia 1801           0
## 11610     Democratic Republic of Congo 1801           0
## 11611                          Denmark 1801           0
## 11612                         Djibouti 1801           0
## 11613                         Dominica 1801           0
## 11614               Dominican Republic 1801           0
## 11615                            EU-28 1801   799539760
## 11616                          Ecuador 1801           0
## 11617                            Egypt 1801           0
## 11618                      El Salvador 1801           0
## 11619                Equatorial Guinea 1801           0
## 11620                          Eritrea 1801           0
## 11621                          Estonia 1801           0
## 11622                         Ethiopia 1801           0
## 11623                   Europe (other) 1801           0
## 11624                   Faeroe Islands 1801           0
## 11625                 Falkland Islands 1801           0
## 11626                             Fiji 1801           0
## 11627                          Finland 1801           0
## 11628                           France 1801           0
## 11629                    French Guiana 1801           0
## 11630                 French Polynesia 1801           0
## 11631                            Gabon 1801           0
## 11632                           Gambia 1801           0
## 11633                          Georgia 1801           0
## 11634                          Germany 1801     5455696
## 11635                            Ghana 1801           0
## 11636                        Gibraltar 1801           0
## 11637                           Greece 1801           0
## 11638                        Greenland 1801           0
## 11639                          Grenada 1801           0
## 11640                       Guadeloupe 1801           0
## 11641                        Guatemala 1801           0
## 11642                           Guinea 1801           0
## 11643                    Guinea-Bissau 1801           0
## 11644                           Guyana 1801           0
## 11645                            Haiti 1801           0
## 11646                         Honduras 1801           0
## 11647                        Hong Kong 1801           0
## 11648                          Hungary 1801           0
## 11649                          Iceland 1801           0
## 11650                            India 1801           0
## 11651                        Indonesia 1801           0
## 11652                             Iran 1801           0
## 11653                             Iraq 1801           0
## 11654                          Ireland 1801           0
## 11655                           Israel 1801           0
## 11656                            Italy 1801           0
## 11657                          Jamaica 1801           0
## 11658                            Japan 1801           0
## 11659                           Jordan 1801           0
## 11660                       Kazakhstan 1801           0
## 11661                            Kenya 1801           0
## 11662                         Kiribati 1801           0
## 11663                           Kuwait 1801           0
## 11664                       Kyrgysztan 1801           0
## 11665                       Kyrgyzstan 1801           0
## 11666                             Laos 1801           0
## 11667                           Latvia 1801           0
## 11668                          Lebanon 1801           0
## 11669                          Lesotho 1801           0
## 11670                          Liberia 1801           0
## 11671                            Libya 1801           0
## 11672                    Liechtenstein 1801           0
## 11673                        Lithuania 1801           0
## 11674                       Luxembourg 1801           0
## 11675                            Macao 1801           0
## 11676                        Macedonia 1801           0
## 11677                       Madagascar 1801           0
## 11678                           Malawi 1801           0
## 11679                         Malaysia 1801           0
## 11680                         Maldives 1801           0
## 11681                             Mali 1801           0
## 11682                            Malta 1801           0
## 11683                 Marshall Islands 1801           0
## 11684                       Martinique 1801           0
## 11685                       Mauritania 1801           0
## 11686                        Mauritius 1801           0
## 11687                           Mexico 1801           0
## 11688             Micronesia (country) 1801           0
## 11689                      Middle East 1801           0
## 11690                          Moldova 1801           0
## 11691                         Mongolia 1801           0
## 11692                       Montenegro 1801           0
## 11693                       Montserrat 1801           0
## 11694                          Morocco 1801           0
## 11695                       Mozambique 1801           0
## 11696                          Myanmar 1801           0
## 11697                          Namibia 1801           0
## 11698                            Nauru 1801           0
## 11699                            Nepal 1801           0
## 11700                      Netherlands 1801           0
## 11701                    New Caledonia 1801           0
## 11702                      New Zealand 1801           0
## 11703                        Nicaragua 1801           0
## 11704                            Niger 1801           0
## 11705                          Nigeria 1801           0
## 11706                             Niue 1801           0
## 11707                      North Korea 1801           0
## 11708                           Norway 1801           0
## 11709                             Oman 1801           0
## 11710                         Pakistan 1801           0
## 11711                            Palau 1801           0
## 11712                        Palestine 1801           0
## 11713                           Panama 1801           0
## 11714                 Papua New Guinea 1801           0
## 11715                         Paraguay 1801           0
## 11716                             Peru 1801           0
## 11717                      Philippines 1801           0
## 11718                           Poland 1801      850048
## 11719                         Portugal 1801           0
## 11720                            Qatar 1801           0
## 11721                          Reunion 1801           0
## 11722                          Romania 1801           0
## 11723                           Russia 1801           0
## 11724                           Rwanda 1801           0
## 11725                     Saint Helena 1801           0
## 11726            Saint Kitts and Nevis 1801           0
## 11727                      Saint Lucia 1801           0
## 11728        Saint Pierre and Miquelon 1801           0
## 11729 Saint Vincent and the Grenadines 1801           0
## 11730                            Samoa 1801           0
## 11731            Sao Tome and Principe 1801           0
## 11732                     Saudi Arabia 1801           0
## 11733                          Senegal 1801           0
## 11734                           Serbia 1801           0
## 11735                       Seychelles 1801           0
## 11736                     Sierra Leone 1801           0
## 11737                        Singapore 1801           0
## 11738        Sint Maarten (Dutch part) 1801           0
## 11739                         Slovakia 1801           0
## 11740                         Slovenia 1801           0
## 11741                  Solomon Islands 1801           0
## 11742                          Somalia 1801           0
## 11743                     South Africa 1801           0
## 11744                      South Korea 1801           0
## 11745                      South Sudan 1801           0
## 11746                            Spain 1801           0
## 11747                        Sri Lanka 1801           0
## 11748                            Sudan 1801           0
## 11749                         Suriname 1801           0
## 11750                        Swaziland 1801           0
## 11751                           Sweden 1801           0
## 11752                      Switzerland 1801           0
## 11753                            Syria 1801           0
## 11754                           Taiwan 1801           0
## 11755                       Tajikistan 1801           0
## 11756                         Tanzania 1801           0
## 11757                         Thailand 1801           0
## 11758                            Timor 1801           0
## 11759                             Togo 1801           0
## 11760                            Tonga 1801           0
## 11761              Trinidad and Tobago 1801           0
## 11762                          Tunisia 1801           0
## 11763                           Turkey 1801           0
## 11764                     Turkmenistan 1801           0
## 11765         Turks and Caicos Islands 1801           0
## 11766                           Tuvalu 1801           0
## 11767                           Uganda 1801           0
## 11768                          Ukraine 1801           0
## 11769             United Arab Emirates 1801           0
## 11770                   United Kingdom 1801   793234016
## 11771                    United States 1801      520288
## 11772                          Uruguay 1801           0
## 11773                       Uzbekistan 1801           0
## 11774                          Vanuatu 1801           0
## 11775                        Venezuela 1801           0
## 11776                          Vietnam 1801           0
## 11777        Wallis and Futuna Islands 1801           0
## 11778                            World 1801   800122336
## 11779                            Yemen 1801           0
## 11780                           Zambia 1801           0
## 11781                         Zimbabwe 1801           0
## 11782                      Afghanistan 1802           0
## 11783                           Africa 1802           0
## 11784                          Albania 1802           0
## 11785                          Algeria 1802           0
## 11786                 Americas (other) 1802       65952
## 11787                          Andorra 1802           0
## 11788                           Angola 1802           0
## 11789                         Anguilla 1802           0
## 11790              Antarctic Fisheries 1802           0
## 11791              Antigua and Barbuda 1802           0
## 11792                        Argentina 1802           0
## 11793                          Armenia 1802           0
## 11794                            Aruba 1802           0
## 11795         Asia and Pacific (other) 1802           0
## 11796                        Australia 1802           0
## 11797                          Austria 1802           0
## 11798                       Azerbaijan 1802           0
## 11799                          Bahamas 1802           0
## 11800                          Bahrain 1802           0
## 11801                       Bangladesh 1802           0
## 11802                         Barbados 1802           0
## 11803                          Belarus 1802           0
## 11804                          Belgium 1802     6397344
## 11805                           Belize 1802           0
## 11806                            Benin 1802           0
## 11807                          Bermuda 1802           0
## 11808                           Bhutan 1802           0
## 11809                          Bolivia 1802           0
## 11810  Bonaire Sint Eustatius and Saba 1802           0
## 11811           Bosnia and Herzegovina 1802           0
## 11812                         Botswana 1802           0
## 11813                           Brazil 1802           0
## 11814           British Virgin Islands 1802           0
## 11815                           Brunei 1802           0
## 11816                         Bulgaria 1802           0
## 11817                     Burkina Faso 1802           0
## 11818                          Burundi 1802           0
## 11819                         Cambodia 1802           0
## 11820                         Cameroon 1802           0
## 11821                           Canada 1802       65952
## 11822                       Cape Verde 1802           0
## 11823                   Cayman Islands 1802           0
## 11824         Central African Republic 1802           0
## 11825                             Chad 1802           0
## 11826                            Chile 1802           0
## 11827                            China 1802           0
## 11828                 Christmas Island 1802           0
## 11829                         Colombia 1802           0
## 11830                          Comoros 1802           0
## 11831                            Congo 1802           0
## 11832                     Cook Islands 1802           0
## 11833                       Costa Rica 1802           0
## 11834                    Cote d'Ivoire 1802           0
## 11835                          Croatia 1802           0
## 11836                             Cuba 1802           0
## 11837                          Curacao 1802           0
## 11838                           Cyprus 1802           0
## 11839                   Czech Republic 1802           0
## 11840                   Czechoslovakia 1802           0
## 11841     Democratic Republic of Congo 1802           0
## 11842                          Denmark 1802           0
## 11843                         Djibouti 1802           0
## 11844                         Dominica 1802           0
## 11845               Dominican Republic 1802           0
## 11846                            EU-28 1802   836029536
## 11847                          Ecuador 1802           0
## 11848                            Egypt 1802           0
## 11849                      El Salvador 1802           0
## 11850                Equatorial Guinea 1802           0
## 11851                          Eritrea 1802           0
## 11852                          Estonia 1802           0
## 11853                         Ethiopia 1802           0
## 11854                   Europe (other) 1802           0
## 11855                   Faeroe Islands 1802           0
## 11856                 Falkland Islands 1802           0
## 11857                             Fiji 1802           0
## 11858                          Finland 1802           0
## 11859                           France 1802     2238704
## 11860                    French Guiana 1802           0
## 11861                 French Polynesia 1802           0
## 11862                            Gabon 1802           0
## 11863                           Gambia 1802           0
## 11864                          Georgia 1802           0
## 11865                          Germany 1802     6008960
## 11866                            Ghana 1802           0
## 11867                        Gibraltar 1802           0
## 11868                           Greece 1802           0
## 11869                        Greenland 1802           0
## 11870                          Grenada 1802           0
## 11871                       Guadeloupe 1802           0
## 11872                        Guatemala 1802           0
## 11873                           Guinea 1802           0
## 11874                    Guinea-Bissau 1802           0
## 11875                           Guyana 1802           0
## 11876                            Haiti 1802           0
## 11877                         Honduras 1802           0
## 11878                        Hong Kong 1802           0
## 11879                          Hungary 1802           0
## 11880                          Iceland 1802           0
## 11881                            India 1802           0
## 11882                        Indonesia 1802           0
## 11883                             Iran 1802           0
## 11884                             Iraq 1802           0
## 11885                          Ireland 1802           0
## 11886                           Israel 1802           0
## 11887                            Italy 1802           0
## 11888                          Jamaica 1802           0
## 11889                            Japan 1802           0
## 11890                           Jordan 1802           0
## 11891                       Kazakhstan 1802           0
## 11892                            Kenya 1802           0
## 11893                         Kiribati 1802           0
## 11894                           Kuwait 1802           0
## 11895                       Kyrgysztan 1802           0
## 11896                       Kyrgyzstan 1802           0
## 11897                             Laos 1802           0
## 11898                           Latvia 1802           0
## 11899                          Lebanon 1802           0
## 11900                          Lesotho 1802           0
## 11901                          Liberia 1802           0
## 11902                            Libya 1802           0
## 11903                    Liechtenstein 1802           0
## 11904                        Lithuania 1802           0
## 11905                       Luxembourg 1802           0
## 11906                            Macao 1802           0
## 11907                        Macedonia 1802           0
## 11908                       Madagascar 1802           0
## 11909                           Malawi 1802           0
## 11910                         Malaysia 1802           0
## 11911                         Maldives 1802           0
## 11912                             Mali 1802           0
## 11913                            Malta 1802           0
## 11914                 Marshall Islands 1802           0
## 11915                       Martinique 1802           0
## 11916                       Mauritania 1802           0
## 11917                        Mauritius 1802           0
## 11918                           Mexico 1802           0
## 11919             Micronesia (country) 1802           0
## 11920                      Middle East 1802           0
## 11921                          Moldova 1802           0
## 11922                         Mongolia 1802           0
## 11923                       Montenegro 1802           0
## 11924                       Montserrat 1802           0
## 11925                          Morocco 1802           0
## 11926                       Mozambique 1802           0
## 11927                          Myanmar 1802           0
## 11928                          Namibia 1802           0
## 11929                            Nauru 1802           0
## 11930                            Nepal 1802           0
## 11931                      Netherlands 1802           0
## 11932                    New Caledonia 1802           0
## 11933                      New Zealand 1802           0
## 11934                        Nicaragua 1802           0
## 11935                            Niger 1802           0
## 11936                          Nigeria 1802           0
## 11937                             Niue 1802           0
## 11938                      North Korea 1802           0
## 11939                           Norway 1802           0
## 11940                             Oman 1802           0
## 11941                         Pakistan 1802           0
## 11942                            Palau 1802           0
## 11943                        Palestine 1802           0
## 11944                           Panama 1802           0
## 11945                 Papua New Guinea 1802           0
## 11946                         Paraguay 1802           0
## 11947                             Peru 1802           0
## 11948                      Philippines 1802           0
## 11949                           Poland 1802     1300720
## 11950                         Portugal 1802           0
## 11951                            Qatar 1802           0
## 11952                          Reunion 1802           0
## 11953                          Romania 1802           0
## 11954                           Russia 1802           0
## 11955                           Rwanda 1802           0
## 11956                     Saint Helena 1802           0
## 11957            Saint Kitts and Nevis 1802           0
## 11958                      Saint Lucia 1802           0
## 11959        Saint Pierre and Miquelon 1802           0
## 11960 Saint Vincent and the Grenadines 1802           0
## 11961                            Samoa 1802           0
## 11962            Sao Tome and Principe 1802           0
## 11963                     Saudi Arabia 1802           0
## 11964                          Senegal 1802           0
## 11965                           Serbia 1802           0
## 11966                       Seychelles 1802           0
## 11967                     Sierra Leone 1802           0
## 11968                        Singapore 1802           0
## 11969        Sint Maarten (Dutch part) 1802           0
## 11970                         Slovakia 1802           0
## 11971                         Slovenia 1802           0
## 11972                  Solomon Islands 1802           0
## 11973                          Somalia 1802           0
## 11974                     South Africa 1802           0
## 11975                      South Korea 1802           0
## 11976                      South Sudan 1802           0
## 11977                            Spain 1802           0
## 11978                        Sri Lanka 1802           0
## 11979                            Sudan 1802           0
## 11980                         Suriname 1802           0
## 11981                        Swaziland 1802           0
## 11982                           Sweden 1802           0
## 11983                      Switzerland 1802           0
## 11984                            Syria 1802           0
## 11985                           Taiwan 1802           0
## 11986                       Tajikistan 1802           0
## 11987                         Tanzania 1802           0
## 11988                         Thailand 1802           0
## 11989                            Timor 1802           0
## 11990                             Togo 1802           0
## 11991                            Tonga 1802           0
## 11992              Trinidad and Tobago 1802           0
## 11993                          Tunisia 1802           0
## 11994                           Turkey 1802           0
## 11995                     Turkmenistan 1802           0
## 11996         Turks and Caicos Islands 1802           0
## 11997                           Tuvalu 1802           0
## 11998                           Uganda 1802           0
## 11999                          Ukraine 1802           0
## 12000             United Arab Emirates 1802           0
## 12001                   United Kingdom 1802   820083808
## 12002                    United States 1802      809744
## 12003                          Uruguay 1802           0
## 12004                       Uzbekistan 1802           0
## 12005                          Vanuatu 1802           0
## 12006                        Venezuela 1802           0
## 12007                          Vietnam 1802           0
## 12008        Wallis and Futuna Islands 1802           0
## 12009                            World 1802   836905232
## 12010                            Yemen 1802           0
## 12011                           Zambia 1802           0
## 12012                         Zimbabwe 1802           0
## 12013                      Afghanistan 1803           0
## 12014                           Africa 1803           0
## 12015                          Albania 1803           0
## 12016                          Algeria 1803           0
## 12017                 Americas (other) 1803       69616
## 12018                          Andorra 1803           0
## 12019                           Angola 1803           0
## 12020                         Anguilla 1803           0
## 12021              Antarctic Fisheries 1803           0
## 12022              Antigua and Barbuda 1803           0
## 12023                        Argentina 1803           0
## 12024                          Armenia 1803           0
## 12025                            Aruba 1803           0
## 12026         Asia and Pacific (other) 1803           0
## 12027                        Australia 1803           0
## 12028                          Austria 1803           0
## 12029                       Azerbaijan 1803           0
## 12030                          Bahamas 1803           0
## 12031                          Bahrain 1803           0
## 12032                       Bangladesh 1803           0
## 12033                         Barbados 1803           0
## 12034                          Belarus 1803           0
## 12035                          Belgium 1803     6397344
## 12036                           Belize 1803           0
## 12037                            Benin 1803           0
## 12038                          Bermuda 1803           0
## 12039                           Bhutan 1803           0
## 12040                          Bolivia 1803           0
## 12041  Bonaire Sint Eustatius and Saba 1803           0
## 12042           Bosnia and Herzegovina 1803           0
## 12043                         Botswana 1803           0
## 12044                           Brazil 1803           0
## 12045           British Virgin Islands 1803           0
## 12046                           Brunei 1803           0
## 12047                         Bulgaria 1803           0
## 12048                     Burkina Faso 1803           0
## 12049                          Burundi 1803           0
## 12050                         Cambodia 1803           0
## 12051                         Cameroon 1803           0
## 12052                           Canada 1803       69616
## 12053                       Cape Verde 1803           0
## 12054                   Cayman Islands 1803           0
## 12055         Central African Republic 1803           0
## 12056                             Chad 1803           0
## 12057                            Chile 1803           0
## 12058                            China 1803           0
## 12059                 Christmas Island 1803           0
## 12060                         Colombia 1803           0
## 12061                          Comoros 1803           0
## 12062                            Congo 1803           0
## 12063                     Cook Islands 1803           0
## 12064                       Costa Rica 1803           0
## 12065                    Cote d'Ivoire 1803           0
## 12066                          Croatia 1803           0
## 12067                             Cuba 1803           0
## 12068                          Curacao 1803           0
## 12069                           Cyprus 1803           0
## 12070                   Czech Republic 1803           0
## 12071                   Czechoslovakia 1803           0
## 12072     Democratic Republic of Congo 1803           0
## 12073                          Denmark 1803           0
## 12074                         Djibouti 1803           0
## 12075                         Dominica 1803           0
## 12076               Dominican Republic 1803           0
## 12077                            EU-28 1803   867217504
## 12078                          Ecuador 1803           0
## 12079                            Egypt 1803           0
## 12080                      El Salvador 1803           0
## 12081                Equatorial Guinea 1803           0
## 12082                          Eritrea 1803           0
## 12083                          Estonia 1803           0
## 12084                         Ethiopia 1803           0
## 12085                   Europe (other) 1803           0
## 12086                   Faeroe Islands 1803           0
## 12087                 Falkland Islands 1803           0
## 12088                             Fiji 1803           0
## 12089                          Finland 1803           0
## 12090                           France 1803     2238704
## 12091                    French Guiana 1803           0
## 12092                 French Polynesia 1803           0
## 12093                            Gabon 1803           0
## 12094                           Gambia 1803           0
## 12095                          Georgia 1803           0
## 12096                          Germany 1803     6543904
## 12097                            Ghana 1803           0
## 12098                        Gibraltar 1803           0
## 12099                           Greece 1803           0
## 12100                        Greenland 1803           0
## 12101                          Grenada 1803           0
## 12102                       Guadeloupe 1803           0
## 12103                        Guatemala 1803           0
## 12104                           Guinea 1803           0
## 12105                    Guinea-Bissau 1803           0
## 12106                           Guyana 1803           0
## 12107                            Haiti 1803           0
## 12108                         Honduras 1803           0
## 12109                        Hong Kong 1803           0
## 12110                          Hungary 1803           0
## 12111                          Iceland 1803           0
## 12112                            India 1803           0
## 12113                        Indonesia 1803           0
## 12114                             Iran 1803           0
## 12115                             Iraq 1803           0
## 12116                          Ireland 1803           0
## 12117                           Israel 1803           0
## 12118                            Italy 1803           0
## 12119                          Jamaica 1803           0
## 12120                            Japan 1803           0
## 12121                           Jordan 1803           0
## 12122                       Kazakhstan 1803           0
## 12123                            Kenya 1803           0
## 12124                         Kiribati 1803           0
## 12125                           Kuwait 1803           0
## 12126                       Kyrgysztan 1803           0
## 12127                       Kyrgyzstan 1803           0
## 12128                             Laos 1803           0
## 12129                           Latvia 1803           0
## 12130                          Lebanon 1803           0
## 12131                          Lesotho 1803           0
## 12132                          Liberia 1803           0
## 12133                            Libya 1803           0
## 12134                    Liechtenstein 1803           0
## 12135                        Lithuania 1803           0
## 12136                       Luxembourg 1803           0
## 12137                            Macao 1803           0
## 12138                        Macedonia 1803           0
## 12139                       Madagascar 1803           0
## 12140                           Malawi 1803           0
## 12141                         Malaysia 1803           0
## 12142                         Maldives 1803           0
## 12143                             Mali 1803           0
## 12144                            Malta 1803           0
## 12145                 Marshall Islands 1803           0
## 12146                       Martinique 1803           0
## 12147                       Mauritania 1803           0
## 12148                        Mauritius 1803           0
## 12149                           Mexico 1803           0
## 12150             Micronesia (country) 1803           0
## 12151                      Middle East 1803           0
## 12152                          Moldova 1803           0
## 12153                         Mongolia 1803           0
## 12154                       Montenegro 1803           0
## 12155                       Montserrat 1803           0
## 12156                          Morocco 1803           0
## 12157                       Mozambique 1803           0
## 12158                          Myanmar 1803           0
## 12159                          Namibia 1803           0
## 12160                            Nauru 1803           0
## 12161                            Nepal 1803           0
## 12162                      Netherlands 1803           0
## 12163                    New Caledonia 1803           0
## 12164                      New Zealand 1803           0
## 12165                        Nicaragua 1803           0
## 12166                            Niger 1803           0
## 12167                          Nigeria 1803           0
## 12168                             Niue 1803           0
## 12169                      North Korea 1803           0
## 12170                           Norway 1803           0
## 12171                             Oman 1803           0
## 12172                         Pakistan 1803           0
## 12173                            Palau 1803           0
## 12174                        Palestine 1803           0
## 12175                           Panama 1803           0
## 12176                 Papua New Guinea 1803           0
## 12177                         Paraguay 1803           0
## 12178                             Peru 1803           0
## 12179                      Philippines 1803           0
## 12180                           Poland 1803     1762384
## 12181                         Portugal 1803           0
## 12182                            Qatar 1803           0
## 12183                          Reunion 1803           0
## 12184                          Romania 1803           0
## 12185                           Russia 1803           0
## 12186                           Rwanda 1803           0
## 12187                     Saint Helena 1803           0
## 12188            Saint Kitts and Nevis 1803           0
## 12189                      Saint Lucia 1803           0
## 12190        Saint Pierre and Miquelon 1803           0
## 12191 Saint Vincent and the Grenadines 1803           0
## 12192                            Samoa 1803           0
## 12193            Sao Tome and Principe 1803           0
## 12194                     Saudi Arabia 1803           0
## 12195                          Senegal 1803           0
## 12196                           Serbia 1803           0
## 12197                       Seychelles 1803           0
## 12198                     Sierra Leone 1803           0
## 12199                        Singapore 1803           0
## 12200        Sint Maarten (Dutch part) 1803           0
## 12201                         Slovakia 1803           0
## 12202                         Slovenia 1803           0
## 12203                  Solomon Islands 1803           0
## 12204                          Somalia 1803           0
## 12205                     South Africa 1803           0
## 12206                      South Korea 1803           0
## 12207                      South Sudan 1803           0
## 12208                            Spain 1803           0
## 12209                        Sri Lanka 1803           0
## 12210                            Sudan 1803           0
## 12211                         Suriname 1803           0
## 12212                        Swaziland 1803           0
## 12213                           Sweden 1803           0
## 12214                      Switzerland 1803           0
## 12215                            Syria 1803           0
## 12216                           Taiwan 1803           0
## 12217                       Tajikistan 1803           0
## 12218                         Tanzania 1803           0
## 12219                         Thailand 1803           0
## 12220                            Timor 1803           0
## 12221                             Togo 1803           0
## 12222                            Tonga 1803           0
## 12223              Trinidad and Tobago 1803           0
## 12224                          Tunisia 1803           0
## 12225                           Turkey 1803           0
## 12226                     Turkmenistan 1803           0
## 12227         Turks and Caicos Islands 1803           0
## 12228                           Tuvalu 1803           0
## 12229                           Uganda 1803           0
## 12230                          Ukraine 1803           0
## 12231             United Arab Emirates 1803           0
## 12232                   United Kingdom 1803   850275168
## 12233                    United States 1803     1106528
## 12234                          Uruguay 1803           0
## 12235                       Uzbekistan 1803           0
## 12236                          Vanuatu 1803           0
## 12237                        Venezuela 1803           0
## 12238                          Vietnam 1803           0
## 12239        Wallis and Futuna Islands 1803           0
## 12240                            World 1803   868393648
## 12241                            Yemen 1803           0
## 12242                           Zambia 1803           0
## 12243                         Zimbabwe 1803           0
## 12244                      Afghanistan 1804           0
## 12245                           Africa 1804           0
## 12246                          Albania 1804           0
## 12247                          Algeria 1804           0
## 12248                 Americas (other) 1804       73280
## 12249                          Andorra 1804           0
## 12250                           Angola 1804           0
## 12251                         Anguilla 1804           0
## 12252              Antarctic Fisheries 1804           0
## 12253              Antigua and Barbuda 1804           0
## 12254                        Argentina 1804           0
## 12255                          Armenia 1804           0
## 12256                            Aruba 1804           0
## 12257         Asia and Pacific (other) 1804           0
## 12258                        Australia 1804           0
## 12259                          Austria 1804           0
## 12260                       Azerbaijan 1804           0
## 12261                          Bahamas 1804           0
## 12262                          Bahrain 1804           0
## 12263                       Bangladesh 1804           0
## 12264                         Barbados 1804           0
## 12265                          Belarus 1804           0
## 12266                          Belgium 1804     6397344
## 12267                           Belize 1804           0
## 12268                            Benin 1804           0
## 12269                          Bermuda 1804           0
## 12270                           Bhutan 1804           0
## 12271                          Bolivia 1804           0
## 12272  Bonaire Sint Eustatius and Saba 1804           0
## 12273           Bosnia and Herzegovina 1804           0
## 12274                         Botswana 1804           0
## 12275                           Brazil 1804           0
## 12276           British Virgin Islands 1804           0
## 12277                           Brunei 1804           0
## 12278                         Bulgaria 1804           0
## 12279                     Burkina Faso 1804           0
## 12280                          Burundi 1804           0
## 12281                         Cambodia 1804           0
## 12282                         Cameroon 1804           0
## 12283                           Canada 1804       73280
## 12284                       Cape Verde 1804           0
## 12285                   Cayman Islands 1804           0
## 12286         Central African Republic 1804           0
## 12287                             Chad 1804           0
## 12288                            Chile 1804           0
## 12289                            China 1804           0
## 12290                 Christmas Island 1804           0
## 12291                         Colombia 1804           0
## 12292                          Comoros 1804           0
## 12293                            Congo 1804           0
## 12294                     Cook Islands 1804           0
## 12295                       Costa Rica 1804           0
## 12296                    Cote d'Ivoire 1804           0
## 12297                          Croatia 1804           0
## 12298                             Cuba 1804           0
## 12299                          Curacao 1804           0
## 12300                           Cyprus 1804           0
## 12301                   Czech Republic 1804           0
## 12302                   Czechoslovakia 1804           0
## 12303     Democratic Republic of Congo 1804           0
## 12304                          Denmark 1804           0
## 12305                         Djibouti 1804           0
## 12306                         Dominica 1804           0
## 12307               Dominican Republic 1804           0
## 12308                            EU-28 1804   901190112
## 12309                          Ecuador 1804           0
## 12310                            Egypt 1804           0
## 12311                      El Salvador 1804           0
## 12312                Equatorial Guinea 1804           0
## 12313                          Eritrea 1804           0
## 12314                          Estonia 1804           0
## 12315                         Ethiopia 1804           0
## 12316                   Europe (other) 1804           0
## 12317                   Faeroe Islands 1804           0
## 12318                 Falkland Islands 1804           0
## 12319                             Fiji 1804           0
## 12320                          Finland 1804           0
## 12321                           France 1804     4415120
## 12322                    French Guiana 1804           0
## 12323                 French Polynesia 1804           0
## 12324                            Gabon 1804           0
## 12325                           Gambia 1804           0
## 12326                          Georgia 1804           0
## 12327                          Germany 1804     7551504
## 12328                            Ghana 1804           0
## 12329                        Gibraltar 1804           0
## 12330                           Greece 1804           0
## 12331                        Greenland 1804           0
## 12332                          Grenada 1804           0
## 12333                       Guadeloupe 1804           0
## 12334                        Guatemala 1804           0
## 12335                           Guinea 1804           0
## 12336                    Guinea-Bissau 1804           0
## 12337                           Guyana 1804           0
## 12338                            Haiti 1804           0
## 12339                         Honduras 1804           0
## 12340                        Hong Kong 1804           0
## 12341                          Hungary 1804           0
## 12342                          Iceland 1804           0
## 12343                            India 1804           0
## 12344                        Indonesia 1804           0
## 12345                             Iran 1804           0
## 12346                             Iraq 1804           0
## 12347                          Ireland 1804           0
## 12348                           Israel 1804           0
## 12349                            Italy 1804           0
## 12350                          Jamaica 1804           0
## 12351                            Japan 1804           0
## 12352                           Jordan 1804           0
## 12353                       Kazakhstan 1804           0
## 12354                            Kenya 1804           0
## 12355                         Kiribati 1804           0
## 12356                           Kuwait 1804           0
## 12357                       Kyrgysztan 1804           0
## 12358                       Kyrgyzstan 1804           0
## 12359                             Laos 1804           0
## 12360                           Latvia 1804           0
## 12361                          Lebanon 1804           0
## 12362                          Lesotho 1804           0
## 12363                          Liberia 1804           0
## 12364                            Libya 1804           0
## 12365                    Liechtenstein 1804           0
## 12366                        Lithuania 1804           0
## 12367                       Luxembourg 1804           0
## 12368                            Macao 1804           0
## 12369                        Macedonia 1804           0
## 12370                       Madagascar 1804           0
## 12371                           Malawi 1804           0
## 12372                         Malaysia 1804           0
## 12373                         Maldives 1804           0
## 12374                             Mali 1804           0
## 12375                            Malta 1804           0
## 12376                 Marshall Islands 1804           0
## 12377                       Martinique 1804           0
## 12378                       Mauritania 1804           0
## 12379                        Mauritius 1804           0
## 12380                           Mexico 1804           0
## 12381             Micronesia (country) 1804           0
## 12382                      Middle East 1804           0
## 12383                          Moldova 1804           0
## 12384                         Mongolia 1804           0
## 12385                       Montenegro 1804           0
## 12386                       Montserrat 1804           0
## 12387                          Morocco 1804           0
## 12388                       Mozambique 1804           0
## 12389                          Myanmar 1804           0
## 12390                          Namibia 1804           0
## 12391                            Nauru 1804           0
## 12392                            Nepal 1804           0
## 12393                      Netherlands 1804           0
## 12394                    New Caledonia 1804           0
## 12395                      New Zealand 1804           0
## 12396                        Nicaragua 1804           0
## 12397                            Niger 1804           0
## 12398                          Nigeria 1804           0
## 12399                             Niue 1804           0
## 12400                      North Korea 1804           0
## 12401                           Norway 1804           0
## 12402                             Oman 1804           0
## 12403                         Pakistan 1804           0
## 12404                            Palau 1804           0
## 12405                        Palestine 1804           0
## 12406                           Panama 1804           0
## 12407                 Papua New Guinea 1804           0
## 12408                         Paraguay 1804           0
## 12409                             Peru 1804           0
## 12410                      Philippines 1804           0
## 12411                           Poland 1804     2220384
## 12412                         Portugal 1804           0
## 12413                            Qatar 1804           0
## 12414                          Reunion 1804           0
## 12415                          Romania 1804           0
## 12416                           Russia 1804           0
## 12417                           Rwanda 1804           0
## 12418                     Saint Helena 1804           0
## 12419            Saint Kitts and Nevis 1804           0
## 12420                      Saint Lucia 1804           0
## 12421        Saint Pierre and Miquelon 1804           0
## 12422 Saint Vincent and the Grenadines 1804           0
## 12423                            Samoa 1804           0
## 12424            Sao Tome and Principe 1804           0
## 12425                     Saudi Arabia 1804           0
## 12426                          Senegal 1804           0
## 12427                           Serbia 1804           0
## 12428                       Seychelles 1804           0
## 12429                     Sierra Leone 1804           0
## 12430                        Singapore 1804           0
## 12431        Sint Maarten (Dutch part) 1804           0
## 12432                         Slovakia 1804           0
## 12433                         Slovenia 1804           0
## 12434                  Solomon Islands 1804           0
## 12435                          Somalia 1804           0
## 12436                     South Africa 1804           0
## 12437                      South Korea 1804           0
## 12438                      South Sudan 1804           0
## 12439                            Spain 1804           0
## 12440                        Sri Lanka 1804           0
## 12441                            Sudan 1804           0
## 12442                         Suriname 1804           0
## 12443                        Swaziland 1804           0
## 12444                           Sweden 1804           0
## 12445                      Switzerland 1804           0
## 12446                            Syria 1804           0
## 12447                           Taiwan 1804           0
## 12448                       Tajikistan 1804           0
## 12449                         Tanzania 1804           0
## 12450                         Thailand 1804           0
## 12451                            Timor 1804           0
## 12452                             Togo 1804           0
## 12453                            Tonga 1804           0
## 12454              Trinidad and Tobago 1804           0
## 12455                          Tunisia 1804           0
## 12456                           Turkey 1804           0
## 12457                     Turkmenistan 1804           0
## 12458         Turks and Caicos Islands 1804           0
## 12459                           Tuvalu 1804           0
## 12460                           Uganda 1804           0
## 12461                          Ukraine 1804           0
## 12462             United Arab Emirates 1804           0
## 12463                   United Kingdom 1804   880605760
## 12464                    United States 1804     1439952
## 12465                          Uruguay 1804           0
## 12466                       Uzbekistan 1804           0
## 12467                          Vanuatu 1804           0
## 12468                        Venezuela 1804           0
## 12469                          Vietnam 1804           0
## 12470        Wallis and Futuna Islands 1804           0
## 12471                            World 1804   902703344
## 12472                            Yemen 1804           0
## 12473                           Zambia 1804           0
## 12474                         Zimbabwe 1804           0
## 12475                      Afghanistan 1805           0
## 12476                           Africa 1805           0
## 12477                          Albania 1805           0
## 12478                          Algeria 1805           0
## 12479                 Americas (other) 1805       76944
## 12480                          Andorra 1805           0
## 12481                           Angola 1805           0
## 12482                         Anguilla 1805           0
## 12483              Antarctic Fisheries 1805           0
## 12484              Antigua and Barbuda 1805           0
## 12485                        Argentina 1805           0
## 12486                          Armenia 1805           0
## 12487                            Aruba 1805           0
## 12488         Asia and Pacific (other) 1805           0
## 12489                        Australia 1805           0
## 12490                          Austria 1805           0
## 12491                       Azerbaijan 1805           0
## 12492                          Bahamas 1805           0
## 12493                          Bahrain 1805           0
## 12494                       Bangladesh 1805           0
## 12495                         Barbados 1805           0
## 12496                          Belarus 1805           0
## 12497                          Belgium 1805     6397344
## 12498                           Belize 1805           0
## 12499                            Benin 1805           0
## 12500                          Bermuda 1805           0
## 12501                           Bhutan 1805           0
## 12502                          Bolivia 1805           0
## 12503  Bonaire Sint Eustatius and Saba 1805           0
## 12504           Bosnia and Herzegovina 1805           0
## 12505                         Botswana 1805           0
## 12506                           Brazil 1805           0
## 12507           British Virgin Islands 1805           0
## 12508                           Brunei 1805           0
## 12509                         Bulgaria 1805           0
## 12510                     Burkina Faso 1805           0
## 12511                          Burundi 1805           0
## 12512                         Cambodia 1805           0
## 12513                         Cameroon 1805           0
## 12514                           Canada 1805       76944
## 12515                       Cape Verde 1805           0
## 12516                   Cayman Islands 1805           0
## 12517         Central African Republic 1805           0
## 12518                             Chad 1805           0
## 12519                            Chile 1805           0
## 12520                            China 1805           0
## 12521                 Christmas Island 1805           0
## 12522                         Colombia 1805           0
## 12523                          Comoros 1805           0
## 12524                            Congo 1805           0
## 12525                     Cook Islands 1805           0
## 12526                       Costa Rica 1805           0
## 12527                    Cote d'Ivoire 1805           0
## 12528                          Croatia 1805           0
## 12529                             Cuba 1805           0
## 12530                          Curacao 1805           0
## 12531                           Cyprus 1805           0
## 12532                   Czech Republic 1805           0
## 12533                   Czechoslovakia 1805           0
## 12534     Democratic Republic of Congo 1805           0
## 12535                          Denmark 1805           0
## 12536                         Djibouti 1805           0
## 12537                         Dominica 1805           0
## 12538               Dominican Republic 1805           0
## 12539                            EU-28 1805   934265040
## 12540                          Ecuador 1805           0
## 12541                            Egypt 1805           0
## 12542                      El Salvador 1805           0
## 12543                Equatorial Guinea 1805           0
## 12544                          Eritrea 1805           0
## 12545                          Estonia 1805           0
## 12546                         Ethiopia 1805           0
## 12547                   Europe (other) 1805           0
## 12548                   Faeroe Islands 1805           0
## 12549                 Falkland Islands 1805           0
## 12550                             Fiji 1805           0
## 12551                          Finland 1805           0
## 12552                           France 1805     4415120
## 12553                    French Guiana 1805           0
## 12554                 French Polynesia 1805           0
## 12555                            Gabon 1805           0
## 12556                           Gambia 1805           0
## 12557                          Georgia 1805           0
## 12558                          Germany 1805     8592080
## 12559                            Ghana 1805           0
## 12560                        Gibraltar 1805           0
## 12561                           Greece 1805           0
## 12562                        Greenland 1805           0
## 12563                          Grenada 1805           0
## 12564                       Guadeloupe 1805           0
## 12565                        Guatemala 1805           0
## 12566                           Guinea 1805           0
## 12567                    Guinea-Bissau 1805           0
## 12568                           Guyana 1805           0
## 12569                            Haiti 1805           0
## 12570                         Honduras 1805           0
## 12571                        Hong Kong 1805           0
## 12572                          Hungary 1805           0
## 12573                          Iceland 1805           0
## 12574                            India 1805           0
## 12575                        Indonesia 1805           0
## 12576                             Iran 1805           0
## 12577                             Iraq 1805           0
## 12578                          Ireland 1805           0
## 12579                           Israel 1805           0
## 12580                            Italy 1805           0
## 12581                          Jamaica 1805           0
## 12582                            Japan 1805           0
## 12583                           Jordan 1805           0
## 12584                       Kazakhstan 1805           0
## 12585                            Kenya 1805           0
## 12586                         Kiribati 1805           0
## 12587                           Kuwait 1805           0
## 12588                       Kyrgysztan 1805           0
## 12589                       Kyrgyzstan 1805           0
## 12590                             Laos 1805           0
## 12591                           Latvia 1805           0
## 12592                          Lebanon 1805           0
## 12593                          Lesotho 1805           0
## 12594                          Liberia 1805           0
## 12595                            Libya 1805           0
## 12596                    Liechtenstein 1805           0
## 12597                        Lithuania 1805           0
## 12598                       Luxembourg 1805           0
## 12599                            Macao 1805           0
## 12600                        Macedonia 1805           0
## 12601                       Madagascar 1805           0
## 12602                           Malawi 1805           0
## 12603                         Malaysia 1805           0
## 12604                         Maldives 1805           0
## 12605                             Mali 1805           0
## 12606                            Malta 1805           0
## 12607                 Marshall Islands 1805           0
## 12608                       Martinique 1805           0
## 12609                       Mauritania 1805           0
## 12610                        Mauritius 1805           0
## 12611                           Mexico 1805           0
## 12612             Micronesia (country) 1805           0
## 12613                      Middle East 1805           0
## 12614                          Moldova 1805           0
## 12615                         Mongolia 1805           0
## 12616                       Montenegro 1805           0
## 12617                       Montserrat 1805           0
## 12618                          Morocco 1805           0
## 12619                       Mozambique 1805           0
## 12620                          Myanmar 1805           0
## 12621                          Namibia 1805           0
## 12622                            Nauru 1805           0
## 12623                            Nepal 1805           0
## 12624                      Netherlands 1805           0
## 12625                    New Caledonia 1805           0
## 12626                      New Zealand 1805           0
## 12627                        Nicaragua 1805           0
## 12628                            Niger 1805           0
## 12629                          Nigeria 1805           0
## 12630                             Niue 1805           0
## 12631                      North Korea 1805           0
## 12632                           Norway 1805           0
## 12633                             Oman 1805           0
## 12634                         Pakistan 1805           0
## 12635                            Palau 1805           0
## 12636                        Palestine 1805           0
## 12637                           Panama 1805           0
## 12638                 Papua New Guinea 1805           0
## 12639                         Paraguay 1805           0
## 12640                             Peru 1805           0
## 12641                      Philippines 1805           0
## 12642                           Poland 1805     2791968
## 12643                         Portugal 1805           0
## 12644                            Qatar 1805           0
## 12645                          Reunion 1805           0
## 12646                          Romania 1805           0
## 12647                           Russia 1805           0
## 12648                           Rwanda 1805           0
## 12649                     Saint Helena 1805           0
## 12650            Saint Kitts and Nevis 1805           0
## 12651                      Saint Lucia 1805           0
## 12652        Saint Pierre and Miquelon 1805           0
## 12653 Saint Vincent and the Grenadines 1805           0
## 12654                            Samoa 1805           0
## 12655            Sao Tome and Principe 1805           0
## 12656                     Saudi Arabia 1805           0
## 12657                          Senegal 1805           0
## 12658                           Serbia 1805           0
## 12659                       Seychelles 1805           0
## 12660                     Sierra Leone 1805           0
## 12661                        Singapore 1805           0
## 12662        Sint Maarten (Dutch part) 1805           0
## 12663                         Slovakia 1805           0
## 12664                         Slovenia 1805           0
## 12665                  Solomon Islands 1805           0
## 12666                          Somalia 1805           0
## 12667                     South Africa 1805           0
## 12668                      South Korea 1805           0
## 12669                      South Sudan 1805           0
## 12670                            Spain 1805           0
## 12671                        Sri Lanka 1805           0
## 12672                            Sudan 1805           0
## 12673                         Suriname 1805           0
## 12674                        Swaziland 1805           0
## 12675                           Sweden 1805           0
## 12676                      Switzerland 1805           0
## 12677                            Syria 1805           0
## 12678                           Taiwan 1805           0
## 12679                       Tajikistan 1805           0
## 12680                         Tanzania 1805           0
## 12681                         Thailand 1805           0
## 12682                            Timor 1805           0
## 12683                             Togo 1805           0
## 12684                            Tonga 1805           0
## 12685              Trinidad and Tobago 1805           0
## 12686                          Tunisia 1805           0
## 12687                           Turkey 1805           0
## 12688                     Turkmenistan 1805           0
## 12689         Turks and Caicos Islands 1805           0
## 12690                           Tuvalu 1805           0
## 12691                           Uganda 1805           0
## 12692                          Ukraine 1805           0
## 12693             United Arab Emirates 1805           0
## 12694                   United Kingdom 1805   912068528
## 12695                    United States 1805     1780704
## 12696                          Uruguay 1805           0
## 12697                       Uzbekistan 1805           0
## 12698                          Vanuatu 1805           0
## 12699                        Venezuela 1805           0
## 12700                          Vietnam 1805           0
## 12701        Wallis and Futuna Islands 1805           0
## 12702                            World 1805   936122688
## 12703                            Yemen 1805           0
## 12704                           Zambia 1805           0
## 12705                         Zimbabwe 1805           0
## 12706                      Afghanistan 1806           0
## 12707                           Africa 1806           0
## 12708                          Albania 1806           0
## 12709                          Algeria 1806           0
## 12710                 Americas (other) 1806       80608
## 12711                          Andorra 1806           0
## 12712                           Angola 1806           0
## 12713                         Anguilla 1806           0
## 12714              Antarctic Fisheries 1806           0
## 12715              Antigua and Barbuda 1806           0
## 12716                        Argentina 1806           0
## 12717                          Armenia 1806           0
## 12718                            Aruba 1806           0
## 12719         Asia and Pacific (other) 1806           0
## 12720                        Australia 1806           0
## 12721                          Austria 1806           0
## 12722                       Azerbaijan 1806           0
## 12723                          Bahamas 1806           0
## 12724                          Bahrain 1806           0
## 12725                       Bangladesh 1806           0
## 12726                         Barbados 1806           0
## 12727                          Belarus 1806           0
## 12728                          Belgium 1806     6397344
## 12729                           Belize 1806           0
## 12730                            Benin 1806           0
## 12731                          Bermuda 1806           0
## 12732                           Bhutan 1806           0
## 12733                          Bolivia 1806           0
## 12734  Bonaire Sint Eustatius and Saba 1806           0
## 12735           Bosnia and Herzegovina 1806           0
## 12736                         Botswana 1806           0
## 12737                           Brazil 1806           0
## 12738           British Virgin Islands 1806           0
## 12739                           Brunei 1806           0
## 12740                         Bulgaria 1806           0
## 12741                     Burkina Faso 1806           0
## 12742                          Burundi 1806           0
## 12743                         Cambodia 1806           0
## 12744                         Cameroon 1806           0
## 12745                           Canada 1806       80608
## 12746                       Cape Verde 1806           0
## 12747                   Cayman Islands 1806           0
## 12748         Central African Republic 1806           0
## 12749                             Chad 1806           0
## 12750                            Chile 1806           0
## 12751                            China 1806           0
## 12752                 Christmas Island 1806           0
## 12753                         Colombia 1806           0
## 12754                          Comoros 1806           0
## 12755                            Congo 1806           0
## 12756                     Cook Islands 1806           0
## 12757                       Costa Rica 1806           0
## 12758                    Cote d'Ivoire 1806           0
## 12759                          Croatia 1806           0
## 12760                             Cuba 1806           0
## 12761                          Curacao 1806           0
## 12762                           Cyprus 1806           0
## 12763                   Czech Republic 1806           0
## 12764                   Czechoslovakia 1806           0
## 12765     Democratic Republic of Congo 1806           0
## 12766                          Denmark 1806           0
## 12767                         Djibouti 1806           0
## 12768                         Dominica 1806           0
## 12769               Dominican Republic 1806           0
## 12770                            EU-28 1806   968974112
## 12771                          Ecuador 1806           0
## 12772                            Egypt 1806           0
## 12773                      El Salvador 1806           0
## 12774                Equatorial Guinea 1806           0
## 12775                          Eritrea 1806           0
## 12776                          Estonia 1806           0
## 12777                         Ethiopia 1806           0
## 12778                   Europe (other) 1806           0
## 12779                   Faeroe Islands 1806           0
## 12780                 Falkland Islands 1806           0
## 12781                             Fiji 1806           0
## 12782                          Finland 1806           0
## 12783                           France 1806     4415120
## 12784                    French Guiana 1806           0
## 12785                 French Polynesia 1806           0
## 12786                            Gabon 1806           0
## 12787                           Gambia 1806           0
## 12788                          Georgia 1806           0
## 12789                          Germany 1806     9530064
## 12790                            Ghana 1806           0
## 12791                        Gibraltar 1806           0
## 12792                           Greece 1806           0
## 12793                        Greenland 1806           0
## 12794                          Grenada 1806           0
## 12795                       Guadeloupe 1806           0
## 12796                        Guatemala 1806           0
## 12797                           Guinea 1806           0
## 12798                    Guinea-Bissau 1806           0
## 12799                           Guyana 1806           0
## 12800                            Haiti 1806           0
## 12801                         Honduras 1806           0
## 12802                        Hong Kong 1806           0
## 12803                          Hungary 1806           0
## 12804                          Iceland 1806           0
## 12805                            India 1806           0
## 12806                        Indonesia 1806           0
## 12807                             Iran 1806           0
## 12808                             Iraq 1806           0
## 12809                          Ireland 1806           0
## 12810                           Israel 1806           0
## 12811                            Italy 1806           0
## 12812                          Jamaica 1806           0
## 12813                            Japan 1806           0
## 12814                           Jordan 1806           0
## 12815                       Kazakhstan 1806           0
## 12816                            Kenya 1806           0
## 12817                         Kiribati 1806           0
## 12818                           Kuwait 1806           0
## 12819                       Kyrgysztan 1806           0
## 12820                       Kyrgyzstan 1806           0
## 12821                             Laos 1806           0
## 12822                           Latvia 1806           0
## 12823                          Lebanon 1806           0
## 12824                          Lesotho 1806           0
## 12825                          Liberia 1806           0
## 12826                            Libya 1806           0
## 12827                    Liechtenstein 1806           0
## 12828                        Lithuania 1806           0
## 12829                       Luxembourg 1806           0
## 12830                            Macao 1806           0
## 12831                        Macedonia 1806           0
## 12832                       Madagascar 1806           0
## 12833                           Malawi 1806           0
## 12834                         Malaysia 1806           0
## 12835                         Maldives 1806           0
## 12836                             Mali 1806           0
## 12837                            Malta 1806           0
## 12838                 Marshall Islands 1806           0
## 12839                       Martinique 1806           0
## 12840                       Mauritania 1806           0
## 12841                        Mauritius 1806           0
## 12842                           Mexico 1806           0
## 12843             Micronesia (country) 1806           0
## 12844                      Middle East 1806           0
## 12845                          Moldova 1806           0
## 12846                         Mongolia 1806           0
## 12847                       Montenegro 1806           0
## 12848                       Montserrat 1806           0
## 12849                          Morocco 1806           0
## 12850                       Mozambique 1806           0
## 12851                          Myanmar 1806           0
## 12852                          Namibia 1806           0
## 12853                            Nauru 1806           0
## 12854                            Nepal 1806           0
## 12855                      Netherlands 1806           0
## 12856                    New Caledonia 1806           0
## 12857                      New Zealand 1806           0
## 12858                        Nicaragua 1806           0
## 12859                            Niger 1806           0
## 12860                          Nigeria 1806           0
## 12861                             Niue 1806           0
## 12862                      North Korea 1806           0
## 12863                           Norway 1806           0
## 12864                             Oman 1806           0
## 12865                         Pakistan 1806           0
## 12866                            Palau 1806           0
## 12867                        Palestine 1806           0
## 12868                           Panama 1806           0
## 12869                 Papua New Guinea 1806           0
## 12870                         Paraguay 1806           0
## 12871                             Peru 1806           0
## 12872                      Philippines 1806           0
## 12873                           Poland 1806     3312256
## 12874                         Portugal 1806           0
## 12875                            Qatar 1806           0
## 12876                          Reunion 1806           0
## 12877                          Romania 1806           0
## 12878                           Russia 1806           0
## 12879                           Rwanda 1806           0
## 12880                     Saint Helena 1806           0
## 12881            Saint Kitts and Nevis 1806           0
## 12882                      Saint Lucia 1806           0
## 12883        Saint Pierre and Miquelon 1806           0
## 12884 Saint Vincent and the Grenadines 1806           0
## 12885                            Samoa 1806           0
## 12886            Sao Tome and Principe 1806           0
## 12887                     Saudi Arabia 1806           0
## 12888                          Senegal 1806           0
## 12889                           Serbia 1806           0
## 12890                       Seychelles 1806           0
## 12891                     Sierra Leone 1806           0
## 12892                        Singapore 1806           0
## 12893        Sint Maarten (Dutch part) 1806           0
## 12894                         Slovakia 1806           0
## 12895                         Slovenia 1806           0
## 12896                  Solomon Islands 1806           0
## 12897                          Somalia 1806           0
## 12898                     South Africa 1806           0
## 12899                      South Korea 1806           0
## 12900                      South Sudan 1806           0
## 12901                            Spain 1806           0
## 12902                        Sri Lanka 1806           0
## 12903                            Sudan 1806           0
## 12904                         Suriname 1806           0
## 12905                        Swaziland 1806           0
## 12906                           Sweden 1806           0
## 12907                      Switzerland 1806           0
## 12908                            Syria 1806           0
## 12909                           Taiwan 1806           0
## 12910                       Tajikistan 1806           0
## 12911                         Tanzania 1806           0
## 12912                         Thailand 1806           0
## 12913                            Timor 1806           0
## 12914                             Togo 1806           0
## 12915                            Tonga 1806           0
## 12916              Trinidad and Tobago 1806           0
## 12917                          Tunisia 1806           0
## 12918                           Turkey 1806           0
## 12919                     Turkmenistan 1806           0
## 12920         Turks and Caicos Islands 1806           0
## 12921                           Tuvalu 1806           0
## 12922                           Uganda 1806           0
## 12923                          Ukraine 1806           0
## 12924             United Arab Emirates 1806           0
## 12925                   United Kingdom 1806   945319328
## 12926                    United States 1806     2114128
## 12927                          Uruguay 1806           0
## 12928                       Uzbekistan 1806           0
## 12929                          Vanuatu 1806           0
## 12930                        Venezuela 1806           0
## 12931                          Vietnam 1806           0
## 12932        Wallis and Futuna Islands 1806           0
## 12933                            World 1806   971168848
## 12934                            Yemen 1806           0
## 12935                           Zambia 1806           0
## 12936                         Zimbabwe 1806           0
## 12937                      Afghanistan 1807           0
## 12938                           Africa 1807           0
## 12939                          Albania 1807           0
## 12940                          Algeria 1807           0
## 12941                 Americas (other) 1807       84272
## 12942                          Andorra 1807           0
## 12943                           Angola 1807           0
## 12944                         Anguilla 1807           0
## 12945              Antarctic Fisheries 1807           0
## 12946              Antigua and Barbuda 1807           0
## 12947                        Argentina 1807           0
## 12948                          Armenia 1807           0
## 12949                            Aruba 1807           0
## 12950         Asia and Pacific (other) 1807           0
## 12951                        Australia 1807           0
## 12952                          Austria 1807      168544
## 12953                       Azerbaijan 1807           0
## 12954                          Bahamas 1807           0
## 12955                          Bahrain 1807           0
## 12956                       Bangladesh 1807           0
## 12957                         Barbados 1807           0
## 12958                          Belarus 1807           0
## 12959                          Belgium 1807     6397344
## 12960                           Belize 1807           0
## 12961                            Benin 1807           0
## 12962                          Bermuda 1807           0
## 12963                           Bhutan 1807           0
## 12964                          Bolivia 1807           0
## 12965  Bonaire Sint Eustatius and Saba 1807           0
## 12966           Bosnia and Herzegovina 1807           0
## 12967                         Botswana 1807           0
## 12968                           Brazil 1807           0
## 12969           British Virgin Islands 1807           0
## 12970                           Brunei 1807           0
## 12971                         Bulgaria 1807           0
## 12972                     Burkina Faso 1807           0
## 12973                          Burundi 1807           0
## 12974                         Cambodia 1807           0
## 12975                         Cameroon 1807           0
## 12976                           Canada 1807       84272
## 12977                       Cape Verde 1807           0
## 12978                   Cayman Islands 1807           0
## 12979         Central African Republic 1807           0
## 12980                             Chad 1807           0
## 12981                            Chile 1807           0
## 12982                            China 1807           0
## 12983                 Christmas Island 1807           0
## 12984                         Colombia 1807           0
## 12985                          Comoros 1807           0
## 12986                            Congo 1807           0
## 12987                     Cook Islands 1807           0
## 12988                       Costa Rica 1807           0
## 12989                    Cote d'Ivoire 1807           0
## 12990                          Croatia 1807           0
## 12991                             Cuba 1807           0
## 12992                          Curacao 1807           0
## 12993                           Cyprus 1807           0
## 12994                   Czech Republic 1807           0
## 12995                   Czechoslovakia 1807           0
## 12996     Democratic Republic of Congo 1807           0
## 12997                          Denmark 1807           0
## 12998                         Djibouti 1807           0
## 12999                         Dominica 1807           0
## 13000               Dominican Republic 1807           0
## 13001                            EU-28 1807  1005467552
## 13002                          Ecuador 1807           0
## 13003                            Egypt 1807           0
## 13004                      El Salvador 1807           0
## 13005                Equatorial Guinea 1807           0
## 13006                          Eritrea 1807           0
## 13007                          Estonia 1807           0
## 13008                         Ethiopia 1807           0
## 13009                   Europe (other) 1807           0
## 13010                   Faeroe Islands 1807           0
## 13011                 Falkland Islands 1807           0
## 13012                             Fiji 1807           0
## 13013                          Finland 1807           0
## 13014                           France 1807     4415120
## 13015                    French Guiana 1807           0
## 13016                 French Polynesia 1807           0
## 13017                            Gabon 1807           0
## 13018                           Gambia 1807           0
## 13019                          Georgia 1807           0
## 13020                          Germany 1807    12219440
## 13021                            Ghana 1807           0
## 13022                        Gibraltar 1807           0
## 13023                           Greece 1807           0
## 13024                        Greenland 1807           0
## 13025                          Grenada 1807           0
## 13026                       Guadeloupe 1807           0
## 13027                        Guatemala 1807           0
## 13028                           Guinea 1807           0
## 13029                    Guinea-Bissau 1807           0
## 13030                           Guyana 1807           0
## 13031                            Haiti 1807           0
## 13032                         Honduras 1807           0
## 13033                        Hong Kong 1807           0
## 13034                          Hungary 1807           0
## 13035                          Iceland 1807           0
## 13036                            India 1807           0
## 13037                        Indonesia 1807           0
## 13038                             Iran 1807           0
## 13039                             Iraq 1807           0
## 13040                          Ireland 1807           0
## 13041                           Israel 1807           0
## 13042                            Italy 1807           0
## 13043                          Jamaica 1807           0
## 13044                            Japan 1807           0
## 13045                           Jordan 1807           0
## 13046                       Kazakhstan 1807           0
## 13047                            Kenya 1807           0
## 13048                         Kiribati 1807           0
## 13049                           Kuwait 1807           0
## 13050                       Kyrgysztan 1807           0
## 13051                       Kyrgyzstan 1807           0
## 13052                             Laos 1807           0
## 13053                           Latvia 1807           0
## 13054                          Lebanon 1807           0
## 13055                          Lesotho 1807           0
## 13056                          Liberia 1807           0
## 13057                            Libya 1807           0
## 13058                    Liechtenstein 1807           0
## 13059                        Lithuania 1807           0
## 13060                       Luxembourg 1807           0
## 13061                            Macao 1807           0
## 13062                        Macedonia 1807           0
## 13063                       Madagascar 1807           0
## 13064                           Malawi 1807           0
## 13065                         Malaysia 1807           0
## 13066                         Maldives 1807           0
## 13067                             Mali 1807           0
## 13068                            Malta 1807           0
## 13069                 Marshall Islands 1807           0
## 13070                       Martinique 1807           0
## 13071                       Mauritania 1807           0
## 13072                        Mauritius 1807           0
## 13073                           Mexico 1807           0
## 13074             Micronesia (country) 1807           0
## 13075                      Middle East 1807           0
## 13076                          Moldova 1807           0
## 13077                         Mongolia 1807           0
## 13078                       Montenegro 1807           0
## 13079                       Montserrat 1807           0
## 13080                          Morocco 1807           0
## 13081                       Mozambique 1807           0
## 13082                          Myanmar 1807           0
## 13083                          Namibia 1807           0
## 13084                            Nauru 1807           0
## 13085                            Nepal 1807           0
## 13086                      Netherlands 1807           0
## 13087                    New Caledonia 1807           0
## 13088                      New Zealand 1807           0
## 13089                        Nicaragua 1807           0
## 13090                            Niger 1807           0
## 13091                          Nigeria 1807           0
## 13092                             Niue 1807           0
## 13093                      North Korea 1807           0
## 13094                           Norway 1807           0
## 13095                             Oman 1807           0
## 13096                         Pakistan 1807           0
## 13097                            Palau 1807           0
## 13098                        Palestine 1807           0
## 13099                           Panama 1807           0
## 13100                 Papua New Guinea 1807           0
## 13101                         Paraguay 1807           0
## 13102                             Peru 1807           0
## 13103                      Philippines 1807           0
## 13104                           Poland 1807     3689648
## 13105                         Portugal 1807           0
## 13106                            Qatar 1807           0
## 13107                          Reunion 1807           0
## 13108                          Romania 1807           0
## 13109                           Russia 1807           0
## 13110                           Rwanda 1807           0
## 13111                     Saint Helena 1807           0
## 13112            Saint Kitts and Nevis 1807           0
## 13113                      Saint Lucia 1807           0
## 13114        Saint Pierre and Miquelon 1807           0
## 13115 Saint Vincent and the Grenadines 1807           0
## 13116                            Samoa 1807           0
## 13117            Sao Tome and Principe 1807           0
## 13118                     Saudi Arabia 1807           0
## 13119                          Senegal 1807           0
## 13120                           Serbia 1807           0
## 13121                       Seychelles 1807           0
## 13122                     Sierra Leone 1807           0
## 13123                        Singapore 1807           0
## 13124        Sint Maarten (Dutch part) 1807           0
## 13125                         Slovakia 1807           0
## 13126                         Slovenia 1807           0
## 13127                  Solomon Islands 1807           0
## 13128                          Somalia 1807           0
## 13129                     South Africa 1807           0
## 13130                      South Korea 1807           0
## 13131                      South Sudan 1807           0
## 13132                            Spain 1807           0
## 13133                        Sri Lanka 1807           0
## 13134                            Sudan 1807           0
## 13135                         Suriname 1807           0
## 13136                        Swaziland 1807           0
## 13137                           Sweden 1807           0
## 13138                      Switzerland 1807           0
## 13139                            Syria 1807           0
## 13140                           Taiwan 1807           0
## 13141                       Tajikistan 1807           0
## 13142                         Tanzania 1807           0
## 13143                         Thailand 1807           0
## 13144                            Timor 1807           0
## 13145                             Togo 1807           0
## 13146                            Tonga 1807           0
## 13147              Trinidad and Tobago 1807           0
## 13148                          Tunisia 1807           0
## 13149                           Turkey 1807           0
## 13150                     Turkmenistan 1807           0
## 13151         Turks and Caicos Islands 1807           0
## 13152                           Tuvalu 1807           0
## 13153                           Uganda 1807           0
## 13154                          Ukraine 1807           0
## 13155             United Arab Emirates 1807           0
## 13156                   United Kingdom 1807   978577456
## 13157                    United States 1807     2491520
## 13158                          Uruguay 1807           0
## 13159                       Uzbekistan 1807           0
## 13160                          Vanuatu 1807           0
## 13161                        Venezuela 1807           0
## 13162                          Vietnam 1807           0
## 13163        Wallis and Futuna Islands 1807           0
## 13164                            World 1807  1008043344
## 13165                            Yemen 1807           0
## 13166                           Zambia 1807           0
## 13167                         Zimbabwe 1807           0
## 13168                      Afghanistan 1808           0
## 13169                           Africa 1808           0
## 13170                          Albania 1808           0
## 13171                          Algeria 1808           0
## 13172                 Americas (other) 1808       87936
## 13173                          Andorra 1808           0
## 13174                           Angola 1808           0
## 13175                         Anguilla 1808           0
## 13176              Antarctic Fisheries 1808           0
## 13177              Antigua and Barbuda 1808           0
## 13178                        Argentina 1808           0
## 13179                          Armenia 1808           0
## 13180                            Aruba 1808           0
## 13181         Asia and Pacific (other) 1808           0
## 13182                        Australia 1808           0
## 13183                          Austria 1808      168544
## 13184                       Azerbaijan 1808           0
## 13185                          Bahamas 1808           0
## 13186                          Bahrain 1808           0
## 13187                       Bangladesh 1808           0
## 13188                         Barbados 1808           0
## 13189                          Belarus 1808           0
## 13190                          Belgium 1808     6397344
## 13191                           Belize 1808           0
## 13192                            Benin 1808           0
## 13193                          Bermuda 1808           0
## 13194                           Bhutan 1808           0
## 13195                          Bolivia 1808           0
## 13196  Bonaire Sint Eustatius and Saba 1808           0
## 13197           Bosnia and Herzegovina 1808           0
## 13198                         Botswana 1808           0
## 13199                           Brazil 1808           0
## 13200           British Virgin Islands 1808           0
## 13201                           Brunei 1808           0
## 13202                         Bulgaria 1808           0
## 13203                     Burkina Faso 1808           0
## 13204                          Burundi 1808           0
## 13205                         Cambodia 1808           0
## 13206                         Cameroon 1808           0
## 13207                           Canada 1808       87936
## 13208                       Cape Verde 1808           0
## 13209                   Cayman Islands 1808           0
## 13210         Central African Republic 1808           0
## 13211                             Chad 1808           0
## 13212                            Chile 1808           0
## 13213                            China 1808           0
## 13214                 Christmas Island 1808           0
## 13215                         Colombia 1808           0
## 13216                          Comoros 1808           0
## 13217                            Congo 1808           0
## 13218                     Cook Islands 1808           0
## 13219                       Costa Rica 1808           0
## 13220                    Cote d'Ivoire 1808           0
## 13221                          Croatia 1808           0
## 13222                             Cuba 1808           0
## 13223                          Curacao 1808           0
## 13224                           Cyprus 1808           0
## 13225                   Czech Republic 1808           0
## 13226                   Czechoslovakia 1808           0
## 13227     Democratic Republic of Congo 1808           0
## 13228                          Denmark 1808           0
## 13229                         Djibouti 1808           0
## 13230                         Dominica 1808           0
## 13231               Dominican Republic 1808           0
## 13232                            EU-28 1808  1040136320
## 13233                          Ecuador 1808           0
## 13234                            Egypt 1808           0
## 13235                      El Salvador 1808           0
## 13236                Equatorial Guinea 1808           0
## 13237                          Eritrea 1808           0
## 13238                          Estonia 1808           0
## 13239                         Ethiopia 1808           0
## 13240                   Europe (other) 1808           0
## 13241                   Faeroe Islands 1808           0
## 13242                 Falkland Islands 1808           0
## 13243                             Fiji 1808           0
## 13244                          Finland 1808           0
## 13245                           France 1808     4415120
## 13246                    French Guiana 1808           0
## 13247                 French Polynesia 1808           0
## 13248                            Gabon 1808           0
## 13249                           Gambia 1808           0
## 13250                          Georgia 1808           0
## 13251                          Germany 1808    13117120
## 13252                            Ghana 1808           0
## 13253                        Gibraltar 1808           0
## 13254                           Greece 1808           0
## 13255                        Greenland 1808           0
## 13256                          Grenada 1808           0
## 13257                       Guadeloupe 1808           0
## 13258                        Guatemala 1808           0
## 13259                           Guinea 1808           0
## 13260                    Guinea-Bissau 1808           0
## 13261                           Guyana 1808           0
## 13262                            Haiti 1808           0
## 13263                         Honduras 1808           0
## 13264                        Hong Kong 1808           0
## 13265                          Hungary 1808           0
## 13266                          Iceland 1808           0
## 13267                            India 1808           0
## 13268                        Indonesia 1808           0
## 13269                             Iran 1808           0
## 13270                             Iraq 1808           0
## 13271                          Ireland 1808           0
## 13272                           Israel 1808           0
## 13273                            Italy 1808           0
## 13274                          Jamaica 1808           0
## 13275                            Japan 1808           0
## 13276                           Jordan 1808           0
## 13277                       Kazakhstan 1808           0
## 13278                            Kenya 1808           0
## 13279                         Kiribati 1808           0
## 13280                           Kuwait 1808           0
## 13281                       Kyrgysztan 1808           0
## 13282                       Kyrgyzstan 1808           0
## 13283                             Laos 1808           0
## 13284                           Latvia 1808           0
## 13285                          Lebanon 1808           0
## 13286                          Lesotho 1808           0
## 13287                          Liberia 1808           0
## 13288                            Libya 1808           0
## 13289                    Liechtenstein 1808           0
## 13290                        Lithuania 1808           0
## 13291                       Luxembourg 1808           0
## 13292                            Macao 1808           0
## 13293                        Macedonia 1808           0
## 13294                       Madagascar 1808           0
## 13295                           Malawi 1808           0
## 13296                         Malaysia 1808           0
## 13297                         Maldives 1808           0
## 13298                             Mali 1808           0
## 13299                            Malta 1808           0
## 13300                 Marshall Islands 1808           0
## 13301                       Martinique 1808           0
## 13302                       Mauritania 1808           0
## 13303                        Mauritius 1808           0
## 13304                           Mexico 1808           0
## 13305             Micronesia (country) 1808           0
## 13306                      Middle East 1808           0
## 13307                          Moldova 1808           0
## 13308                         Mongolia 1808           0
## 13309                       Montenegro 1808           0
## 13310                       Montserrat 1808           0
## 13311                          Morocco 1808           0
## 13312                       Mozambique 1808           0
## 13313                          Myanmar 1808           0
## 13314                          Namibia 1808           0
## 13315                            Nauru 1808           0
## 13316                            Nepal 1808           0
## 13317                      Netherlands 1808           0
## 13318                    New Caledonia 1808           0
## 13319                      New Zealand 1808           0
## 13320                        Nicaragua 1808           0
## 13321                            Niger 1808           0
## 13322                          Nigeria 1808           0
## 13323                             Niue 1808           0
## 13324                      North Korea 1808           0
## 13325                           Norway 1808           0
## 13326                             Oman 1808           0
## 13327                         Pakistan 1808           0
## 13328                            Palau 1808           0
## 13329                        Palestine 1808           0
## 13330                           Panama 1808           0
## 13331                 Papua New Guinea 1808           0
## 13332                         Paraguay 1808           0
## 13333                             Peru 1808           0
## 13334                      Philippines 1808           0
## 13335                           Poland 1808     4191616
## 13336                         Portugal 1808           0
## 13337                            Qatar 1808           0
## 13338                          Reunion 1808           0
## 13339                          Romania 1808           0
## 13340                           Russia 1808           0
## 13341                           Rwanda 1808           0
## 13342                     Saint Helena 1808           0
## 13343            Saint Kitts and Nevis 1808           0
## 13344                      Saint Lucia 1808           0
## 13345        Saint Pierre and Miquelon 1808           0
## 13346 Saint Vincent and the Grenadines 1808           0
## 13347                            Samoa 1808           0
## 13348            Sao Tome and Principe 1808           0
## 13349                     Saudi Arabia 1808           0
## 13350                          Senegal 1808           0
## 13351                           Serbia 1808           0
## 13352                       Seychelles 1808           0
## 13353                     Sierra Leone 1808           0
## 13354                        Singapore 1808           0
## 13355        Sint Maarten (Dutch part) 1808           0
## 13356                         Slovakia 1808           0
## 13357                         Slovenia 1808           0
## 13358                  Solomon Islands 1808           0
## 13359                          Somalia 1808           0
## 13360                     South Africa 1808           0
## 13361                      South Korea 1808           0
## 13362                      South Sudan 1808           0
## 13363                            Spain 1808           0
## 13364                        Sri Lanka 1808           0
## 13365                            Sudan 1808           0
## 13366                         Suriname 1808           0
## 13367                        Swaziland 1808           0
## 13368                           Sweden 1808           0
## 13369                      Switzerland 1808           0
## 13370                            Syria 1808           0
## 13371                           Taiwan 1808           0
## 13372                       Tajikistan 1808           0
## 13373                         Tanzania 1808           0
## 13374                         Thailand 1808           0
## 13375                            Timor 1808           0
## 13376                             Togo 1808           0
## 13377                            Tonga 1808           0
## 13378              Trinidad and Tobago 1808           0
## 13379                          Tunisia 1808           0
## 13380                           Turkey 1808           0
## 13381                     Turkmenistan 1808           0
## 13382         Turks and Caicos Islands 1808           0
## 13383                           Tuvalu 1808           0
## 13384                           Uganda 1808           0
## 13385                          Ukraine 1808           0
## 13386             United Arab Emirates 1808           0
## 13387                   United Kingdom 1808  1011846576
## 13388                    United States 1808     2883568
## 13389                          Uruguay 1808           0
## 13390                       Uzbekistan 1808           0
## 13391                          Vanuatu 1808           0
## 13392                        Venezuela 1808           0
## 13393                          Vietnam 1808           0
## 13394        Wallis and Futuna Islands 1808           0
## 13395                            World 1808  1043107824
## 13396                            Yemen 1808           0
## 13397                           Zambia 1808           0
## 13398                         Zimbabwe 1808           0
## 13399                      Afghanistan 1809           0
## 13400                           Africa 1809           0
## 13401                          Albania 1809           0
## 13402                          Algeria 1809           0
## 13403                 Americas (other) 1809       91600
## 13404                          Andorra 1809           0
## 13405                           Angola 1809           0
## 13406                         Anguilla 1809           0
## 13407              Antarctic Fisheries 1809           0
## 13408              Antigua and Barbuda 1809           0
## 13409                        Argentina 1809           0
## 13410                          Armenia 1809           0
## 13411                            Aruba 1809           0
## 13412         Asia and Pacific (other) 1809           0
## 13413                        Australia 1809           0
## 13414                          Austria 1809      168544
## 13415                       Azerbaijan 1809           0
## 13416                          Bahamas 1809           0
## 13417                          Bahrain 1809           0
## 13418                       Bangladesh 1809           0
## 13419                         Barbados 1809           0
## 13420                          Belarus 1809           0
## 13421                          Belgium 1809     6397344
## 13422                           Belize 1809           0
## 13423                            Benin 1809           0
## 13424                          Bermuda 1809           0
## 13425                           Bhutan 1809           0
## 13426                          Bolivia 1809           0
## 13427  Bonaire Sint Eustatius and Saba 1809           0
## 13428           Bosnia and Herzegovina 1809           0
## 13429                         Botswana 1809           0
## 13430                           Brazil 1809           0
## 13431           British Virgin Islands 1809           0
## 13432                           Brunei 1809           0
## 13433                         Bulgaria 1809           0
## 13434                     Burkina Faso 1809           0
## 13435                          Burundi 1809           0
## 13436                         Cambodia 1809           0
## 13437                         Cameroon 1809           0
## 13438                           Canada 1809       91600
## 13439                       Cape Verde 1809           0
## 13440                   Cayman Islands 1809           0
## 13441         Central African Republic 1809           0
## 13442                             Chad 1809           0
## 13443                            Chile 1809           0
## 13444                            China 1809           0
## 13445                 Christmas Island 1809           0
## 13446                         Colombia 1809           0
## 13447                          Comoros 1809           0
## 13448                            Congo 1809           0
## 13449                     Cook Islands 1809           0
## 13450                       Costa Rica 1809           0
## 13451                    Cote d'Ivoire 1809           0
## 13452                          Croatia 1809           0
## 13453                             Cuba 1809           0
## 13454                          Curacao 1809           0
## 13455                           Cyprus 1809           0
## 13456                   Czech Republic 1809           0
## 13457                   Czechoslovakia 1809           0
## 13458     Democratic Republic of Congo 1809           0
## 13459                          Denmark 1809           0
## 13460                         Djibouti 1809           0
## 13461                         Dominica 1809           0
## 13462               Dominican Republic 1809           0
## 13463                            EU-28 1809  1074819744
## 13464                          Ecuador 1809           0
## 13465                            Egypt 1809           0
## 13466                      El Salvador 1809           0
## 13467                Equatorial Guinea 1809           0
## 13468                          Eritrea 1809           0
## 13469                          Estonia 1809           0
## 13470                         Ethiopia 1809           0
## 13471                   Europe (other) 1809           0
## 13472                   Faeroe Islands 1809           0
## 13473                 Falkland Islands 1809           0
## 13474                             Fiji 1809           0
## 13475                          Finland 1809           0
## 13476                           France 1809     4415120
## 13477                    French Guiana 1809           0
## 13478                 French Polynesia 1809           0
## 13479                            Gabon 1809           0
## 13480                           Gambia 1809           0
## 13481                          Georgia 1809           0
## 13482                          Germany 1809    14047776
## 13483                            Ghana 1809           0
## 13484                        Gibraltar 1809           0
## 13485                           Greece 1809           0
## 13486                        Greenland 1809           0
## 13487                          Grenada 1809           0
## 13488                       Guadeloupe 1809           0
## 13489                        Guatemala 1809           0
## 13490                           Guinea 1809           0
## 13491                    Guinea-Bissau 1809           0
## 13492                           Guyana 1809           0
## 13493                            Haiti 1809           0
## 13494                         Honduras 1809           0
## 13495                        Hong Kong 1809           0
## 13496                          Hungary 1809           0
## 13497                          Iceland 1809           0
## 13498                            India 1809           0
## 13499                        Indonesia 1809           0
## 13500                             Iran 1809           0
## 13501                             Iraq 1809           0
## 13502                          Ireland 1809           0
## 13503                           Israel 1809           0
## 13504                            Italy 1809           0
## 13505                          Jamaica 1809           0
## 13506                            Japan 1809           0
## 13507                           Jordan 1809           0
## 13508                       Kazakhstan 1809           0
## 13509                            Kenya 1809           0
## 13510                         Kiribati 1809           0
## 13511                           Kuwait 1809           0
## 13512                       Kyrgysztan 1809           0
## 13513                       Kyrgyzstan 1809           0
## 13514                             Laos 1809           0
## 13515                           Latvia 1809           0
## 13516                          Lebanon 1809           0
## 13517                          Lesotho 1809           0
## 13518                          Liberia 1809           0
## 13519                            Libya 1809           0
## 13520                    Liechtenstein 1809           0
## 13521                        Lithuania 1809           0
## 13522                       Luxembourg 1809           0
## 13523                            Macao 1809           0
## 13524                        Macedonia 1809           0
## 13525                       Madagascar 1809           0
## 13526                           Malawi 1809           0
## 13527                         Malaysia 1809           0
## 13528                         Maldives 1809           0
## 13529                             Mali 1809           0
## 13530                            Malta 1809           0
## 13531                 Marshall Islands 1809           0
## 13532                       Martinique 1809           0
## 13533                       Mauritania 1809           0
## 13534                        Mauritius 1809           0
## 13535                           Mexico 1809           0
## 13536             Micronesia (country) 1809           0
## 13537                      Middle East 1809           0
## 13538                          Moldova 1809           0
## 13539                         Mongolia 1809           0
## 13540                       Montenegro 1809           0
## 13541                       Montserrat 1809           0
## 13542                          Morocco 1809           0
## 13543                       Mozambique 1809           0
## 13544                          Myanmar 1809           0
## 13545                          Namibia 1809           0
## 13546                            Nauru 1809           0
## 13547                            Nepal 1809           0
## 13548                      Netherlands 1809           0
## 13549                    New Caledonia 1809           0
## 13550                      New Zealand 1809           0
## 13551                        Nicaragua 1809           0
## 13552                            Niger 1809           0
## 13553                          Nigeria 1809           0
## 13554                             Niue 1809           0
## 13555                      North Korea 1809           0
## 13556                           Norway 1809           0
## 13557                             Oman 1809           0
## 13558                         Pakistan 1809           0
## 13559                            Palau 1809           0
## 13560                        Palestine 1809           0
## 13561                           Panama 1809           0
## 13562                 Papua New Guinea 1809           0
## 13563                         Paraguay 1809           0
## 13564                             Peru 1809           0
## 13565                      Philippines 1809           0
## 13566                           Poland 1809     4664272
## 13567                         Portugal 1809           0
## 13568                            Qatar 1809           0
## 13569                          Reunion 1809           0
## 13570                          Romania 1809           0
## 13571                           Russia 1809           0
## 13572                           Rwanda 1809           0
## 13573                     Saint Helena 1809           0
## 13574            Saint Kitts and Nevis 1809           0
## 13575                      Saint Lucia 1809           0
## 13576        Saint Pierre and Miquelon 1809           0
## 13577 Saint Vincent and the Grenadines 1809           0
## 13578                            Samoa 1809           0
## 13579            Sao Tome and Principe 1809           0
## 13580                     Saudi Arabia 1809           0
## 13581                          Senegal 1809           0
## 13582                           Serbia 1809           0
## 13583                       Seychelles 1809           0
## 13584                     Sierra Leone 1809           0
## 13585                        Singapore 1809           0
## 13586        Sint Maarten (Dutch part) 1809           0
## 13587                         Slovakia 1809           0
## 13588                         Slovenia 1809           0
## 13589                  Solomon Islands 1809           0
## 13590                          Somalia 1809           0
## 13591                     South Africa 1809           0
## 13592                      South Korea 1809           0
## 13593                      South Sudan 1809           0
## 13594                            Spain 1809           0
## 13595                        Sri Lanka 1809           0
## 13596                            Sudan 1809           0
## 13597                         Suriname 1809           0
## 13598                        Swaziland 1809           0
## 13599                           Sweden 1809           0
## 13600                      Switzerland 1809           0
## 13601                            Syria 1809           0
## 13602                           Taiwan 1809           0
## 13603                       Tajikistan 1809           0
## 13604                         Tanzania 1809           0
## 13605                         Thailand 1809           0
## 13606                            Timor 1809           0
## 13607                             Togo 1809           0
## 13608                            Tonga 1809           0
## 13609              Trinidad and Tobago 1809           0
## 13610                          Tunisia 1809           0
## 13611                           Turkey 1809           0
## 13612                     Turkmenistan 1809           0
## 13613         Turks and Caicos Islands 1809           0
## 13614                           Tuvalu 1809           0
## 13615                           Uganda 1809           0
## 13616                          Ukraine 1809           0
## 13617             United Arab Emirates 1809           0
## 13618                   United Kingdom 1809  1045126688
## 13619                    United States 1809     3286608
## 13620                          Uruguay 1809           0
## 13621                       Uzbekistan 1809           0
## 13622                          Vanuatu 1809           0
## 13623                        Venezuela 1809           0
## 13624                          Vietnam 1809           0
## 13625        Wallis and Futuna Islands 1809           0
## 13626                            World 1809  1078197952
## 13627                            Yemen 1809           0
## 13628                           Zambia 1809           0
## 13629                         Zimbabwe 1809           0
## 13630                      Afghanistan 1810           0
## 13631                           Africa 1810           0
## 13632                          Albania 1810           0
## 13633                          Algeria 1810           0
## 13634                 Americas (other) 1810       95264
## 13635                          Andorra 1810           0
## 13636                           Angola 1810           0
## 13637                         Anguilla 1810           0
## 13638              Antarctic Fisheries 1810           0
## 13639              Antigua and Barbuda 1810           0
## 13640                        Argentina 1810           0
## 13641                          Armenia 1810           0
## 13642                            Aruba 1810           0
## 13643         Asia and Pacific (other) 1810           0
## 13644                        Australia 1810           0
## 13645                          Austria 1810      168544
## 13646                       Azerbaijan 1810           0
## 13647                          Bahamas 1810           0
## 13648                          Bahrain 1810           0
## 13649                       Bangladesh 1810           0
## 13650                         Barbados 1810           0
## 13651                          Belarus 1810           0
## 13652                          Belgium 1810     6397344
## 13653                           Belize 1810           0
## 13654                            Benin 1810           0
## 13655                          Bermuda 1810           0
## 13656                           Bhutan 1810           0
## 13657                          Bolivia 1810           0
## 13658  Bonaire Sint Eustatius and Saba 1810           0
## 13659           Bosnia and Herzegovina 1810           0
## 13660                         Botswana 1810           0
## 13661                           Brazil 1810           0
## 13662           British Virgin Islands 1810           0
## 13663                           Brunei 1810           0
## 13664                         Bulgaria 1810           0
## 13665                     Burkina Faso 1810           0
## 13666                          Burundi 1810           0
## 13667                         Cambodia 1810           0
## 13668                         Cameroon 1810           0
## 13669                           Canada 1810       95264
## 13670                       Cape Verde 1810           0
## 13671                   Cayman Islands 1810           0
## 13672         Central African Republic 1810           0
## 13673                             Chad 1810           0
## 13674                            Chile 1810           0
## 13675                            China 1810           0
## 13676                 Christmas Island 1810           0
## 13677                         Colombia 1810           0
## 13678                          Comoros 1810           0
## 13679                            Congo 1810           0
## 13680                     Cook Islands 1810           0
## 13681                       Costa Rica 1810           0
## 13682                    Cote d'Ivoire 1810           0
## 13683                          Croatia 1810           0
## 13684                             Cuba 1810           0
## 13685                          Curacao 1810           0
## 13686                           Cyprus 1810           0
## 13687                   Czech Republic 1810           0
## 13688                   Czechoslovakia 1810           0
## 13689     Democratic Republic of Congo 1810           0
## 13690                          Denmark 1810           0
## 13691                         Djibouti 1810           0
## 13692                         Dominica 1810           0
## 13693               Dominican Republic 1810           0
## 13694                            EU-28 1810  1111778512
## 13695                          Ecuador 1810           0
## 13696                            Egypt 1810           0
## 13697                      El Salvador 1810           0
## 13698                Equatorial Guinea 1810           0
## 13699                          Eritrea 1810           0
## 13700                          Estonia 1810           0
## 13701                         Ethiopia 1810           0
## 13702                   Europe (other) 1810           0
## 13703                   Faeroe Islands 1810           0
## 13704                 Falkland Islands 1810           0
## 13705                             Fiji 1810           0
## 13706                          Finland 1810           0
## 13707                           France 1810     6536576
## 13708                    French Guiana 1810           0
## 13709                 French Polynesia 1810           0
## 13710                            Gabon 1810           0
## 13711                           Gambia 1810           0
## 13712                          Georgia 1810           0
## 13713                          Germany 1810    15026064
## 13714                            Ghana 1810           0
## 13715                        Gibraltar 1810           0
## 13716                           Greece 1810           0
## 13717                        Greenland 1810           0
## 13718                          Grenada 1810           0
## 13719                       Guadeloupe 1810           0
## 13720                        Guatemala 1810           0
## 13721                           Guinea 1810           0
## 13722                    Guinea-Bissau 1810           0
## 13723                           Guyana 1810           0
## 13724                            Haiti 1810           0
## 13725                         Honduras 1810           0
## 13726                        Hong Kong 1810           0
## 13727                          Hungary 1810           0
## 13728                          Iceland 1810           0
## 13729                            India 1810           0
## 13730                        Indonesia 1810           0
## 13731                             Iran 1810           0
## 13732                             Iraq 1810           0
## 13733                          Ireland 1810           0
## 13734                           Israel 1810           0
## 13735                            Italy 1810           0
## 13736                          Jamaica 1810           0
## 13737                            Japan 1810           0
## 13738                           Jordan 1810           0
## 13739                       Kazakhstan 1810           0
## 13740                            Kenya 1810           0
## 13741                         Kiribati 1810           0
## 13742                           Kuwait 1810           0
## 13743                       Kyrgysztan 1810           0
## 13744                       Kyrgyzstan 1810           0
## 13745                             Laos 1810           0
## 13746                           Latvia 1810           0
## 13747                          Lebanon 1810           0
## 13748                          Lesotho 1810           0
## 13749                          Liberia 1810           0
## 13750                            Libya 1810           0
## 13751                    Liechtenstein 1810           0
## 13752                        Lithuania 1810           0
## 13753                       Luxembourg 1810           0
## 13754                            Macao 1810           0
## 13755                        Macedonia 1810           0
## 13756                       Madagascar 1810           0
## 13757                           Malawi 1810           0
## 13758                         Malaysia 1810           0
## 13759                         Maldives 1810           0
## 13760                             Mali 1810           0
## 13761                            Malta 1810           0
## 13762                 Marshall Islands 1810           0
## 13763                       Martinique 1810           0
## 13764                       Mauritania 1810           0
## 13765                        Mauritius 1810           0
## 13766                           Mexico 1810           0
## 13767             Micronesia (country) 1810           0
## 13768                      Middle East 1810           0
## 13769                          Moldova 1810           0
## 13770                         Mongolia 1810           0
## 13771                       Montenegro 1810           0
## 13772                       Montserrat 1810           0
## 13773                          Morocco 1810           0
## 13774                       Mozambique 1810           0
## 13775                          Myanmar 1810           0
## 13776                          Namibia 1810           0
## 13777                            Nauru 1810           0
## 13778                            Nepal 1810           0
## 13779                      Netherlands 1810           0
## 13780                    New Caledonia 1810           0
## 13781                      New Zealand 1810           0
## 13782                        Nicaragua 1810           0
## 13783                            Niger 1810           0
## 13784                          Nigeria 1810           0
## 13785                             Niue 1810           0
## 13786                      North Korea 1810           0
## 13787                           Norway 1810           0
## 13788                             Oman 1810           0
## 13789                         Pakistan 1810           0
## 13790                            Palau 1810           0
## 13791                        Palestine 1810           0
## 13792                           Panama 1810           0
## 13793                 Papua New Guinea 1810           0
## 13794                         Paraguay 1810           0
## 13795                             Peru 1810           0
## 13796                      Philippines 1810           0
## 13797                           Poland 1810     5232192
## 13798                         Portugal 1810           0
## 13799                            Qatar 1810           0
## 13800                          Reunion 1810           0
## 13801                          Romania 1810           0
## 13802                           Russia 1810           0
## 13803                           Rwanda 1810           0
## 13804                     Saint Helena 1810           0
## 13805            Saint Kitts and Nevis 1810           0
## 13806                      Saint Lucia 1810           0
## 13807        Saint Pierre and Miquelon 1810           0
## 13808 Saint Vincent and the Grenadines 1810           0
## 13809                            Samoa 1810           0
## 13810            Sao Tome and Principe 1810           0
## 13811                     Saudi Arabia 1810           0
## 13812                          Senegal 1810           0
## 13813                           Serbia 1810           0
## 13814                       Seychelles 1810           0
## 13815                     Sierra Leone 1810           0
## 13816                        Singapore 1810           0
## 13817        Sint Maarten (Dutch part) 1810           0
## 13818                         Slovakia 1810           0
## 13819                         Slovenia 1810           0
## 13820                  Solomon Islands 1810           0
## 13821                          Somalia 1810           0
## 13822                     South Africa 1810           0
## 13823                      South Korea 1810           0
## 13824                      South Sudan 1810           0
## 13825                            Spain 1810           0
## 13826                        Sri Lanka 1810           0
## 13827                            Sudan 1810           0
## 13828                         Suriname 1810           0
## 13829                        Swaziland 1810           0
## 13830                           Sweden 1810           0
## 13831                      Switzerland 1810           0
## 13832                            Syria 1810           0
## 13833                           Taiwan 1810           0
## 13834                       Tajikistan 1810           0
## 13835                         Tanzania 1810           0
## 13836                         Thailand 1810           0
## 13837                            Timor 1810           0
## 13838                             Togo 1810           0
## 13839                            Tonga 1810           0
## 13840              Trinidad and Tobago 1810           0
## 13841                          Tunisia 1810           0
## 13842                           Turkey 1810           0
## 13843                     Turkmenistan 1810           0
## 13844         Turks and Caicos Islands 1810           0
## 13845                           Tuvalu 1810           0
## 13846                           Uganda 1810           0
## 13847                          Ukraine 1810           0
## 13848             United Arab Emirates 1810           0
## 13849                   United Kingdom 1810  1078417792
## 13850                    United States 1810     3704304
## 13851                          Uruguay 1810           0
## 13852                       Uzbekistan 1810           0
## 13853                          Vanuatu 1810           0
## 13854                        Venezuela 1810           0
## 13855                          Vietnam 1810           0
## 13856        Wallis and Futuna Islands 1810           0
## 13857                            World 1810  1115578080
## 13858                            Yemen 1810           0
## 13859                           Zambia 1810           0
## 13860                         Zimbabwe 1810           0
## 13861                      Afghanistan 1811           0
## 13862                           Africa 1811           0
## 13863                          Albania 1811           0
## 13864                          Algeria 1811           0
## 13865                 Americas (other) 1811       98928
## 13866                          Andorra 1811           0
## 13867                           Angola 1811           0
## 13868                         Anguilla 1811           0
## 13869              Antarctic Fisheries 1811           0
## 13870              Antigua and Barbuda 1811           0
## 13871                        Argentina 1811           0
## 13872                          Armenia 1811           0
## 13873                            Aruba 1811           0
## 13874         Asia and Pacific (other) 1811           0
## 13875                        Australia 1811           0
## 13876                          Austria 1811      168544
## 13877                       Azerbaijan 1811           0
## 13878                          Bahamas 1811           0
## 13879                          Bahrain 1811           0
## 13880                       Bangladesh 1811           0
## 13881                         Barbados 1811           0
## 13882                          Belarus 1811           0
## 13883                          Belgium 1811     6397344
## 13884                           Belize 1811           0
## 13885                            Benin 1811           0
## 13886                          Bermuda 1811           0
## 13887                           Bhutan 1811           0
## 13888                          Bolivia 1811           0
## 13889  Bonaire Sint Eustatius and Saba 1811           0
## 13890           Bosnia and Herzegovina 1811           0
## 13891                         Botswana 1811           0
## 13892                           Brazil 1811           0
## 13893           British Virgin Islands 1811           0
## 13894                           Brunei 1811           0
## 13895                         Bulgaria 1811           0
## 13896                     Burkina Faso 1811           0
## 13897                          Burundi 1811           0
## 13898                         Cambodia 1811           0
## 13899                         Cameroon 1811           0
## 13900                           Canada 1811       98928
## 13901                       Cape Verde 1811           0
## 13902                   Cayman Islands 1811           0
## 13903         Central African Republic 1811           0
## 13904                             Chad 1811           0
## 13905                            Chile 1811           0
## 13906                            China 1811           0
## 13907                 Christmas Island 1811           0
## 13908                         Colombia 1811           0
## 13909                          Comoros 1811           0
## 13910                            Congo 1811           0
## 13911                     Cook Islands 1811           0
## 13912                       Costa Rica 1811           0
## 13913                    Cote d'Ivoire 1811           0
## 13914                          Croatia 1811           0
## 13915                             Cuba 1811           0
## 13916                          Curacao 1811           0
## 13917                           Cyprus 1811           0
## 13918                   Czech Republic 1811           0
## 13919                   Czechoslovakia 1811           0
## 13920     Democratic Republic of Congo 1811           0
## 13921                          Denmark 1811           0
## 13922                         Djibouti 1811           0
## 13923                         Dominica 1811           0
## 13924               Dominican Republic 1811           0
## 13925                            EU-28 1811  1150910032
## 13926                          Ecuador 1811           0
## 13927                            Egypt 1811           0
## 13928                      El Salvador 1811           0
## 13929                Equatorial Guinea 1811           0
## 13930                          Eritrea 1811           0
## 13931                          Estonia 1811           0
## 13932                         Ethiopia 1811           0
## 13933                   Europe (other) 1811           0
## 13934                   Faeroe Islands 1811           0
## 13935                 Falkland Islands 1811           0
## 13936                             Fiji 1811           0
## 13937                          Finland 1811           0
## 13938                           France 1811     8588416
## 13939                    French Guiana 1811           0
## 13940                 French Polynesia 1811           0
## 13941                            Gabon 1811           0
## 13942                           Gambia 1811           0
## 13943                          Georgia 1811           0
## 13944                          Germany 1811    15953056
## 13945                            Ghana 1811           0
## 13946                        Gibraltar 1811           0
## 13947                           Greece 1811           0
## 13948                        Greenland 1811           0
## 13949                          Grenada 1811           0
## 13950                       Guadeloupe 1811           0
## 13951                        Guatemala 1811           0
## 13952                           Guinea 1811           0
## 13953                    Guinea-Bissau 1811           0
## 13954                           Guyana 1811           0
## 13955                            Haiti 1811           0
## 13956                         Honduras 1811           0
## 13957                        Hong Kong 1811           0
## 13958                          Hungary 1811           0
## 13959                          Iceland 1811           0
## 13960                            India 1811           0
## 13961                        Indonesia 1811           0
## 13962                             Iran 1811           0
## 13963                             Iraq 1811           0
## 13964                          Ireland 1811           0
## 13965                           Israel 1811           0
## 13966                            Italy 1811           0
## 13967                          Jamaica 1811           0
## 13968                            Japan 1811           0
## 13969                           Jordan 1811           0
## 13970                       Kazakhstan 1811           0
## 13971                            Kenya 1811           0
## 13972                         Kiribati 1811           0
## 13973                           Kuwait 1811           0
## 13974                       Kyrgysztan 1811           0
## 13975                       Kyrgyzstan 1811           0
## 13976                             Laos 1811           0
## 13977                           Latvia 1811           0
## 13978                          Lebanon 1811           0
## 13979                          Lesotho 1811           0
## 13980                          Liberia 1811           0
## 13981                            Libya 1811           0
## 13982                    Liechtenstein 1811           0
## 13983                        Lithuania 1811           0
## 13984                       Luxembourg 1811           0
## 13985                            Macao 1811           0
## 13986                        Macedonia 1811           0
## 13987                       Madagascar 1811           0
## 13988                           Malawi 1811           0
## 13989                         Malaysia 1811           0
## 13990                         Maldives 1811           0
## 13991                             Mali 1811           0
## 13992                            Malta 1811           0
## 13993                 Marshall Islands 1811           0
## 13994                       Martinique 1811           0
## 13995                       Mauritania 1811           0
## 13996                        Mauritius 1811           0
## 13997                           Mexico 1811           0
## 13998             Micronesia (country) 1811           0
## 13999                      Middle East 1811           0
## 14000                          Moldova 1811           0
## 14001                         Mongolia 1811           0
## 14002                       Montenegro 1811           0
## 14003                       Montserrat 1811           0
## 14004                          Morocco 1811           0
## 14005                       Mozambique 1811           0
## 14006                          Myanmar 1811           0
## 14007                          Namibia 1811           0
## 14008                            Nauru 1811           0
## 14009                            Nepal 1811           0
## 14010                      Netherlands 1811           0
## 14011                    New Caledonia 1811           0
## 14012                      New Zealand 1811           0
## 14013                        Nicaragua 1811           0
## 14014                            Niger 1811           0
## 14015                          Nigeria 1811           0
## 14016                             Niue 1811           0
## 14017                      North Korea 1811           0
## 14018                           Norway 1811           0
## 14019                             Oman 1811           0
## 14020                         Pakistan 1811           0
## 14021                            Palau 1811           0
## 14022                        Palestine 1811           0
## 14023                           Panama 1811           0
## 14024                 Papua New Guinea 1811           0
## 14025                         Paraguay 1811           0
## 14026                             Peru 1811           0
## 14027                      Philippines 1811           0
## 14028                           Poland 1811     5822096
## 14029                         Portugal 1811           0
## 14030                            Qatar 1811           0
## 14031                          Reunion 1811           0
## 14032                          Romania 1811           0
## 14033                           Russia 1811           0
## 14034                           Rwanda 1811           0
## 14035                     Saint Helena 1811           0
## 14036            Saint Kitts and Nevis 1811           0
## 14037                      Saint Lucia 1811           0
## 14038        Saint Pierre and Miquelon 1811           0
## 14039 Saint Vincent and the Grenadines 1811           0
## 14040                            Samoa 1811           0
## 14041            Sao Tome and Principe 1811           0
## 14042                     Saudi Arabia 1811           0
## 14043                          Senegal 1811           0
## 14044                           Serbia 1811           0
## 14045                       Seychelles 1811           0
## 14046                     Sierra Leone 1811           0
## 14047                        Singapore 1811           0
## 14048        Sint Maarten (Dutch part) 1811           0
## 14049                         Slovakia 1811           0
## 14050                         Slovenia 1811           0
## 14051                  Solomon Islands 1811           0
## 14052                          Somalia 1811           0
## 14053                     South Africa 1811           0
## 14054                      South Korea 1811           0
## 14055                      South Sudan 1811           0
## 14056                            Spain 1811           0
## 14057                        Sri Lanka 1811           0
## 14058                            Sudan 1811           0
## 14059                         Suriname 1811           0
## 14060                        Swaziland 1811           0
## 14061                           Sweden 1811           0
## 14062                      Switzerland 1811           0
## 14063                            Syria 1811           0
## 14064                           Taiwan 1811           0
## 14065                       Tajikistan 1811           0
## 14066                         Tanzania 1811           0
## 14067                         Thailand 1811           0
## 14068                            Timor 1811           0
## 14069                             Togo 1811           0
## 14070                            Tonga 1811           0
## 14071              Trinidad and Tobago 1811           0
## 14072                          Tunisia 1811           0
## 14073                           Turkey 1811           0
## 14074                     Turkmenistan 1811           0
## 14075         Turks and Caicos Islands 1811           0
## 14076                           Tuvalu 1811           0
## 14077                           Uganda 1811           0
## 14078                          Ukraine 1811           0
## 14079             United Arab Emirates 1811           0
## 14080                   United Kingdom 1811  1113980576
## 14081                    United States 1811     4151312
## 14082                          Uruguay 1811           0
## 14083                       Uzbekistan 1811           0
## 14084                          Vanuatu 1811           0
## 14085                        Venezuela 1811           0
## 14086                          Vietnam 1811           0
## 14087        Wallis and Futuna Islands 1811           0
## 14088                            World 1811  1155160272
## 14089                            Yemen 1811           0
## 14090                           Zambia 1811           0
## 14091                         Zimbabwe 1811           0
## 14092                      Afghanistan 1812           0
## 14093                           Africa 1812           0
## 14094                          Albania 1812           0
## 14095                          Algeria 1812           0
## 14096                 Americas (other) 1812      102592
## 14097                          Andorra 1812           0
## 14098                           Angola 1812           0
## 14099                         Anguilla 1812           0
## 14100              Antarctic Fisheries 1812           0
## 14101              Antigua and Barbuda 1812           0
## 14102                        Argentina 1812           0
## 14103                          Armenia 1812           0
## 14104                            Aruba 1812           0
## 14105         Asia and Pacific (other) 1812           0
## 14106                        Australia 1812           0
## 14107                          Austria 1812      168544
## 14108                       Azerbaijan 1812           0
## 14109                          Bahamas 1812           0
## 14110                          Bahrain 1812           0
## 14111                       Bangladesh 1812           0
## 14112                         Barbados 1812           0
## 14113                          Belarus 1812           0
## 14114                          Belgium 1812     6397344
## 14115                           Belize 1812           0
## 14116                            Benin 1812           0
## 14117                          Bermuda 1812           0
## 14118                           Bhutan 1812           0
## 14119                          Bolivia 1812           0
## 14120  Bonaire Sint Eustatius and Saba 1812           0
## 14121           Bosnia and Herzegovina 1812           0
## 14122                         Botswana 1812           0
## 14123                           Brazil 1812           0
## 14124           British Virgin Islands 1812           0
## 14125                           Brunei 1812           0
## 14126                         Bulgaria 1812           0
## 14127                     Burkina Faso 1812           0
## 14128                          Burundi 1812           0
## 14129                         Cambodia 1812           0
## 14130                         Cameroon 1812           0
## 14131                           Canada 1812      102592
## 14132                       Cape Verde 1812           0
## 14133                   Cayman Islands 1812           0
## 14134         Central African Republic 1812           0
## 14135                             Chad 1812           0
## 14136                            Chile 1812           0
## 14137                            China 1812           0
## 14138                 Christmas Island 1812           0
## 14139                         Colombia 1812           0
## 14140                          Comoros 1812           0
## 14141                            Congo 1812           0
## 14142                     Cook Islands 1812           0
## 14143                       Costa Rica 1812           0
## 14144                    Cote d'Ivoire 1812           0
## 14145                          Croatia 1812           0
## 14146                             Cuba 1812           0
## 14147                          Curacao 1812           0
## 14148                           Cyprus 1812           0
## 14149                   Czech Republic 1812           0
## 14150                   Czechoslovakia 1812           0
## 14151     Democratic Republic of Congo 1812           0
## 14152                          Denmark 1812           0
## 14153                         Djibouti 1812           0
## 14154                         Dominica 1812           0
## 14155               Dominican Republic 1812           0
## 14156                            EU-28 1812  1191430208
## 14157                          Ecuador 1812           0
## 14158                            Egypt 1812           0
## 14159                      El Salvador 1812           0
## 14160                Equatorial Guinea 1812           0
## 14161                          Eritrea 1812           0
## 14162                          Estonia 1812           0
## 14163                         Ethiopia 1812           0
## 14164                   Europe (other) 1812           0
## 14165                   Faeroe Islands 1812           0
## 14166                 Falkland Islands 1812           0
## 14167                             Fiji 1812           0
## 14168                          Finland 1812           0
## 14169                           France 1812    10805136
## 14170                    French Guiana 1812           0
## 14171                 French Polynesia 1812           0
## 14172                            Gabon 1812           0
## 14173                           Gambia 1812           0
## 14174                          Georgia 1812           0
## 14175                          Germany 1812    16865392
## 14176                            Ghana 1812           0
## 14177                        Gibraltar 1812           0
## 14178                           Greece 1812           0
## 14179                        Greenland 1812           0
## 14180                          Grenada 1812           0
## 14181                       Guadeloupe 1812           0
## 14182                        Guatemala 1812           0
## 14183                           Guinea 1812           0
## 14184                    Guinea-Bissau 1812           0
## 14185                           Guyana 1812           0
## 14186                            Haiti 1812           0
## 14187                         Honduras 1812           0
## 14188                        Hong Kong 1812           0
## 14189                          Hungary 1812           0
## 14190                          Iceland 1812           0
## 14191                            India 1812           0
## 14192                        Indonesia 1812           0
## 14193                             Iran 1812           0
## 14194                             Iraq 1812           0
## 14195                          Ireland 1812           0
## 14196                           Israel 1812           0
## 14197                            Italy 1812           0
## 14198                          Jamaica 1812           0
## 14199                            Japan 1812           0
## 14200                           Jordan 1812           0
## 14201                       Kazakhstan 1812           0
## 14202                            Kenya 1812           0
## 14203                         Kiribati 1812           0
## 14204                           Kuwait 1812           0
## 14205                       Kyrgysztan 1812           0
## 14206                       Kyrgyzstan 1812           0
## 14207                             Laos 1812           0
## 14208                           Latvia 1812           0
## 14209                          Lebanon 1812           0
## 14210                          Lesotho 1812           0
## 14211                          Liberia 1812           0
## 14212                            Libya 1812           0
## 14213                    Liechtenstein 1812           0
## 14214                        Lithuania 1812           0
## 14215                       Luxembourg 1812           0
## 14216                            Macao 1812           0
## 14217                        Macedonia 1812           0
## 14218                       Madagascar 1812           0
## 14219                           Malawi 1812           0
## 14220                         Malaysia 1812           0
## 14221                         Maldives 1812           0
## 14222                             Mali 1812           0
## 14223                            Malta 1812           0
## 14224                 Marshall Islands 1812           0
## 14225                       Martinique 1812           0
## 14226                       Mauritania 1812           0
## 14227                        Mauritius 1812           0
## 14228                           Mexico 1812           0
## 14229             Micronesia (country) 1812           0
## 14230                      Middle East 1812           0
## 14231                          Moldova 1812           0
## 14232                         Mongolia 1812           0
## 14233                       Montenegro 1812           0
## 14234                       Montserrat 1812           0
## 14235                          Morocco 1812           0
## 14236                       Mozambique 1812           0
## 14237                          Myanmar 1812           0
## 14238                          Namibia 1812           0
## 14239                            Nauru 1812           0
## 14240                            Nepal 1812           0
## 14241                      Netherlands 1812           0
## 14242                    New Caledonia 1812           0
## 14243                      New Zealand 1812           0
## 14244                        Nicaragua 1812           0
## 14245                            Niger 1812           0
## 14246                          Nigeria 1812           0
## 14247                             Niue 1812           0
## 14248                      North Korea 1812           0
## 14249                           Norway 1812           0
## 14250                             Oman 1812           0
## 14251                         Pakistan 1812           0
## 14252                            Palau 1812           0
## 14253                        Palestine 1812           0
## 14254                           Panama 1812           0
## 14255                 Papua New Guinea 1812           0
## 14256                         Paraguay 1812           0
## 14257                             Peru 1812           0
## 14258                      Philippines 1812           0
## 14259                           Poland 1812     6276432
## 14260                         Portugal 1812           0
## 14261                            Qatar 1812           0
## 14262                          Reunion 1812           0
## 14263                          Romania 1812           0
## 14264                           Russia 1812           0
## 14265                           Rwanda 1812           0
## 14266                     Saint Helena 1812           0
## 14267            Saint Kitts and Nevis 1812           0
## 14268                      Saint Lucia 1812           0
## 14269        Saint Pierre and Miquelon 1812           0
## 14270 Saint Vincent and the Grenadines 1812           0
## 14271                            Samoa 1812           0
## 14272            Sao Tome and Principe 1812           0
## 14273                     Saudi Arabia 1812           0
## 14274                          Senegal 1812           0
## 14275                           Serbia 1812           0
## 14276                       Seychelles 1812           0
## 14277                     Sierra Leone 1812           0
## 14278                        Singapore 1812           0
## 14279        Sint Maarten (Dutch part) 1812           0
## 14280                         Slovakia 1812           0
## 14281                         Slovenia 1812           0
## 14282                  Solomon Islands 1812           0
## 14283                          Somalia 1812           0
## 14284                     South Africa 1812           0
## 14285                      South Korea 1812           0
## 14286                      South Sudan 1812           0
## 14287                            Spain 1812           0
## 14288                        Sri Lanka 1812           0
## 14289                            Sudan 1812           0
## 14290                         Suriname 1812           0
## 14291                        Swaziland 1812           0
## 14292                           Sweden 1812           0
## 14293                      Switzerland 1812           0
## 14294                            Syria 1812           0
## 14295                           Taiwan 1812           0
## 14296                       Tajikistan 1812           0
## 14297                         Tanzania 1812           0
## 14298                         Thailand 1812           0
## 14299                            Timor 1812           0
## 14300                             Togo 1812           0
## 14301                            Tonga 1812           0
## 14302              Trinidad and Tobago 1812           0
## 14303                          Tunisia 1812           0
## 14304                           Turkey 1812           0
## 14305                     Turkmenistan 1812           0
## 14306         Turks and Caicos Islands 1812           0
## 14307                           Tuvalu 1812           0
## 14308                           Uganda 1812           0
## 14309                          Ukraine 1812           0
## 14310             United Arab Emirates 1812           0
## 14311                   United Kingdom 1812  1150917360
## 14312                    United States 1812     4634960
## 14313                          Uruguay 1812           0
## 14314                       Uzbekistan 1812           0
## 14315                          Vanuatu 1812           0
## 14316                        Venezuela 1812           0
## 14317                          Vietnam 1812           0
## 14318        Wallis and Futuna Islands 1812           0
## 14319                            World 1812  1196167760
## 14320                            Yemen 1812           0
## 14321                           Zambia 1812           0
## 14322                         Zimbabwe 1812           0
## 14323                      Afghanistan 1813           0
## 14324                           Africa 1813           0
## 14325                          Albania 1813           0
## 14326                          Algeria 1813           0
## 14327                 Americas (other) 1813      106256
## 14328                          Andorra 1813           0
## 14329                           Angola 1813           0
## 14330                         Anguilla 1813           0
## 14331              Antarctic Fisheries 1813           0
## 14332              Antigua and Barbuda 1813           0
## 14333                        Argentina 1813           0
## 14334                          Armenia 1813           0
## 14335                            Aruba 1813           0
## 14336         Asia and Pacific (other) 1813           0
## 14337                        Australia 1813           0
## 14338                          Austria 1813      168544
## 14339                       Azerbaijan 1813           0
## 14340                          Bahamas 1813           0
## 14341                          Bahrain 1813           0
## 14342                       Bangladesh 1813           0
## 14343                         Barbados 1813           0
## 14344                          Belarus 1813           0
## 14345                          Belgium 1813     6397344
## 14346                           Belize 1813           0
## 14347                            Benin 1813           0
## 14348                          Bermuda 1813           0
## 14349                           Bhutan 1813           0
## 14350                          Bolivia 1813           0
## 14351  Bonaire Sint Eustatius and Saba 1813           0
## 14352           Bosnia and Herzegovina 1813           0
## 14353                         Botswana 1813           0
## 14354                           Brazil 1813           0
## 14355           British Virgin Islands 1813           0
## 14356                           Brunei 1813           0
## 14357                         Bulgaria 1813           0
## 14358                     Burkina Faso 1813           0
## 14359                          Burundi 1813           0
## 14360                         Cambodia 1813           0
## 14361                         Cameroon 1813           0
## 14362                           Canada 1813      106256
## 14363                       Cape Verde 1813           0
## 14364                   Cayman Islands 1813           0
## 14365         Central African Republic 1813           0
## 14366                             Chad 1813           0
## 14367                            Chile 1813           0
## 14368                            China 1813           0
## 14369                 Christmas Island 1813           0
## 14370                         Colombia 1813           0
## 14371                          Comoros 1813           0
## 14372                            Congo 1813           0
## 14373                     Cook Islands 1813           0
## 14374                       Costa Rica 1813           0
## 14375                    Cote d'Ivoire 1813           0
## 14376                          Croatia 1813           0
## 14377                             Cuba 1813           0
## 14378                          Curacao 1813           0
## 14379                           Cyprus 1813           0
## 14380                   Czech Republic 1813           0
## 14381                   Czechoslovakia 1813           0
## 14382     Democratic Republic of Congo 1813           0
## 14383                          Denmark 1813           0
## 14384                         Djibouti 1813           0
## 14385                         Dominica 1813           0
## 14386               Dominican Republic 1813           0
## 14387                            EU-28 1813  1232126256
## 14388                          Ecuador 1813           0
## 14389                            Egypt 1813           0
## 14390                      El Salvador 1813           0
## 14391                Equatorial Guinea 1813           0
## 14392                          Eritrea 1813           0
## 14393                          Estonia 1813           0
## 14394                         Ethiopia 1813           0
## 14395                   Europe (other) 1813           0
## 14396                   Faeroe Islands 1813           0
## 14397                 Falkland Islands 1813           0
## 14398                             Fiji 1813           0
## 14399                          Finland 1813           0
## 14400                           France 1813    12853312
## 14401                    French Guiana 1813           0
## 14402                 French Polynesia 1813           0
## 14403                            Gabon 1813           0
## 14404                           Gambia 1813           0
## 14405                          Georgia 1813           0
## 14406                          Germany 1813    17755744
## 14407                            Ghana 1813           0
## 14408                        Gibraltar 1813           0
## 14409                           Greece 1813           0
## 14410                        Greenland 1813           0
## 14411                          Grenada 1813           0
## 14412                       Guadeloupe 1813           0
## 14413                        Guatemala 1813           0
## 14414                           Guinea 1813           0
## 14415                    Guinea-Bissau 1813           0
## 14416                           Guyana 1813           0
## 14417                            Haiti 1813           0
## 14418                         Honduras 1813           0
## 14419                        Hong Kong 1813           0
## 14420                          Hungary 1813           0
## 14421                          Iceland 1813           0
## 14422                            India 1813           0
## 14423                        Indonesia 1813           0
## 14424                             Iran 1813           0
## 14425                             Iraq 1813           0
## 14426                          Ireland 1813           0
## 14427                           Israel 1813           0
## 14428                            Italy 1813           0
## 14429                          Jamaica 1813           0
## 14430                            Japan 1813           0
## 14431                           Jordan 1813           0
## 14432                       Kazakhstan 1813           0
## 14433                            Kenya 1813           0
## 14434                         Kiribati 1813           0
## 14435                           Kuwait 1813           0
## 14436                       Kyrgysztan 1813           0
## 14437                       Kyrgyzstan 1813           0
## 14438                             Laos 1813           0
## 14439                           Latvia 1813           0
## 14440                          Lebanon 1813           0
## 14441                          Lesotho 1813           0
## 14442                          Liberia 1813           0
## 14443                            Libya 1813           0
## 14444                    Liechtenstein 1813           0
## 14445                        Lithuania 1813           0
## 14446                       Luxembourg 1813           0
## 14447                            Macao 1813           0
## 14448                        Macedonia 1813           0
## 14449                       Madagascar 1813           0
## 14450                           Malawi 1813           0
## 14451                         Malaysia 1813           0
## 14452                         Maldives 1813           0
## 14453                             Mali 1813           0
## 14454                            Malta 1813           0
## 14455                 Marshall Islands 1813           0
## 14456                       Martinique 1813           0
## 14457                       Mauritania 1813           0
## 14458                        Mauritius 1813           0
## 14459                           Mexico 1813           0
## 14460             Micronesia (country) 1813           0
## 14461                      Middle East 1813           0
## 14462                          Moldova 1813           0
## 14463                         Mongolia 1813           0
## 14464                       Montenegro 1813           0
## 14465                       Montserrat 1813           0
## 14466                          Morocco 1813           0
## 14467                       Mozambique 1813           0
## 14468                          Myanmar 1813           0
## 14469                          Namibia 1813           0
## 14470                            Nauru 1813           0
## 14471                            Nepal 1813           0
## 14472                      Netherlands 1813           0
## 14473                    New Caledonia 1813           0
## 14474                      New Zealand 1813           0
## 14475                        Nicaragua 1813           0
## 14476                            Niger 1813           0
## 14477                          Nigeria 1813           0
## 14478                             Niue 1813           0
## 14479                      North Korea 1813           0
## 14480                           Norway 1813           0
## 14481                             Oman 1813           0
## 14482                         Pakistan 1813           0
## 14483                            Palau 1813           0
## 14484                        Palestine 1813           0
## 14485                           Panama 1813           0
## 14486                 Papua New Guinea 1813           0
## 14487                         Paraguay 1813           0
## 14488                             Peru 1813           0
## 14489                      Philippines 1813           0
## 14490                           Poland 1813     6657488
## 14491                         Portugal 1813           0
## 14492                            Qatar 1813           0
## 14493                          Reunion 1813           0
## 14494                          Romania 1813           0
## 14495                           Russia 1813           0
## 14496                           Rwanda 1813           0
## 14497                     Saint Helena 1813           0
## 14498            Saint Kitts and Nevis 1813           0
## 14499                      Saint Lucia 1813           0
## 14500        Saint Pierre and Miquelon 1813           0
## 14501 Saint Vincent and the Grenadines 1813           0
## 14502                            Samoa 1813           0
## 14503            Sao Tome and Principe 1813           0
## 14504                     Saudi Arabia 1813           0
## 14505                          Senegal 1813           0
## 14506                           Serbia 1813           0
## 14507                       Seychelles 1813           0
## 14508                     Sierra Leone 1813           0
## 14509                        Singapore 1813           0
## 14510        Sint Maarten (Dutch part) 1813           0
## 14511                         Slovakia 1813           0
## 14512                         Slovenia 1813           0
## 14513                  Solomon Islands 1813           0
## 14514                          Somalia 1813           0
## 14515                     South Africa 1813           0
## 14516                      South Korea 1813           0
## 14517                      South Sudan 1813           0
## 14518                            Spain 1813           0
## 14519                        Sri Lanka 1813           0
## 14520                            Sudan 1813           0
## 14521                         Suriname 1813           0
## 14522                        Swaziland 1813           0
## 14523                           Sweden 1813           0
## 14524                      Switzerland 1813           0
## 14525                            Syria 1813           0
## 14526                           Taiwan 1813           0
## 14527                       Tajikistan 1813           0
## 14528                         Tanzania 1813           0
## 14529                         Thailand 1813           0
## 14530                            Timor 1813           0
## 14531                             Togo 1813           0
## 14532                            Tonga 1813           0
## 14533              Trinidad and Tobago 1813           0
## 14534                          Tunisia 1813           0
## 14535                           Turkey 1813           0
## 14536                     Turkmenistan 1813           0
## 14537         Turks and Caicos Islands 1813           0
## 14538                           Tuvalu 1813           0
## 14539                           Uganda 1813           0
## 14540                          Ukraine 1813           0
## 14541             United Arab Emirates 1813           0
## 14542                   United Kingdom 1813  1188293824
## 14543                    United States 1813     5155248
## 14544                          Uruguay 1813           0
## 14545                       Uzbekistan 1813           0
## 14546                          Vanuatu 1813           0
## 14547                        Venezuela 1813           0
## 14548                          Vietnam 1813           0
## 14549        Wallis and Futuna Islands 1813           0
## 14550                            World 1813  1237387760
## 14551                            Yemen 1813           0
## 14552                           Zambia 1813           0
## 14553                         Zimbabwe 1813           0
## 14554                      Afghanistan 1814           0
## 14555                           Africa 1814           0
## 14556                          Albania 1814           0
## 14557                          Algeria 1814           0
## 14558                 Americas (other) 1814      109920
## 14559                          Andorra 1814           0
## 14560                           Angola 1814           0
## 14561                         Anguilla 1814           0
## 14562              Antarctic Fisheries 1814           0
## 14563              Antigua and Barbuda 1814           0
## 14564                        Argentina 1814           0
## 14565                          Armenia 1814           0
## 14566                            Aruba 1814           0
## 14567         Asia and Pacific (other) 1814           0
## 14568                        Australia 1814           0
## 14569                          Austria 1814      168544
## 14570                       Azerbaijan 1814           0
## 14571                          Bahamas 1814           0
## 14572                          Bahrain 1814           0
## 14573                       Bangladesh 1814           0
## 14574                         Barbados 1814           0
## 14575                          Belarus 1814           0
## 14576                          Belgium 1814     6397344
## 14577                           Belize 1814           0
## 14578                            Benin 1814           0
## 14579                          Bermuda 1814           0
## 14580                           Bhutan 1814           0
## 14581                          Bolivia 1814           0
## 14582  Bonaire Sint Eustatius and Saba 1814           0
## 14583           Bosnia and Herzegovina 1814           0
## 14584                         Botswana 1814           0
## 14585                           Brazil 1814           0
## 14586           British Virgin Islands 1814           0
## 14587                           Brunei 1814           0
## 14588                         Bulgaria 1814           0
## 14589                     Burkina Faso 1814           0
## 14590                          Burundi 1814           0
## 14591                         Cambodia 1814           0
## 14592                         Cameroon 1814           0
## 14593                           Canada 1814      109920
## 14594                       Cape Verde 1814           0
## 14595                   Cayman Islands 1814           0
## 14596         Central African Republic 1814           0
## 14597                             Chad 1814           0
## 14598                            Chile 1814           0
## 14599                            China 1814           0
## 14600                 Christmas Island 1814           0
## 14601                         Colombia 1814           0
## 14602                          Comoros 1814           0
## 14603                            Congo 1814           0
## 14604                     Cook Islands 1814           0
## 14605                       Costa Rica 1814           0
## 14606                    Cote d'Ivoire 1814           0
## 14607                          Croatia 1814           0
## 14608                             Cuba 1814           0
## 14609                          Curacao 1814           0
## 14610                           Cyprus 1814           0
## 14611                   Czech Republic 1814           0
## 14612                   Czechoslovakia 1814           0
## 14613     Democratic Republic of Congo 1814           0
## 14614                          Denmark 1814           0
## 14615                         Djibouti 1814           0
## 14616                         Dominica 1814           0
## 14617               Dominican Republic 1814           0
## 14618                            EU-28 1814  1273690672
## 14619                          Ecuador 1814           0
## 14620                            Egypt 1814           0
## 14621                      El Salvador 1814           0
## 14622                Equatorial Guinea 1814           0
## 14623                          Eritrea 1814           0
## 14624                          Estonia 1814           0
## 14625                         Ethiopia 1814           0
## 14626                   Europe (other) 1814           0
## 14627                   Faeroe Islands 1814           0
## 14628                 Falkland Islands 1814           0
## 14629                             Fiji 1814           0
## 14630                          Finland 1814           0
## 14631                           France 1814    14945456
## 14632                    French Guiana 1814           0
## 14633                 French Polynesia 1814           0
## 14634                            Gabon 1814           0
## 14635                           Gambia 1814           0
## 14636                          Georgia 1814           0
## 14637                          Germany 1814    18638768
## 14638                            Ghana 1814           0
## 14639                        Gibraltar 1814           0
## 14640                           Greece 1814           0
## 14641                        Greenland 1814           0
## 14642                          Grenada 1814           0
## 14643                       Guadeloupe 1814           0
## 14644                        Guatemala 1814           0
## 14645                           Guinea 1814           0
## 14646                    Guinea-Bissau 1814           0
## 14647                           Guyana 1814           0
## 14648                            Haiti 1814           0
## 14649                         Honduras 1814           0
## 14650                        Hong Kong 1814           0
## 14651                          Hungary 1814           0
## 14652                          Iceland 1814           0
## 14653                            India 1814           0
## 14654                        Indonesia 1814           0
## 14655                             Iran 1814           0
## 14656                             Iraq 1814           0
## 14657                          Ireland 1814           0
## 14658                           Israel 1814           0
## 14659                            Italy 1814           0
## 14660                          Jamaica 1814           0
## 14661                            Japan 1814           0
## 14662                           Jordan 1814           0
## 14663                       Kazakhstan 1814           0
## 14664                            Kenya 1814           0
## 14665                         Kiribati 1814           0
## 14666                           Kuwait 1814           0
## 14667                       Kyrgysztan 1814           0
## 14668                       Kyrgyzstan 1814           0
## 14669                             Laos 1814           0
## 14670                           Latvia 1814           0
## 14671                          Lebanon 1814           0
## 14672                          Lesotho 1814           0
## 14673                          Liberia 1814           0
## 14674                            Libya 1814           0
## 14675                    Liechtenstein 1814           0
## 14676                        Lithuania 1814           0
## 14677                       Luxembourg 1814           0
## 14678                            Macao 1814           0
## 14679                        Macedonia 1814           0
## 14680                       Madagascar 1814           0
## 14681                           Malawi 1814           0
## 14682                         Malaysia 1814           0
## 14683                         Maldives 1814           0
## 14684                             Mali 1814           0
## 14685                            Malta 1814           0
## 14686                 Marshall Islands 1814           0
## 14687                       Martinique 1814           0
## 14688                       Mauritania 1814           0
## 14689                        Mauritius 1814           0
## 14690                           Mexico 1814           0
## 14691             Micronesia (country) 1814           0
## 14692                      Middle East 1814           0
## 14693                          Moldova 1814           0
## 14694                         Mongolia 1814           0
## 14695                       Montenegro 1814           0
## 14696                       Montserrat 1814           0
## 14697                          Morocco 1814           0
## 14698                       Mozambique 1814           0
## 14699                          Myanmar 1814           0
## 14700                          Namibia 1814           0
## 14701                            Nauru 1814           0
## 14702                            Nepal 1814           0
## 14703                      Netherlands 1814           0
## 14704                    New Caledonia 1814           0
## 14705                      New Zealand 1814           0
## 14706                        Nicaragua 1814           0
## 14707                            Niger 1814           0
## 14708                          Nigeria 1814           0
## 14709                             Niue 1814           0
## 14710                      North Korea 1814           0
## 14711                           Norway 1814           0
## 14712                             Oman 1814           0
## 14713                         Pakistan 1814           0
## 14714                            Palau 1814           0
## 14715                        Palestine 1814           0
## 14716                           Panama 1814           0
## 14717                 Papua New Guinea 1814           0
## 14718                         Paraguay 1814           0
## 14719                             Peru 1814           0
## 14720                      Philippines 1814           0
## 14721                           Poland 1814     7159456
## 14722                         Portugal 1814           0
## 14723                            Qatar 1814           0
## 14724                          Reunion 1814           0
## 14725                          Romania 1814           0
## 14726                           Russia 1814           0
## 14727                           Rwanda 1814           0
## 14728                     Saint Helena 1814           0
## 14729            Saint Kitts and Nevis 1814           0
## 14730                      Saint Lucia 1814           0
## 14731        Saint Pierre and Miquelon 1814           0
## 14732 Saint Vincent and the Grenadines 1814           0
## 14733                            Samoa 1814           0
## 14734            Sao Tome and Principe 1814           0
## 14735                     Saudi Arabia 1814           0
## 14736                          Senegal 1814           0
## 14737                           Serbia 1814           0
## 14738                       Seychelles 1814           0
## 14739                     Sierra Leone 1814           0
## 14740                        Singapore 1814           0
## 14741        Sint Maarten (Dutch part) 1814           0
## 14742                         Slovakia 1814           0
## 14743                         Slovenia 1814           0
## 14744                  Solomon Islands 1814           0
## 14745                          Somalia 1814           0
## 14746                     South Africa 1814           0
## 14747                      South Korea 1814           0
## 14748                      South Sudan 1814           0
## 14749                            Spain 1814           0
## 14750                        Sri Lanka 1814           0
## 14751                            Sudan 1814           0
## 14752                         Suriname 1814           0
## 14753                        Swaziland 1814           0
## 14754                           Sweden 1814           0
## 14755                      Switzerland 1814           0
## 14756                            Syria 1814           0
## 14757                           Taiwan 1814           0
## 14758                       Tajikistan 1814           0
## 14759                         Tanzania 1814           0
## 14760                         Thailand 1814           0
## 14761                            Timor 1814           0
## 14762                             Togo 1814           0
## 14763                            Tonga 1814           0
## 14764              Trinidad and Tobago 1814           0
## 14765                          Tunisia 1814           0
## 14766                           Turkey 1814           0
## 14767                     Turkmenistan 1814           0
## 14768         Turks and Caicos Islands 1814           0
## 14769                           Tuvalu 1814           0
## 14770                           Uganda 1814           0
## 14771                          Ukraine 1814           0
## 14772             United Arab Emirates 1814           0
## 14773                   United Kingdom 1814  1226381104
## 14774                    United States 1814     5715840
## 14775                          Uruguay 1814           0
## 14776                       Uzbekistan 1814           0
## 14777                          Vanuatu 1814           0
## 14778                        Venezuela 1814           0
## 14779                          Vietnam 1814           0
## 14780        Wallis and Futuna Islands 1814           0
## 14781                            World 1814  1279516432
## 14782                            Yemen 1814           0
## 14783                           Zambia 1814           0
## 14784                         Zimbabwe 1814           0
## 14785                      Afghanistan 1815           0
## 14786                           Africa 1815           0
## 14787                          Albania 1815           0
## 14788                          Algeria 1815           0
## 14789                 Americas (other) 1815      113584
## 14790                          Andorra 1815           0
## 14791                           Angola 1815           0
## 14792                         Anguilla 1815           0
## 14793              Antarctic Fisheries 1815           0
## 14794              Antigua and Barbuda 1815           0
## 14795                        Argentina 1815           0
## 14796                          Armenia 1815           0
## 14797                            Aruba 1815           0
## 14798         Asia and Pacific (other) 1815           0
## 14799                        Australia 1815           0
## 14800                          Austria 1815      168544
## 14801                       Azerbaijan 1815           0
## 14802                          Bahamas 1815           0
## 14803                          Bahrain 1815           0
## 14804                       Bangladesh 1815           0
## 14805                         Barbados 1815           0
## 14806                          Belarus 1815           0
## 14807                          Belgium 1815     6397344
## 14808                           Belize 1815           0
## 14809                            Benin 1815           0
## 14810                          Bermuda 1815           0
## 14811                           Bhutan 1815           0
## 14812                          Bolivia 1815           0
## 14813  Bonaire Sint Eustatius and Saba 1815           0
## 14814           Bosnia and Herzegovina 1815           0
## 14815                         Botswana 1815           0
## 14816                           Brazil 1815           0
## 14817           British Virgin Islands 1815           0
## 14818                           Brunei 1815           0
## 14819                         Bulgaria 1815           0
## 14820                     Burkina Faso 1815           0
## 14821                          Burundi 1815           0
## 14822                         Cambodia 1815           0
## 14823                         Cameroon 1815           0
## 14824                           Canada 1815      113584
## 14825                       Cape Verde 1815           0
## 14826                   Cayman Islands 1815           0
## 14827         Central African Republic 1815           0
## 14828                             Chad 1815           0
## 14829                            Chile 1815           0
## 14830                            China 1815           0
## 14831                 Christmas Island 1815           0
## 14832                         Colombia 1815           0
## 14833                          Comoros 1815           0
## 14834                            Congo 1815           0
## 14835                     Cook Islands 1815           0
## 14836                       Costa Rica 1815           0
## 14837                    Cote d'Ivoire 1815           0
## 14838                          Croatia 1815           0
## 14839                             Cuba 1815           0
## 14840                          Curacao 1815           0
## 14841                           Cyprus 1815           0
## 14842                   Czech Republic 1815           0
## 14843                   Czechoslovakia 1815           0
## 14844     Democratic Republic of Congo 1815           0
## 14845                          Denmark 1815           0
## 14846                         Djibouti 1815           0
## 14847                         Dominica 1815           0
## 14848               Dominican Republic 1815           0
## 14849                            EU-28 1815  1316574128
## 14850                          Ecuador 1815           0
## 14851                            Egypt 1815           0
## 14852                      El Salvador 1815           0
## 14853                Equatorial Guinea 1815           0
## 14854                          Eritrea 1815           0
## 14855                          Estonia 1815           0
## 14856                         Ethiopia 1815           0
## 14857                   Europe (other) 1815           0
## 14858                   Faeroe Islands 1815           0
## 14859                 Falkland Islands 1815           0
## 14860                             Fiji 1815           0
## 14861                          Finland 1815           0
## 14862                           France 1815    17286752
## 14863                    French Guiana 1815           0
## 14864                 French Polynesia 1815           0
## 14865                            Gabon 1815           0
## 14866                           Gambia 1815           0
## 14867                          Georgia 1815           0
## 14868                          Germany 1815    19668352
## 14869                            Ghana 1815           0
## 14870                        Gibraltar 1815           0
## 14871                           Greece 1815           0
## 14872                        Greenland 1815           0
## 14873                          Grenada 1815           0
## 14874                       Guadeloupe 1815           0
## 14875                        Guatemala 1815           0
## 14876                           Guinea 1815           0
## 14877                    Guinea-Bissau 1815           0
## 14878                           Guyana 1815           0
## 14879                            Haiti 1815           0
## 14880                         Honduras 1815           0
## 14881                        Hong Kong 1815           0
## 14882                          Hungary 1815           0
## 14883                          Iceland 1815           0
## 14884                            India 1815           0
## 14885                        Indonesia 1815           0
## 14886                             Iran 1815           0
## 14887                             Iraq 1815           0
## 14888                          Ireland 1815           0
## 14889                           Israel 1815           0
## 14890                            Italy 1815           0
## 14891                          Jamaica 1815           0
## 14892                            Japan 1815           0
## 14893                           Jordan 1815           0
## 14894                       Kazakhstan 1815           0
## 14895                            Kenya 1815           0
## 14896                         Kiribati 1815           0
## 14897                           Kuwait 1815           0
## 14898                       Kyrgysztan 1815           0
## 14899                       Kyrgyzstan 1815           0
## 14900                             Laos 1815           0
## 14901                           Latvia 1815           0
## 14902                          Lebanon 1815           0
## 14903                          Lesotho 1815           0
## 14904                          Liberia 1815           0
## 14905                            Libya 1815           0
## 14906                    Liechtenstein 1815           0
## 14907                        Lithuania 1815           0
## 14908                       Luxembourg 1815           0
## 14909                            Macao 1815           0
## 14910                        Macedonia 1815           0
## 14911                       Madagascar 1815           0
## 14912                           Malawi 1815           0
## 14913                         Malaysia 1815           0
## 14914                         Maldives 1815           0
## 14915                             Mali 1815           0
## 14916                            Malta 1815           0
## 14917                 Marshall Islands 1815           0
## 14918                       Martinique 1815           0
## 14919                       Mauritania 1815           0
## 14920                        Mauritius 1815           0
## 14921                           Mexico 1815           0
## 14922             Micronesia (country) 1815           0
## 14923                      Middle East 1815           0
## 14924                          Moldova 1815           0
## 14925                         Mongolia 1815           0
## 14926                       Montenegro 1815           0
## 14927                       Montserrat 1815           0
## 14928                          Morocco 1815           0
## 14929                       Mozambique 1815           0
## 14930                          Myanmar 1815           0
## 14931                          Namibia 1815           0
## 14932                            Nauru 1815           0
## 14933                            Nepal 1815           0
## 14934                      Netherlands 1815           0
## 14935                    New Caledonia 1815           0
## 14936                      New Zealand 1815           0
## 14937                        Nicaragua 1815           0
## 14938                            Niger 1815           0
## 14939                          Nigeria 1815           0
## 14940                             Niue 1815           0
## 14941                      North Korea 1815           0
## 14942                           Norway 1815           0
## 14943                             Oman 1815           0
## 14944                         Pakistan 1815           0
## 14945                            Palau 1815           0
## 14946                        Palestine 1815           0
## 14947                           Panama 1815           0
## 14948                 Papua New Guinea 1815           0
## 14949                         Paraguay 1815           0
## 14950                             Peru 1815           0
## 14951                      Philippines 1815           0
## 14952                           Poland 1815     7749360
## 14953                         Portugal 1815           0
## 14954                            Qatar 1815           0
## 14955                          Reunion 1815           0
## 14956                          Romania 1815           0
## 14957                           Russia 1815           0
## 14958                           Rwanda 1815           0
## 14959                     Saint Helena 1815           0
## 14960            Saint Kitts and Nevis 1815           0
## 14961                      Saint Lucia 1815           0
## 14962        Saint Pierre and Miquelon 1815           0
## 14963 Saint Vincent and the Grenadines 1815           0
## 14964                            Samoa 1815           0
## 14965            Sao Tome and Principe 1815           0
## 14966                     Saudi Arabia 1815           0
## 14967                          Senegal 1815           0
## 14968                           Serbia 1815           0
## 14969                       Seychelles 1815           0
## 14970                     Sierra Leone 1815           0
## 14971                        Singapore 1815           0
## 14972        Sint Maarten (Dutch part) 1815           0
## 14973                         Slovakia 1815           0
## 14974                         Slovenia 1815           0
## 14975                  Solomon Islands 1815           0
## 14976                          Somalia 1815           0
## 14977                     South Africa 1815           0
## 14978                      South Korea 1815           0
## 14979                      South Sudan 1815           0
## 14980                            Spain 1815           0
## 14981                        Sri Lanka 1815           0
## 14982                            Sudan 1815           0
## 14983                         Suriname 1815           0
## 14984                        Swaziland 1815           0
## 14985                           Sweden 1815           0
## 14986                      Switzerland 1815           0
## 14987                            Syria 1815           0
## 14988                           Taiwan 1815           0
## 14989                       Tajikistan 1815           0
## 14990                         Tanzania 1815           0
## 14991                         Thailand 1815           0
## 14992                            Timor 1815           0
## 14993                             Togo 1815           0
## 14994                            Tonga 1815           0
## 14995              Trinidad and Tobago 1815           0
## 14996                          Tunisia 1815           0
## 14997                           Turkey 1815           0
## 14998                     Turkmenistan 1815           0
## 14999         Turks and Caicos Islands 1815           0
## 15000                           Tuvalu 1815           0
## 15001                           Uganda 1815           0
## 15002                          Ukraine 1815           0
## 15003             United Arab Emirates 1815           0
## 15004                   United Kingdom 1815  1265303776
## 15005                    United States 1815     6316736
## 15006                          Uruguay 1815           0
## 15007                       Uzbekistan 1815           0
## 15008                          Vanuatu 1815           0
## 15009                        Venezuela 1815           0
## 15010                          Vietnam 1815           0
## 15011        Wallis and Futuna Islands 1815           0
## 15012                            World 1815  1323004448
## 15013                            Yemen 1815           0
## 15014                           Zambia 1815           0
## 15015                         Zimbabwe 1815           0
## 15016                      Afghanistan 1816           0
## 15017                           Africa 1816           0
## 15018                          Albania 1816           0
## 15019                          Algeria 1816           0
## 15020                 Americas (other) 1816      117248
## 15021                          Andorra 1816           0
## 15022                           Angola 1816           0
## 15023                         Anguilla 1816           0
## 15024              Antarctic Fisheries 1816           0
## 15025              Antigua and Barbuda 1816           0
## 15026                        Argentina 1816           0
## 15027                          Armenia 1816           0
## 15028                            Aruba 1816           0
## 15029         Asia and Pacific (other) 1816           0
## 15030                        Australia 1816           0
## 15031                          Austria 1816      168544
## 15032                       Azerbaijan 1816           0
## 15033                          Bahamas 1816           0
## 15034                          Bahrain 1816           0
## 15035                       Bangladesh 1816           0
## 15036                         Barbados 1816           0
## 15037                          Belarus 1816           0
## 15038                          Belgium 1816     6397344
## 15039                           Belize 1816           0
## 15040                            Benin 1816           0
## 15041                          Bermuda 1816           0
## 15042                           Bhutan 1816           0
## 15043                          Bolivia 1816           0
## 15044  Bonaire Sint Eustatius and Saba 1816           0
## 15045           Bosnia and Herzegovina 1816           0
## 15046                         Botswana 1816           0
## 15047                           Brazil 1816           0
## 15048           British Virgin Islands 1816           0
## 15049                           Brunei 1816           0
## 15050                         Bulgaria 1816           0
## 15051                     Burkina Faso 1816           0
## 15052                          Burundi 1816           0
## 15053                         Cambodia 1816           0
## 15054                         Cameroon 1816           0
## 15055                           Canada 1816      117248
## 15056                       Cape Verde 1816           0
## 15057                   Cayman Islands 1816           0
## 15058         Central African Republic 1816           0
## 15059                             Chad 1816           0
## 15060                            Chile 1816           0
## 15061                            China 1816           0
## 15062                 Christmas Island 1816           0
## 15063                         Colombia 1816           0
## 15064                          Comoros 1816           0
## 15065                            Congo 1816           0
## 15066                     Cook Islands 1816           0
## 15067                       Costa Rica 1816           0
## 15068                    Cote d'Ivoire 1816           0
## 15069                          Croatia 1816           0
## 15070                             Cuba 1816           0
## 15071                          Curacao 1816           0
## 15072                           Cyprus 1816           0
## 15073                   Czech Republic 1816           0
## 15074                   Czechoslovakia 1816           0
## 15075     Democratic Republic of Congo 1816           0
## 15076                          Denmark 1816           0
## 15077                         Djibouti 1816           0
## 15078                         Dominica 1816           0
## 15079               Dominican Republic 1816           0
## 15080                            EU-28 1816  1363572256
## 15081                          Ecuador 1816           0
## 15082                            Egypt 1816           0
## 15083                      El Salvador 1816           0
## 15084                Equatorial Guinea 1816           0
## 15085                          Eritrea 1816           0
## 15086                          Estonia 1816           0
## 15087                         Ethiopia 1816           0
## 15088                   Europe (other) 1816           0
## 15089                   Faeroe Islands 1816           0
## 15090                 Falkland Islands 1816           0
## 15091                             Fiji 1816           0
## 15092                          Finland 1816           0
## 15093                           France 1816    19785600
## 15094                    French Guiana 1816           0
## 15095                 French Polynesia 1816           0
## 15096                            Gabon 1816           0
## 15097                           Gambia 1816           0
## 15098                          Georgia 1816           0
## 15099                          Germany 1816    22053616
## 15100                            Ghana 1816           0
## 15101                        Gibraltar 1816           0
## 15102                           Greece 1816           0
## 15103                        Greenland 1816           0
## 15104                          Grenada 1816           0
## 15105                       Guadeloupe 1816           0
## 15106                        Guatemala 1816           0
## 15107                           Guinea 1816           0
## 15108                    Guinea-Bissau 1816           0
## 15109                           Guyana 1816           0
## 15110                            Haiti 1816           0
## 15111                         Honduras 1816           0
## 15112                        Hong Kong 1816           0
## 15113                          Hungary 1816           0
## 15114                          Iceland 1816           0
## 15115                            India 1816           0
## 15116                        Indonesia 1816           0
## 15117                             Iran 1816           0
## 15118                             Iraq 1816           0
## 15119                          Ireland 1816           0
## 15120                           Israel 1816           0
## 15121                            Italy 1816           0
## 15122                          Jamaica 1816           0
## 15123                            Japan 1816           0
## 15124                           Jordan 1816           0
## 15125                       Kazakhstan 1816           0
## 15126                            Kenya 1816           0
## 15127                         Kiribati 1816           0
## 15128                           Kuwait 1816           0
## 15129                       Kyrgysztan 1816           0
## 15130                       Kyrgyzstan 1816           0
## 15131                             Laos 1816           0
## 15132                           Latvia 1816           0
## 15133                          Lebanon 1816           0
## 15134                          Lesotho 1816           0
## 15135                          Liberia 1816           0
## 15136                            Libya 1816           0
## 15137                    Liechtenstein 1816           0
## 15138                        Lithuania 1816           0
## 15139                       Luxembourg 1816           0
## 15140                            Macao 1816           0
## 15141                        Macedonia 1816           0
## 15142                       Madagascar 1816           0
## 15143                           Malawi 1816           0
## 15144                         Malaysia 1816           0
## 15145                         Maldives 1816           0
## 15146                             Mali 1816           0
## 15147                            Malta 1816           0
## 15148                 Marshall Islands 1816           0
## 15149                       Martinique 1816           0
## 15150                       Mauritania 1816           0
## 15151                        Mauritius 1816           0
## 15152                           Mexico 1816           0
## 15153             Micronesia (country) 1816           0
## 15154                      Middle East 1816           0
## 15155                          Moldova 1816           0
## 15156                         Mongolia 1816           0
## 15157                       Montenegro 1816           0
## 15158                       Montserrat 1816           0
## 15159                          Morocco 1816           0
## 15160                       Mozambique 1816           0
## 15161                          Myanmar 1816           0
## 15162                          Namibia 1816           0
## 15163                            Nauru 1816           0
## 15164                            Nepal 1816           0
## 15165                      Netherlands 1816           0
## 15166                    New Caledonia 1816           0
## 15167                      New Zealand 1816           0
## 15168                        Nicaragua 1816           0
## 15169                            Niger 1816           0
## 15170                          Nigeria 1816           0
## 15171                             Niue 1816           0
## 15172                      North Korea 1816           0
## 15173                           Norway 1816           0
## 15174                             Oman 1816           0
## 15175                         Pakistan 1816           0
## 15176                            Palau 1816           0
## 15177                        Palestine 1816           0
## 15178                           Panama 1816           0
## 15179                 Papua New Guinea 1816           0
## 15180                         Paraguay 1816           0
## 15181                             Peru 1816           0
## 15182                      Philippines 1816           0
## 15183                           Poland 1816     8427200
## 15184                         Portugal 1816           0
## 15185                            Qatar 1816           0
## 15186                          Reunion 1816           0
## 15187                          Romania 1816           0
## 15188                           Russia 1816           0
## 15189                           Rwanda 1816           0
## 15190                     Saint Helena 1816           0
## 15191            Saint Kitts and Nevis 1816           0
## 15192                      Saint Lucia 1816           0
## 15193        Saint Pierre and Miquelon 1816           0
## 15194 Saint Vincent and the Grenadines 1816           0
## 15195                            Samoa 1816           0
## 15196            Sao Tome and Principe 1816           0
## 15197                     Saudi Arabia 1816           0
## 15198                          Senegal 1816           0
## 15199                           Serbia 1816           0
## 15200                       Seychelles 1816           0
## 15201                     Sierra Leone 1816           0
## 15202                        Singapore 1816           0
## 15203        Sint Maarten (Dutch part) 1816           0
## 15204                         Slovakia 1816           0
## 15205                         Slovenia 1816           0
## 15206                  Solomon Islands 1816           0
## 15207                          Somalia 1816           0
## 15208                     South Africa 1816           0
## 15209                      South Korea 1816           0
## 15210                      South Sudan 1816           0
## 15211                            Spain 1816           0
## 15212                        Sri Lanka 1816           0
## 15213                            Sudan 1816           0
## 15214                         Suriname 1816           0
## 15215                        Swaziland 1816           0
## 15216                           Sweden 1816           0
## 15217                      Switzerland 1816           0
## 15218                            Syria 1816           0
## 15219                           Taiwan 1816           0
## 15220                       Tajikistan 1816           0
## 15221                         Tanzania 1816           0
## 15222                         Thailand 1816           0
## 15223                            Timor 1816           0
## 15224                             Togo 1816           0
## 15225                            Tonga 1816           0
## 15226              Trinidad and Tobago 1816           0
## 15227                          Tunisia 1816           0
## 15228                           Turkey 1816           0
## 15229                     Turkmenistan 1816           0
## 15230         Turks and Caicos Islands 1816           0
## 15231                           Tuvalu 1816           0
## 15232                           Uganda 1816           0
## 15233                          Ukraine 1816           0
## 15234             United Arab Emirates 1816           0
## 15235                   United Kingdom 1816  1306739952
## 15236                    United States 1816     6979920
## 15237                          Uruguay 1816           0
## 15238                       Uzbekistan 1816           0
## 15239                          Vanuatu 1816           0
## 15240                        Venezuela 1816           0
## 15241                          Vietnam 1816           0
## 15242        Wallis and Futuna Islands 1816           0
## 15243                            World 1816  1370669424
## 15244                            Yemen 1816           0
## 15245                           Zambia 1816           0
## 15246                         Zimbabwe 1816           0
## 15247                      Afghanistan 1817           0
## 15248                           Africa 1817           0
## 15249                          Albania 1817           0
## 15250                          Algeria 1817           0
## 15251                 Americas (other) 1817      120912
## 15252                          Andorra 1817           0
## 15253                           Angola 1817           0
## 15254                         Anguilla 1817           0
## 15255              Antarctic Fisheries 1817           0
## 15256              Antigua and Barbuda 1817           0
## 15257                        Argentina 1817           0
## 15258                          Armenia 1817           0
## 15259                            Aruba 1817           0
## 15260         Asia and Pacific (other) 1817           0
## 15261                        Australia 1817           0
## 15262                          Austria 1817      168544
## 15263                       Azerbaijan 1817           0
## 15264                          Bahamas 1817           0
## 15265                          Bahrain 1817           0
## 15266                       Bangladesh 1817           0
## 15267                         Barbados 1817           0
## 15268                          Belarus 1817           0
## 15269                          Belgium 1817     6397344
## 15270                           Belize 1817           0
## 15271                            Benin 1817           0
## 15272                          Bermuda 1817           0
## 15273                           Bhutan 1817           0
## 15274                          Bolivia 1817           0
## 15275  Bonaire Sint Eustatius and Saba 1817           0
## 15276           Bosnia and Herzegovina 1817           0
## 15277                         Botswana 1817           0
## 15278                           Brazil 1817           0
## 15279           British Virgin Islands 1817           0
## 15280                           Brunei 1817           0
## 15281                         Bulgaria 1817           0
## 15282                     Burkina Faso 1817           0
## 15283                          Burundi 1817           0
## 15284                         Cambodia 1817           0
## 15285                         Cameroon 1817           0
## 15286                           Canada 1817      120912
## 15287                       Cape Verde 1817           0
## 15288                   Cayman Islands 1817           0
## 15289         Central African Republic 1817           0
## 15290                             Chad 1817           0
## 15291                            Chile 1817           0
## 15292                            China 1817           0
## 15293                 Christmas Island 1817           0
## 15294                         Colombia 1817           0
## 15295                          Comoros 1817           0
## 15296                            Congo 1817           0
## 15297                     Cook Islands 1817           0
## 15298                       Costa Rica 1817           0
## 15299                    Cote d'Ivoire 1817           0
## 15300                          Croatia 1817           0
## 15301                             Cuba 1817           0
## 15302                          Curacao 1817           0
## 15303                           Cyprus 1817           0
## 15304                   Czech Republic 1817           0
## 15305                   Czechoslovakia 1817           0
## 15306     Democratic Republic of Congo 1817           0
## 15307                          Denmark 1817           0
## 15308                         Djibouti 1817           0
## 15309                         Dominica 1817           0
## 15310               Dominican Republic 1817           0
## 15311                            EU-28 1817  1412281472
## 15312                          Ecuador 1817           0
## 15313                            Egypt 1817           0
## 15314                      El Salvador 1817           0
## 15315                Equatorial Guinea 1817           0
## 15316                          Eritrea 1817           0
## 15317                          Estonia 1817           0
## 15318                         Ethiopia 1817           0
## 15319                   Europe (other) 1817           0
## 15320                   Faeroe Islands 1817           0
## 15321                 Falkland Islands 1817           0
## 15322                             Fiji 1817           0
## 15323                          Finland 1817           0
## 15324                           France 1817    22445664
## 15325                    French Guiana 1817           0
## 15326                 French Polynesia 1817           0
## 15327                            Gabon 1817           0
## 15328                           Gambia 1817           0
## 15329                          Georgia 1817           0
## 15330                          Germany 1817    25435488
## 15331                            Ghana 1817           0
## 15332                        Gibraltar 1817           0
## 15333                           Greece 1817           0
## 15334                        Greenland 1817           0
## 15335                          Grenada 1817           0
## 15336                       Guadeloupe 1817           0
## 15337                        Guatemala 1817           0
## 15338                           Guinea 1817           0
## 15339                    Guinea-Bissau 1817           0
## 15340                           Guyana 1817           0
## 15341                            Haiti 1817           0
## 15342                         Honduras 1817           0
## 15343                        Hong Kong 1817           0
## 15344                          Hungary 1817           0
## 15345                          Iceland 1817           0
## 15346                            India 1817           0
## 15347                        Indonesia 1817           0
## 15348                             Iran 1817           0
## 15349                             Iraq 1817           0
## 15350                          Ireland 1817           0
## 15351                           Israel 1817           0
## 15352                            Italy 1817           0
## 15353                          Jamaica 1817           0
## 15354                            Japan 1817           0
## 15355                           Jordan 1817           0
## 15356                       Kazakhstan 1817           0
## 15357                            Kenya 1817           0
## 15358                         Kiribati 1817           0
## 15359                           Kuwait 1817           0
## 15360                       Kyrgysztan 1817           0
## 15361                       Kyrgyzstan 1817           0
## 15362                             Laos 1817           0
## 15363                           Latvia 1817           0
## 15364                          Lebanon 1817           0
## 15365                          Lesotho 1817           0
## 15366                          Liberia 1817           0
## 15367                            Libya 1817           0
## 15368                    Liechtenstein 1817           0
## 15369                        Lithuania 1817           0
## 15370                       Luxembourg 1817           0
## 15371                            Macao 1817           0
## 15372                        Macedonia 1817           0
## 15373                       Madagascar 1817           0
## 15374                           Malawi 1817           0
## 15375                         Malaysia 1817           0
## 15376                         Maldives 1817           0
## 15377                             Mali 1817           0
## 15378                            Malta 1817           0
## 15379                 Marshall Islands 1817           0
## 15380                       Martinique 1817           0
## 15381                       Mauritania 1817           0
## 15382                        Mauritius 1817           0
## 15383                           Mexico 1817           0
## 15384             Micronesia (country) 1817           0
## 15385                      Middle East 1817           0
## 15386                          Moldova 1817           0
## 15387                         Mongolia 1817           0
## 15388                       Montenegro 1817           0
## 15389                       Montserrat 1817           0
## 15390                          Morocco 1817           0
## 15391                       Mozambique 1817           0
## 15392                          Myanmar 1817           0
## 15393                          Namibia 1817           0
## 15394                            Nauru 1817           0
## 15395                            Nepal 1817           0
## 15396                      Netherlands 1817           0
## 15397                    New Caledonia 1817           0
## 15398                      New Zealand 1817           0
## 15399                        Nicaragua 1817           0
## 15400                            Niger 1817           0
## 15401                          Nigeria 1817           0
## 15402                             Niue 1817           0
## 15403                      North Korea 1817           0
## 15404                           Norway 1817           0
## 15405                             Oman 1817           0
## 15406                         Pakistan 1817           0
## 15407                            Palau 1817           0
## 15408                        Palestine 1817           0
## 15409                           Panama 1817           0
## 15410                 Papua New Guinea 1817           0
## 15411                         Paraguay 1817           0
## 15412                             Peru 1817           0
## 15413                      Philippines 1817           0
## 15414                           Poland 1817     9170992
## 15415                         Portugal 1817           0
## 15416                            Qatar 1817           0
## 15417                          Reunion 1817           0
## 15418                          Romania 1817           0
## 15419                           Russia 1817           0
## 15420                           Rwanda 1817           0
## 15421                     Saint Helena 1817           0
## 15422            Saint Kitts and Nevis 1817           0
## 15423                      Saint Lucia 1817           0
## 15424        Saint Pierre and Miquelon 1817           0
## 15425 Saint Vincent and the Grenadines 1817           0
## 15426                            Samoa 1817           0
## 15427            Sao Tome and Principe 1817           0
## 15428                     Saudi Arabia 1817           0
## 15429                          Senegal 1817           0
## 15430                           Serbia 1817           0
## 15431                       Seychelles 1817           0
## 15432                     Sierra Leone 1817           0
## 15433                        Singapore 1817           0
## 15434        Sint Maarten (Dutch part) 1817           0
## 15435                         Slovakia 1817           0
## 15436                         Slovenia 1817           0
## 15437                  Solomon Islands 1817           0
## 15438                          Somalia 1817           0
## 15439                     South Africa 1817           0
## 15440                      South Korea 1817           0
## 15441                      South Sudan 1817           0
## 15442                            Spain 1817           0
## 15443                        Sri Lanka 1817           0
## 15444                            Sudan 1817           0
## 15445                         Suriname 1817           0
## 15446                        Swaziland 1817           0
## 15447                           Sweden 1817           0
## 15448                      Switzerland 1817           0
## 15449                            Syria 1817           0
## 15450                           Taiwan 1817           0
## 15451                       Tajikistan 1817           0
## 15452                         Tanzania 1817           0
## 15453                         Thailand 1817           0
## 15454                            Timor 1817           0
## 15455                             Togo 1817           0
## 15456                            Tonga 1817           0
## 15457              Trinidad and Tobago 1817           0
## 15458                          Tunisia 1817           0
## 15459                           Turkey 1817           0
## 15460                     Turkmenistan 1817           0
## 15461         Turks and Caicos Islands 1817           0
## 15462                           Tuvalu 1817           0
## 15463                           Uganda 1817           0
## 15464                          Ukraine 1817           0
## 15465             United Arab Emirates 1817           0
## 15466                   United Kingdom 1817  1348663440
## 15467                    United States 1817     7698064
## 15468                          Uruguay 1817           0
## 15469                       Uzbekistan 1817           0
## 15470                          Vanuatu 1817           0
## 15471                        Venezuela 1817           0
## 15472                          Vietnam 1817           0
## 15473        Wallis and Futuna Islands 1817           0
## 15474                            World 1817  1420100448
## 15475                            Yemen 1817           0
## 15476                           Zambia 1817           0
## 15477                         Zimbabwe 1817           0
## 15478                      Afghanistan 1818           0
## 15479                           Africa 1818           0
## 15480                          Albania 1818           0
## 15481                          Algeria 1818           0
## 15482                 Americas (other) 1818      124576
## 15483                          Andorra 1818           0
## 15484                           Angola 1818           0
## 15485                         Anguilla 1818           0
## 15486              Antarctic Fisheries 1818           0
## 15487              Antigua and Barbuda 1818           0
## 15488                        Argentina 1818           0
## 15489                          Armenia 1818           0
## 15490                            Aruba 1818           0
## 15491         Asia and Pacific (other) 1818           0
## 15492                        Australia 1818           0
## 15493                          Austria 1818      168544
## 15494                       Azerbaijan 1818           0
## 15495                          Bahamas 1818           0
## 15496                          Bahrain 1818           0
## 15497                       Bangladesh 1818           0
## 15498                         Barbados 1818           0
## 15499                          Belarus 1818           0
## 15500                          Belgium 1818     6397344
## 15501                           Belize 1818           0
## 15502                            Benin 1818           0
## 15503                          Bermuda 1818           0
## 15504                           Bhutan 1818           0
## 15505                          Bolivia 1818           0
## 15506  Bonaire Sint Eustatius and Saba 1818           0
## 15507           Bosnia and Herzegovina 1818           0
## 15508                         Botswana 1818           0
## 15509                           Brazil 1818           0
## 15510           British Virgin Islands 1818           0
## 15511                           Brunei 1818           0
## 15512                         Bulgaria 1818           0
## 15513                     Burkina Faso 1818           0
## 15514                          Burundi 1818           0
## 15515                         Cambodia 1818           0
## 15516                         Cameroon 1818           0
## 15517                           Canada 1818      124576
## 15518                       Cape Verde 1818           0
## 15519                   Cayman Islands 1818           0
## 15520         Central African Republic 1818           0
## 15521                             Chad 1818           0
## 15522                            Chile 1818           0
## 15523                            China 1818           0
## 15524                 Christmas Island 1818           0
## 15525                         Colombia 1818           0
## 15526                          Comoros 1818           0
## 15527                            Congo 1818           0
## 15528                     Cook Islands 1818           0
## 15529                       Costa Rica 1818           0
## 15530                    Cote d'Ivoire 1818           0
## 15531                          Croatia 1818           0
## 15532                             Cuba 1818           0
## 15533                          Curacao 1818           0
## 15534                           Cyprus 1818           0
## 15535                   Czech Republic 1818           0
## 15536                   Czechoslovakia 1818           0
## 15537     Democratic Republic of Congo 1818           0
## 15538                          Denmark 1818           0
## 15539                         Djibouti 1818           0
## 15540                         Dominica 1818           0
## 15541               Dominican Republic 1818           0
## 15542                            EU-28 1818  1461140912
## 15543                          Ecuador 1818           0
## 15544                            Egypt 1818           0
## 15545                      El Salvador 1818           0
## 15546                Equatorial Guinea 1818           0
## 15547                          Eritrea 1818           0
## 15548                          Estonia 1818           0
## 15549                         Ethiopia 1818           0
## 15550                   Europe (other) 1818           0
## 15551                   Faeroe Islands 1818           0
## 15552                 Falkland Islands 1818           0
## 15553                             Fiji 1818           0
## 15554                          Finland 1818           0
## 15555                           France 1818    24827264
## 15556                    French Guiana 1818           0
## 15557                 French Polynesia 1818           0
## 15558                            Gabon 1818           0
## 15559                           Gambia 1818           0
## 15560                          Georgia 1818           0
## 15561                          Germany 1818    28967584
## 15562                            Ghana 1818           0
## 15563                        Gibraltar 1818           0
## 15564                           Greece 1818           0
## 15565                        Greenland 1818           0
## 15566                          Grenada 1818           0
## 15567                       Guadeloupe 1818           0
## 15568                        Guatemala 1818           0
## 15569                           Guinea 1818           0
## 15570                    Guinea-Bissau 1818           0
## 15571                           Guyana 1818           0
## 15572                            Haiti 1818           0
## 15573                         Honduras 1818           0
## 15574                        Hong Kong 1818           0
## 15575                          Hungary 1818           0
## 15576                          Iceland 1818           0
## 15577                            India 1818           0
## 15578                        Indonesia 1818           0
## 15579                             Iran 1818           0
## 15580                             Iraq 1818           0
## 15581                          Ireland 1818           0
## 15582                           Israel 1818           0
## 15583                            Italy 1818           0
## 15584                          Jamaica 1818           0
## 15585                            Japan 1818           0
## 15586                           Jordan 1818           0
## 15587                       Kazakhstan 1818           0
## 15588                            Kenya 1818           0
## 15589                         Kiribati 1818           0
## 15590                           Kuwait 1818           0
## 15591                       Kyrgysztan 1818           0
## 15592                       Kyrgyzstan 1818           0
## 15593                             Laos 1818           0
## 15594                           Latvia 1818           0
## 15595                          Lebanon 1818           0
## 15596                          Lesotho 1818           0
## 15597                          Liberia 1818           0
## 15598                            Libya 1818           0
## 15599                    Liechtenstein 1818           0
## 15600                        Lithuania 1818           0
## 15601                       Luxembourg 1818           0
## 15602                            Macao 1818           0
## 15603                        Macedonia 1818           0
## 15604                       Madagascar 1818           0
## 15605                           Malawi 1818           0
## 15606                         Malaysia 1818           0
## 15607                         Maldives 1818           0
## 15608                             Mali 1818           0
## 15609                            Malta 1818           0
## 15610                 Marshall Islands 1818           0
## 15611                       Martinique 1818           0
## 15612                       Mauritania 1818           0
## 15613                        Mauritius 1818           0
## 15614                           Mexico 1818           0
## 15615             Micronesia (country) 1818           0
## 15616                      Middle East 1818           0
## 15617                          Moldova 1818           0
## 15618                         Mongolia 1818           0
## 15619                       Montenegro 1818           0
## 15620                       Montserrat 1818           0
## 15621                          Morocco 1818           0
## 15622                       Mozambique 1818           0
## 15623                          Myanmar 1818           0
## 15624                          Namibia 1818           0
## 15625                            Nauru 1818           0
## 15626                            Nepal 1818           0
## 15627                      Netherlands 1818           0
## 15628                    New Caledonia 1818           0
## 15629                      New Zealand 1818           0
## 15630                        Nicaragua 1818           0
## 15631                            Niger 1818           0
## 15632                          Nigeria 1818           0
## 15633                             Niue 1818           0
## 15634                      North Korea 1818           0
## 15635                           Norway 1818           0
## 15636                             Oman 1818           0
## 15637                         Pakistan 1818           0
## 15638                            Palau 1818           0
## 15639                        Palestine 1818           0
## 15640                           Panama 1818           0
## 15641                 Papua New Guinea 1818           0
## 15642                         Paraguay 1818           0
## 15643                             Peru 1818           0
## 15644                      Philippines 1818           0
## 15645                           Poland 1818    10094320
## 15646                         Portugal 1818           0
## 15647                            Qatar 1818           0
## 15648                          Reunion 1818           0
## 15649                          Romania 1818           0
## 15650                           Russia 1818           0
## 15651                           Rwanda 1818           0
## 15652                     Saint Helena 1818           0
## 15653            Saint Kitts and Nevis 1818           0
## 15654                      Saint Lucia 1818           0
## 15655        Saint Pierre and Miquelon 1818           0
## 15656 Saint Vincent and the Grenadines 1818           0
## 15657                            Samoa 1818           0
## 15658            Sao Tome and Principe 1818           0
## 15659                     Saudi Arabia 1818           0
## 15660                          Senegal 1818           0
## 15661                           Serbia 1818           0
## 15662                       Seychelles 1818           0
## 15663                     Sierra Leone 1818           0
## 15664                        Singapore 1818           0
## 15665        Sint Maarten (Dutch part) 1818           0
## 15666                         Slovakia 1818           0
## 15667                         Slovenia 1818           0
## 15668                  Solomon Islands 1818           0
## 15669                          Somalia 1818           0
## 15670                     South Africa 1818           0
## 15671                      South Korea 1818           0
## 15672                      South Sudan 1818           0
## 15673                            Spain 1818           0
## 15674                        Sri Lanka 1818           0
## 15675                            Sudan 1818           0
## 15676                         Suriname 1818           0
## 15677                        Swaziland 1818           0
## 15678                           Sweden 1818           0
## 15679                      Switzerland 1818           0
## 15680                            Syria 1818           0
## 15681                           Taiwan 1818           0
## 15682                       Tajikistan 1818           0
## 15683                         Tanzania 1818           0
## 15684                         Thailand 1818           0
## 15685                            Timor 1818           0
## 15686                             Togo 1818           0
## 15687                            Tonga 1818           0
## 15688              Trinidad and Tobago 1818           0
## 15689                          Tunisia 1818           0
## 15690                           Turkey 1818           0
## 15691                     Turkmenistan 1818           0
## 15692         Turks and Caicos Islands 1818           0
## 15693                           Tuvalu 1818           0
## 15694                           Uganda 1818           0
## 15695                          Ukraine 1818           0
## 15696             United Arab Emirates 1818           0
## 15697                   United Kingdom 1818  1390685856
## 15698                    United States 1818     8478496
## 15699                          Uruguay 1818           0
## 15700                       Uzbekistan 1818           0
## 15701                          Vanuatu 1818           0
## 15702                        Venezuela 1818           0
## 15703                          Vietnam 1818           0
## 15704        Wallis and Futuna Islands 1818           0
## 15705                            World 1818  1469743984
## 15706                            Yemen 1818           0
## 15707                           Zambia 1818           0
## 15708                         Zimbabwe 1818           0
## 15709                      Afghanistan 1819           0
## 15710                           Africa 1819           0
## 15711                          Albania 1819           0
## 15712                          Algeria 1819           0
## 15713                 Americas (other) 1819      128240
## 15714                          Andorra 1819           0
## 15715                           Angola 1819           0
## 15716                         Anguilla 1819           0
## 15717              Antarctic Fisheries 1819           0
## 15718              Antigua and Barbuda 1819           0
## 15719                        Argentina 1819           0
## 15720                          Armenia 1819           0
## 15721                            Aruba 1819           0
## 15722         Asia and Pacific (other) 1819           0
## 15723                        Australia 1819           0
## 15724                          Austria 1819      421360
## 15725                       Azerbaijan 1819           0
## 15726                          Bahamas 1819           0
## 15727                          Bahrain 1819           0
## 15728                       Bangladesh 1819           0
## 15729                         Barbados 1819           0
## 15730                          Belarus 1819           0
## 15731                          Belgium 1819     6397344
## 15732                           Belize 1819           0
## 15733                            Benin 1819           0
## 15734                          Bermuda 1819           0
## 15735                           Bhutan 1819           0
## 15736                          Bolivia 1819           0
## 15737  Bonaire Sint Eustatius and Saba 1819           0
## 15738           Bosnia and Herzegovina 1819           0
## 15739                         Botswana 1819           0
## 15740                           Brazil 1819           0
## 15741           British Virgin Islands 1819           0
## 15742                           Brunei 1819           0
## 15743                         Bulgaria 1819           0
## 15744                     Burkina Faso 1819           0
## 15745                          Burundi 1819           0
## 15746                         Cambodia 1819           0
## 15747                         Cameroon 1819           0
## 15748                           Canada 1819      128240
## 15749                       Cape Verde 1819           0
## 15750                   Cayman Islands 1819           0
## 15751         Central African Republic 1819           0
## 15752                             Chad 1819           0
## 15753                            Chile 1819           0
## 15754                            China 1819           0
## 15755                 Christmas Island 1819           0
## 15756                         Colombia 1819           0
## 15757                          Comoros 1819           0
## 15758                            Congo 1819           0
## 15759                     Cook Islands 1819           0
## 15760                       Costa Rica 1819           0
## 15761                    Cote d'Ivoire 1819           0
## 15762                          Croatia 1819           0
## 15763                             Cuba 1819           0
## 15764                          Curacao 1819           0
## 15765                           Cyprus 1819           0
## 15766                   Czech Republic 1819           0
## 15767                   Czechoslovakia 1819           0
## 15768     Democratic Republic of Congo 1819           0
## 15769                          Denmark 1819           0
## 15770                         Djibouti 1819           0
## 15771                         Dominica 1819           0
## 15772               Dominican Republic 1819           0
## 15773                            EU-28 1819  1510322784
## 15774                          Ecuador 1819           0
## 15775                            Egypt 1819           0
## 15776                      El Salvador 1819           0
## 15777                Equatorial Guinea 1819           0
## 15778                          Eritrea 1819           0
## 15779                          Estonia 1819           0
## 15780                         Ethiopia 1819           0
## 15781                   Europe (other) 1819           0
## 15782                   Faeroe Islands 1819           0
## 15783                 Falkland Islands 1819           0
## 15784                             Fiji 1819           0
## 15785                          Finland 1819           0
## 15786                           France 1819    27384736
## 15787                    French Guiana 1819           0
## 15788                 French Polynesia 1819           0
## 15789                            Gabon 1819           0
## 15790                           Gambia 1819           0
## 15791                          Georgia 1819           0
## 15792                          Germany 1819    32243200
## 15793                            Ghana 1819           0
## 15794                        Gibraltar 1819           0
## 15795                           Greece 1819           0
## 15796                        Greenland 1819           0
## 15797                          Grenada 1819           0
## 15798                       Guadeloupe 1819           0
## 15799                        Guatemala 1819           0
## 15800                           Guinea 1819           0
## 15801                    Guinea-Bissau 1819           0
## 15802                           Guyana 1819           0
## 15803                            Haiti 1819           0
## 15804                         Honduras 1819           0
## 15805                        Hong Kong 1819           0
## 15806                          Hungary 1819           0
## 15807                          Iceland 1819           0
## 15808                            India 1819           0
## 15809                        Indonesia 1819           0
## 15810                             Iran 1819           0
## 15811                             Iraq 1819           0
## 15812                          Ireland 1819           0
## 15813                           Israel 1819           0
## 15814                            Italy 1819           0
## 15815                          Jamaica 1819           0
## 15816                            Japan 1819           0
## 15817                           Jordan 1819           0
## 15818                       Kazakhstan 1819           0
## 15819                            Kenya 1819           0
## 15820                         Kiribati 1819           0
## 15821                           Kuwait 1819           0
## 15822                       Kyrgysztan 1819           0
## 15823                       Kyrgyzstan 1819           0
## 15824                             Laos 1819           0
## 15825                           Latvia 1819           0
## 15826                          Lebanon 1819           0
## 15827                          Lesotho 1819           0
## 15828                          Liberia 1819           0
## 15829                            Libya 1819           0
## 15830                    Liechtenstein 1819           0
## 15831                        Lithuania 1819           0
## 15832                       Luxembourg 1819           0
## 15833                            Macao 1819           0
## 15834                        Macedonia 1819           0
## 15835                       Madagascar 1819           0
## 15836                           Malawi 1819           0
## 15837                         Malaysia 1819           0
## 15838                         Maldives 1819           0
## 15839                             Mali 1819           0
## 15840                            Malta 1819           0
## 15841                 Marshall Islands 1819           0
## 15842                       Martinique 1819           0
## 15843                       Mauritania 1819           0
## 15844                        Mauritius 1819           0
## 15845                           Mexico 1819           0
## 15846             Micronesia (country) 1819           0
## 15847                      Middle East 1819           0
## 15848                          Moldova 1819           0
## 15849                         Mongolia 1819           0
## 15850                       Montenegro 1819           0
## 15851                       Montserrat 1819           0
## 15852                          Morocco 1819           0
## 15853                       Mozambique 1819           0
## 15854                          Myanmar 1819           0
## 15855                          Namibia 1819           0
## 15856                            Nauru 1819           0
## 15857                            Nepal 1819           0
## 15858                      Netherlands 1819           0
## 15859                    New Caledonia 1819           0
## 15860                      New Zealand 1819           0
## 15861                        Nicaragua 1819           0
## 15862                            Niger 1819           0
## 15863                          Nigeria 1819           0
## 15864                             Niue 1819           0
## 15865                      North Korea 1819           0
## 15866                           Norway 1819           0
## 15867                             Oman 1819           0
## 15868                         Pakistan 1819           0
## 15869                            Palau 1819           0
## 15870                        Palestine 1819           0
## 15871                           Panama 1819           0
## 15872                 Papua New Guinea 1819           0
## 15873                         Paraguay 1819           0
## 15874                             Peru 1819           0
## 15875                      Philippines 1819           0
## 15876                           Poland 1819    10852768
## 15877                         Portugal 1819           0
## 15878                            Qatar 1819           0
## 15879                          Reunion 1819           0
## 15880                          Romania 1819           0
## 15881                           Russia 1819           0
## 15882                           Rwanda 1819           0
## 15883                     Saint Helena 1819           0
## 15884            Saint Kitts and Nevis 1819           0
## 15885                      Saint Lucia 1819           0
## 15886        Saint Pierre and Miquelon 1819           0
## 15887 Saint Vincent and the Grenadines 1819           0
## 15888                            Samoa 1819           0
## 15889            Sao Tome and Principe 1819           0
## 15890                     Saudi Arabia 1819           0
## 15891                          Senegal 1819           0
## 15892                           Serbia 1819           0
## 15893                       Seychelles 1819           0
## 15894                     Sierra Leone 1819           0
## 15895                        Singapore 1819           0
## 15896        Sint Maarten (Dutch part) 1819           0
## 15897                         Slovakia 1819           0
## 15898                         Slovenia 1819           0
## 15899                  Solomon Islands 1819           0
## 15900                          Somalia 1819           0
## 15901                     South Africa 1819           0
## 15902                      South Korea 1819           0
## 15903                      South Sudan 1819           0
## 15904                            Spain 1819           0
## 15905                        Sri Lanka 1819           0
## 15906                            Sudan 1819           0
## 15907                         Suriname 1819           0
## 15908                        Swaziland 1819           0
## 15909                           Sweden 1819           0
## 15910                      Switzerland 1819           0
## 15911                            Syria 1819           0
## 15912                           Taiwan 1819           0
## 15913                       Tajikistan 1819           0
## 15914                         Tanzania 1819           0
## 15915                         Thailand 1819           0
## 15916                            Timor 1819           0
## 15917                             Togo 1819           0
## 15918                            Tonga 1819           0
## 15919              Trinidad and Tobago 1819           0
## 15920                          Tunisia 1819           0
## 15921                           Turkey 1819           0
## 15922                     Turkmenistan 1819           0
## 15923         Turks and Caicos Islands 1819           0
## 15924                           Tuvalu 1819           0
## 15925                           Uganda 1819           0
## 15926                          Ukraine 1819           0
## 15927             United Arab Emirates 1819           0
## 15928                   United Kingdom 1819  1433023376
## 15929                    United States 1819     9240608
## 15930                          Uruguay 1819           0
## 15931                       Uzbekistan 1819           0
## 15932                          Vanuatu 1819           0
## 15933                        Venezuela 1819           0
## 15934                          Vietnam 1819           0
## 15935        Wallis and Futuna Islands 1819           0
## 15936                            World 1819  1519691632
## 15937                            Yemen 1819           0
## 15938                           Zambia 1819           0
## 15939                         Zimbabwe 1819           0
## 15940                      Afghanistan 1820           0
## 15941                           Africa 1820           0
## 15942                          Albania 1820           0
## 15943                          Algeria 1820           0
## 15944                 Americas (other) 1820      131904
## 15945                          Andorra 1820           0
## 15946                           Angola 1820           0
## 15947                         Anguilla 1820           0
## 15948              Antarctic Fisheries 1820           0
## 15949              Antigua and Barbuda 1820           0
## 15950                        Argentina 1820           0
## 15951                          Armenia 1820           0
## 15952                            Aruba 1820           0
## 15953         Asia and Pacific (other) 1820           0
## 15954                        Australia 1820           0
## 15955                          Austria 1820      754784
## 15956                       Azerbaijan 1820           0
## 15957                          Bahamas 1820           0
## 15958                          Bahrain 1820           0
## 15959                       Bangladesh 1820           0
## 15960                         Barbados 1820           0
## 15961                          Belarus 1820           0
## 15962                          Belgium 1820     6397344
## 15963                           Belize 1820           0
## 15964                            Benin 1820           0
## 15965                          Bermuda 1820           0
## 15966                           Bhutan 1820           0
## 15967                          Bolivia 1820           0
## 15968  Bonaire Sint Eustatius and Saba 1820           0
## 15969           Bosnia and Herzegovina 1820           0
## 15970                         Botswana 1820           0
## 15971                           Brazil 1820           0
## 15972           British Virgin Islands 1820           0
## 15973                           Brunei 1820           0
## 15974                         Bulgaria 1820           0
## 15975                     Burkina Faso 1820           0
## 15976                          Burundi 1820           0
## 15977                         Cambodia 1820           0
## 15978                         Cameroon 1820           0
## 15979                           Canada 1820      131904
## 15980                       Cape Verde 1820           0
## 15981                   Cayman Islands 1820           0
## 15982         Central African Republic 1820           0
## 15983                             Chad 1820           0
## 15984                            Chile 1820           0
## 15985                            China 1820           0
## 15986                 Christmas Island 1820           0
## 15987                         Colombia 1820           0
## 15988                          Comoros 1820           0
## 15989                            Congo 1820           0
## 15990                     Cook Islands 1820           0
## 15991                       Costa Rica 1820           0
## 15992                    Cote d'Ivoire 1820           0
## 15993                          Croatia 1820           0
## 15994                             Cuba 1820           0
## 15995                          Curacao 1820           0
## 15996                           Cyprus 1820           0
## 15997                   Czech Republic 1820           0
## 15998                   Czechoslovakia 1820           0
## 15999     Democratic Republic of Congo 1820           0
## 16000                          Denmark 1820           0
## 16001                         Djibouti 1820           0
## 16002                         Dominica 1820           0
## 16003               Dominican Republic 1820           0
## 16004                            EU-28 1820  1560215472
## 16005                          Ecuador 1820           0
## 16006                            Egypt 1820           0
## 16007                      El Salvador 1820           0
## 16008                Equatorial Guinea 1820           0
## 16009                          Eritrea 1820           0
## 16010                          Estonia 1820           0
## 16011                         Ethiopia 1820           0
## 16012                   Europe (other) 1820           0
## 16013                   Faeroe Islands 1820           0
## 16014                 Falkland Islands 1820           0
## 16015                             Fiji 1820           0
## 16016                          Finland 1820           0
## 16017                           France 1820    30286624
## 16018                    French Guiana 1820           0
## 16019                 French Polynesia 1820           0
## 16020                            Gabon 1820           0
## 16021                           Gambia 1820           0
## 16022                          Georgia 1820           0
## 16023                          Germany 1820    35625072
## 16024                            Ghana 1820           0
## 16025                        Gibraltar 1820           0
## 16026                           Greece 1820           0
## 16027                        Greenland 1820           0
## 16028                          Grenada 1820           0
## 16029                       Guadeloupe 1820           0
## 16030                        Guatemala 1820           0
## 16031                           Guinea 1820           0
## 16032                    Guinea-Bissau 1820           0
## 16033                           Guyana 1820           0
## 16034                            Haiti 1820           0
## 16035                         Honduras 1820           0
## 16036                        Hong Kong 1820           0
## 16037                          Hungary 1820           0
## 16038                          Iceland 1820           0
## 16039                            India 1820           0
## 16040                        Indonesia 1820           0
## 16041                             Iran 1820           0
## 16042                             Iraq 1820           0
## 16043                          Ireland 1820           0
## 16044                           Israel 1820           0
## 16045                            Italy 1820           0
## 16046                          Jamaica 1820           0
## 16047                            Japan 1820           0
## 16048                           Jordan 1820           0
## 16049                       Kazakhstan 1820           0
## 16050                            Kenya 1820           0
## 16051                         Kiribati 1820           0
## 16052                           Kuwait 1820           0
## 16053                       Kyrgysztan 1820           0
## 16054                       Kyrgyzstan 1820           0
## 16055                             Laos 1820           0
## 16056                           Latvia 1820           0
## 16057                          Lebanon 1820           0
## 16058                          Lesotho 1820           0
## 16059                          Liberia 1820           0
## 16060                            Libya 1820           0
## 16061                    Liechtenstein 1820           0
## 16062                        Lithuania 1820           0
## 16063                       Luxembourg 1820           0
## 16064                            Macao 1820           0
## 16065                        Macedonia 1820           0
## 16066                       Madagascar 1820           0
## 16067                           Malawi 1820           0
## 16068                         Malaysia 1820           0
## 16069                         Maldives 1820           0
## 16070                             Mali 1820           0
## 16071                            Malta 1820           0
## 16072                 Marshall Islands 1820           0
## 16073                       Martinique 1820           0
## 16074                       Mauritania 1820           0
## 16075                        Mauritius 1820           0
## 16076                           Mexico 1820           0
## 16077             Micronesia (country) 1820           0
## 16078                      Middle East 1820           0
## 16079                          Moldova 1820           0
## 16080                         Mongolia 1820           0
## 16081                       Montenegro 1820           0
## 16082                       Montserrat 1820           0
## 16083                          Morocco 1820           0
## 16084                       Mozambique 1820           0
## 16085                          Myanmar 1820           0
## 16086                          Namibia 1820           0
## 16087                            Nauru 1820           0
## 16088                            Nepal 1820           0
## 16089                      Netherlands 1820           0
## 16090                    New Caledonia 1820           0
## 16091                      New Zealand 1820           0
## 16092                        Nicaragua 1820           0
## 16093                            Niger 1820           0
## 16094                          Nigeria 1820           0
## 16095                             Niue 1820           0
## 16096                      North Korea 1820           0
## 16097                           Norway 1820           0
## 16098                             Oman 1820           0
## 16099                         Pakistan 1820           0
## 16100                            Palau 1820           0
## 16101                        Palestine 1820           0
## 16102                           Panama 1820           0
## 16103                 Papua New Guinea 1820           0
## 16104                         Paraguay 1820           0
## 16105                             Peru 1820           0
## 16106                      Philippines 1820           0
## 16107                           Poland 1820    11600224
## 16108                         Portugal 1820           0
## 16109                            Qatar 1820           0
## 16110                          Reunion 1820           0
## 16111                          Romania 1820           0
## 16112                           Russia 1820           0
## 16113                           Rwanda 1820           0
## 16114                     Saint Helena 1820           0
## 16115            Saint Kitts and Nevis 1820           0
## 16116                      Saint Lucia 1820           0
## 16117        Saint Pierre and Miquelon 1820           0
## 16118 Saint Vincent and the Grenadines 1820           0
## 16119                            Samoa 1820           0
## 16120            Sao Tome and Principe 1820           0
## 16121                     Saudi Arabia 1820           0
## 16122                          Senegal 1820           0
## 16123                           Serbia 1820           0
## 16124                       Seychelles 1820           0
## 16125                     Sierra Leone 1820           0
## 16126                        Singapore 1820           0
## 16127        Sint Maarten (Dutch part) 1820           0
## 16128                         Slovakia 1820           0
## 16129                         Slovenia 1820           0
## 16130                  Solomon Islands 1820           0
## 16131                          Somalia 1820           0
## 16132                     South Africa 1820           0
## 16133                      South Korea 1820           0
## 16134                      South Sudan 1820           0
## 16135                            Spain 1820           0
## 16136                        Sri Lanka 1820           0
## 16137                            Sudan 1820           0
## 16138                         Suriname 1820           0
## 16139                        Swaziland 1820           0
## 16140                           Sweden 1820           0
## 16141                      Switzerland 1820           0
## 16142                            Syria 1820           0
## 16143                           Taiwan 1820           0
## 16144                       Tajikistan 1820           0
## 16145                         Tanzania 1820           0
## 16146                         Thailand 1820           0
## 16147                            Timor 1820           0
## 16148                             Togo 1820           0
## 16149                            Tonga 1820           0
## 16150              Trinidad and Tobago 1820           0
## 16151                          Tunisia 1820           0
## 16152                           Turkey 1820           0
## 16153                     Turkmenistan 1820           0
## 16154         Turks and Caicos Islands 1820           0
## 16155                           Tuvalu 1820           0
## 16156                           Uganda 1820           0
## 16157                          Ukraine 1820           0
## 16158             United Arab Emirates 1820           0
## 16159                   United Kingdom 1820  1475551424
## 16160                    United States 1820    10032032
## 16161                          Uruguay 1820           0
## 16162                       Uzbekistan 1820           0
## 16163                          Vanuatu 1820           0
## 16164                        Venezuela 1820           0
## 16165                          Vietnam 1820           0
## 16166        Wallis and Futuna Islands 1820           0
## 16167                            World 1820  1570379408
## 16168                            Yemen 1820           0
## 16169                           Zambia 1820           0
## 16170                         Zimbabwe 1820           0
## 16171                      Afghanistan 1821           0
## 16172                           Africa 1821           0
## 16173                          Albania 1821           0
## 16174                          Algeria 1821           0
## 16175                 Americas (other) 1821      135568
## 16176                          Andorra 1821           0
## 16177                           Angola 1821           0
## 16178                         Anguilla 1821           0
## 16179              Antarctic Fisheries 1821           0
## 16180              Antigua and Barbuda 1821           0
## 16181                        Argentina 1821           0
## 16182                          Armenia 1821           0
## 16183                            Aruba 1821           0
## 16184         Asia and Pacific (other) 1821           0
## 16185                        Australia 1821           0
## 16186                          Austria 1821     1113856
## 16187                       Azerbaijan 1821           0
## 16188                          Bahamas 1821           0
## 16189                          Bahrain 1821           0
## 16190                       Bangladesh 1821           0
## 16191                         Barbados 1821           0
## 16192                          Belarus 1821           0
## 16193                          Belgium 1821     6397344
## 16194                           Belize 1821           0
## 16195                            Benin 1821           0
## 16196                          Bermuda 1821           0
## 16197                           Bhutan 1821           0
## 16198                          Bolivia 1821           0
## 16199  Bonaire Sint Eustatius and Saba 1821           0
## 16200           Bosnia and Herzegovina 1821           0
## 16201                         Botswana 1821           0
## 16202                           Brazil 1821           0
## 16203           British Virgin Islands 1821           0
## 16204                           Brunei 1821           0
## 16205                         Bulgaria 1821           0
## 16206                     Burkina Faso 1821           0
## 16207                          Burundi 1821           0
## 16208                         Cambodia 1821           0
## 16209                         Cameroon 1821           0
## 16210                           Canada 1821      135568
## 16211                       Cape Verde 1821           0
## 16212                   Cayman Islands 1821           0
## 16213         Central African Republic 1821           0
## 16214                             Chad 1821           0
## 16215                            Chile 1821           0
## 16216                            China 1821           0
## 16217                 Christmas Island 1821           0
## 16218                         Colombia 1821           0
## 16219                          Comoros 1821           0
## 16220                            Congo 1821           0
## 16221                     Cook Islands 1821           0
## 16222                       Costa Rica 1821           0
## 16223                    Cote d'Ivoire 1821           0
## 16224                          Croatia 1821           0
## 16225                             Cuba 1821           0
## 16226                          Curacao 1821           0
## 16227                           Cyprus 1821           0
## 16228                   Czech Republic 1821           0
## 16229                   Czechoslovakia 1821           0
## 16230     Democratic Republic of Congo 1821           0
## 16231                          Denmark 1821           0
## 16232                         Djibouti 1821           0
## 16233                         Dominica 1821           0
## 16234               Dominican Republic 1821           0
## 16235                            EU-28 1821  1610818976
## 16236                          Ecuador 1821           0
## 16237                            Egypt 1821           0
## 16238                      El Salvador 1821           0
## 16239                Equatorial Guinea 1821           0
## 16240                          Eritrea 1821           0
## 16241                          Estonia 1821           0
## 16242                         Ethiopia 1821           0
## 16243                   Europe (other) 1821           0
## 16244                   Faeroe Islands 1821           0
## 16245                 Falkland Islands 1821           0
## 16246                             Fiji 1821           0
## 16247                          Finland 1821           0
## 16248                           France 1821    33298432
## 16249                    French Guiana 1821           0
## 16250                 French Polynesia 1821           0
## 16251                            Gabon 1821           0
## 16252                           Gambia 1821           0
## 16253                          Georgia 1821           0
## 16254                          Germany 1821    39157168
## 16255                            Ghana 1821           0
## 16256                        Gibraltar 1821           0
## 16257                           Greece 1821           0
## 16258                        Greenland 1821           0
## 16259                          Grenada 1821           0
## 16260                       Guadeloupe 1821           0
## 16261                        Guatemala 1821           0
## 16262                           Guinea 1821           0
## 16263                    Guinea-Bissau 1821           0
## 16264                           Guyana 1821           0
## 16265                            Haiti 1821           0
## 16266                         Honduras 1821           0
## 16267                        Hong Kong 1821           0
## 16268                          Hungary 1821           0
## 16269                          Iceland 1821           0
## 16270                            India 1821           0
## 16271                        Indonesia 1821           0
## 16272                             Iran 1821           0
## 16273                             Iraq 1821           0
## 16274                          Ireland 1821           0
## 16275                           Israel 1821           0
## 16276                            Italy 1821           0
## 16277                          Jamaica 1821           0
## 16278                            Japan 1821           0
## 16279                           Jordan 1821           0
## 16280                       Kazakhstan 1821           0
## 16281                            Kenya 1821           0
## 16282                         Kiribati 1821           0
## 16283                           Kuwait 1821           0
## 16284                       Kyrgysztan 1821           0
## 16285                       Kyrgyzstan 1821           0
## 16286                             Laos 1821           0
## 16287                           Latvia 1821           0
## 16288                          Lebanon 1821           0
## 16289                          Lesotho 1821           0
## 16290                          Liberia 1821           0
## 16291                            Libya 1821           0
## 16292                    Liechtenstein 1821           0
## 16293                        Lithuania 1821           0
## 16294                       Luxembourg 1821           0
## 16295                            Macao 1821           0
## 16296                        Macedonia 1821           0
## 16297                       Madagascar 1821           0
## 16298                           Malawi 1821           0
## 16299                         Malaysia 1821           0
## 16300                         Maldives 1821           0
## 16301                             Mali 1821           0
## 16302                            Malta 1821           0
## 16303                 Marshall Islands 1821           0
## 16304                       Martinique 1821           0
## 16305                       Mauritania 1821           0
## 16306                        Mauritius 1821           0
## 16307                           Mexico 1821           0
## 16308             Micronesia (country) 1821           0
## 16309                      Middle East 1821           0
## 16310                          Moldova 1821           0
## 16311                         Mongolia 1821           0
## 16312                       Montenegro 1821           0
## 16313                       Montserrat 1821           0
## 16314                          Morocco 1821           0
## 16315                       Mozambique 1821           0
## 16316                          Myanmar 1821           0
## 16317                          Namibia 1821           0
## 16318                            Nauru 1821           0
## 16319                            Nepal 1821           0
## 16320                      Netherlands 1821           0
## 16321                    New Caledonia 1821           0
## 16322                      New Zealand 1821           0
## 16323                        Nicaragua 1821           0
## 16324                            Niger 1821           0
## 16325                          Nigeria 1821           0
## 16326                             Niue 1821           0
## 16327                      North Korea 1821           0
## 16328                           Norway 1821           0
## 16329                             Oman 1821           0
## 16330                         Pakistan 1821           0
## 16331                            Palau 1821           0
## 16332                        Palestine 1821           0
## 16333                           Panama 1821           0
## 16334                 Papua New Guinea 1821           0
## 16335                         Paraguay 1821           0
## 16336                             Peru 1821           0
## 16337                      Philippines 1821           0
## 16338                           Poland 1821    12428288
## 16339                         Portugal 1821           0
## 16340                            Qatar 1821           0
## 16341                          Reunion 1821           0
## 16342                          Romania 1821           0
## 16343                           Russia 1821           0
## 16344                           Rwanda 1821           0
## 16345                     Saint Helena 1821           0
## 16346            Saint Kitts and Nevis 1821           0
## 16347                      Saint Lucia 1821           0
## 16348        Saint Pierre and Miquelon 1821           0
## 16349 Saint Vincent and the Grenadines 1821           0
## 16350                            Samoa 1821           0
## 16351            Sao Tome and Principe 1821           0
## 16352                     Saudi Arabia 1821           0
## 16353                          Senegal 1821           0
## 16354                           Serbia 1821           0
## 16355                       Seychelles 1821           0
## 16356                     Sierra Leone 1821           0
## 16357                        Singapore 1821           0
## 16358        Sint Maarten (Dutch part) 1821           0
## 16359                         Slovakia 1821           0
## 16360                         Slovenia 1821           0
## 16361                  Solomon Islands 1821           0
## 16362                          Somalia 1821           0
## 16363                     South Africa 1821           0
## 16364                      South Korea 1821           0
## 16365                      South Sudan 1821           0
## 16366                            Spain 1821           0
## 16367                        Sri Lanka 1821           0
## 16368                            Sudan 1821           0
## 16369                         Suriname 1821           0
## 16370                        Swaziland 1821           0
## 16371                           Sweden 1821           0
## 16372                      Switzerland 1821           0
## 16373                            Syria 1821           0
## 16374                           Taiwan 1821           0
## 16375                       Tajikistan 1821           0
## 16376                         Tanzania 1821           0
## 16377                         Thailand 1821           0
## 16378                            Timor 1821           0
## 16379                             Togo 1821           0
## 16380                            Tonga 1821           0
## 16381              Trinidad and Tobago 1821           0
## 16382                          Tunisia 1821           0
## 16383                           Turkey 1821           0
## 16384                     Turkmenistan 1821           0
## 16385         Turks and Caicos Islands 1821           0
## 16386                           Tuvalu 1821           0
## 16387                           Uganda 1821           0
## 16388                          Ukraine 1821           0
## 16389             United Arab Emirates 1821           0
## 16390                   United Kingdom 1821  1518423888
## 16391                    United States 1821    10860096
## 16392                          Uruguay 1821           0
## 16393                       Uzbekistan 1821           0
## 16394                          Vanuatu 1821           0
## 16395                        Venezuela 1821           0
## 16396                          Vietnam 1821           0
## 16397        Wallis and Futuna Islands 1821           0
## 16398                            World 1821  1621814640
## 16399                            Yemen 1821           0
## 16400                           Zambia 1821           0
## 16401                         Zimbabwe 1821           0
## 16402                      Afghanistan 1822           0
## 16403                           Africa 1822           0
## 16404                          Albania 1822           0
## 16405                          Algeria 1822           0
## 16406                 Americas (other) 1822      139232
## 16407                          Andorra 1822           0
## 16408                           Angola 1822           0
## 16409                         Anguilla 1822           0
## 16410              Antarctic Fisheries 1822           0
## 16411              Antigua and Barbuda 1822           0
## 16412                        Argentina 1822           0
## 16413                          Armenia 1822           0
## 16414                            Aruba 1822           0
## 16415         Asia and Pacific (other) 1822           0
## 16416                        Australia 1822           0
## 16417                          Austria 1822     1480256
## 16418                       Azerbaijan 1822           0
## 16419                          Bahamas 1822           0
## 16420                          Bahrain 1822           0
## 16421                       Bangladesh 1822           0
## 16422                         Barbados 1822           0
## 16423                          Belarus 1822           0
## 16424                          Belgium 1822     6397344
## 16425                           Belize 1822           0
## 16426                            Benin 1822           0
## 16427                          Bermuda 1822           0
## 16428                           Bhutan 1822           0
## 16429                          Bolivia 1822           0
## 16430  Bonaire Sint Eustatius and Saba 1822           0
## 16431           Bosnia and Herzegovina 1822           0
## 16432                         Botswana 1822           0
## 16433                           Brazil 1822           0
## 16434           British Virgin Islands 1822           0
## 16435                           Brunei 1822           0
## 16436                         Bulgaria 1822           0
## 16437                     Burkina Faso 1822           0
## 16438                          Burundi 1822           0
## 16439                         Cambodia 1822           0
## 16440                         Cameroon 1822           0
## 16441                           Canada 1822      139232
## 16442                       Cape Verde 1822           0
## 16443                   Cayman Islands 1822           0
## 16444         Central African Republic 1822           0
## 16445                             Chad 1822           0
## 16446                            Chile 1822           0
## 16447                            China 1822           0
## 16448                 Christmas Island 1822           0
## 16449                         Colombia 1822           0
## 16450                          Comoros 1822           0
## 16451                            Congo 1822           0
## 16452                     Cook Islands 1822           0
## 16453                       Costa Rica 1822           0
## 16454                    Cote d'Ivoire 1822           0
## 16455                          Croatia 1822           0
## 16456                             Cuba 1822           0
## 16457                          Curacao 1822           0
## 16458                           Cyprus 1822           0
## 16459                   Czech Republic 1822           0
## 16460                   Czechoslovakia 1822           0
## 16461     Democratic Republic of Congo 1822           0
## 16462                          Denmark 1822           0
## 16463                         Djibouti 1822           0
## 16464                         Dominica 1822           0
## 16465               Dominican Republic 1822           0
## 16466                            EU-28 1822  1663415696
## 16467                          Ecuador 1822           0
## 16468                            Egypt 1822           0
## 16469                      El Salvador 1822           0
## 16470                Equatorial Guinea 1822           0
## 16471                          Eritrea 1822           0
## 16472                          Estonia 1822           0
## 16473                         Ethiopia 1822           0
## 16474                   Europe (other) 1822           0
## 16475                   Faeroe Islands 1822           0
## 16476                 Falkland Islands 1822           0
## 16477                             Fiji 1822           0
## 16478                          Finland 1822           0
## 16479                           France 1822    36467792
## 16480                    French Guiana 1822           0
## 16481                 French Polynesia 1822           0
## 16482                            Gabon 1822           0
## 16483                           Gambia 1822           0
## 16484                          Georgia 1822           0
## 16485                          Germany 1822    42788192
## 16486                            Ghana 1822           0
## 16487                        Gibraltar 1822           0
## 16488                           Greece 1822           0
## 16489                        Greenland 1822           0
## 16490                          Grenada 1822           0
## 16491                       Guadeloupe 1822           0
## 16492                        Guatemala 1822           0
## 16493                           Guinea 1822           0
## 16494                    Guinea-Bissau 1822           0
## 16495                           Guyana 1822           0
## 16496                            Haiti 1822           0
## 16497                         Honduras 1822           0
## 16498                        Hong Kong 1822           0
## 16499                          Hungary 1822           0
## 16500                          Iceland 1822           0
## 16501                            India 1822           0
## 16502                        Indonesia 1822           0
## 16503                             Iran 1822           0
## 16504                             Iraq 1822           0
## 16505                          Ireland 1822           0
## 16506                           Israel 1822           0
## 16507                            Italy 1822           0
## 16508                          Jamaica 1822           0
## 16509                            Japan 1822           0
## 16510                           Jordan 1822           0
## 16511                       Kazakhstan 1822           0
## 16512                            Kenya 1822           0
## 16513                         Kiribati 1822           0
## 16514                           Kuwait 1822           0
## 16515                       Kyrgysztan 1822           0
## 16516                       Kyrgyzstan 1822           0
## 16517                             Laos 1822           0
## 16518                           Latvia 1822           0
## 16519                          Lebanon 1822           0
## 16520                          Lesotho 1822           0
## 16521                          Liberia 1822           0
## 16522                            Libya 1822           0
## 16523                    Liechtenstein 1822           0
## 16524                        Lithuania 1822           0
## 16525                       Luxembourg 1822           0
## 16526                            Macao 1822           0
## 16527                        Macedonia 1822           0
## 16528                       Madagascar 1822           0
## 16529                           Malawi 1822           0
## 16530                         Malaysia 1822           0
## 16531                         Maldives 1822           0
## 16532                             Mali 1822           0
## 16533                            Malta 1822           0
## 16534                 Marshall Islands 1822           0
## 16535                       Martinique 1822           0
## 16536                       Mauritania 1822           0
## 16537                        Mauritius 1822           0
## 16538                           Mexico 1822           0
## 16539             Micronesia (country) 1822           0
## 16540                      Middle East 1822           0
## 16541                          Moldova 1822           0
## 16542                         Mongolia 1822           0
## 16543                       Montenegro 1822           0
## 16544                       Montserrat 1822           0
## 16545                          Morocco 1822           0
## 16546                       Mozambique 1822           0
## 16547                          Myanmar 1822           0
## 16548                          Namibia 1822           0
## 16549                            Nauru 1822           0
## 16550                            Nepal 1822           0
## 16551                      Netherlands 1822           0
## 16552                    New Caledonia 1822           0
## 16553                      New Zealand 1822           0
## 16554                        Nicaragua 1822           0
## 16555                            Niger 1822           0
## 16556                          Nigeria 1822           0
## 16557                             Niue 1822           0
## 16558                      North Korea 1822           0
## 16559                           Norway 1822           0
## 16560                             Oman 1822           0
## 16561                         Pakistan 1822           0
## 16562                            Palau 1822           0
## 16563                        Palestine 1822           0
## 16564                           Panama 1822           0
## 16565                 Papua New Guinea 1822           0
## 16566                         Paraguay 1822           0
## 16567                             Peru 1822           0
## 16568                      Philippines 1822           0
## 16569                           Poland 1822    13336960
## 16570                         Portugal 1822           0
## 16571                            Qatar 1822           0
## 16572                          Reunion 1822           0
## 16573                          Romania 1822           0
## 16574                           Russia 1822           0
## 16575                           Rwanda 1822           0
## 16576                     Saint Helena 1822           0
## 16577            Saint Kitts and Nevis 1822           0
## 16578                      Saint Lucia 1822           0
## 16579        Saint Pierre and Miquelon 1822           0
## 16580 Saint Vincent and the Grenadines 1822           0
## 16581                            Samoa 1822           0
## 16582            Sao Tome and Principe 1822           0
## 16583                     Saudi Arabia 1822           0
## 16584                          Senegal 1822           0
## 16585                           Serbia 1822           0
## 16586                       Seychelles 1822           0
## 16587                     Sierra Leone 1822           0
## 16588                        Singapore 1822           0
## 16589        Sint Maarten (Dutch part) 1822           0
## 16590                         Slovakia 1822           0
## 16591                         Slovenia 1822           0
## 16592                  Solomon Islands 1822           0
## 16593                          Somalia 1822           0
## 16594                     South Africa 1822           0
## 16595                      South Korea 1822           0
## 16596                      South Sudan 1822           0
## 16597                            Spain 1822           0
## 16598                        Sri Lanka 1822           0
## 16599                            Sudan 1822           0
## 16600                         Suriname 1822           0
## 16601                        Swaziland 1822           0
## 16602                           Sweden 1822           0
## 16603                      Switzerland 1822           0
## 16604                            Syria 1822           0
## 16605                           Taiwan 1822           0
## 16606                       Tajikistan 1822           0
## 16607                         Tanzania 1822           0
## 16608                         Thailand 1822           0
## 16609                            Timor 1822           0
## 16610                             Togo 1822           0
## 16611                            Tonga 1822           0
## 16612              Trinidad and Tobago 1822           0
## 16613                          Tunisia 1822           0
## 16614                           Turkey 1822           0
## 16615                     Turkmenistan 1822           0
## 16616         Turks and Caicos Islands 1822           0
## 16617                           Tuvalu 1822           0
## 16618                           Uganda 1822           0
## 16619                          Ukraine 1822           0
## 16620             United Arab Emirates 1822           0
## 16621                   United Kingdom 1822  1562945152
## 16622                    United States 1822    11724800
## 16623                          Uruguay 1822           0
## 16624                       Uzbekistan 1822           0
## 16625                          Vanuatu 1822           0
## 16626                        Venezuela 1822           0
## 16627                          Vietnam 1822           0
## 16628        Wallis and Futuna Islands 1822           0
## 16629                            World 1822  1675279728
## 16630                            Yemen 1822           0
## 16631                           Zambia 1822           0
## 16632                         Zimbabwe 1822           0
## 16633                      Afghanistan 1823           0
## 16634                           Africa 1823           0
## 16635                          Albania 1823           0
## 16636                          Algeria 1823           0
## 16637                 Americas (other) 1823      142896
## 16638                          Andorra 1823           0
## 16639                           Angola 1823           0
## 16640                         Anguilla 1823           0
## 16641              Antarctic Fisheries 1823           0
## 16642              Antigua and Barbuda 1823           0
## 16643                        Argentina 1823           0
## 16644                          Armenia 1823           0
## 16645                            Aruba 1823           0
## 16646         Asia and Pacific (other) 1823           0
## 16647                        Australia 1823           0
## 16648                          Austria 1823     1828336
## 16649                       Azerbaijan 1823           0
## 16650                          Bahamas 1823           0
## 16651                          Bahrain 1823           0
## 16652                       Bangladesh 1823           0
## 16653                         Barbados 1823           0
## 16654                          Belarus 1823           0
## 16655                          Belgium 1823     6397344
## 16656                           Belize 1823           0
## 16657                            Benin 1823           0
## 16658                          Bermuda 1823           0
## 16659                           Bhutan 1823           0
## 16660                          Bolivia 1823           0
## 16661  Bonaire Sint Eustatius and Saba 1823           0
## 16662           Bosnia and Herzegovina 1823           0
## 16663                         Botswana 1823           0
## 16664                           Brazil 1823           0
## 16665           British Virgin Islands 1823           0
## 16666                           Brunei 1823           0
## 16667                         Bulgaria 1823           0
## 16668                     Burkina Faso 1823           0
## 16669                          Burundi 1823           0
## 16670                         Cambodia 1823           0
## 16671                         Cameroon 1823           0
## 16672                           Canada 1823      142896
## 16673                       Cape Verde 1823           0
## 16674                   Cayman Islands 1823           0
## 16675         Central African Republic 1823           0
## 16676                             Chad 1823           0
## 16677                            Chile 1823           0
## 16678                            China 1823           0
## 16679                 Christmas Island 1823           0
## 16680                         Colombia 1823           0
## 16681                          Comoros 1823           0
## 16682                            Congo 1823           0
## 16683                     Cook Islands 1823           0
## 16684                       Costa Rica 1823           0
## 16685                    Cote d'Ivoire 1823           0
## 16686                          Croatia 1823           0
## 16687                             Cuba 1823           0
## 16688                          Curacao 1823           0
## 16689                           Cyprus 1823           0
## 16690                   Czech Republic 1823           0
## 16691                   Czechoslovakia 1823           0
## 16692     Democratic Republic of Congo 1823           0
## 16693                          Denmark 1823           0
## 16694                         Djibouti 1823           0
## 16695                         Dominica 1823           0
## 16696               Dominican Republic 1823           0
## 16697                            EU-28 1823  1719060864
## 16698                          Ecuador 1823           0
## 16699                            Egypt 1823           0
## 16700                      El Salvador 1823           0
## 16701                Equatorial Guinea 1823           0
## 16702                          Eritrea 1823           0
## 16703                          Estonia 1823           0
## 16704                         Ethiopia 1823           0
## 16705                   Europe (other) 1823           0
## 16706                   Faeroe Islands 1823           0
## 16707                 Falkland Islands 1823           0
## 16708                             Fiji 1823           0
## 16709                          Finland 1823           0
## 16710                           France 1823    39637152
## 16711                    French Guiana 1823           0
## 16712                 French Polynesia 1823           0
## 16713                            Gabon 1823           0
## 16714                           Gambia 1823           0
## 16715                          Georgia 1823           0
## 16716                          Germany 1823    46822256
## 16717                            Ghana 1823           0
## 16718                        Gibraltar 1823           0
## 16719                           Greece 1823           0
## 16720                        Greenland 1823           0
## 16721                          Grenada 1823           0
## 16722                       Guadeloupe 1823           0
## 16723                        Guatemala 1823           0
## 16724                           Guinea 1823           0
## 16725                    Guinea-Bissau 1823           0
## 16726                           Guyana 1823           0
## 16727                            Haiti 1823           0
## 16728                         Honduras 1823           0
## 16729                        Hong Kong 1823           0
## 16730                          Hungary 1823           0
## 16731                          Iceland 1823           0
## 16732                            India 1823           0
## 16733                        Indonesia 1823           0
## 16734                             Iran 1823           0
## 16735                             Iraq 1823           0
## 16736                          Ireland 1823           0
## 16737                           Israel 1823           0
## 16738                            Italy 1823           0
## 16739                          Jamaica 1823           0
## 16740                            Japan 1823           0
## 16741                           Jordan 1823           0
## 16742                       Kazakhstan 1823           0
## 16743                            Kenya 1823           0
## 16744                         Kiribati 1823           0
## 16745                           Kuwait 1823           0
## 16746                       Kyrgysztan 1823           0
## 16747                       Kyrgyzstan 1823           0
## 16748                             Laos 1823           0
## 16749                           Latvia 1823           0
## 16750                          Lebanon 1823           0
## 16751                          Lesotho 1823           0
## 16752                          Liberia 1823           0
## 16753                            Libya 1823           0
## 16754                    Liechtenstein 1823           0
## 16755                        Lithuania 1823           0
## 16756                       Luxembourg 1823           0
## 16757                            Macao 1823           0
## 16758                        Macedonia 1823           0
## 16759                       Madagascar 1823           0
## 16760                           Malawi 1823           0
## 16761                         Malaysia 1823           0
## 16762                         Maldives 1823           0
## 16763                             Mali 1823           0
## 16764                            Malta 1823           0
## 16765                 Marshall Islands 1823           0
## 16766                       Martinique 1823           0
## 16767                       Mauritania 1823           0
## 16768                        Mauritius 1823           0
## 16769                           Mexico 1823           0
## 16770             Micronesia (country) 1823           0
## 16771                      Middle East 1823           0
## 16772                          Moldova 1823           0
## 16773                         Mongolia 1823           0
## 16774                       Montenegro 1823           0
## 16775                       Montserrat 1823           0
## 16776                          Morocco 1823           0
## 16777                       Mozambique 1823           0
## 16778                          Myanmar 1823           0
## 16779                          Namibia 1823           0
## 16780                            Nauru 1823           0
## 16781                            Nepal 1823           0
## 16782                      Netherlands 1823           0
## 16783                    New Caledonia 1823           0
## 16784                      New Zealand 1823           0
## 16785                        Nicaragua 1823           0
## 16786                            Niger 1823           0
## 16787                          Nigeria 1823           0
## 16788                             Niue 1823           0
## 16789                      North Korea 1823           0
## 16790                           Norway 1823           0
## 16791                             Oman 1823           0
## 16792                         Pakistan 1823           0
## 16793                            Palau 1823           0
## 16794                        Palestine 1823           0
## 16795                           Panama 1823           0
## 16796                 Papua New Guinea 1823           0
## 16797                         Paraguay 1823           0
## 16798                             Peru 1823           0
## 16799                      Philippines 1823           0
## 16800                           Poland 1823    14557072
## 16801                         Portugal 1823           0
## 16802                            Qatar 1823           0
## 16803                          Reunion 1823           0
## 16804                          Romania 1823           0
## 16805                           Russia 1823           0
## 16806                           Rwanda 1823           0
## 16807                     Saint Helena 1823           0
## 16808            Saint Kitts and Nevis 1823           0
## 16809                      Saint Lucia 1823           0
## 16810        Saint Pierre and Miquelon 1823           0
## 16811 Saint Vincent and the Grenadines 1823           0
## 16812                            Samoa 1823           0
## 16813            Sao Tome and Principe 1823           0
## 16814                     Saudi Arabia 1823           0
## 16815                          Senegal 1823           0
## 16816                           Serbia 1823           0
## 16817                       Seychelles 1823           0
## 16818                     Sierra Leone 1823           0
## 16819                        Singapore 1823           0
## 16820        Sint Maarten (Dutch part) 1823           0
## 16821                         Slovakia 1823           0
## 16822                         Slovenia 1823           0
## 16823                  Solomon Islands 1823           0
## 16824                          Somalia 1823           0
## 16825                     South Africa 1823           0
## 16826                      South Korea 1823           0
## 16827                      South Sudan 1823           0
## 16828                            Spain 1823           0
## 16829                        Sri Lanka 1823           0
## 16830                            Sudan 1823           0
## 16831                         Suriname 1823           0
## 16832                        Swaziland 1823           0
## 16833                           Sweden 1823           0
## 16834                      Switzerland 1823           0
## 16835                            Syria 1823           0
## 16836                           Taiwan 1823           0
## 16837                       Tajikistan 1823           0
## 16838                         Tanzania 1823           0
## 16839                         Thailand 1823           0
## 16840                            Timor 1823           0
## 16841                             Togo 1823           0
## 16842                            Tonga 1823           0
## 16843              Trinidad and Tobago 1823           0
## 16844                          Tunisia 1823           0
## 16845                           Turkey 1823           0
## 16846                     Turkmenistan 1823           0
## 16847         Turks and Caicos Islands 1823           0
## 16848                           Tuvalu 1823           0
## 16849                           Uganda 1823           0
## 16850                          Ukraine 1823           0
## 16851             United Arab Emirates 1823           0
## 16852                   United Kingdom 1823  1609818704
## 16853                    United States 1823    12626144
## 16854                          Uruguay 1823           0
## 16855                       Uzbekistan 1823           0
## 16856                          Vanuatu 1823           0
## 16857                        Venezuela 1823           0
## 16858                          Vietnam 1823           0
## 16859        Wallis and Futuna Islands 1823           0
## 16860                            World 1823  1731829904
## 16861                            Yemen 1823           0
## 16862                           Zambia 1823           0
## 16863                         Zimbabwe 1823           0
## 16864                      Afghanistan 1824           0
## 16865                           Africa 1824           0
## 16866                          Albania 1824           0
## 16867                          Algeria 1824           0
## 16868                 Americas (other) 1824      146560
## 16869                          Andorra 1824           0
## 16870                           Angola 1824           0
## 16871                         Anguilla 1824           0
## 16872              Antarctic Fisheries 1824           0
## 16873              Antigua and Barbuda 1824           0
## 16874                        Argentina 1824           0
## 16875                          Armenia 1824           0
## 16876                            Aruba 1824           0
## 16877         Asia and Pacific (other) 1824           0
## 16878                        Australia 1824           0
## 16879                          Austria 1824     2227712
## 16880                       Azerbaijan 1824           0
## 16881                          Bahamas 1824           0
## 16882                          Bahrain 1824           0
## 16883                       Bangladesh 1824           0
## 16884                         Barbados 1824           0
## 16885                          Belarus 1824           0
## 16886                          Belgium 1824     6397344
## 16887                           Belize 1824           0
## 16888                            Benin 1824           0
## 16889                          Bermuda 1824           0
## 16890                           Bhutan 1824           0
## 16891                          Bolivia 1824           0
## 16892  Bonaire Sint Eustatius and Saba 1824           0
## 16893           Bosnia and Herzegovina 1824           0
## 16894                         Botswana 1824           0
## 16895                           Brazil 1824           0
## 16896           British Virgin Islands 1824           0
## 16897                           Brunei 1824           0
## 16898                         Bulgaria 1824           0
## 16899                     Burkina Faso 1824           0
## 16900                          Burundi 1824           0
## 16901                         Cambodia 1824           0
## 16902                         Cameroon 1824           0
## 16903                           Canada 1824      146560
## 16904                       Cape Verde 1824           0
## 16905                   Cayman Islands 1824           0
## 16906         Central African Republic 1824           0
## 16907                             Chad 1824           0
## 16908                            Chile 1824           0
## 16909                            China 1824           0
## 16910                 Christmas Island 1824           0
## 16911                         Colombia 1824           0
## 16912                          Comoros 1824           0
## 16913                            Congo 1824           0
## 16914                     Cook Islands 1824           0
## 16915                       Costa Rica 1824           0
## 16916                    Cote d'Ivoire 1824           0
## 16917                          Croatia 1824           0
## 16918                             Cuba 1824           0
## 16919                          Curacao 1824           0
## 16920                           Cyprus 1824           0
## 16921                   Czech Republic 1824           0
## 16922                   Czechoslovakia 1824           0
## 16923     Democratic Republic of Congo 1824           0
## 16924                          Denmark 1824           0
## 16925                         Djibouti 1824           0
## 16926                         Dominica 1824           0
## 16927               Dominican Republic 1824           0
## 16928                            EU-28 1824  1776567344
## 16929                          Ecuador 1824           0
## 16930                            Egypt 1824           0
## 16931                      El Salvador 1824           0
## 16932                Equatorial Guinea 1824           0
## 16933                          Eritrea 1824           0
## 16934                          Estonia 1824           0
## 16935                         Ethiopia 1824           0
## 16936                   Europe (other) 1824           0
## 16937                   Faeroe Islands 1824           0
## 16938                 Falkland Islands 1824           0
## 16939                             Fiji 1824           0
## 16940                          Finland 1824           0
## 16941                           France 1824    43154592
## 16942                    French Guiana 1824           0
## 16943                 French Polynesia 1824           0
## 16944                            Gabon 1824           0
## 16945                           Gambia 1824           0
## 16946                          Georgia 1824           0
## 16947                          Germany 1824    50053904
## 16948                            Ghana 1824           0
## 16949                        Gibraltar 1824           0
## 16950                           Greece 1824           0
## 16951                        Greenland 1824           0
## 16952                          Grenada 1824           0
## 16953                       Guadeloupe 1824           0
## 16954                        Guatemala 1824           0
## 16955                           Guinea 1824           0
## 16956                    Guinea-Bissau 1824           0
## 16957                           Guyana 1824           0
## 16958                            Haiti 1824           0
## 16959                         Honduras 1824           0
## 16960                        Hong Kong 1824           0
## 16961                          Hungary 1824           0
## 16962                          Iceland 1824           0
## 16963                            India 1824           0
## 16964                        Indonesia 1824           0
## 16965                             Iran 1824           0
## 16966                             Iraq 1824           0
## 16967                          Ireland 1824           0
## 16968                           Israel 1824           0
## 16969                            Italy 1824           0
## 16970                          Jamaica 1824           0
## 16971                            Japan 1824           0
## 16972                           Jordan 1824           0
## 16973                       Kazakhstan 1824           0
## 16974                            Kenya 1824           0
## 16975                         Kiribati 1824           0
## 16976                           Kuwait 1824           0
## 16977                       Kyrgysztan 1824           0
## 16978                       Kyrgyzstan 1824           0
## 16979                             Laos 1824           0
## 16980                           Latvia 1824           0
## 16981                          Lebanon 1824           0
## 16982                          Lesotho 1824           0
## 16983                          Liberia 1824           0
## 16984                            Libya 1824           0
## 16985                    Liechtenstein 1824           0
## 16986                        Lithuania 1824           0
## 16987                       Luxembourg 1824           0
## 16988                            Macao 1824           0
## 16989                        Macedonia 1824           0
## 16990                       Madagascar 1824           0
## 16991                           Malawi 1824           0
## 16992                         Malaysia 1824           0
## 16993                         Maldives 1824           0
## 16994                             Mali 1824           0
## 16995                            Malta 1824           0
## 16996                 Marshall Islands 1824           0
## 16997                       Martinique 1824           0
## 16998                       Mauritania 1824           0
## 16999                        Mauritius 1824           0
## 17000                           Mexico 1824           0
## 17001             Micronesia (country) 1824           0
## 17002                      Middle East 1824           0
## 17003                          Moldova 1824           0
## 17004                         Mongolia 1824           0
## 17005                       Montenegro 1824           0
## 17006                       Montserrat 1824           0
## 17007                          Morocco 1824           0
## 17008                       Mozambique 1824           0
## 17009                          Myanmar 1824           0
## 17010                          Namibia 1824           0
## 17011                            Nauru 1824           0
## 17012                            Nepal 1824           0
## 17013                      Netherlands 1824           0
## 17014                    New Caledonia 1824           0
## 17015                      New Zealand 1824           0
## 17016                        Nicaragua 1824           0
## 17017                            Niger 1824           0
## 17018                          Nigeria 1824           0
## 17019                             Niue 1824           0
## 17020                      North Korea 1824           0
## 17021                           Norway 1824           0
## 17022                             Oman 1824           0
## 17023                         Pakistan 1824           0
## 17024                            Palau 1824           0
## 17025                        Palestine 1824           0
## 17026                           Panama 1824           0
## 17027                 Papua New Guinea 1824           0
## 17028                         Paraguay 1824           0
## 17029                             Peru 1824           0
## 17030                      Philippines 1824           0
## 17031                           Poland 1824    15832144
## 17032                         Portugal 1824           0
## 17033                            Qatar 1824           0
## 17034                          Reunion 1824           0
## 17035                          Romania 1824           0
## 17036                           Russia 1824           0
## 17037                           Rwanda 1824           0
## 17038                     Saint Helena 1824           0
## 17039            Saint Kitts and Nevis 1824           0
## 17040                      Saint Lucia 1824           0
## 17041        Saint Pierre and Miquelon 1824           0
## 17042 Saint Vincent and the Grenadines 1824           0
## 17043                            Samoa 1824           0
## 17044            Sao Tome and Principe 1824           0
## 17045                     Saudi Arabia 1824           0
## 17046                          Senegal 1824           0
## 17047                           Serbia 1824           0
## 17048                       Seychelles 1824           0
## 17049                     Sierra Leone 1824           0
## 17050                        Singapore 1824           0
## 17051        Sint Maarten (Dutch part) 1824           0
## 17052                         Slovakia 1824           0
## 17053                         Slovenia 1824           0
## 17054                  Solomon Islands 1824           0
## 17055                          Somalia 1824           0
## 17056                     South Africa 1824           0
## 17057                      South Korea 1824           0
## 17058                      South Sudan 1824           0
## 17059                            Spain 1824           0
## 17060                        Sri Lanka 1824           0
## 17061                            Sudan 1824           0
## 17062                         Suriname 1824           0
## 17063                        Swaziland 1824           0
## 17064                           Sweden 1824           0
## 17065                      Switzerland 1824           0
## 17066                            Syria 1824           0
## 17067                           Taiwan 1824           0
## 17068                       Tajikistan 1824           0
## 17069                         Tanzania 1824           0
## 17070                         Thailand 1824           0
## 17071                            Timor 1824           0
## 17072                             Togo 1824           0
## 17073                            Tonga 1824           0
## 17074              Trinidad and Tobago 1824           0
## 17075                          Tunisia 1824           0
## 17076                           Turkey 1824           0
## 17077                     Turkmenistan 1824           0
## 17078         Turks and Caicos Islands 1824           0
## 17079                           Tuvalu 1824           0
## 17080                           Uganda 1824           0
## 17081                          Ukraine 1824           0
## 17082             United Arab Emirates 1824           0
## 17083                   United Kingdom 1824  1658901648
## 17084                    United States 1824    13641072
## 17085                          Uruguay 1824           0
## 17086                       Uzbekistan 1824           0
## 17087                          Vanuatu 1824           0
## 17088                        Venezuela 1824           0
## 17089                          Vietnam 1824           0
## 17090        Wallis and Futuna Islands 1824           0
## 17091                            World 1824  1790354976
## 17092                            Yemen 1824           0
## 17093                           Zambia 1824           0
## 17094                         Zimbabwe 1824           0
## 17095                      Afghanistan 1825           0
## 17096                           Africa 1825           0
## 17097                          Albania 1825           0
## 17098                          Algeria 1825           0
## 17099                 Americas (other) 1825      150224
## 17100                          Andorra 1825           0
## 17101                           Angola 1825           0
## 17102                         Anguilla 1825           0
## 17103              Antarctic Fisheries 1825           0
## 17104              Antigua and Barbuda 1825           0
## 17105                        Argentina 1825           0
## 17106                          Armenia 1825           0
## 17107                            Aruba 1825           0
## 17108         Asia and Pacific (other) 1825           0
## 17109                        Australia 1825           0
## 17110                          Austria 1825     2630752
## 17111                       Azerbaijan 1825           0
## 17112                          Bahamas 1825           0
## 17113                          Bahrain 1825           0
## 17114                       Bangladesh 1825           0
## 17115                         Barbados 1825           0
## 17116                          Belarus 1825           0
## 17117                          Belgium 1825     6397344
## 17118                           Belize 1825           0
## 17119                            Benin 1825           0
## 17120                          Bermuda 1825           0
## 17121                           Bhutan 1825           0
## 17122                          Bolivia 1825           0
## 17123  Bonaire Sint Eustatius and Saba 1825           0
## 17124           Bosnia and Herzegovina 1825           0
## 17125                         Botswana 1825           0
## 17126                           Brazil 1825           0
## 17127           British Virgin Islands 1825           0
## 17128                           Brunei 1825           0
## 17129                         Bulgaria 1825           0
## 17130                     Burkina Faso 1825           0
## 17131                          Burundi 1825           0
## 17132                         Cambodia 1825           0
## 17133                         Cameroon 1825           0
## 17134                           Canada 1825      150224
## 17135                       Cape Verde 1825           0
## 17136                   Cayman Islands 1825           0
## 17137         Central African Republic 1825           0
## 17138                             Chad 1825           0
## 17139                            Chile 1825           0
## 17140                            China 1825           0
## 17141                 Christmas Island 1825           0
## 17142                         Colombia 1825           0
## 17143                          Comoros 1825           0
## 17144                            Congo 1825           0
## 17145                     Cook Islands 1825           0
## 17146                       Costa Rica 1825           0
## 17147                    Cote d'Ivoire 1825           0
## 17148                          Croatia 1825           0
## 17149                             Cuba 1825           0
## 17150                          Curacao 1825           0
## 17151                           Cyprus 1825           0
## 17152                   Czech Republic 1825           0
## 17153                   Czechoslovakia 1825           0
## 17154     Democratic Republic of Congo 1825           0
## 17155                          Denmark 1825           0
## 17156                         Djibouti 1825           0
## 17157                         Dominica 1825           0
## 17158               Dominican Republic 1825           0
## 17159                            EU-28 1825  1836184288
## 17160                          Ecuador 1825           0
## 17161                            Egypt 1825           0
## 17162                      El Salvador 1825           0
## 17163                Equatorial Guinea 1825           0
## 17164                          Eritrea 1825           0
## 17165                          Estonia 1825           0
## 17166                         Ethiopia 1825           0
## 17167                   Europe (other) 1825           0
## 17168                   Faeroe Islands 1825           0
## 17169                 Falkland Islands 1825           0
## 17170                             Fiji 1825           0
## 17171                          Finland 1825           0
## 17172                           France 1825    47111712
## 17173                    French Guiana 1825           0
## 17174                 French Polynesia 1825           0
## 17175                            Gabon 1825           0
## 17176                           Gambia 1825           0
## 17177                          Georgia 1825           0
## 17178                          Germany 1825    54392080
## 17179                            Ghana 1825           0
## 17180                        Gibraltar 1825           0
## 17181                           Greece 1825           0
## 17182                        Greenland 1825           0
## 17183                          Grenada 1825           0
## 17184                       Guadeloupe 1825           0
## 17185                        Guatemala 1825           0
## 17186                           Guinea 1825           0
## 17187                    Guinea-Bissau 1825           0
## 17188                           Guyana 1825           0
## 17189                            Haiti 1825           0
## 17190                         Honduras 1825           0
## 17191                        Hong Kong 1825           0
## 17192                          Hungary 1825           0
## 17193                          Iceland 1825           0
## 17194                            India 1825           0
## 17195                        Indonesia 1825           0
## 17196                             Iran 1825           0
## 17197                             Iraq 1825           0
## 17198                          Ireland 1825           0
## 17199                           Israel 1825           0
## 17200                            Italy 1825           0
## 17201                          Jamaica 1825           0
## 17202                            Japan 1825           0
## 17203                           Jordan 1825           0
## 17204                       Kazakhstan 1825           0
## 17205                            Kenya 1825           0
## 17206                         Kiribati 1825           0
## 17207                           Kuwait 1825           0
## 17208                       Kyrgysztan 1825           0
## 17209                       Kyrgyzstan 1825           0
## 17210                             Laos 1825           0
## 17211                           Latvia 1825           0
## 17212                          Lebanon 1825           0
## 17213                          Lesotho 1825           0
## 17214                          Liberia 1825           0
## 17215                            Libya 1825           0
## 17216                    Liechtenstein 1825           0
## 17217                        Lithuania 1825           0
## 17218                       Luxembourg 1825           0
## 17219                            Macao 1825           0
## 17220                        Macedonia 1825           0
## 17221                       Madagascar 1825           0
## 17222                           Malawi 1825           0
## 17223                         Malaysia 1825           0
## 17224                         Maldives 1825           0
## 17225                             Mali 1825           0
## 17226                            Malta 1825           0
## 17227                 Marshall Islands 1825           0
## 17228                       Martinique 1825           0
## 17229                       Mauritania 1825           0
## 17230                        Mauritius 1825           0
## 17231                           Mexico 1825           0
## 17232             Micronesia (country) 1825           0
## 17233                      Middle East 1825           0
## 17234                          Moldova 1825           0
## 17235                         Mongolia 1825           0
## 17236                       Montenegro 1825           0
## 17237                       Montserrat 1825           0
## 17238                          Morocco 1825           0
## 17239                       Mozambique 1825           0
## 17240                          Myanmar 1825           0
## 17241                          Namibia 1825           0
## 17242                            Nauru 1825           0
## 17243                            Nepal 1825           0
## 17244                      Netherlands 1825           0
## 17245                    New Caledonia 1825           0
## 17246                      New Zealand 1825           0
## 17247                        Nicaragua 1825           0
## 17248                            Niger 1825           0
## 17249                          Nigeria 1825           0
## 17250                             Niue 1825           0
## 17251                      North Korea 1825           0
## 17252                           Norway 1825           0
## 17253                             Oman 1825           0
## 17254                         Pakistan 1825           0
## 17255                            Palau 1825           0
## 17256                        Palestine 1825           0
## 17257                           Panama 1825           0
## 17258                 Papua New Guinea 1825           0
## 17259                         Paraguay 1825           0
## 17260                             Peru 1825           0
## 17261                      Philippines 1825           0
## 17262                           Poland 1825    17158512
## 17263                         Portugal 1825           0
## 17264                            Qatar 1825           0
## 17265                          Reunion 1825           0
## 17266                          Romania 1825           0
## 17267                           Russia 1825           0
## 17268                           Rwanda 1825           0
## 17269                     Saint Helena 1825           0
## 17270            Saint Kitts and Nevis 1825           0
## 17271                      Saint Lucia 1825           0
## 17272        Saint Pierre and Miquelon 1825           0
## 17273 Saint Vincent and the Grenadines 1825           0
## 17274                            Samoa 1825           0
## 17275            Sao Tome and Principe 1825           0
## 17276                     Saudi Arabia 1825           0
## 17277                          Senegal 1825           0
## 17278                           Serbia 1825           0
## 17279                       Seychelles 1825           0
## 17280                     Sierra Leone 1825           0
## 17281                        Singapore 1825           0
## 17282        Sint Maarten (Dutch part) 1825           0
## 17283                         Slovakia 1825           0
## 17284                         Slovenia 1825           0
## 17285                  Solomon Islands 1825           0
## 17286                          Somalia 1825           0
## 17287                     South Africa 1825           0
## 17288                      South Korea 1825           0
## 17289                      South Sudan 1825           0
## 17290                            Spain 1825           0
## 17291                        Sri Lanka 1825           0
## 17292                            Sudan 1825           0
## 17293                         Suriname 1825           0
## 17294                        Swaziland 1825           0
## 17295                           Sweden 1825           0
## 17296                      Switzerland 1825           0
## 17297                            Syria 1825           0
## 17298                           Taiwan 1825           0
## 17299                       Tajikistan 1825           0
## 17300                         Tanzania 1825           0
## 17301                         Thailand 1825           0
## 17302                            Timor 1825           0
## 17303                             Togo 1825           0
## 17304                            Tonga 1825           0
## 17305              Trinidad and Tobago 1825           0
## 17306                          Tunisia 1825           0
## 17307                           Turkey 1825           0
## 17308                     Turkmenistan 1825           0
## 17309         Turks and Caicos Islands 1825           0
## 17310                           Tuvalu 1825           0
## 17311                           Uganda 1825           0
## 17312                          Ukraine 1825           0
## 17313             United Arab Emirates 1825           0
## 17314                   United Kingdom 1825  1708493888
## 17315                    United States 1825    14776912
## 17316                          Uruguay 1825           0
## 17317                       Uzbekistan 1825           0
## 17318                          Vanuatu 1825           0
## 17319                        Venezuela 1825           0
## 17320                          Vietnam 1825           0
## 17321        Wallis and Futuna Islands 1825           0
## 17322                            World 1825  1851111424
## 17323                            Yemen 1825           0
## 17324                           Zambia 1825           0
## 17325                         Zimbabwe 1825           0
## 17326                      Afghanistan 1826           0
## 17327                           Africa 1826           0
## 17328                          Albania 1826           0
## 17329                          Algeria 1826           0
## 17330                 Americas (other) 1826      153888
## 17331                          Andorra 1826           0
## 17332                           Angola 1826           0
## 17333                         Anguilla 1826           0
## 17334              Antarctic Fisheries 1826           0
## 17335              Antigua and Barbuda 1826           0
## 17336                        Argentina 1826           0
## 17337                          Armenia 1826           0
## 17338                            Aruba 1826           0
## 17339         Asia and Pacific (other) 1826           0
## 17340                        Australia 1826           0
## 17341                          Austria 1826     3088752
## 17342                       Azerbaijan 1826           0
## 17343                          Bahamas 1826           0
## 17344                          Bahrain 1826           0
## 17345                       Bangladesh 1826           0
## 17346                         Barbados 1826           0
## 17347                          Belarus 1826           0
## 17348                          Belgium 1826     6397344
## 17349                           Belize 1826           0
## 17350                            Benin 1826           0
## 17351                          Bermuda 1826           0
## 17352                           Bhutan 1826           0
## 17353                          Bolivia 1826           0
## 17354  Bonaire Sint Eustatius and Saba 1826           0
## 17355           Bosnia and Herzegovina 1826           0
## 17356                         Botswana 1826           0
## 17357                           Brazil 1826           0
## 17358           British Virgin Islands 1826           0
## 17359                           Brunei 1826           0
## 17360                         Bulgaria 1826           0
## 17361                     Burkina Faso 1826           0
## 17362                          Burundi 1826           0
## 17363                         Cambodia 1826           0
## 17364                         Cameroon 1826           0
## 17365                           Canada 1826      153888
## 17366                       Cape Verde 1826           0
## 17367                   Cayman Islands 1826           0
## 17368         Central African Republic 1826           0
## 17369                             Chad 1826           0
## 17370                            Chile 1826           0
## 17371                            China 1826           0
## 17372                 Christmas Island 1826           0
## 17373                         Colombia 1826           0
## 17374                          Comoros 1826           0
## 17375                            Congo 1826           0
## 17376                     Cook Islands 1826           0
## 17377                       Costa Rica 1826           0
## 17378                    Cote d'Ivoire 1826           0
## 17379                          Croatia 1826           0
## 17380                             Cuba 1826           0
## 17381                          Curacao 1826           0
## 17382                           Cyprus 1826           0
## 17383                   Czech Republic 1826           0
## 17384                   Czechoslovakia 1826           0
## 17385     Democratic Republic of Congo 1826           0
## 17386                          Denmark 1826           0
## 17387                         Djibouti 1826           0
## 17388                         Dominica 1826           0
## 17389               Dominican Republic 1826           0
## 17390                            EU-28 1826  1896284880
## 17391                          Ecuador 1826           0
## 17392                            Egypt 1826           0
## 17393                      El Salvador 1826           0
## 17394                Equatorial Guinea 1826           0
## 17395                          Eritrea 1826           0
## 17396                          Estonia 1826           0
## 17397                         Ethiopia 1826           0
## 17398                   Europe (other) 1826           0
## 17399                   Faeroe Islands 1826           0
## 17400                 Falkland Islands 1826           0
## 17401                             Fiji 1826           0
## 17402                          Finland 1826           0
## 17403                           France 1826    51200736
## 17404                    French Guiana 1826           0
## 17405                 French Polynesia 1826           0
## 17406                            Gabon 1826           0
## 17407                           Gambia 1826           0
## 17408                          Georgia 1826           0
## 17409                          Germany 1826    58580032
## 17410                            Ghana 1826           0
## 17411                        Gibraltar 1826           0
## 17412                           Greece 1826           0
## 17413                        Greenland 1826           0
## 17414                          Grenada 1826           0
## 17415                       Guadeloupe 1826           0
## 17416                        Guatemala 1826           0
## 17417                           Guinea 1826           0
## 17418                    Guinea-Bissau 1826           0
## 17419                           Guyana 1826           0
## 17420                            Haiti 1826           0
## 17421                         Honduras 1826           0
## 17422                        Hong Kong 1826           0
## 17423                          Hungary 1826           0
## 17424                          Iceland 1826           0
## 17425                            India 1826           0
## 17426                        Indonesia 1826           0
## 17427                             Iran 1826           0
## 17428                             Iraq 1826           0
## 17429                          Ireland 1826           0
## 17430                           Israel 1826           0
## 17431                            Italy 1826           0
## 17432                          Jamaica 1826           0
## 17433                            Japan 1826           0
## 17434                           Jordan 1826           0
## 17435                       Kazakhstan 1826           0
## 17436                            Kenya 1826           0
## 17437                         Kiribati 1826           0
## 17438                           Kuwait 1826           0
## 17439                       Kyrgysztan 1826           0
## 17440                       Kyrgyzstan 1826           0
## 17441                             Laos 1826           0
## 17442                           Latvia 1826           0
## 17443                          Lebanon 1826           0
## 17444                          Lesotho 1826           0
## 17445                          Liberia 1826           0
## 17446                            Libya 1826           0
## 17447                    Liechtenstein 1826           0
## 17448                        Lithuania 1826           0
## 17449                       Luxembourg 1826           0
## 17450                            Macao 1826           0
## 17451                        Macedonia 1826           0
## 17452                       Madagascar 1826           0
## 17453                           Malawi 1826           0
## 17454                         Malaysia 1826           0
## 17455                         Maldives 1826           0
## 17456                             Mali 1826           0
## 17457                            Malta 1826           0
## 17458                 Marshall Islands 1826           0
## 17459                       Martinique 1826           0
## 17460                       Mauritania 1826           0
## 17461                        Mauritius 1826           0
## 17462                           Mexico 1826           0
## 17463             Micronesia (country) 1826           0
## 17464                      Middle East 1826           0
## 17465                          Moldova 1826           0
## 17466                         Mongolia 1826           0
## 17467                       Montenegro 1826           0
## 17468                       Montserrat 1826           0
## 17469                          Morocco 1826           0
## 17470                       Mozambique 1826           0
## 17471                          Myanmar 1826           0
## 17472                          Namibia 1826           0
## 17473                            Nauru 1826           0
## 17474                            Nepal 1826           0
## 17475                      Netherlands 1826           0
## 17476                    New Caledonia 1826           0
## 17477                      New Zealand 1826           0
## 17478                        Nicaragua 1826           0
## 17479                            Niger 1826           0
## 17480                          Nigeria 1826           0
## 17481                             Niue 1826           0
## 17482                      North Korea 1826           0
## 17483                           Norway 1826           0
## 17484                             Oman 1826           0
## 17485                         Pakistan 1826           0
## 17486                            Palau 1826           0
## 17487                        Palestine 1826           0
## 17488                           Panama 1826           0
## 17489                 Papua New Guinea 1826           0
## 17490                         Paraguay 1826           0
## 17491                             Peru 1826           0
## 17492                      Philippines 1826           0
## 17493                           Poland 1826    18378624
## 17494                         Portugal 1826           0
## 17495                            Qatar 1826           0
## 17496                          Reunion 1826           0
## 17497                          Romania 1826           0
## 17498                           Russia 1826           0
## 17499                           Rwanda 1826           0
## 17500                     Saint Helena 1826           0
## 17501            Saint Kitts and Nevis 1826           0
## 17502                      Saint Lucia 1826           0
## 17503        Saint Pierre and Miquelon 1826           0
## 17504 Saint Vincent and the Grenadines 1826           0
## 17505                            Samoa 1826           0
## 17506            Sao Tome and Principe 1826           0
## 17507                     Saudi Arabia 1826           0
## 17508                          Senegal 1826           0
## 17509                           Serbia 1826           0
## 17510                       Seychelles 1826           0
## 17511                     Sierra Leone 1826           0
## 17512                        Singapore 1826           0
## 17513        Sint Maarten (Dutch part) 1826           0
## 17514                         Slovakia 1826           0
## 17515                         Slovenia 1826           0
## 17516                  Solomon Islands 1826           0
## 17517                          Somalia 1826           0
## 17518                     South Africa 1826           0
## 17519                      South Korea 1826           0
## 17520                      South Sudan 1826           0
## 17521                            Spain 1826           0
## 17522                        Sri Lanka 1826           0
## 17523                            Sudan 1826           0
## 17524                         Suriname 1826           0
## 17525                        Swaziland 1826           0
## 17526                           Sweden 1826           0
## 17527                      Switzerland 1826           0
## 17528                            Syria 1826           0
## 17529                           Taiwan 1826           0
## 17530                       Tajikistan 1826           0
## 17531                         Tanzania 1826           0
## 17532                         Thailand 1826           0
## 17533                            Timor 1826           0
## 17534                             Togo 1826           0
## 17535                            Tonga 1826           0
## 17536              Trinidad and Tobago 1826           0
## 17537                          Tunisia 1826           0
## 17538                           Turkey 1826           0
## 17539                     Turkmenistan 1826           0
## 17540         Turks and Caicos Islands 1826           0
## 17541                           Tuvalu 1826           0
## 17542                           Uganda 1826           0
## 17543                          Ukraine 1826           0
## 17544             United Arab Emirates 1826           0
## 17545                   United Kingdom 1826  1758639392
## 17546                    United States 1826    16092288
## 17547                          Uruguay 1826           0
## 17548                       Uzbekistan 1826           0
## 17549                          Vanuatu 1826           0
## 17550                        Venezuela 1826           0
## 17551                          Vietnam 1826           0
## 17552        Wallis and Futuna Islands 1826           0
## 17553                            World 1826  1912531056
## 17554                            Yemen 1826           0
## 17555                           Zambia 1826           0
## 17556                         Zimbabwe 1826           0
## 17557                      Afghanistan 1827           0
## 17558                           Africa 1827           0
## 17559                          Albania 1827           0
## 17560                          Algeria 1827           0
## 17561                 Americas (other) 1827      157552
## 17562                          Andorra 1827           0
## 17563                           Angola 1827           0
## 17564                         Anguilla 1827           0
## 17565              Antarctic Fisheries 1827           0
## 17566              Antigua and Barbuda 1827           0
## 17567                        Argentina 1827           0
## 17568                          Armenia 1827           0
## 17569                            Aruba 1827           0
## 17570         Asia and Pacific (other) 1827           0
## 17571                        Australia 1827           0
## 17572                          Austria 1827     3565072
## 17573                       Azerbaijan 1827           0
## 17574                          Bahamas 1827           0
## 17575                          Bahrain 1827           0
## 17576                       Bangladesh 1827           0
## 17577                         Barbados 1827           0
## 17578                          Belarus 1827           0
## 17579                          Belgium 1827     6397344
## 17580                           Belize 1827           0
## 17581                            Benin 1827           0
## 17582                          Bermuda 1827           0
## 17583                           Bhutan 1827           0
## 17584                          Bolivia 1827           0
## 17585  Bonaire Sint Eustatius and Saba 1827           0
## 17586           Bosnia and Herzegovina 1827           0
## 17587                         Botswana 1827           0
## 17588                           Brazil 1827           0
## 17589           British Virgin Islands 1827           0
## 17590                           Brunei 1827           0
## 17591                         Bulgaria 1827           0
## 17592                     Burkina Faso 1827           0
## 17593                          Burundi 1827           0
## 17594                         Cambodia 1827           0
## 17595                         Cameroon 1827           0
## 17596                           Canada 1827      157552
## 17597                       Cape Verde 1827           0
## 17598                   Cayman Islands 1827           0
## 17599         Central African Republic 1827           0
## 17600                             Chad 1827           0
## 17601                            Chile 1827           0
## 17602                            China 1827           0
## 17603                 Christmas Island 1827           0
## 17604                         Colombia 1827           0
## 17605                          Comoros 1827           0
## 17606                            Congo 1827           0
## 17607                     Cook Islands 1827           0
## 17608                       Costa Rica 1827           0
## 17609                    Cote d'Ivoire 1827           0
## 17610                          Croatia 1827           0
## 17611                             Cuba 1827           0
## 17612                          Curacao 1827           0
## 17613                           Cyprus 1827           0
## 17614                   Czech Republic 1827           0
## 17615                   Czechoslovakia 1827           0
## 17616     Democratic Republic of Congo 1827           0
## 17617                          Denmark 1827           0
## 17618                         Djibouti 1827           0
## 17619                         Dominica 1827           0
## 17620               Dominican Republic 1827           0
## 17621                            EU-28 1827  1960749296
## 17622                          Ecuador 1827           0
## 17623                            Egypt 1827           0
## 17624                      El Salvador 1827           0
## 17625                Equatorial Guinea 1827           0
## 17626                          Eritrea 1827           0
## 17627                          Estonia 1827           0
## 17628                         Ethiopia 1827           0
## 17629                   Europe (other) 1827           0
## 17630                   Faeroe Islands 1827           0
## 17631                 Falkland Islands 1827           0
## 17632                             Fiji 1827           0
## 17633                          Finland 1827           0
## 17634                           France 1827    57110768
## 17635                    French Guiana 1827           0
## 17636                 French Polynesia 1827           0
## 17637                            Gabon 1827           0
## 17638                           Gambia 1827           0
## 17639                          Georgia 1827           0
## 17640                          Germany 1827    63119728
## 17641                            Ghana 1827           0
## 17642                        Gibraltar 1827           0
## 17643                           Greece 1827           0
## 17644                        Greenland 1827           0
## 17645                          Grenada 1827           0
## 17646                       Guadeloupe 1827           0
## 17647                        Guatemala 1827           0
## 17648                           Guinea 1827           0
## 17649                    Guinea-Bissau 1827           0
## 17650                           Guyana 1827           0
## 17651                            Haiti 1827           0
## 17652                         Honduras 1827           0
## 17653                        Hong Kong 1827           0
## 17654                          Hungary 1827           0
## 17655                          Iceland 1827           0
## 17656                            India 1827           0
## 17657                        Indonesia 1827           0
## 17658                             Iran 1827           0
## 17659                             Iraq 1827           0
## 17660                          Ireland 1827           0
## 17661                           Israel 1827           0
## 17662                            Italy 1827           0
## 17663                          Jamaica 1827           0
## 17664                            Japan 1827           0
## 17665                           Jordan 1827           0
## 17666                       Kazakhstan 1827           0
## 17667                            Kenya 1827           0
## 17668                         Kiribati 1827           0
## 17669                           Kuwait 1827           0
## 17670                       Kyrgysztan 1827           0
## 17671                       Kyrgyzstan 1827           0
## 17672                             Laos 1827           0
## 17673                           Latvia 1827           0
## 17674                          Lebanon 1827           0
## 17675                          Lesotho 1827           0
## 17676                          Liberia 1827           0
## 17677                            Libya 1827           0
## 17678                    Liechtenstein 1827           0
## 17679                        Lithuania 1827           0
## 17680                       Luxembourg 1827           0
## 17681                            Macao 1827           0
## 17682                        Macedonia 1827           0
## 17683                       Madagascar 1827           0
## 17684                           Malawi 1827           0
## 17685                         Malaysia 1827           0
## 17686                         Maldives 1827           0
## 17687                             Mali 1827           0
## 17688                            Malta 1827           0
## 17689                 Marshall Islands 1827           0
## 17690                       Martinique 1827           0
## 17691                       Mauritania 1827           0
## 17692                        Mauritius 1827           0
## 17693                           Mexico 1827           0
## 17694             Micronesia (country) 1827           0
## 17695                      Middle East 1827           0
## 17696                          Moldova 1827           0
## 17697                         Mongolia 1827           0
## 17698                       Montenegro 1827           0
## 17699                       Montserrat 1827           0
## 17700                          Morocco 1827           0
## 17701                       Mozambique 1827           0
## 17702                          Myanmar 1827           0
## 17703                          Namibia 1827           0
## 17704                            Nauru 1827           0
## 17705                            Nepal 1827           0
## 17706                      Netherlands 1827           0
## 17707                    New Caledonia 1827           0
## 17708                      New Zealand 1827           0
## 17709                        Nicaragua 1827           0
## 17710                            Niger 1827           0
## 17711                          Nigeria 1827           0
## 17712                             Niue 1827           0
## 17713                      North Korea 1827           0
## 17714                           Norway 1827           0
## 17715                             Oman 1827           0
## 17716                         Pakistan 1827           0
## 17717                            Palau 1827           0
## 17718                        Palestine 1827           0
## 17719                           Panama 1827           0
## 17720                 Papua New Guinea 1827           0
## 17721                         Paraguay 1827           0
## 17722                             Peru 1827           0
## 17723                      Philippines 1827           0
## 17724                           Poland 1827    19686672
## 17725                         Portugal 1827           0
## 17726                            Qatar 1827           0
## 17727                          Reunion 1827           0
## 17728                          Romania 1827           0
## 17729                           Russia 1827           0
## 17730                           Rwanda 1827           0
## 17731                     Saint Helena 1827           0
## 17732            Saint Kitts and Nevis 1827           0
## 17733                      Saint Lucia 1827           0
## 17734        Saint Pierre and Miquelon 1827           0
## 17735 Saint Vincent and the Grenadines 1827           0
## 17736                            Samoa 1827           0
## 17737            Sao Tome and Principe 1827           0
## 17738                     Saudi Arabia 1827           0
## 17739                          Senegal 1827           0
## 17740                           Serbia 1827           0
## 17741                       Seychelles 1827           0
## 17742                     Sierra Leone 1827           0
## 17743                        Singapore 1827           0
## 17744        Sint Maarten (Dutch part) 1827           0
## 17745                         Slovakia 1827           0
## 17746                         Slovenia 1827           0
## 17747                  Solomon Islands 1827           0
## 17748                          Somalia 1827           0
## 17749                     South Africa 1827           0
## 17750                      South Korea 1827           0
## 17751                      South Sudan 1827           0
## 17752                            Spain 1827           0
## 17753                        Sri Lanka 1827           0
## 17754                            Sudan 1827           0
## 17755                         Suriname 1827           0
## 17756                        Swaziland 1827           0
## 17757                           Sweden 1827           0
## 17758                      Switzerland 1827           0
## 17759                            Syria 1827           0
## 17760                           Taiwan 1827           0
## 17761                       Tajikistan 1827           0
## 17762                         Tanzania 1827           0
## 17763                         Thailand 1827           0
## 17764                            Timor 1827           0
## 17765                             Togo 1827           0
## 17766                            Tonga 1827           0
## 17767              Trinidad and Tobago 1827           0
## 17768                          Tunisia 1827           0
## 17769                           Turkey 1827           0
## 17770                     Turkmenistan 1827           0
## 17771         Turks and Caicos Islands 1827           0
## 17772                           Tuvalu 1827           0
## 17773                           Uganda 1827           0
## 17774                          Ukraine 1827           0
## 17775             United Arab Emirates 1827           0
## 17776                   United Kingdom 1827  1810869712
## 17777                    United States 1827    17539568
## 17778                          Uruguay 1827           0
## 17779                       Uzbekistan 1827           0
## 17780                          Vanuatu 1827           0
## 17781                        Venezuela 1827           0
## 17782                          Vietnam 1827           0
## 17783        Wallis and Futuna Islands 1827           0
## 17784                            World 1827  1978446416
## 17785                            Yemen 1827           0
## 17786                           Zambia 1827           0
## 17787                         Zimbabwe 1827           0
## 17788                      Afghanistan 1828           0
## 17789                           Africa 1828           0
## 17790                          Albania 1828           0
## 17791                          Algeria 1828           0
## 17792                 Americas (other) 1828      161216
## 17793                          Andorra 1828           0
## 17794                           Angola 1828           0
## 17795                         Anguilla 1828           0
## 17796              Antarctic Fisheries 1828           0
## 17797              Antigua and Barbuda 1828           0
## 17798                        Argentina 1828           0
## 17799                          Armenia 1828           0
## 17800                            Aruba 1828           0
## 17801         Asia and Pacific (other) 1828           0
## 17802                        Australia 1828           0
## 17803                          Austria 1828     4023072
## 17804                       Azerbaijan 1828           0
## 17805                          Bahamas 1828           0
## 17806                          Bahrain 1828           0
## 17807                       Bangladesh 1828           0
## 17808                         Barbados 1828           0
## 17809                          Belarus 1828           0
## 17810                          Belgium 1828     6397344
## 17811                           Belize 1828           0
## 17812                            Benin 1828           0
## 17813                          Bermuda 1828           0
## 17814                           Bhutan 1828           0
## 17815                          Bolivia 1828           0
## 17816  Bonaire Sint Eustatius and Saba 1828           0
## 17817           Bosnia and Herzegovina 1828           0
## 17818                         Botswana 1828           0
## 17819                           Brazil 1828           0
## 17820           British Virgin Islands 1828           0
## 17821                           Brunei 1828           0
## 17822                         Bulgaria 1828           0
## 17823                     Burkina Faso 1828           0
## 17824                          Burundi 1828           0
## 17825                         Cambodia 1828           0
## 17826                         Cameroon 1828           0
## 17827                           Canada 1828      161216
## 17828                       Cape Verde 1828           0
## 17829                   Cayman Islands 1828           0
## 17830         Central African Republic 1828           0
## 17831                             Chad 1828           0
## 17832                            Chile 1828           0
## 17833                            China 1828           0
## 17834                 Christmas Island 1828           0
## 17835                         Colombia 1828           0
## 17836                          Comoros 1828           0
## 17837                            Congo 1828           0
## 17838                     Cook Islands 1828           0
## 17839                       Costa Rica 1828           0
## 17840                    Cote d'Ivoire 1828           0
## 17841                          Croatia 1828           0
## 17842                             Cuba 1828           0
## 17843                          Curacao 1828           0
## 17844                           Cyprus 1828           0
## 17845                   Czech Republic 1828           0
## 17846                   Czechoslovakia 1828           0
## 17847     Democratic Republic of Congo 1828           0
## 17848                          Denmark 1828           0
## 17849                         Djibouti 1828           0
## 17850                         Dominica 1828           0
## 17851               Dominican Republic 1828           0
## 17852                            EU-28 1828  2025788960
## 17853                          Ecuador 1828           0
## 17854                            Egypt 1828           0
## 17855                      El Salvador 1828           0
## 17856                Equatorial Guinea 1828           0
## 17857                          Eritrea 1828           0
## 17858                          Estonia 1828           0
## 17859                         Ethiopia 1828           0
## 17860                   Europe (other) 1828           0
## 17861                   Faeroe Islands 1828           0
## 17862                 Falkland Islands 1828           0
## 17863                             Fiji 1828           0
## 17864                          Finland 1828           0
## 17865                           France 1828    63354224
## 17866                    French Guiana 1828           0
## 17867                 French Polynesia 1828           0
## 17868                            Gabon 1828           0
## 17869                           Gambia 1828           0
## 17870                          Georgia 1828           0
## 17871                          Germany 1828    67659424
## 17872                            Ghana 1828           0
## 17873                        Gibraltar 1828           0
## 17874                           Greece 1828           0
## 17875                        Greenland 1828           0
## 17876                          Grenada 1828           0
## 17877                       Guadeloupe 1828           0
## 17878                        Guatemala 1828           0
## 17879                           Guinea 1828           0
## 17880                    Guinea-Bissau 1828           0
## 17881                           Guyana 1828           0
## 17882                            Haiti 1828           0
## 17883                         Honduras 1828           0
## 17884                        Hong Kong 1828           0
## 17885                          Hungary 1828           0
## 17886                          Iceland 1828           0
## 17887                            India 1828           0
## 17888                        Indonesia 1828           0
## 17889                             Iran 1828           0
## 17890                             Iraq 1828           0
## 17891                          Ireland 1828           0
## 17892                           Israel 1828           0
## 17893                            Italy 1828           0
## 17894                          Jamaica 1828           0
## 17895                            Japan 1828           0
## 17896                           Jordan 1828           0
## 17897                       Kazakhstan 1828           0
## 17898                            Kenya 1828           0
## 17899                         Kiribati 1828           0
## 17900                           Kuwait 1828           0
## 17901                       Kyrgysztan 1828           0
## 17902                       Kyrgyzstan 1828           0
## 17903                             Laos 1828           0
## 17904                           Latvia 1828           0
## 17905                          Lebanon 1828           0
## 17906                          Lesotho 1828           0
## 17907                          Liberia 1828           0
## 17908                            Libya 1828           0
## 17909                    Liechtenstein 1828           0
## 17910                        Lithuania 1828           0
## 17911                       Luxembourg 1828           0
## 17912                            Macao 1828           0
## 17913                        Macedonia 1828           0
## 17914                       Madagascar 1828           0
## 17915                           Malawi 1828           0
## 17916                         Malaysia 1828           0
## 17917                         Maldives 1828           0
## 17918                             Mali 1828           0
## 17919                            Malta 1828           0
## 17920                 Marshall Islands 1828           0
## 17921                       Martinique 1828           0
## 17922                       Mauritania 1828           0
## 17923                        Mauritius 1828           0
## 17924                           Mexico 1828           0
## 17925             Micronesia (country) 1828           0
## 17926                      Middle East 1828           0
## 17927                          Moldova 1828           0
## 17928                         Mongolia 1828           0
## 17929                       Montenegro 1828           0
## 17930                       Montserrat 1828           0
## 17931                          Morocco 1828           0
## 17932                       Mozambique 1828           0
## 17933                          Myanmar 1828           0
## 17934                          Namibia 1828           0
## 17935                            Nauru 1828           0
## 17936                            Nepal 1828           0
## 17937                      Netherlands 1828           0
## 17938                    New Caledonia 1828           0
## 17939                      New Zealand 1828           0
## 17940                        Nicaragua 1828           0
## 17941                            Niger 1828           0
## 17942                          Nigeria 1828           0
## 17943                             Niue 1828           0
## 17944                      North Korea 1828           0
## 17945                           Norway 1828           0
## 17946                             Oman 1828           0
## 17947                         Pakistan 1828           0
## 17948                            Palau 1828           0
## 17949                        Palestine 1828           0
## 17950                           Panama 1828           0
## 17951                 Papua New Guinea 1828           0
## 17952                         Paraguay 1828           0
## 17953                             Peru 1828           0
## 17954                      Philippines 1828           0
## 17955                           Poland 1828    20895792
## 17956                         Portugal 1828           0
## 17957                            Qatar 1828           0
## 17958                          Reunion 1828           0
## 17959                          Romania 1828           0
## 17960                           Russia 1828           0
## 17961                           Rwanda 1828           0
## 17962                     Saint Helena 1828           0
## 17963            Saint Kitts and Nevis 1828           0
## 17964                      Saint Lucia 1828           0
## 17965        Saint Pierre and Miquelon 1828           0
## 17966 Saint Vincent and the Grenadines 1828           0
## 17967                            Samoa 1828           0
## 17968            Sao Tome and Principe 1828           0
## 17969                     Saudi Arabia 1828           0
## 17970                          Senegal 1828           0
## 17971                           Serbia 1828           0
## 17972                       Seychelles 1828           0
## 17973                     Sierra Leone 1828           0
## 17974                        Singapore 1828           0
## 17975        Sint Maarten (Dutch part) 1828           0
## 17976                         Slovakia 1828           0
## 17977                         Slovenia 1828           0
## 17978                  Solomon Islands 1828           0
## 17979                          Somalia 1828           0
## 17980                     South Africa 1828           0
## 17981                      South Korea 1828           0
## 17982                      South Sudan 1828           0
## 17983                            Spain 1828           0
## 17984                        Sri Lanka 1828           0
## 17985                            Sudan 1828           0
## 17986                         Suriname 1828           0
## 17987                        Swaziland 1828           0
## 17988                           Sweden 1828           0
## 17989                      Switzerland 1828           0
## 17990                            Syria 1828           0
## 17991                           Taiwan 1828           0
## 17992                       Tajikistan 1828           0
## 17993                         Tanzania 1828           0
## 17994                         Thailand 1828           0
## 17995                            Timor 1828           0
## 17996                             Togo 1828           0
## 17997                            Tonga 1828           0
## 17998              Trinidad and Tobago 1828           0
## 17999                          Tunisia 1828           0
## 18000                           Turkey 1828           0
## 18001                     Turkmenistan 1828           0
## 18002         Turks and Caicos Islands 1828           0
## 18003                           Tuvalu 1828           0
## 18004                           Uganda 1828           0
## 18005                          Ukraine 1828           0
## 18006             United Arab Emirates 1828           0
## 18007                   United Kingdom 1828  1863459104
## 18008                    United States 1828    19133408
## 18009                          Uruguay 1828           0
## 18010                       Uzbekistan 1828           0
## 18011                          Vanuatu 1828           0
## 18012                        Venezuela 1828           0
## 18013                          Vietnam 1828           0
## 18014        Wallis and Futuna Islands 1828           0
## 18015                            World 1828  2045083584
## 18016                            Yemen 1828           0
## 18017                           Zambia 1828           0
## 18018                         Zimbabwe 1828           0
## 18019                      Afghanistan 1829           0
## 18020                           Africa 1829           0
## 18021                          Albania 1829           0
## 18022                          Algeria 1829           0
## 18023                 Americas (other) 1829      164880
## 18024                          Andorra 1829           0
## 18025                           Angola 1829           0
## 18026                         Anguilla 1829           0
## 18027              Antarctic Fisheries 1829           0
## 18028              Antigua and Barbuda 1829           0
## 18029                        Argentina 1829           0
## 18030                          Armenia 1829           0
## 18031                            Aruba 1829           0
## 18032         Asia and Pacific (other) 1829           0
## 18033                        Australia 1829           0
## 18034                          Austria 1829     4499392
## 18035                       Azerbaijan 1829           0
## 18036                          Bahamas 1829           0
## 18037                          Bahrain 1829           0
## 18038                       Bangladesh 1829           0
## 18039                         Barbados 1829           0
## 18040                          Belarus 1829           0
## 18041                          Belgium 1829     6397344
## 18042                           Belize 1829           0
## 18043                            Benin 1829           0
## 18044                          Bermuda 1829           0
## 18045                           Bhutan 1829           0
## 18046                          Bolivia 1829           0
## 18047  Bonaire Sint Eustatius and Saba 1829           0
## 18048           Bosnia and Herzegovina 1829           0
## 18049                         Botswana 1829           0
## 18050                           Brazil 1829           0
## 18051           British Virgin Islands 1829           0
## 18052                           Brunei 1829           0
## 18053                         Bulgaria 1829           0
## 18054                     Burkina Faso 1829           0
## 18055                          Burundi 1829           0
## 18056                         Cambodia 1829           0
## 18057                         Cameroon 1829           0
## 18058                           Canada 1829      164880
## 18059                       Cape Verde 1829           0
## 18060                   Cayman Islands 1829           0
## 18061         Central African Republic 1829           0
## 18062                             Chad 1829           0
## 18063                            Chile 1829           0
## 18064                            China 1829           0
## 18065                 Christmas Island 1829           0
## 18066                         Colombia 1829           0
## 18067                          Comoros 1829           0
## 18068                            Congo 1829           0
## 18069                     Cook Islands 1829           0
## 18070                       Costa Rica 1829           0
## 18071                    Cote d'Ivoire 1829           0
## 18072                          Croatia 1829           0
## 18073                             Cuba 1829           0
## 18074                          Curacao 1829           0
## 18075                           Cyprus 1829           0
## 18076                   Czech Republic 1829           0
## 18077                   Czechoslovakia 1829           0
## 18078     Democratic Republic of Congo 1829           0
## 18079                          Denmark 1829           0
## 18080                         Djibouti 1829           0
## 18081                         Dominica 1829           0
## 18082               Dominican Republic 1829           0
## 18083                            EU-28 1829  2090374288
## 18084                          Ecuador 1829           0
## 18085                            Egypt 1829           0
## 18086                      El Salvador 1829           0
## 18087                Equatorial Guinea 1829           0
## 18088                          Eritrea 1829           0
## 18089                          Estonia 1829           0
## 18090                         Ethiopia 1829           0
## 18091                   Europe (other) 1829       10992
## 18092                   Faeroe Islands 1829           0
## 18093                 Falkland Islands 1829           0
## 18094                             Fiji 1829           0
## 18095                          Finland 1829           0
## 18096                           France 1829    69429136
## 18097                    French Guiana 1829           0
## 18098                 French Polynesia 1829           0
## 18099                            Gabon 1829           0
## 18100                           Gambia 1829           0
## 18101                          Georgia 1829           0
## 18102                          Germany 1829    71290448
## 18103                            Ghana 1829           0
## 18104                        Gibraltar 1829           0
## 18105                           Greece 1829           0
## 18106                        Greenland 1829           0
## 18107                          Grenada 1829           0
## 18108                       Guadeloupe 1829           0
## 18109                        Guatemala 1829           0
## 18110                           Guinea 1829           0
## 18111                    Guinea-Bissau 1829           0
## 18112                           Guyana 1829           0
## 18113                            Haiti 1829           0
## 18114                         Honduras 1829           0
## 18115                        Hong Kong 1829           0
## 18116                          Hungary 1829           0
## 18117                          Iceland 1829           0
## 18118                            India 1829           0
## 18119                        Indonesia 1829           0
## 18120                             Iran 1829           0
## 18121                             Iraq 1829           0
## 18122                          Ireland 1829           0
## 18123                           Israel 1829           0
## 18124                            Italy 1829           0
## 18125                          Jamaica 1829           0
## 18126                            Japan 1829           0
## 18127                           Jordan 1829           0
## 18128                       Kazakhstan 1829           0
## 18129                            Kenya 1829           0
## 18130                         Kiribati 1829           0
## 18131                           Kuwait 1829           0
## 18132                       Kyrgysztan 1829           0
## 18133                       Kyrgyzstan 1829           0
## 18134                             Laos 1829           0
## 18135                           Latvia 1829           0
## 18136                          Lebanon 1829           0
## 18137                          Lesotho 1829           0
## 18138                          Liberia 1829           0
## 18139                            Libya 1829           0
## 18140                    Liechtenstein 1829           0
## 18141                        Lithuania 1829           0
## 18142                       Luxembourg 1829           0
## 18143                            Macao 1829           0
## 18144                        Macedonia 1829           0
## 18145                       Madagascar 1829           0
## 18146                           Malawi 1829           0
## 18147                         Malaysia 1829           0
## 18148                         Maldives 1829           0
## 18149                             Mali 1829           0
## 18150                            Malta 1829           0
## 18151                 Marshall Islands 1829           0
## 18152                       Martinique 1829           0
## 18153                       Mauritania 1829           0
## 18154                        Mauritius 1829           0
## 18155                           Mexico 1829           0
## 18156             Micronesia (country) 1829           0
## 18157                      Middle East 1829           0
## 18158                          Moldova 1829           0
## 18159                         Mongolia 1829           0
## 18160                       Montenegro 1829           0
## 18161                       Montserrat 1829           0
## 18162                          Morocco 1829           0
## 18163                       Mozambique 1829           0
## 18164                          Myanmar 1829           0
## 18165                          Namibia 1829           0
## 18166                            Nauru 1829           0
## 18167                            Nepal 1829           0
## 18168                      Netherlands 1829           0
## 18169                    New Caledonia 1829           0
## 18170                      New Zealand 1829           0
## 18171                        Nicaragua 1829           0
## 18172                            Niger 1829           0
## 18173                          Nigeria 1829           0
## 18174                             Niue 1829           0
## 18175                      North Korea 1829           0
## 18176                           Norway 1829       10992
## 18177                             Oman 1829           0
## 18178                         Pakistan 1829           0
## 18179                            Palau 1829           0
## 18180                        Palestine 1829           0
## 18181                           Panama 1829           0
## 18182                 Papua New Guinea 1829           0
## 18183                         Paraguay 1829           0
## 18184                             Peru 1829           0
## 18185                      Philippines 1829           0
## 18186                           Poland 1829    21962016
## 18187                         Portugal 1829           0
## 18188                            Qatar 1829           0
## 18189                          Reunion 1829           0
## 18190                          Romania 1829           0
## 18191                           Russia 1829           0
## 18192                           Rwanda 1829           0
## 18193                     Saint Helena 1829           0
## 18194            Saint Kitts and Nevis 1829           0
## 18195                      Saint Lucia 1829           0
## 18196        Saint Pierre and Miquelon 1829           0
## 18197 Saint Vincent and the Grenadines 1829           0
## 18198                            Samoa 1829           0
## 18199            Sao Tome and Principe 1829           0
## 18200                     Saudi Arabia 1829           0
## 18201                          Senegal 1829           0
## 18202                           Serbia 1829           0
## 18203                       Seychelles 1829           0
## 18204                     Sierra Leone 1829           0
## 18205                        Singapore 1829           0
## 18206        Sint Maarten (Dutch part) 1829           0
## 18207                         Slovakia 1829           0
## 18208                         Slovenia 1829           0
## 18209                  Solomon Islands 1829           0
## 18210                          Somalia 1829           0
## 18211                     South Africa 1829           0
## 18212                      South Korea 1829           0
## 18213                      South Sudan 1829           0
## 18214                            Spain 1829           0
## 18215                        Sri Lanka 1829           0
## 18216                            Sudan 1829           0
## 18217                         Suriname 1829           0
## 18218                        Swaziland 1829           0
## 18219                           Sweden 1829           0
## 18220                      Switzerland 1829           0
## 18221                            Syria 1829           0
## 18222                           Taiwan 1829           0
## 18223                       Tajikistan 1829           0
## 18224                         Tanzania 1829           0
## 18225                         Thailand 1829           0
## 18226                            Timor 1829           0
## 18227                             Togo 1829           0
## 18228                            Tonga 1829           0
## 18229              Trinidad and Tobago 1829           0
## 18230                          Tunisia 1829           0
## 18231                           Turkey 1829           0
## 18232                     Turkmenistan 1829           0
## 18233         Turks and Caicos Islands 1829           0
## 18234                           Tuvalu 1829           0
## 18235                           Uganda 1829           0
## 18236                          Ukraine 1829           0
## 18237             United Arab Emirates 1829           0
## 18238                   United Kingdom 1829  1916795952
## 18239                    United States 1829    20928768
## 18240                          Uruguay 1829           0
## 18241                       Uzbekistan 1829           0
## 18242                          Vanuatu 1829           0
## 18243                        Venezuela 1829           0
## 18244                          Vietnam 1829           0
## 18245        Wallis and Futuna Islands 1829           0
## 18246                            World 1829  2111478928
## 18247                            Yemen 1829           0
## 18248                           Zambia 1829           0
## 18249                         Zimbabwe 1829           0
## 18250                      Afghanistan 1830           0
## 18251                           Africa 1830           0
## 18252                          Albania 1830           0
## 18253                          Algeria 1830           0
## 18254                 Americas (other) 1830      168544
## 18255                          Andorra 1830           0
## 18256                           Angola 1830           0
## 18257                         Anguilla 1830           0
## 18258              Antarctic Fisheries 1830           0
## 18259              Antigua and Barbuda 1830           0
## 18260                        Argentina 1830           0
## 18261                          Armenia 1830           0
## 18262                            Aruba 1830           0
## 18263         Asia and Pacific (other) 1830           0
## 18264                        Australia 1830           0
## 18265                          Austria 1830     4994032
## 18266                       Azerbaijan 1830           0
## 18267                          Bahamas 1830           0
## 18268                          Bahrain 1830           0
## 18269                       Bangladesh 1830           0
## 18270                         Barbados 1830           0
## 18271                          Belarus 1830           0
## 18272                          Belgium 1830    12593168
## 18273                           Belize 1830           0
## 18274                            Benin 1830           0
## 18275                          Bermuda 1830           0
## 18276                           Bhutan 1830           0
## 18277                          Bolivia 1830           0
## 18278  Bonaire Sint Eustatius and Saba 1830           0
## 18279           Bosnia and Herzegovina 1830           0
## 18280                         Botswana 1830           0
## 18281                           Brazil 1830           0
## 18282           British Virgin Islands 1830           0
## 18283                           Brunei 1830           0
## 18284                         Bulgaria 1830           0
## 18285                     Burkina Faso 1830           0
## 18286                          Burundi 1830           0
## 18287                         Cambodia 1830           0
## 18288                         Cameroon 1830           0
## 18289                           Canada 1830      168544
## 18290                       Cape Verde 1830           0
## 18291                   Cayman Islands 1830           0
## 18292         Central African Republic 1830           0
## 18293                             Chad 1830           0
## 18294                            Chile 1830           0
## 18295                            China 1830           0
## 18296                 Christmas Island 1830           0
## 18297                         Colombia 1830           0
## 18298                          Comoros 1830           0
## 18299                            Congo 1830           0
## 18300                     Cook Islands 1830           0
## 18301                       Costa Rica 1830           0
## 18302                    Cote d'Ivoire 1830           0
## 18303                          Croatia 1830           0
## 18304                             Cuba 1830           0
## 18305                          Curacao 1830           0
## 18306                           Cyprus 1830           0
## 18307                   Czech Republic 1830           0
## 18308                   Czechoslovakia 1830           0
## 18309     Democratic Republic of Congo 1830           0
## 18310                          Denmark 1830           0
## 18311                         Djibouti 1830           0
## 18312                         Dominica 1830           0
## 18313               Dominican Republic 1830           0
## 18314                            EU-28 1830  2177379632
## 18315                          Ecuador 1830           0
## 18316                            Egypt 1830           0
## 18317                      El Salvador 1830           0
## 18318                Equatorial Guinea 1830           0
## 18319                          Eritrea 1830           0
## 18320                          Estonia 1830           0
## 18321                         Ethiopia 1830           0
## 18322                   Europe (other) 1830       43968
## 18323                   Faeroe Islands 1830           0
## 18324                 Falkland Islands 1830           0
## 18325                             Fiji 1830           0
## 18326                          Finland 1830           0
## 18327                           France 1830    75980368
## 18328                    French Guiana 1830           0
## 18329                 French Polynesia 1830           0
## 18330                            Gabon 1830           0
## 18331                           Gambia 1830           0
## 18332                          Georgia 1830           0
## 18333                          Germany 1830    76082960
## 18334                            Ghana 1830           0
## 18335                        Gibraltar 1830           0
## 18336                           Greece 1830           0
## 18337                        Greenland 1830           0
## 18338                          Grenada 1830           0
## 18339                       Guadeloupe 1830           0
## 18340                        Guatemala 1830           0
## 18341                           Guinea 1830           0
## 18342                    Guinea-Bissau 1830           0
## 18343                           Guyana 1830           0
## 18344                            Haiti 1830           0
## 18345                         Honduras 1830           0
## 18346                        Hong Kong 1830           0
## 18347                          Hungary 1830      113584
## 18348                          Iceland 1830           0
## 18349                            India 1830           0
## 18350                        Indonesia 1830           0
## 18351                             Iran 1830           0
## 18352                             Iraq 1830           0
## 18353                          Ireland 1830           0
## 18354                           Israel 1830           0
## 18355                            Italy 1830           0
## 18356                          Jamaica 1830           0
## 18357                            Japan 1830           0
## 18358                           Jordan 1830           0
## 18359                       Kazakhstan 1830           0
## 18360                            Kenya 1830           0
## 18361                         Kiribati 1830           0
## 18362                           Kuwait 1830           0
## 18363                       Kyrgysztan 1830           0
## 18364                       Kyrgyzstan 1830           0
## 18365                             Laos 1830           0
## 18366                           Latvia 1830           0
## 18367                          Lebanon 1830           0
## 18368                          Lesotho 1830           0
## 18369                          Liberia 1830           0
## 18370                            Libya 1830           0
## 18371                    Liechtenstein 1830           0
## 18372                        Lithuania 1830           0
## 18373                       Luxembourg 1830           0
## 18374                            Macao 1830           0
## 18375                        Macedonia 1830           0
## 18376                       Madagascar 1830           0
## 18377                           Malawi 1830           0
## 18378                         Malaysia 1830           0
## 18379                         Maldives 1830           0
## 18380                             Mali 1830           0
## 18381                            Malta 1830           0
## 18382                 Marshall Islands 1830           0
## 18383                       Martinique 1830           0
## 18384                       Mauritania 1830           0
## 18385                        Mauritius 1830           0
## 18386                           Mexico 1830           0
## 18387             Micronesia (country) 1830           0
## 18388                      Middle East 1830           0
## 18389                          Moldova 1830           0
## 18390                         Mongolia 1830           0
## 18391                       Montenegro 1830           0
## 18392                       Montserrat 1830           0
## 18393                          Morocco 1830           0
## 18394                       Mozambique 1830           0
## 18395                          Myanmar 1830           0
## 18396                          Namibia 1830           0
## 18397                            Nauru 1830           0
## 18398                            Nepal 1830           0
## 18399                      Netherlands 1830           0
## 18400                    New Caledonia 1830           0
## 18401                      New Zealand 1830           0
## 18402                        Nicaragua 1830           0
## 18403                            Niger 1830           0
## 18404                          Nigeria 1830           0
## 18405                             Niue 1830           0
## 18406                      North Korea 1830           0
## 18407                           Norway 1830       18320
## 18408                             Oman 1830           0
## 18409                         Pakistan 1830           0
## 18410                            Palau 1830           0
## 18411                        Palestine 1830           0
## 18412                           Panama 1830           0
## 18413                 Papua New Guinea 1830           0
## 18414                         Paraguay 1830           0
## 18415                             Peru 1830           0
## 18416                      Philippines 1830           0
## 18417                           Poland 1830    22951296
## 18418                         Portugal 1830           0
## 18419                            Qatar 1830           0
## 18420                          Reunion 1830           0
## 18421                          Romania 1830           0
## 18422                           Russia 1830           0
## 18423                           Rwanda 1830           0
## 18424                     Saint Helena 1830           0
## 18425            Saint Kitts and Nevis 1830           0
## 18426                      Saint Lucia 1830           0
## 18427        Saint Pierre and Miquelon 1830           0
## 18428 Saint Vincent and the Grenadines 1830           0
## 18429                            Samoa 1830           0
## 18430            Sao Tome and Principe 1830           0
## 18431                     Saudi Arabia 1830           0
## 18432                          Senegal 1830           0
## 18433                           Serbia 1830           0
## 18434                       Seychelles 1830           0
## 18435                     Sierra Leone 1830           0
## 18436                        Singapore 1830           0
## 18437        Sint Maarten (Dutch part) 1830           0
## 18438                         Slovakia 1830           0
## 18439                         Slovenia 1830           0
## 18440                  Solomon Islands 1830           0
## 18441                          Somalia 1830           0
## 18442                     South Africa 1830           0
## 18443                      South Korea 1830           0
## 18444                      South Sudan 1830           0
## 18445                            Spain 1830        3664
## 18446                        Sri Lanka 1830           0
## 18447                            Sudan 1830           0
## 18448                         Suriname 1830           0
## 18449                        Swaziland 1830           0
## 18450                           Sweden 1830           0
## 18451                      Switzerland 1830           0
## 18452                            Syria 1830           0
## 18453                           Taiwan 1830           0
## 18454                       Tajikistan 1830           0
## 18455                         Tanzania 1830           0
## 18456                         Thailand 1830           0
## 18457                            Timor 1830           0
## 18458                             Togo 1830           0
## 18459                            Tonga 1830           0
## 18460              Trinidad and Tobago 1830           0
## 18461                          Tunisia 1830           0
## 18462                           Turkey 1830           0
## 18463                     Turkmenistan 1830           0
## 18464         Turks and Caicos Islands 1830           0
## 18465                           Tuvalu 1830           0
## 18466                           Uganda 1830           0
## 18467                          Ukraine 1830           0
## 18468             United Arab Emirates 1830           0
## 18469                   United Kingdom 1830  1984660560
## 18470                    United States 1830    23017248
## 18471                          Uruguay 1830           0
## 18472                       Uzbekistan 1830           0
## 18473                          Vanuatu 1830           0
## 18474                        Venezuela 1830           0
## 18475                          Vietnam 1830           0
## 18476        Wallis and Futuna Islands 1830           0
## 18477                            World 1830  2200602064
## 18478                            Yemen 1830           0
## 18479                           Zambia 1830           0
## 18480                         Zimbabwe 1830           0
## 18481                      Afghanistan 1831           0
## 18482                           Africa 1831           0
## 18483                          Albania 1831           0
## 18484                          Algeria 1831           0
## 18485                 Americas (other) 1831      172208
## 18486                          Andorra 1831           0
## 18487                           Angola 1831           0
## 18488                         Anguilla 1831           0
## 18489              Antarctic Fisheries 1831           0
## 18490              Antigua and Barbuda 1831           0
## 18491                        Argentina 1831           0
## 18492                          Armenia 1831           0
## 18493                            Aruba 1831           0
## 18494         Asia and Pacific (other) 1831           0
## 18495                        Australia 1831           0
## 18496                          Austria 1831     5474016
## 18497                       Azerbaijan 1831           0
## 18498                          Bahamas 1831           0
## 18499                          Bahrain 1831           0
## 18500                       Bangladesh 1831           0
## 18501                         Barbados 1831           0
## 18502                          Belarus 1831           0
## 18503                          Belgium 1831    17055920
## 18504                           Belize 1831           0
## 18505                            Benin 1831           0
## 18506                          Bermuda 1831           0
## 18507                           Bhutan 1831           0
## 18508                          Bolivia 1831           0
## 18509  Bonaire Sint Eustatius and Saba 1831           0
## 18510           Bosnia and Herzegovina 1831           0
## 18511                         Botswana 1831           0
## 18512                           Brazil 1831           0
## 18513           British Virgin Islands 1831           0
## 18514                           Brunei 1831           0
## 18515                         Bulgaria 1831           0
## 18516                     Burkina Faso 1831           0
## 18517                          Burundi 1831           0
## 18518                         Cambodia 1831           0
## 18519                         Cameroon 1831           0
## 18520                           Canada 1831      172208
## 18521                       Cape Verde 1831           0
## 18522                   Cayman Islands 1831           0
## 18523         Central African Republic 1831           0
## 18524                             Chad 1831           0
## 18525                            Chile 1831           0
## 18526                            China 1831           0
## 18527                 Christmas Island 1831           0
## 18528                         Colombia 1831           0
## 18529                          Comoros 1831           0
## 18530                            Congo 1831           0
## 18531                     Cook Islands 1831           0
## 18532                       Costa Rica 1831           0
## 18533                    Cote d'Ivoire 1831           0
## 18534                          Croatia 1831           0
## 18535                             Cuba 1831           0
## 18536                          Curacao 1831           0
## 18537                           Cyprus 1831           0
## 18538                   Czech Republic 1831           0
## 18539                   Czechoslovakia 1831           0
## 18540     Democratic Republic of Congo 1831           0
## 18541                          Denmark 1831           0
## 18542                         Djibouti 1831           0
## 18543                         Dominica 1831           0
## 18544               Dominican Republic 1831           0
## 18545                            EU-28 1831  2259614448
## 18546                          Ecuador 1831           0
## 18547                            Egypt 1831           0
## 18548                      El Salvador 1831           0
## 18549                Equatorial Guinea 1831           0
## 18550                          Eritrea 1831           0
## 18551                          Estonia 1831           0
## 18552                         Ethiopia 1831           0
## 18553                   Europe (other) 1831       69616
## 18554                   Faeroe Islands 1831           0
## 18555                 Falkland Islands 1831           0
## 18556                             Fiji 1831           0
## 18557                          Finland 1831           0
## 18558                           France 1831    82033296
## 18559                    French Guiana 1831           0
## 18560                 French Polynesia 1831           0
## 18561                            Gabon 1831           0
## 18562                           Gambia 1831           0
## 18563                          Georgia 1831           0
## 18564                          Germany 1831    80673952
## 18565                            Ghana 1831           0
## 18566                        Gibraltar 1831           0
## 18567                           Greece 1831           0
## 18568                        Greenland 1831           0
## 18569                          Grenada 1831           0
## 18570                       Guadeloupe 1831           0
## 18571                        Guatemala 1831           0
## 18572                           Guinea 1831           0
## 18573                    Guinea-Bissau 1831           0
## 18574                           Guyana 1831           0
## 18575                            Haiti 1831           0
## 18576                         Honduras 1831           0
## 18577                        Hong Kong 1831           0
## 18578                          Hungary 1831      183200
## 18579                          Iceland 1831           0
## 18580                            India 1831           0
## 18581                        Indonesia 1831           0
## 18582                             Iran 1831           0
## 18583                             Iraq 1831           0
## 18584                          Ireland 1831           0
## 18585                           Israel 1831           0
## 18586                            Italy 1831           0
## 18587                          Jamaica 1831           0
## 18588                            Japan 1831           0
## 18589                           Jordan 1831           0
## 18590                       Kazakhstan 1831           0
## 18591                            Kenya 1831           0
## 18592                         Kiribati 1831           0
## 18593                           Kuwait 1831           0
## 18594                       Kyrgysztan 1831           0
## 18595                       Kyrgyzstan 1831           0
## 18596                             Laos 1831           0
## 18597                           Latvia 1831           0
## 18598                          Lebanon 1831           0
## 18599                          Lesotho 1831           0
## 18600                          Liberia 1831           0
## 18601                            Libya 1831           0
## 18602                    Liechtenstein 1831           0
## 18603                        Lithuania 1831           0
## 18604                       Luxembourg 1831           0
## 18605                            Macao 1831           0
## 18606                        Macedonia 1831           0
## 18607                       Madagascar 1831           0
## 18608                           Malawi 1831           0
## 18609                         Malaysia 1831           0
## 18610                         Maldives 1831           0
## 18611                             Mali 1831           0
## 18612                            Malta 1831           0
## 18613                 Marshall Islands 1831           0
## 18614                       Martinique 1831           0
## 18615                       Mauritania 1831           0
## 18616                        Mauritius 1831           0
## 18617                           Mexico 1831           0
## 18618             Micronesia (country) 1831           0
## 18619                      Middle East 1831           0
## 18620                          Moldova 1831           0
## 18621                         Mongolia 1831           0
## 18622                       Montenegro 1831           0
## 18623                       Montserrat 1831           0
## 18624                          Morocco 1831           0
## 18625                       Mozambique 1831           0
## 18626                          Myanmar 1831           0
## 18627                          Namibia 1831           0
## 18628                            Nauru 1831           0
## 18629                            Nepal 1831           0
## 18630                      Netherlands 1831           0
## 18631                    New Caledonia 1831           0
## 18632                      New Zealand 1831           0
## 18633                        Nicaragua 1831           0
## 18634                            Niger 1831           0
## 18635                          Nigeria 1831           0
## 18636                             Niue 1831           0
## 18637                      North Korea 1831           0
## 18638                           Norway 1831       21984
## 18639                             Oman 1831           0
## 18640                         Pakistan 1831           0
## 18641                            Palau 1831           0
## 18642                        Palestine 1831           0
## 18643                           Panama 1831           0
## 18644                 Papua New Guinea 1831           0
## 18645                         Paraguay 1831           0
## 18646                             Peru 1831           0
## 18647                      Philippines 1831           0
## 18648                           Poland 1831    23761040
## 18649                         Portugal 1831           0
## 18650                            Qatar 1831           0
## 18651                          Reunion 1831           0
## 18652                          Romania 1831           0
## 18653                           Russia 1831           0
## 18654                           Rwanda 1831           0
## 18655                     Saint Helena 1831           0
## 18656            Saint Kitts and Nevis 1831           0
## 18657                      Saint Lucia 1831           0
## 18658        Saint Pierre and Miquelon 1831           0
## 18659 Saint Vincent and the Grenadines 1831           0
## 18660                            Samoa 1831           0
## 18661            Sao Tome and Principe 1831           0
## 18662                     Saudi Arabia 1831           0
## 18663                          Senegal 1831           0
## 18664                           Serbia 1831           0
## 18665                       Seychelles 1831           0
## 18666                     Sierra Leone 1831           0
## 18667                        Singapore 1831           0
## 18668        Sint Maarten (Dutch part) 1831           0
## 18669                         Slovakia 1831           0
## 18670                         Slovenia 1831           0
## 18671                  Solomon Islands 1831           0
## 18672                          Somalia 1831           0
## 18673                     South Africa 1831           0
## 18674                      South Korea 1831           0
## 18675                      South Sudan 1831           0
## 18676                            Spain 1831        7328
## 18677                        Sri Lanka 1831           0
## 18678                            Sudan 1831           0
## 18679                         Suriname 1831           0
## 18680                        Swaziland 1831           0
## 18681                           Sweden 1831           0
## 18682                      Switzerland 1831           0
## 18683                            Syria 1831           0
## 18684                           Taiwan 1831           0
## 18685                       Tajikistan 1831           0
## 18686                         Tanzania 1831           0
## 18687                         Thailand 1831           0
## 18688                            Timor 1831           0
## 18689                             Togo 1831           0
## 18690                            Tonga 1831           0
## 18691              Trinidad and Tobago 1831           0
## 18692                          Tunisia 1831           0
## 18693                           Turkey 1831           0
## 18694                     Turkmenistan 1831           0
## 18695         Turks and Caicos Islands 1831           0
## 18696                           Tuvalu 1831           0
## 18697                           Uganda 1831           0
## 18698                          Ukraine 1831           0
## 18699             United Arab Emirates 1831           0
## 18700                   United Kingdom 1831  2050425696
## 18701                    United States 1831    25281600
## 18702                          Uruguay 1831           0
## 18703                       Uzbekistan 1831           0
## 18704                          Vanuatu 1831           0
## 18705                        Venezuela 1831           0
## 18706                          Vietnam 1831           0
## 18707        Wallis and Futuna Islands 1831           0
## 18708                            World 1831  2285130544
## 18709                            Yemen 1831           0
## 18710                           Zambia 1831           0
## 18711                         Zimbabwe 1831           0
## 18712                      Afghanistan 1832           0
## 18713                           Africa 1832           0
## 18714                          Albania 1832           0
## 18715                          Algeria 1832           0
## 18716                 Americas (other) 1832      175872
## 18717                          Andorra 1832           0
## 18718                           Angola 1832           0
## 18719                         Anguilla 1832           0
## 18720              Antarctic Fisheries 1832           0
## 18721              Antigua and Barbuda 1832           0
## 18722                        Argentina 1832           0
## 18723                          Armenia 1832           0
## 18724                            Aruba 1832           0
## 18725         Asia and Pacific (other) 1832           0
## 18726                        Australia 1832           0
## 18727                          Austria 1832     5986976
## 18728                       Azerbaijan 1832           0
## 18729                          Bahamas 1832           0
## 18730                          Bahrain 1832           0
## 18731                       Bangladesh 1832           0
## 18732                         Barbados 1832           0
## 18733                          Belarus 1832           0
## 18734                          Belgium 1832    21771488
## 18735                           Belize 1832           0
## 18736                            Benin 1832           0
## 18737                          Bermuda 1832           0
## 18738                           Bhutan 1832           0
## 18739                          Bolivia 1832           0
## 18740  Bonaire Sint Eustatius and Saba 1832           0
## 18741           Bosnia and Herzegovina 1832           0
## 18742                         Botswana 1832           0
## 18743                           Brazil 1832           0
## 18744           British Virgin Islands 1832           0
## 18745                           Brunei 1832           0
## 18746                         Bulgaria 1832           0
## 18747                     Burkina Faso 1832           0
## 18748                          Burundi 1832           0
## 18749                         Cambodia 1832           0
## 18750                         Cameroon 1832           0
## 18751                           Canada 1832      175872
## 18752                       Cape Verde 1832           0
## 18753                   Cayman Islands 1832           0
## 18754         Central African Republic 1832           0
## 18755                             Chad 1832           0
## 18756                            Chile 1832           0
## 18757                            China 1832           0
## 18758                 Christmas Island 1832           0
## 18759                         Colombia 1832           0
## 18760                          Comoros 1832           0
## 18761                            Congo 1832           0
## 18762                     Cook Islands 1832           0
## 18763                       Costa Rica 1832           0
## 18764                    Cote d'Ivoire 1832           0
## 18765                          Croatia 1832           0
## 18766                             Cuba 1832           0
## 18767                          Curacao 1832           0
## 18768                           Cyprus 1832           0
## 18769                   Czech Republic 1832           0
## 18770                   Czechoslovakia 1832           0
## 18771     Democratic Republic of Congo 1832           0
## 18772                          Denmark 1832           0
## 18773                         Djibouti 1832           0
## 18774                         Dominica 1832           0
## 18775               Dominican Republic 1832           0
## 18776                            EU-28 1832  2341684384
## 18777                          Ecuador 1832           0
## 18778                            Egypt 1832           0
## 18779                      El Salvador 1832           0
## 18780                Equatorial Guinea 1832           0
## 18781                          Eritrea 1832           0
## 18782                          Estonia 1832           0
## 18783                         Ethiopia 1832           0
## 18784                   Europe (other) 1832       84272
## 18785                   Faeroe Islands 1832           0
## 18786                 Falkland Islands 1832           0
## 18787                             Fiji 1832           0
## 18788                          Finland 1832           0
## 18789                           France 1832    88712768
## 18790                    French Guiana 1832           0
## 18791                 French Polynesia 1832           0
## 18792                            Gabon 1832           0
## 18793                           Gambia 1832           0
## 18794                          Georgia 1832           0
## 18795                          Germany 1832    84121776
## 18796                            Ghana 1832           0
## 18797                        Gibraltar 1832           0
## 18798                           Greece 1832           0
## 18799                        Greenland 1832           0
## 18800                          Grenada 1832           0
## 18801                       Guadeloupe 1832           0
## 18802                        Guatemala 1832           0
## 18803                           Guinea 1832           0
## 18804                    Guinea-Bissau 1832           0
## 18805                           Guyana 1832           0
## 18806                            Haiti 1832           0
## 18807                         Honduras 1832           0
## 18808                        Hong Kong 1832           0
## 18809                          Hungary 1832      271136
## 18810                          Iceland 1832           0
## 18811                            India 1832           0
## 18812                        Indonesia 1832           0
## 18813                             Iran 1832           0
## 18814                             Iraq 1832           0
## 18815                          Ireland 1832           0
## 18816                           Israel 1832           0
## 18817                            Italy 1832           0
## 18818                          Jamaica 1832           0
## 18819                            Japan 1832           0
## 18820                           Jordan 1832           0
## 18821                       Kazakhstan 1832           0
## 18822                            Kenya 1832           0
## 18823                         Kiribati 1832           0
## 18824                           Kuwait 1832           0
## 18825                       Kyrgysztan 1832           0
## 18826                       Kyrgyzstan 1832           0
## 18827                             Laos 1832           0
## 18828                           Latvia 1832           0
## 18829                          Lebanon 1832           0
## 18830                          Lesotho 1832           0
## 18831                          Liberia 1832           0
## 18832                            Libya 1832           0
## 18833                    Liechtenstein 1832           0
## 18834                        Lithuania 1832           0
## 18835                       Luxembourg 1832           0
## 18836                            Macao 1832           0
## 18837                        Macedonia 1832           0
## 18838                       Madagascar 1832           0
## 18839                           Malawi 1832           0
## 18840                         Malaysia 1832           0
## 18841                         Maldives 1832           0
## 18842                             Mali 1832           0
## 18843                            Malta 1832           0
## 18844                 Marshall Islands 1832           0
## 18845                       Martinique 1832           0
## 18846                       Mauritania 1832           0
## 18847                        Mauritius 1832           0
## 18848                           Mexico 1832           0
## 18849             Micronesia (country) 1832           0
## 18850                      Middle East 1832           0
## 18851                          Moldova 1832           0
## 18852                         Mongolia 1832           0
## 18853                       Montenegro 1832           0
## 18854                       Montserrat 1832           0
## 18855                          Morocco 1832           0
## 18856                       Mozambique 1832           0
## 18857                          Myanmar 1832           0
## 18858                          Namibia 1832           0
## 18859                            Nauru 1832           0
## 18860                            Nepal 1832           0
## 18861                      Netherlands 1832           0
## 18862                    New Caledonia 1832           0
## 18863                      New Zealand 1832           0
## 18864                        Nicaragua 1832           0
## 18865                            Niger 1832           0
## 18866                          Nigeria 1832           0
## 18867                             Niue 1832           0
## 18868                      North Korea 1832           0
## 18869                           Norway 1832       21984
## 18870                             Oman 1832           0
## 18871                         Pakistan 1832           0
## 18872                            Palau 1832           0
## 18873                        Palestine 1832           0
## 18874                           Panama 1832           0
## 18875                 Papua New Guinea 1832           0
## 18876                         Paraguay 1832           0
## 18877                             Peru 1832           0
## 18878                      Philippines 1832           0
## 18879                           Poland 1832    24794288
## 18880                         Portugal 1832           0
## 18881                            Qatar 1832           0
## 18882                          Reunion 1832           0
## 18883                          Romania 1832           0
## 18884                           Russia 1832           0
## 18885                           Rwanda 1832           0
## 18886                     Saint Helena 1832           0
## 18887            Saint Kitts and Nevis 1832           0
## 18888                      Saint Lucia 1832           0
## 18889        Saint Pierre and Miquelon 1832           0
## 18890 Saint Vincent and the Grenadines 1832           0
## 18891                            Samoa 1832           0
## 18892            Sao Tome and Principe 1832           0
## 18893                     Saudi Arabia 1832           0
## 18894                          Senegal 1832           0
## 18895                           Serbia 1832           0
## 18896                       Seychelles 1832           0
## 18897                     Sierra Leone 1832           0
## 18898                        Singapore 1832           0
## 18899        Sint Maarten (Dutch part) 1832           0
## 18900                         Slovakia 1832           0
## 18901                         Slovenia 1832           0
## 18902                  Solomon Islands 1832           0
## 18903                          Somalia 1832           0
## 18904                     South Africa 1832           0
## 18905                      South Korea 1832           0
## 18906                      South Sudan 1832           0
## 18907                            Spain 1832       10992
## 18908                        Sri Lanka 1832           0
## 18909                            Sudan 1832           0
## 18910                         Suriname 1832           0
## 18911                        Swaziland 1832           0
## 18912                           Sweden 1832           0
## 18913                      Switzerland 1832           0
## 18914                            Syria 1832           0
## 18915                           Taiwan 1832           0
## 18916                       Tajikistan 1832           0
## 18917                         Tanzania 1832           0
## 18918                         Thailand 1832           0
## 18919                            Timor 1832           0
## 18920                             Togo 1832           0
## 18921                            Tonga 1832           0
## 18922              Trinidad and Tobago 1832           0
## 18923                          Tunisia 1832           0
## 18924                           Turkey 1832           0
## 18925                     Turkmenistan 1832           0
## 18926         Turks and Caicos Islands 1832           0
## 18927                           Tuvalu 1832           0
## 18928                           Uganda 1832           0
## 18929                          Ukraine 1832           0
## 18930             United Arab Emirates 1832           0
## 18931                   United Kingdom 1832  2116014960
## 18932                    United States 1832    28304400
## 18933                          Uruguay 1832           0
## 18934                       Uzbekistan 1832           0
## 18935                          Vanuatu 1832           0
## 18936                        Venezuela 1832           0
## 18937                          Vietnam 1832           0
## 18938        Wallis and Futuna Islands 1832           0
## 18939                            World 1832  2370241600
## 18940                            Yemen 1832           0
## 18941                           Zambia 1832           0
## 18942                         Zimbabwe 1832           0
## 18943                      Afghanistan 1833           0
## 18944                           Africa 1833           0
## 18945                          Albania 1833           0
## 18946                          Algeria 1833           0
## 18947                 Americas (other) 1833      179536
## 18948                          Andorra 1833           0
## 18949                           Angola 1833           0
## 18950                         Anguilla 1833           0
## 18951              Antarctic Fisheries 1833           0
## 18952              Antigua and Barbuda 1833           0
## 18953                        Argentina 1833           0
## 18954                          Armenia 1833           0
## 18955                            Aruba 1833           0
## 18956         Asia and Pacific (other) 1833           0
## 18957                        Australia 1833           0
## 18958                          Austria 1833     6415664
## 18959                       Azerbaijan 1833           0
## 18960                          Bahamas 1833           0
## 18961                          Bahrain 1833           0
## 18962                       Bangladesh 1833           0
## 18963                         Barbados 1833           0
## 18964                          Belarus 1833           0
## 18965                          Belgium 1833    26336832
## 18966                           Belize 1833           0
## 18967                            Benin 1833           0
## 18968                          Bermuda 1833           0
## 18969                           Bhutan 1833           0
## 18970                          Bolivia 1833           0
## 18971  Bonaire Sint Eustatius and Saba 1833           0
## 18972           Bosnia and Herzegovina 1833           0
## 18973                         Botswana 1833           0
## 18974                           Brazil 1833           0
## 18975           British Virgin Islands 1833           0
## 18976                           Brunei 1833           0
## 18977                         Bulgaria 1833           0
## 18978                     Burkina Faso 1833           0
## 18979                          Burundi 1833           0
## 18980                         Cambodia 1833           0
## 18981                         Cameroon 1833           0
## 18982                           Canada 1833      179536
## 18983                       Cape Verde 1833           0
## 18984                   Cayman Islands 1833           0
## 18985         Central African Republic 1833           0
## 18986                             Chad 1833           0
## 18987                            Chile 1833           0
## 18988                            China 1833           0
## 18989                 Christmas Island 1833           0
## 18990                         Colombia 1833           0
## 18991                          Comoros 1833           0
## 18992                            Congo 1833           0
## 18993                     Cook Islands 1833           0
## 18994                       Costa Rica 1833           0
## 18995                    Cote d'Ivoire 1833           0
## 18996                          Croatia 1833           0
## 18997                             Cuba 1833           0
## 18998                          Curacao 1833           0
## 18999                           Cyprus 1833           0
## 19000                   Czech Republic 1833           0
## 19001                   Czechoslovakia 1833           0
## 19002     Democratic Republic of Congo 1833           0
## 19003                          Denmark 1833           0
## 19004                         Djibouti 1833           0
## 19005                         Dominica 1833           0
## 19006               Dominican Republic 1833           0
## 19007                            EU-28 1833  2424941456
## 19008                          Ecuador 1833           0
## 19009                            Egypt 1833           0
## 19010                      El Salvador 1833           0
## 19011                Equatorial Guinea 1833           0
## 19012                          Eritrea 1833           0
## 19013                          Estonia 1833           0
## 19014                         Ethiopia 1833           0
## 19015                   Europe (other) 1833      102592
## 19016                   Faeroe Islands 1833           0
## 19017                 Falkland Islands 1833           0
## 19018                             Fiji 1833           0
## 19019                          Finland 1833           0
## 19020                           France 1833    95960160
## 19021                    French Guiana 1833           0
## 19022                 French Polynesia 1833           0
## 19023                            Gabon 1833           0
## 19024                           Gambia 1833           0
## 19025                          Georgia 1833           0
## 19026                          Germany 1833    88500256
## 19027                            Ghana 1833           0
## 19028                        Gibraltar 1833           0
## 19029                           Greece 1833           0
## 19030                        Greenland 1833           0
## 19031                          Grenada 1833           0
## 19032                       Guadeloupe 1833           0
## 19033                        Guatemala 1833           0
## 19034                           Guinea 1833           0
## 19035                    Guinea-Bissau 1833           0
## 19036                           Guyana 1833           0
## 19037                            Haiti 1833           0
## 19038                         Honduras 1833           0
## 19039                        Hong Kong 1833           0
## 19040                          Hungary 1833      337088
## 19041                          Iceland 1833           0
## 19042                            India 1833           0
## 19043                        Indonesia 1833           0
## 19044                             Iran 1833           0
## 19045                             Iraq 1833           0
## 19046                          Ireland 1833           0
## 19047                           Israel 1833           0
## 19048                            Italy 1833           0
## 19049                          Jamaica 1833           0
## 19050                            Japan 1833           0
## 19051                           Jordan 1833           0
## 19052                       Kazakhstan 1833           0
## 19053                            Kenya 1833           0
## 19054                         Kiribati 1833           0
## 19055                           Kuwait 1833           0
## 19056                       Kyrgysztan 1833           0
## 19057                       Kyrgyzstan 1833           0
## 19058                             Laos 1833           0
## 19059                           Latvia 1833           0
## 19060                          Lebanon 1833           0
## 19061                          Lesotho 1833           0
## 19062                          Liberia 1833           0
## 19063                            Libya 1833           0
## 19064                    Liechtenstein 1833           0
## 19065                        Lithuania 1833           0
## 19066                       Luxembourg 1833           0
## 19067                            Macao 1833           0
## 19068                        Macedonia 1833           0
## 19069                       Madagascar 1833           0
## 19070                           Malawi 1833           0
## 19071                         Malaysia 1833           0
## 19072                         Maldives 1833           0
## 19073                             Mali 1833           0
## 19074                            Malta 1833           0
## 19075                 Marshall Islands 1833           0
## 19076                       Martinique 1833           0
## 19077                       Mauritania 1833           0
## 19078                        Mauritius 1833           0
## 19079                           Mexico 1833           0
## 19080             Micronesia (country) 1833           0
## 19081                      Middle East 1833           0
## 19082                          Moldova 1833           0
## 19083                         Mongolia 1833           0
## 19084                       Montenegro 1833           0
## 19085                       Montserrat 1833           0
## 19086                          Morocco 1833           0
## 19087                       Mozambique 1833           0
## 19088                          Myanmar 1833           0
## 19089                          Namibia 1833           0
## 19090                            Nauru 1833           0
## 19091                            Nepal 1833           0
## 19092                      Netherlands 1833           0
## 19093                    New Caledonia 1833           0
## 19094                      New Zealand 1833           0
## 19095                        Nicaragua 1833           0
## 19096                            Niger 1833           0
## 19097                          Nigeria 1833           0
## 19098                             Niue 1833           0
## 19099                      North Korea 1833           0
## 19100                           Norway 1833       21984
## 19101                             Oman 1833           0
## 19102                         Pakistan 1833           0
## 19103                            Palau 1833           0
## 19104                        Palestine 1833           0
## 19105                           Panama 1833           0
## 19106                 Papua New Guinea 1833           0
## 19107                         Paraguay 1833           0
## 19108                             Peru 1833           0
## 19109                      Philippines 1833           0
## 19110                           Poland 1833    25867840
## 19111                         Portugal 1833           0
## 19112                            Qatar 1833           0
## 19113                          Reunion 1833           0
## 19114                          Romania 1833           0
## 19115                           Russia 1833           0
## 19116                           Rwanda 1833           0
## 19117                     Saint Helena 1833           0
## 19118            Saint Kitts and Nevis 1833           0
## 19119                      Saint Lucia 1833           0
## 19120        Saint Pierre and Miquelon 1833           0
## 19121 Saint Vincent and the Grenadines 1833           0
## 19122                            Samoa 1833           0
## 19123            Sao Tome and Principe 1833           0
## 19124                     Saudi Arabia 1833           0
## 19125                          Senegal 1833           0
## 19126                           Serbia 1833           0
## 19127                       Seychelles 1833           0
## 19128                     Sierra Leone 1833           0
## 19129                        Singapore 1833           0
## 19130        Sint Maarten (Dutch part) 1833           0
## 19131                         Slovakia 1833           0
## 19132                         Slovenia 1833           0
## 19133                  Solomon Islands 1833           0
## 19134                          Somalia 1833           0
## 19135                     South Africa 1833           0
## 19136                      South Korea 1833           0
## 19137                      South Sudan 1833           0
## 19138                            Spain 1833       14656
## 19139                        Sri Lanka 1833           0
## 19140                            Sudan 1833           0
## 19141                         Suriname 1833           0
## 19142                        Swaziland 1833           0
## 19143                           Sweden 1833           0
## 19144                      Switzerland 1833           0
## 19145                            Syria 1833           0
## 19146                           Taiwan 1833           0
## 19147                       Tajikistan 1833           0
## 19148                         Tanzania 1833           0
## 19149                         Thailand 1833           0
## 19150                            Timor 1833           0
## 19151                             Togo 1833           0
## 19152                            Tonga 1833           0
## 19153              Trinidad and Tobago 1833           0
## 19154                          Tunisia 1833           0
## 19155                           Turkey 1833           0
## 19156                     Turkmenistan 1833           0
## 19157         Turks and Caicos Islands 1833           0
## 19158                           Tuvalu 1833           0
## 19159                           Uganda 1833           0
## 19160                          Ukraine 1833           0
## 19161             United Arab Emirates 1833           0
## 19162                   United Kingdom 1833  2181508960
## 19163                    United States 1833    31832832
## 19164                          Uruguay 1833           0
## 19165                       Uzbekistan 1833           0
## 19166                          Vanuatu 1833           0
## 19167                        Venezuela 1833           0
## 19168                          Vietnam 1833           0
## 19169        Wallis and Futuna Islands 1833           0
## 19170                            World 1833  2457049088
## 19171                            Yemen 1833           0
## 19172                           Zambia 1833           0
## 19173                         Zimbabwe 1833           0
## 19174                      Afghanistan 1834           0
## 19175                           Africa 1834           0
## 19176                          Albania 1834           0
## 19177                          Algeria 1834           0
## 19178                 Americas (other) 1834      183200
## 19179                          Andorra 1834           0
## 19180                           Angola 1834           0
## 19181                         Anguilla 1834           0
## 19182              Antarctic Fisheries 1834           0
## 19183              Antigua and Barbuda 1834           0
## 19184                        Argentina 1834           0
## 19185                          Armenia 1834           0
## 19186                            Aruba 1834           0
## 19187         Asia and Pacific (other) 1834           0
## 19188                        Australia 1834           0
## 19189                          Austria 1834     7001904
## 19190                       Azerbaijan 1834           0
## 19191                          Bahamas 1834           0
## 19192                          Bahrain 1834           0
## 19193                       Bangladesh 1834           0
## 19194                         Barbados 1834           0
## 19195                          Belarus 1834           0
## 19196                          Belgium 1834    30744624
## 19197                           Belize 1834           0
## 19198                            Benin 1834           0
## 19199                          Bermuda 1834           0
## 19200                           Bhutan 1834           0
## 19201                          Bolivia 1834           0
## 19202  Bonaire Sint Eustatius and Saba 1834           0
## 19203           Bosnia and Herzegovina 1834           0
## 19204                         Botswana 1834           0
## 19205                           Brazil 1834           0
## 19206           British Virgin Islands 1834           0
## 19207                           Brunei 1834           0
## 19208                         Bulgaria 1834           0
## 19209                     Burkina Faso 1834           0
## 19210                          Burundi 1834           0
## 19211                         Cambodia 1834           0
## 19212                         Cameroon 1834           0
## 19213                           Canada 1834      183200
## 19214                       Cape Verde 1834           0
## 19215                   Cayman Islands 1834           0
## 19216         Central African Republic 1834           0
## 19217                             Chad 1834           0
## 19218                            Chile 1834           0
## 19219                            China 1834           0
## 19220                 Christmas Island 1834           0
## 19221                         Colombia 1834           0
## 19222                          Comoros 1834           0
## 19223                            Congo 1834           0
## 19224                     Cook Islands 1834           0
## 19225                       Costa Rica 1834           0
## 19226                    Cote d'Ivoire 1834           0
## 19227                          Croatia 1834           0
## 19228                             Cuba 1834           0
## 19229                          Curacao 1834           0
## 19230                           Cyprus 1834           0
## 19231                   Czech Republic 1834           0
## 19232                   Czechoslovakia 1834           0
## 19233     Democratic Republic of Congo 1834           0
## 19234                          Denmark 1834           0
## 19235                         Djibouti 1834           0
## 19236                         Dominica 1834           0
## 19237               Dominican Republic 1834           0
## 19238                            EU-28 1834  2510041520
## 19239                          Ecuador 1834           0
## 19240                            Egypt 1834           0
## 19241                      El Salvador 1834           0
## 19242                Equatorial Guinea 1834           0
## 19243                          Eritrea 1834           0
## 19244                          Estonia 1834           0
## 19245                         Ethiopia 1834           0
## 19246                   Europe (other) 1834       98928
## 19247                   Faeroe Islands 1834           0
## 19248                 Falkland Islands 1834           0
## 19249                             Fiji 1834           0
## 19250                          Finland 1834           0
## 19251                           France 1834   104882000
## 19252                    French Guiana 1834           0
## 19253                 French Polynesia 1834           0
## 19254                            Gabon 1834           0
## 19255                           Gambia 1834           0
## 19256                          Georgia 1834           0
## 19257                          Germany 1834    92911712
## 19258                            Ghana 1834           0
## 19259                        Gibraltar 1834           0
## 19260                           Greece 1834           0
## 19261                        Greenland 1834           0
## 19262                          Grenada 1834           0
## 19263                       Guadeloupe 1834           0
## 19264                        Guatemala 1834           0
## 19265                           Guinea 1834           0
## 19266                    Guinea-Bissau 1834           0
## 19267                           Guyana 1834           0
## 19268                            Haiti 1834           0
## 19269                         Honduras 1834           0
## 19270                        Hong Kong 1834           0
## 19271                          Hungary 1834      406704
## 19272                          Iceland 1834           0
## 19273                            India 1834           0
## 19274                        Indonesia 1834           0
## 19275                             Iran 1834           0
## 19276                             Iraq 1834           0
## 19277                          Ireland 1834           0
## 19278                           Israel 1834           0
## 19279                            Italy 1834           0
## 19280                          Jamaica 1834           0
## 19281                            Japan 1834           0
## 19282                           Jordan 1834           0
## 19283                       Kazakhstan 1834           0
## 19284                            Kenya 1834           0
## 19285                         Kiribati 1834           0
## 19286                           Kuwait 1834           0
## 19287                       Kyrgysztan 1834           0
## 19288                       Kyrgyzstan 1834           0
## 19289                             Laos 1834           0
## 19290                           Latvia 1834           0
## 19291                          Lebanon 1834           0
## 19292                          Lesotho 1834           0
## 19293                          Liberia 1834           0
## 19294                            Libya 1834           0
## 19295                    Liechtenstein 1834           0
## 19296                        Lithuania 1834           0
## 19297                       Luxembourg 1834           0
## 19298                            Macao 1834           0
## 19299                        Macedonia 1834           0
## 19300                       Madagascar 1834           0
## 19301                           Malawi 1834           0
## 19302                         Malaysia 1834           0
## 19303                         Maldives 1834           0
## 19304                             Mali 1834           0
## 19305                            Malta 1834           0
## 19306                 Marshall Islands 1834           0
## 19307                       Martinique 1834           0
## 19308                       Mauritania 1834           0
## 19309                        Mauritius 1834           0
## 19310                           Mexico 1834           0
## 19311             Micronesia (country) 1834           0
## 19312                      Middle East 1834           0
## 19313                          Moldova 1834           0
## 19314                         Mongolia 1834           0
## 19315                       Montenegro 1834           0
## 19316                       Montserrat 1834           0
## 19317                          Morocco 1834           0
## 19318                       Mozambique 1834           0
## 19319                          Myanmar 1834           0
## 19320                          Namibia 1834           0
## 19321                            Nauru 1834           0
## 19322                            Nepal 1834           0
## 19323                      Netherlands 1834           0
## 19324                    New Caledonia 1834           0
## 19325                      New Zealand 1834           0
## 19326                        Nicaragua 1834           0
## 19327                            Niger 1834           0
## 19328                          Nigeria 1834           0
## 19329                             Niue 1834           0
## 19330                      North Korea 1834           0
## 19331                           Norway 1834       21984
## 19332                             Oman 1834           0
## 19333                         Pakistan 1834           0
## 19334                            Palau 1834           0
## 19335                        Palestine 1834           0
## 19336                           Panama 1834           0
## 19337                 Papua New Guinea 1834           0
## 19338                         Paraguay 1834           0
## 19339                             Peru 1834           0
## 19340                      Philippines 1834           0
## 19341                           Poland 1834    26996352
## 19342                         Portugal 1834           0
## 19343                            Qatar 1834           0
## 19344                          Reunion 1834           0
## 19345                          Romania 1834           0
## 19346                           Russia 1834           0
## 19347                           Rwanda 1834           0
## 19348                     Saint Helena 1834           0
## 19349            Saint Kitts and Nevis 1834           0
## 19350                      Saint Lucia 1834           0
## 19351        Saint Pierre and Miquelon 1834           0
## 19352 Saint Vincent and the Grenadines 1834           0
## 19353                            Samoa 1834           0
## 19354            Sao Tome and Principe 1834           0
## 19355                     Saudi Arabia 1834           0
## 19356                          Senegal 1834           0
## 19357                           Serbia 1834           0
## 19358                       Seychelles 1834           0
## 19359                     Sierra Leone 1834           0
## 19360                        Singapore 1834           0
## 19361        Sint Maarten (Dutch part) 1834           0
## 19362                         Slovakia 1834           0
## 19363                         Slovenia 1834           0
## 19364                  Solomon Islands 1834           0
## 19365                          Somalia 1834           0
## 19366                     South Africa 1834           0
## 19367                      South Korea 1834           0
## 19368                      South Sudan 1834           0
## 19369                            Spain 1834       18320
## 19370                        Sri Lanka 1834           0
## 19371                            Sudan 1834           0
## 19372                         Suriname 1834           0
## 19373                        Swaziland 1834           0
## 19374                           Sweden 1834       32976
## 19375                      Switzerland 1834           0
## 19376                            Syria 1834           0
## 19377                           Taiwan 1834           0
## 19378                       Tajikistan 1834           0
## 19379                         Tanzania 1834           0
## 19380                         Thailand 1834           0
## 19381                            Timor 1834           0
## 19382                             Togo 1834           0
## 19383                            Tonga 1834           0
## 19384              Trinidad and Tobago 1834           0
## 19385                          Tunisia 1834           0
## 19386                           Turkey 1834           0
## 19387                     Turkmenistan 1834           0
## 19388         Turks and Caicos Islands 1834           0
## 19389                           Tuvalu 1834           0
## 19390                           Uganda 1834           0
## 19391                          Ukraine 1834           0
## 19392             United Arab Emirates 1834           0
## 19393                   United Kingdom 1834  2247046928
## 19394                    United States 1834    35214704
## 19395                          Uruguay 1834           0
## 19396                       Uzbekistan 1834           0
## 19397                          Vanuatu 1834           0
## 19398                        Venezuela 1834           0
## 19399                          Vietnam 1834           0
## 19400        Wallis and Futuna Islands 1834           0
## 19401                            World 1834  2545534688
## 19402                            Yemen 1834           0
## 19403                           Zambia 1834           0
## 19404                         Zimbabwe 1834           0
## 19405                      Afghanistan 1835           0
## 19406                           Africa 1835           0
## 19407                          Albania 1835           0
## 19408                          Algeria 1835           0
## 19409                 Americas (other) 1835      186864
## 19410                          Andorra 1835           0
## 19411                           Angola 1835           0
## 19412                         Anguilla 1835           0
## 19413              Antarctic Fisheries 1835           0
## 19414              Antigua and Barbuda 1835           0
## 19415                        Argentina 1835           0
## 19416                          Armenia 1835           0
## 19417                            Aruba 1835           0
## 19418         Asia and Pacific (other) 1835           0
## 19419                        Australia 1835           0
## 19420                          Austria 1835     7635776
## 19421                       Azerbaijan 1835           0
## 19422                          Bahamas 1835           0
## 19423                          Bahrain 1835           0
## 19424                       Bangladesh 1835           0
## 19425                         Barbados 1835           0
## 19426                          Belarus 1835           0
## 19427                          Belgium 1835    35504160
## 19428                           Belize 1835           0
## 19429                            Benin 1835           0
## 19430                          Bermuda 1835           0
## 19431                           Bhutan 1835           0
## 19432                          Bolivia 1835           0
## 19433  Bonaire Sint Eustatius and Saba 1835           0
## 19434           Bosnia and Herzegovina 1835           0
## 19435                         Botswana 1835           0
## 19436                           Brazil 1835           0
## 19437           British Virgin Islands 1835           0
## 19438                           Brunei 1835           0
## 19439                         Bulgaria 1835           0
## 19440                     Burkina Faso 1835           0
## 19441                          Burundi 1835           0
## 19442                         Cambodia 1835           0
## 19443                         Cameroon 1835           0
## 19444                           Canada 1835      186864
## 19445                       Cape Verde 1835           0
## 19446                   Cayman Islands 1835           0
## 19447         Central African Republic 1835           0
## 19448                             Chad 1835           0
## 19449                            Chile 1835           0
## 19450                            China 1835           0
## 19451                 Christmas Island 1835           0
## 19452                         Colombia 1835           0
## 19453                          Comoros 1835           0
## 19454                            Congo 1835           0
## 19455                     Cook Islands 1835           0
## 19456                       Costa Rica 1835           0
## 19457                    Cote d'Ivoire 1835           0
## 19458                          Croatia 1835           0
## 19459                             Cuba 1835           0
## 19460                          Curacao 1835           0
## 19461                           Cyprus 1835           0
## 19462                   Czech Republic 1835           0
## 19463                   Czechoslovakia 1835           0
## 19464     Democratic Republic of Congo 1835           0
## 19465                          Denmark 1835           0
## 19466                         Djibouti 1835           0
## 19467                         Dominica 1835           0
## 19468               Dominican Republic 1835           0
## 19469                            EU-28 1835  2596152848
## 19470                          Ecuador 1835           0
## 19471                            Egypt 1835           0
## 19472                      El Salvador 1835           0
## 19473                Equatorial Guinea 1835           0
## 19474                          Eritrea 1835           0
## 19475                          Estonia 1835           0
## 19476                         Ethiopia 1835           0
## 19477                   Europe (other) 1835      113584
## 19478                   Faeroe Islands 1835           0
## 19479                 Falkland Islands 1835           0
## 19480                             Fiji 1835           0
## 19481                          Finland 1835           0
## 19482                           France 1835   114140928
## 19483                    French Guiana 1835           0
## 19484                 French Polynesia 1835           0
## 19485                            Gabon 1835           0
## 19486                           Gambia 1835           0
## 19487                          Georgia 1835           0
## 19488                          Germany 1835    97843456
## 19489                            Ghana 1835           0
## 19490                        Gibraltar 1835           0
## 19491                           Greece 1835           0
## 19492                        Greenland 1835           0
## 19493                          Grenada 1835           0
## 19494                       Guadeloupe 1835           0
## 19495                        Guatemala 1835           0
## 19496                           Guinea 1835           0
## 19497                    Guinea-Bissau 1835           0
## 19498                           Guyana 1835           0
## 19499                            Haiti 1835           0
## 19500                         Honduras 1835           0
## 19501                        Hong Kong 1835           0
## 19502                          Hungary 1835      458000
## 19503                          Iceland 1835           0
## 19504                            India 1835           0
## 19505                        Indonesia 1835           0
## 19506                             Iran 1835           0
## 19507                             Iraq 1835           0
## 19508                          Ireland 1835           0
## 19509                           Israel 1835           0
## 19510                            Italy 1835           0
## 19511                          Jamaica 1835           0
## 19512                            Japan 1835           0
## 19513                           Jordan 1835           0
## 19514                       Kazakhstan 1835           0
## 19515                            Kenya 1835           0
## 19516                         Kiribati 1835           0
## 19517                           Kuwait 1835           0
## 19518                       Kyrgysztan 1835           0
## 19519                       Kyrgyzstan 1835           0
## 19520                             Laos 1835           0
## 19521                           Latvia 1835           0
## 19522                          Lebanon 1835           0
## 19523                          Lesotho 1835           0
## 19524                          Liberia 1835           0
## 19525                            Libya 1835           0
## 19526                    Liechtenstein 1835           0
## 19527                        Lithuania 1835           0
## 19528                       Luxembourg 1835           0
## 19529                            Macao 1835           0
## 19530                        Macedonia 1835           0
## 19531                       Madagascar 1835           0
## 19532                           Malawi 1835           0
## 19533                         Malaysia 1835           0
## 19534                         Maldives 1835           0
## 19535                             Mali 1835           0
## 19536                            Malta 1835           0
## 19537                 Marshall Islands 1835           0
## 19538                       Martinique 1835           0
## 19539                       Mauritania 1835           0
## 19540                        Mauritius 1835           0
## 19541                           Mexico 1835           0
## 19542             Micronesia (country) 1835           0
## 19543                      Middle East 1835           0
## 19544                          Moldova 1835           0
## 19545                         Mongolia 1835           0
## 19546                       Montenegro 1835           0
## 19547                       Montserrat 1835           0
## 19548                          Morocco 1835           0
## 19549                       Mozambique 1835           0
## 19550                          Myanmar 1835           0
## 19551                          Namibia 1835           0
## 19552                            Nauru 1835           0
## 19553                            Nepal 1835           0
## 19554                      Netherlands 1835           0
## 19555                    New Caledonia 1835           0
## 19556                      New Zealand 1835           0
## 19557                        Nicaragua 1835           0
## 19558                            Niger 1835           0
## 19559                          Nigeria 1835           0
## 19560                             Niue 1835           0
## 19561                      North Korea 1835           0
## 19562                           Norway 1835       36640
## 19563                             Oman 1835           0
## 19564                         Pakistan 1835           0
## 19565                            Palau 1835           0
## 19566                        Palestine 1835           0
## 19567                           Panama 1835           0
## 19568                 Papua New Guinea 1835           0
## 19569                         Paraguay 1835           0
## 19570                             Peru 1835           0
## 19571                      Philippines 1835           0
## 19572                           Poland 1835    28205472
## 19573                         Portugal 1835           0
## 19574                            Qatar 1835           0
## 19575                          Reunion 1835           0
## 19576                          Romania 1835           0
## 19577                           Russia 1835           0
## 19578                           Rwanda 1835           0
## 19579                     Saint Helena 1835           0
## 19580            Saint Kitts and Nevis 1835           0
## 19581                      Saint Lucia 1835           0
## 19582        Saint Pierre and Miquelon 1835           0
## 19583 Saint Vincent and the Grenadines 1835           0
## 19584                            Samoa 1835           0
## 19585            Sao Tome and Principe 1835           0
## 19586                     Saudi Arabia 1835           0
## 19587                          Senegal 1835           0
## 19588                           Serbia 1835           0
## 19589                       Seychelles 1835           0
## 19590                     Sierra Leone 1835           0
## 19591                        Singapore 1835           0
## 19592        Sint Maarten (Dutch part) 1835           0
## 19593                         Slovakia 1835           0
## 19594                         Slovenia 1835           0
## 19595                  Solomon Islands 1835           0
## 19596                          Somalia 1835           0
## 19597                     South Africa 1835           0
## 19598                      South Korea 1835           0
## 19599                      South Sudan 1835           0
## 19600                            Spain 1835       21984
## 19601                        Sri Lanka 1835           0
## 19602                            Sudan 1835           0
## 19603                         Suriname 1835           0
## 19604                        Swaziland 1835           0
## 19605                           Sweden 1835       32976
## 19606                      Switzerland 1835           0
## 19607                            Syria 1835           0
## 19608                           Taiwan 1835           0
## 19609                       Tajikistan 1835           0
## 19610                         Tanzania 1835           0
## 19611                         Thailand 1835           0
## 19612                            Timor 1835           0
## 19613                             Togo 1835           0
## 19614                            Tonga 1835           0
## 19615              Trinidad and Tobago 1835           0
## 19616                          Tunisia 1835           0
## 19617                           Turkey 1835           0
## 19618                     Turkmenistan 1835           0
## 19619         Turks and Caicos Islands 1835           0
## 19620                           Tuvalu 1835           0
## 19621                           Uganda 1835           0
## 19622                          Ukraine 1835           0
## 19623             United Arab Emirates 1835           0
## 19624                   United Kingdom 1835  2312310096
## 19625                    United States 1835    39530896
## 19626                          Uruguay 1835           0
## 19627                       Uzbekistan 1835           0
## 19628                          Vanuatu 1835           0
## 19629                        Venezuela 1835           0
## 19630                          Vietnam 1835           0
## 19631        Wallis and Futuna Islands 1835           0
## 19632                            World 1835  2635980528
## 19633                            Yemen 1835           0
## 19634                           Zambia 1835           0
## 19635                         Zimbabwe 1835           0
## 19636                      Afghanistan 1836           0
## 19637                           Africa 1836           0
## 19638                          Albania 1836           0
## 19639                          Algeria 1836           0
## 19640                 Americas (other) 1836      190528
## 19641                          Andorra 1836           0
## 19642                           Angola 1836           0
## 19643                         Anguilla 1836           0
## 19644              Antarctic Fisheries 1836           0
## 19645              Antigua and Barbuda 1836           0
## 19646                        Argentina 1836           0
## 19647                          Armenia 1836           0
## 19648                            Aruba 1836           0
## 19649         Asia and Pacific (other) 1836           0
## 19650                        Australia 1836           0
## 19651                          Austria 1836     8309952
## 19652                       Azerbaijan 1836           0
## 19653                          Bahamas 1836           0
## 19654                          Bahrain 1836           0
## 19655                       Bangladesh 1836           0
## 19656                         Barbados 1836           0
## 19657                          Belarus 1836           0
## 19658                          Belgium 1836    41102752
## 19659                           Belize 1836           0
## 19660                            Benin 1836           0
## 19661                          Bermuda 1836           0
## 19662                           Bhutan 1836           0
## 19663                          Bolivia 1836           0
## 19664  Bonaire Sint Eustatius and Saba 1836           0
## 19665           Bosnia and Herzegovina 1836           0
## 19666                         Botswana 1836           0
## 19667                           Brazil 1836           0
## 19668           British Virgin Islands 1836           0
## 19669                           Brunei 1836           0
## 19670                         Bulgaria 1836           0
## 19671                     Burkina Faso 1836           0
## 19672                          Burundi 1836           0
## 19673                         Cambodia 1836           0
## 19674                         Cameroon 1836           0
## 19675                           Canada 1836      190528
## 19676                       Cape Verde 1836           0
## 19677                   Cayman Islands 1836           0
## 19678         Central African Republic 1836           0
## 19679                             Chad 1836           0
## 19680                            Chile 1836           0
## 19681                            China 1836           0
## 19682                 Christmas Island 1836           0
## 19683                         Colombia 1836           0
## 19684                          Comoros 1836           0
## 19685                            Congo 1836           0
## 19686                     Cook Islands 1836           0
## 19687                       Costa Rica 1836           0
## 19688                    Cote d'Ivoire 1836           0
## 19689                          Croatia 1836           0
## 19690                             Cuba 1836           0
## 19691                          Curacao 1836           0
## 19692                           Cyprus 1836           0
## 19693                   Czech Republic 1836           0
## 19694                   Czechoslovakia 1836           0
## 19695     Democratic Republic of Congo 1836           0
## 19696                          Denmark 1836           0
## 19697                         Djibouti 1836           0
## 19698                         Dominica 1836           0
## 19699               Dominican Republic 1836           0
## 19700                            EU-28 1836  2696176384
## 19701                          Ecuador 1836           0
## 19702                            Egypt 1836           0
## 19703                      El Salvador 1836           0
## 19704                Equatorial Guinea 1836           0
## 19705                          Eritrea 1836           0
## 19706                          Estonia 1836           0
## 19707                         Ethiopia 1836           0
## 19708                   Europe (other) 1836      128240
## 19709                   Faeroe Islands 1836           0
## 19710                 Falkland Islands 1836           0
## 19711                             Fiji 1836           0
## 19712                          Finland 1836           0
## 19713                           France 1836   124777520
## 19714                    French Guiana 1836           0
## 19715                 French Polynesia 1836           0
## 19716                            Gabon 1836           0
## 19717                           Gambia 1836           0
## 19718                          Georgia 1836           0
## 19719                          Germany 1836   103035344
## 19720                            Ghana 1836           0
## 19721                        Gibraltar 1836           0
## 19722                           Greece 1836           0
## 19723                        Greenland 1836           0
## 19724                          Grenada 1836           0
## 19725                       Guadeloupe 1836           0
## 19726                        Guatemala 1836           0
## 19727                           Guinea 1836           0
## 19728                    Guinea-Bissau 1836           0
## 19729                           Guyana 1836           0
## 19730                            Haiti 1836           0
## 19731                         Honduras 1836           0
## 19732                        Hong Kong 1836           0
## 19733                          Hungary 1836      542272
## 19734                          Iceland 1836           0
## 19735                            India 1836           0
## 19736                        Indonesia 1836           0
## 19737                             Iran 1836           0
## 19738                             Iraq 1836           0
## 19739                          Ireland 1836           0
## 19740                           Israel 1836           0
## 19741                            Italy 1836           0
## 19742                          Jamaica 1836           0
## 19743                            Japan 1836           0
## 19744                           Jordan 1836           0
## 19745                       Kazakhstan 1836           0
## 19746                            Kenya 1836           0
## 19747                         Kiribati 1836           0
## 19748                           Kuwait 1836           0
## 19749                       Kyrgysztan 1836           0
## 19750                       Kyrgyzstan 1836           0
## 19751                             Laos 1836           0
## 19752                           Latvia 1836           0
## 19753                          Lebanon 1836           0
## 19754                          Lesotho 1836           0
## 19755                          Liberia 1836           0
## 19756                            Libya 1836           0
## 19757                    Liechtenstein 1836           0
## 19758                        Lithuania 1836           0
## 19759                       Luxembourg 1836           0
## 19760                            Macao 1836           0
## 19761                        Macedonia 1836           0
## 19762                       Madagascar 1836           0
## 19763                           Malawi 1836           0
## 19764                         Malaysia 1836           0
## 19765                         Maldives 1836           0
## 19766                             Mali 1836           0
## 19767                            Malta 1836           0
## 19768                 Marshall Islands 1836           0
## 19769                       Martinique 1836           0
## 19770                       Mauritania 1836           0
## 19771                        Mauritius 1836           0
## 19772                           Mexico 1836           0
## 19773             Micronesia (country) 1836           0
## 19774                      Middle East 1836           0
## 19775                          Moldova 1836           0
## 19776                         Mongolia 1836           0
## 19777                       Montenegro 1836           0
## 19778                       Montserrat 1836           0
## 19779                          Morocco 1836           0
## 19780                       Mozambique 1836           0
## 19781                          Myanmar 1836           0
## 19782                          Namibia 1836           0
## 19783                            Nauru 1836           0
## 19784                            Nepal 1836           0
## 19785                      Netherlands 1836           0
## 19786                    New Caledonia 1836           0
## 19787                      New Zealand 1836           0
## 19788                        Nicaragua 1836           0
## 19789                            Niger 1836           0
## 19790                          Nigeria 1836           0
## 19791                             Niue 1836           0
## 19792                      North Korea 1836           0
## 19793                           Norway 1836       54960
## 19794                             Oman 1836           0
## 19795                         Pakistan 1836           0
## 19796                            Palau 1836           0
## 19797                        Palestine 1836           0
## 19798                           Panama 1836           0
## 19799                 Papua New Guinea 1836           0
## 19800                         Paraguay 1836           0
## 19801                             Peru 1836           0
## 19802                      Philippines 1836           0
## 19803                           Poland 1836    29575808
## 19804                         Portugal 1836           0
## 19805                            Qatar 1836           0
## 19806                          Reunion 1836           0
## 19807                          Romania 1836           0
## 19808                           Russia 1836           0
## 19809                           Rwanda 1836           0
## 19810                     Saint Helena 1836           0
## 19811            Saint Kitts and Nevis 1836           0
## 19812                      Saint Lucia 1836           0
## 19813        Saint Pierre and Miquelon 1836           0
## 19814 Saint Vincent and the Grenadines 1836           0
## 19815                            Samoa 1836           0
## 19816            Sao Tome and Principe 1836           0
## 19817                     Saudi Arabia 1836           0
## 19818                          Senegal 1836           0
## 19819                           Serbia 1836           0
## 19820                       Seychelles 1836           0
## 19821                     Sierra Leone 1836           0
## 19822                        Singapore 1836           0
## 19823        Sint Maarten (Dutch part) 1836           0
## 19824                         Slovakia 1836           0
## 19825                         Slovenia 1836           0
## 19826                  Solomon Islands 1836           0
## 19827                          Somalia 1836           0
## 19828                     South Africa 1836           0
## 19829                      South Korea 1836           0
## 19830                      South Sudan 1836           0
## 19831                            Spain 1836       43968
## 19832                        Sri Lanka 1836           0
## 19833                            Sudan 1836           0
## 19834                         Suriname 1836           0
## 19835                        Swaziland 1836           0
## 19836                           Sweden 1836       32976
## 19837                      Switzerland 1836           0
## 19838                            Syria 1836           0
## 19839                           Taiwan 1836           0
## 19840                       Tajikistan 1836           0
## 19841                         Tanzania 1836           0
## 19842                         Thailand 1836           0
## 19843                            Timor 1836           0
## 19844                             Togo 1836           0
## 19845                            Tonga 1836           0
## 19846              Trinidad and Tobago 1836           0
## 19847                          Tunisia 1836           0
## 19848                           Turkey 1836           0
## 19849                     Turkmenistan 1836           0
## 19850         Turks and Caicos Islands 1836           0
## 19851                           Tuvalu 1836           0
## 19852                           Uganda 1836           0
## 19853                          Ukraine 1836           0
## 19854             United Arab Emirates 1836           0
## 19855                   United Kingdom 1836  2388755792
## 19856                    United States 1836    44261120
## 19857                          Uruguay 1836           0
## 19858                       Uzbekistan 1836           0
## 19859                          Vanuatu 1836           0
## 19860                        Venezuela 1836           0
## 19861                          Vietnam 1836           0
## 19862        Wallis and Futuna Islands 1836           0
## 19863                            World 1836  2740756272
## 19864                            Yemen 1836           0
## 19865                           Zambia 1836           0
## 19866                         Zimbabwe 1836           0
## 19867                      Afghanistan 1837           0
## 19868                           Africa 1837           0
## 19869                          Albania 1837           0
## 19870                          Algeria 1837           0
## 19871                 Americas (other) 1837      194192
## 19872                          Andorra 1837           0
## 19873                           Angola 1837           0
## 19874                         Anguilla 1837           0
## 19875              Antarctic Fisheries 1837           0
## 19876              Antigua and Barbuda 1837           0
## 19877                        Argentina 1837           0
## 19878                          Armenia 1837           0
## 19879                            Aruba 1837           0
## 19880         Asia and Pacific (other) 1837           0
## 19881                        Australia 1837           0
## 19882                          Austria 1837     9017104
## 19883                       Azerbaijan 1837           0
## 19884                          Bahamas 1837           0
## 19885                          Bahrain 1837           0
## 19886                       Bangladesh 1837           0
## 19887                         Barbados 1837           0
## 19888                          Belarus 1837           0
## 19889                          Belgium 1837    47100720
## 19890                           Belize 1837           0
## 19891                            Benin 1837           0
## 19892                          Bermuda 1837           0
## 19893                           Bhutan 1837           0
## 19894                          Bolivia 1837           0
## 19895  Bonaire Sint Eustatius and Saba 1837           0
## 19896           Bosnia and Herzegovina 1837           0
## 19897                         Botswana 1837           0
## 19898                           Brazil 1837           0
## 19899           British Virgin Islands 1837           0
## 19900                           Brunei 1837           0
## 19901                         Bulgaria 1837           0
## 19902                     Burkina Faso 1837           0
## 19903                          Burundi 1837           0
## 19904                         Cambodia 1837           0
## 19905                         Cameroon 1837           0
## 19906                           Canada 1837      194192
## 19907                       Cape Verde 1837           0
## 19908                   Cayman Islands 1837           0
## 19909         Central African Republic 1837           0
## 19910                             Chad 1837           0
## 19911                            Chile 1837           0
## 19912                            China 1837           0
## 19913                 Christmas Island 1837           0
## 19914                         Colombia 1837           0
## 19915                          Comoros 1837           0
## 19916                            Congo 1837           0
## 19917                     Cook Islands 1837           0
## 19918                       Costa Rica 1837           0
## 19919                    Cote d'Ivoire 1837           0
## 19920                          Croatia 1837           0
## 19921                             Cuba 1837           0
## 19922                          Curacao 1837           0
## 19923                           Cyprus 1837           0
## 19924                   Czech Republic 1837           0
## 19925                   Czechoslovakia 1837           0
## 19926     Democratic Republic of Congo 1837           0
## 19927                          Denmark 1837           0
## 19928                         Djibouti 1837           0
## 19929                         Dominica 1837           0
## 19930               Dominican Republic 1837           0
## 19931                            EU-28 1837  2795533072
## 19932                          Ecuador 1837           0
## 19933                            Egypt 1837           0
## 19934                      El Salvador 1837           0
## 19935                Equatorial Guinea 1837           0
## 19936                          Eritrea 1837           0
## 19937                          Estonia 1837           0
## 19938                         Ethiopia 1837           0
## 19939                   Europe (other) 1837      153888
## 19940                   Faeroe Islands 1837           0
## 19941                 Falkland Islands 1837           0
## 19942                             Fiji 1837           0
## 19943                          Finland 1837           0
## 19944                           France 1837   136128592
## 19945                    French Guiana 1837           0
## 19946                 French Polynesia 1837           0
## 19947                            Gabon 1837           0
## 19948                           Gambia 1837           0
## 19949                          Georgia 1837           0
## 19950                          Germany 1837   108985680
## 19951                            Ghana 1837           0
## 19952                        Gibraltar 1837           0
## 19953                           Greece 1837           0
## 19954                        Greenland 1837           0
## 19955                          Grenada 1837           0
## 19956                       Guadeloupe 1837           0
## 19957                        Guatemala 1837           0
## 19958                           Guinea 1837           0
## 19959                    Guinea-Bissau 1837           0
## 19960                           Guyana 1837           0
## 19961                            Haiti 1837           0
## 19962                         Honduras 1837           0
## 19963                        Hong Kong 1837           0
## 19964                          Hungary 1837      611888
## 19965                          Iceland 1837           0
## 19966                            India 1837           0
## 19967                        Indonesia 1837           0
## 19968                             Iran 1837           0
## 19969                             Iraq 1837           0
## 19970                          Ireland 1837           0
## 19971                           Israel 1837           0
## 19972                            Italy 1837           0
## 19973                          Jamaica 1837           0
## 19974                            Japan 1837           0
## 19975                           Jordan 1837           0
## 19976                       Kazakhstan 1837           0
## 19977                            Kenya 1837           0
## 19978                         Kiribati 1837           0
## 19979                           Kuwait 1837           0
## 19980                       Kyrgysztan 1837           0
## 19981                       Kyrgyzstan 1837           0
## 19982                             Laos 1837           0
## 19983                           Latvia 1837           0
## 19984                          Lebanon 1837           0
## 19985                          Lesotho 1837           0
## 19986                          Liberia 1837           0
## 19987                            Libya 1837           0
## 19988                    Liechtenstein 1837           0
## 19989                        Lithuania 1837           0
## 19990                       Luxembourg 1837           0
## 19991                            Macao 1837           0
## 19992                        Macedonia 1837           0
## 19993                       Madagascar 1837           0
## 19994                           Malawi 1837           0
## 19995                         Malaysia 1837           0
## 19996                         Maldives 1837           0
## 19997                             Mali 1837           0
## 19998                            Malta 1837           0
## 19999                 Marshall Islands 1837           0
## 20000                       Martinique 1837           0
## 20001                       Mauritania 1837           0
## 20002                        Mauritius 1837           0
## 20003                           Mexico 1837           0
## 20004             Micronesia (country) 1837           0
## 20005                      Middle East 1837           0
## 20006                          Moldova 1837           0
## 20007                         Mongolia 1837           0
## 20008                       Montenegro 1837           0
## 20009                       Montserrat 1837           0
## 20010                          Morocco 1837           0
## 20011                       Mozambique 1837           0
## 20012                          Myanmar 1837           0
## 20013                          Namibia 1837           0
## 20014                            Nauru 1837           0
## 20015                            Nepal 1837           0
## 20016                      Netherlands 1837           0
## 20017                    New Caledonia 1837           0
## 20018                      New Zealand 1837           0
## 20019                        Nicaragua 1837           0
## 20020                            Niger 1837           0
## 20021                          Nigeria 1837           0
## 20022                             Niue 1837           0
## 20023                      North Korea 1837           0
## 20024                           Norway 1837       80608
## 20025                             Oman 1837           0
## 20026                         Pakistan 1837           0
## 20027                            Palau 1837           0
## 20028                        Palestine 1837           0
## 20029                           Panama 1837           0
## 20030                 Papua New Guinea 1837           0
## 20031                         Paraguay 1837           0
## 20032                             Peru 1837           0
## 20033                      Philippines 1837           0
## 20034                           Poland 1837    31048736
## 20035                         Portugal 1837           0
## 20036                            Qatar 1837           0
## 20037                          Reunion 1837           0
## 20038                          Romania 1837           0
## 20039                           Russia 1837           0
## 20040                           Rwanda 1837           0
## 20041                     Saint Helena 1837           0
## 20042            Saint Kitts and Nevis 1837           0
## 20043                      Saint Lucia 1837           0
## 20044        Saint Pierre and Miquelon 1837           0
## 20045 Saint Vincent and the Grenadines 1837           0
## 20046                            Samoa 1837           0
## 20047            Sao Tome and Principe 1837           0
## 20048                     Saudi Arabia 1837           0
## 20049                          Senegal 1837           0
## 20050                           Serbia 1837           0
## 20051                       Seychelles 1837           0
## 20052                     Sierra Leone 1837           0
## 20053                        Singapore 1837           0
## 20054        Sint Maarten (Dutch part) 1837           0
## 20055                         Slovakia 1837           0
## 20056                         Slovenia 1837           0
## 20057                  Solomon Islands 1837           0
## 20058                          Somalia 1837           0
## 20059                     South Africa 1837           0
## 20060                      South Korea 1837           0
## 20061                      South Sudan 1837           0
## 20062                            Spain 1837       80608
## 20063                        Sri Lanka 1837           0
## 20064                            Sudan 1837           0
## 20065                         Suriname 1837           0
## 20066                        Swaziland 1837           0
## 20067                           Sweden 1837       32976
## 20068                      Switzerland 1837           0
## 20069                            Syria 1837           0
## 20070                           Taiwan 1837           0
## 20071                       Tajikistan 1837           0
## 20072                         Tanzania 1837           0
## 20073                         Thailand 1837           0
## 20074                            Timor 1837           0
## 20075                             Togo 1837           0
## 20076                            Tonga 1837           0
## 20077              Trinidad and Tobago 1837           0
## 20078                          Tunisia 1837           0
## 20079                           Turkey 1837           0
## 20080                     Turkmenistan 1837           0
## 20081         Turks and Caicos Islands 1837           0
## 20082                           Tuvalu 1837           0
## 20083                           Uganda 1837           0
## 20084                          Ukraine 1837           0
## 20085             United Arab Emirates 1837           0
## 20086                   United Kingdom 1837  2462526768
## 20087                    United States 1837    49566592
## 20088                          Uruguay 1837           0
## 20089                       Uzbekistan 1837           0
## 20090                          Vanuatu 1837           0
## 20091                        Venezuela 1837           0
## 20092                          Vietnam 1837           0
## 20093        Wallis and Futuna Islands 1837           0
## 20094                            World 1837  2845447744
## 20095                            Yemen 1837           0
## 20096                           Zambia 1837           0
## 20097                         Zimbabwe 1837           0
## 20098                      Afghanistan 1838           0
## 20099                           Africa 1838           0
## 20100                          Albania 1838           0
## 20101                          Algeria 1838           0
## 20102                 Americas (other) 1838      197856
## 20103                          Andorra 1838           0
## 20104                           Angola 1838           0
## 20105                         Anguilla 1838           0
## 20106              Antarctic Fisheries 1838           0
## 20107              Antigua and Barbuda 1838           0
## 20108                        Argentina 1838           0
## 20109                          Armenia 1838           0
## 20110                            Aruba 1838           0
## 20111         Asia and Pacific (other) 1838           0
## 20112                        Australia 1838           0
## 20113                          Austria 1838     9867152
## 20114                       Azerbaijan 1838           0
## 20115                          Bahamas 1838           0
## 20116                          Bahrain 1838           0
## 20117                       Bangladesh 1838           0
## 20118                         Barbados 1838           0
## 20119                          Belarus 1838           0
## 20120                          Belgium 1838    53223264
## 20121                           Belize 1838           0
## 20122                            Benin 1838           0
## 20123                          Bermuda 1838           0
## 20124                           Bhutan 1838           0
## 20125                          Bolivia 1838           0
## 20126  Bonaire Sint Eustatius and Saba 1838           0
## 20127           Bosnia and Herzegovina 1838           0
## 20128                         Botswana 1838           0
## 20129                           Brazil 1838           0
## 20130           British Virgin Islands 1838           0
## 20131                           Brunei 1838           0
## 20132                         Bulgaria 1838           0
## 20133                     Burkina Faso 1838           0
## 20134                          Burundi 1838           0
## 20135                         Cambodia 1838           0
## 20136                         Cameroon 1838           0
## 20137                           Canada 1838      197856
## 20138                       Cape Verde 1838           0
## 20139                   Cayman Islands 1838           0
## 20140         Central African Republic 1838           0
## 20141                             Chad 1838           0
## 20142                            Chile 1838           0
## 20143                            China 1838           0
## 20144                 Christmas Island 1838           0
## 20145                         Colombia 1838           0
## 20146                          Comoros 1838           0
## 20147                            Congo 1838           0
## 20148                     Cook Islands 1838           0
## 20149                       Costa Rica 1838           0
## 20150                    Cote d'Ivoire 1838           0
## 20151                          Croatia 1838           0
## 20152                             Cuba 1838           0
## 20153                          Curacao 1838           0
## 20154                           Cyprus 1838           0
## 20155                   Czech Republic 1838           0
## 20156                   Czechoslovakia 1838           0
## 20157     Democratic Republic of Congo 1838           0
## 20158                          Denmark 1838           0
## 20159                         Djibouti 1838           0
## 20160                         Dominica 1838           0
## 20161               Dominican Republic 1838           0
## 20162                            EU-28 1838  2898491472
## 20163                          Ecuador 1838           0
## 20164                            Egypt 1838           0
## 20165                      El Salvador 1838           0
## 20166                Equatorial Guinea 1838           0
## 20167                          Eritrea 1838           0
## 20168                          Estonia 1838           0
## 20169                         Ethiopia 1838           0
## 20170                   Europe (other) 1838      201520
## 20171                   Faeroe Islands 1838           0
## 20172                 Falkland Islands 1838           0
## 20173                             Fiji 1838           0
## 20174                          Finland 1838           0
## 20175                           France 1838   147996288
## 20176                    French Guiana 1838           0
## 20177                 French Polynesia 1838           0
## 20178                            Gabon 1838           0
## 20179                           Gambia 1838           0
## 20180                          Georgia 1838           0
## 20181                          Germany 1838   115617520
## 20182                            Ghana 1838           0
## 20183                        Gibraltar 1838           0
## 20184                           Greece 1838           0
## 20185                        Greenland 1838           0
## 20186                          Grenada 1838           0
## 20187                       Guadeloupe 1838           0
## 20188                        Guatemala 1838           0
## 20189                           Guinea 1838           0
## 20190                    Guinea-Bissau 1838           0
## 20191                           Guyana 1838           0
## 20192                            Haiti 1838           0
## 20193                         Honduras 1838           0
## 20194                        Hong Kong 1838           0
## 20195                          Hungary 1838      674176
## 20196                          Iceland 1838           0
## 20197                            India 1838           0
## 20198                        Indonesia 1838           0
## 20199                             Iran 1838           0
## 20200                             Iraq 1838           0
## 20201                          Ireland 1838           0
## 20202                           Israel 1838           0
## 20203                            Italy 1838           0
## 20204                          Jamaica 1838           0
## 20205                            Japan 1838           0
## 20206                           Jordan 1838           0
## 20207                       Kazakhstan 1838           0
## 20208                            Kenya 1838           0
## 20209                         Kiribati 1838           0
## 20210                           Kuwait 1838           0
## 20211                       Kyrgysztan 1838           0
## 20212                       Kyrgyzstan 1838           0
## 20213                             Laos 1838           0
## 20214                           Latvia 1838           0
## 20215                          Lebanon 1838           0
## 20216                          Lesotho 1838           0
## 20217                          Liberia 1838           0
## 20218                            Libya 1838           0
## 20219                    Liechtenstein 1838           0
## 20220                        Lithuania 1838           0
## 20221                       Luxembourg 1838           0
## 20222                            Macao 1838           0
## 20223                        Macedonia 1838           0
## 20224                       Madagascar 1838           0
## 20225                           Malawi 1838           0
## 20226                         Malaysia 1838           0
## 20227                         Maldives 1838           0
## 20228                             Mali 1838           0
## 20229                            Malta 1838           0
## 20230                 Marshall Islands 1838           0
## 20231                       Martinique 1838           0
## 20232                       Mauritania 1838           0
## 20233                        Mauritius 1838           0
## 20234                           Mexico 1838           0
## 20235             Micronesia (country) 1838           0
## 20236                      Middle East 1838           0
## 20237                          Moldova 1838           0
## 20238                         Mongolia 1838           0
## 20239                       Montenegro 1838           0
## 20240                       Montserrat 1838           0
## 20241                          Morocco 1838           0
## 20242                       Mozambique 1838           0
## 20243                          Myanmar 1838           0
## 20244                          Namibia 1838           0
## 20245                            Nauru 1838           0
## 20246                            Nepal 1838           0
## 20247                      Netherlands 1838           0
## 20248                    New Caledonia 1838           0
## 20249                      New Zealand 1838           0
## 20250                        Nicaragua 1838           0
## 20251                            Niger 1838           0
## 20252                          Nigeria 1838           0
## 20253                             Niue 1838           0
## 20254                      North Korea 1838           0
## 20255                           Norway 1838      131904
## 20256                             Oman 1838           0
## 20257                         Pakistan 1838           0
## 20258                            Palau 1838           0
## 20259                        Palestine 1838           0
## 20260                           Panama 1838           0
## 20261                 Papua New Guinea 1838           0
## 20262                         Paraguay 1838           0
## 20263                             Peru 1838           0
## 20264                      Philippines 1838           0
## 20265                           Poland 1838    32635248
## 20266                         Portugal 1838           0
## 20267                            Qatar 1838           0
## 20268                          Reunion 1838           0
## 20269                          Romania 1838           0
## 20270                           Russia 1838           0
## 20271                           Rwanda 1838           0
## 20272                     Saint Helena 1838           0
## 20273            Saint Kitts and Nevis 1838           0
## 20274                      Saint Lucia 1838           0
## 20275        Saint Pierre and Miquelon 1838           0
## 20276 Saint Vincent and the Grenadines 1838           0
## 20277                            Samoa 1838           0
## 20278            Sao Tome and Principe 1838           0
## 20279                     Saudi Arabia 1838           0
## 20280                          Senegal 1838           0
## 20281                           Serbia 1838           0
## 20282                       Seychelles 1838           0
## 20283                     Sierra Leone 1838           0
## 20284                        Singapore 1838           0
## 20285        Sint Maarten (Dutch part) 1838           0
## 20286                         Slovakia 1838           0
## 20287                         Slovenia 1838           0
## 20288                  Solomon Islands 1838           0
## 20289                          Somalia 1838           0
## 20290                     South Africa 1838           0
## 20291                      South Korea 1838           0
## 20292                      South Sudan 1838           0
## 20293                            Spain 1838      106256
## 20294                        Sri Lanka 1838           0
## 20295                            Sudan 1838           0
## 20296                         Suriname 1838           0
## 20297                        Swaziland 1838           0
## 20298                           Sweden 1838       32976
## 20299                      Switzerland 1838           0
## 20300                            Syria 1838           0
## 20301                           Taiwan 1838           0
## 20302                       Tajikistan 1838           0
## 20303                         Tanzania 1838           0
## 20304                         Thailand 1838           0
## 20305                            Timor 1838           0
## 20306                             Togo 1838           0
## 20307                            Tonga 1838           0
## 20308              Trinidad and Tobago 1838           0
## 20309                          Tunisia 1838           0
## 20310                           Turkey 1838           0
## 20311                     Turkmenistan 1838           0
## 20312         Turks and Caicos Islands 1838           0
## 20313                           Tuvalu 1838           0
## 20314                           Uganda 1838           0
## 20315                          Ukraine 1838           0
## 20316             United Arab Emirates 1838           0
## 20317                   United Kingdom 1838  2538338592
## 20318                    United States 1838    54597264
## 20319                          Uruguay 1838           0
## 20320                       Uzbekistan 1838           0
## 20321                          Vanuatu 1838           0
## 20322                        Venezuela 1838           0
## 20323                          Vietnam 1838           0
## 20324        Wallis and Futuna Islands 1838           0
## 20325                            World 1838  2953491776
## 20326                            Yemen 1838           0
## 20327                           Zambia 1838           0
## 20328                         Zimbabwe 1838           0
## 20329                      Afghanistan 1839           0
## 20330                           Africa 1839           0
## 20331                          Albania 1839           0
## 20332                          Algeria 1839           0
## 20333                 Americas (other) 1839      201520
## 20334                          Andorra 1839           0
## 20335                           Angola 1839           0
## 20336                         Anguilla 1839           0
## 20337              Antarctic Fisheries 1839           0
## 20338              Antigua and Barbuda 1839           0
## 20339                        Argentina 1839           0
## 20340                          Armenia 1839           0
## 20341                            Aruba 1839           0
## 20342         Asia and Pacific (other) 1839           0
## 20343                        Australia 1839           0
## 20344                          Austria 1839    10926048
## 20345                       Azerbaijan 1839           0
## 20346                          Bahamas 1839           0
## 20347                          Bahrain 1839           0
## 20348                       Bangladesh 1839           0
## 20349                         Barbados 1839           0
## 20350                          Belarus 1839           0
## 20351                          Belgium 1839    59932048
## 20352                           Belize 1839           0
## 20353                            Benin 1839           0
## 20354                          Bermuda 1839           0
## 20355                           Bhutan 1839           0
## 20356                          Bolivia 1839           0
## 20357  Bonaire Sint Eustatius and Saba 1839           0
## 20358           Bosnia and Herzegovina 1839           0
## 20359                         Botswana 1839           0
## 20360                           Brazil 1839           0
## 20361           British Virgin Islands 1839           0
## 20362                           Brunei 1839           0
## 20363                         Bulgaria 1839           0
## 20364                     Burkina Faso 1839           0
## 20365                          Burundi 1839           0
## 20366                         Cambodia 1839           0
## 20367                         Cameroon 1839           0
## 20368                           Canada 1839      201520
## 20369                       Cape Verde 1839           0
## 20370                   Cayman Islands 1839           0
## 20371         Central African Republic 1839           0
## 20372                             Chad 1839           0
## 20373                            Chile 1839           0
## 20374                            China 1839           0
## 20375                 Christmas Island 1839           0
## 20376                         Colombia 1839           0
## 20377                          Comoros 1839           0
## 20378                            Congo 1839           0
## 20379                     Cook Islands 1839           0
## 20380                       Costa Rica 1839           0
## 20381                    Cote d'Ivoire 1839           0
## 20382                          Croatia 1839           0
## 20383                             Cuba 1839           0
## 20384                          Curacao 1839           0
## 20385                           Cyprus 1839           0
## 20386                   Czech Republic 1839           0
## 20387                   Czechoslovakia 1839           0
## 20388     Democratic Republic of Congo 1839           0
## 20389                          Denmark 1839           0
## 20390                         Djibouti 1839           0
## 20391                         Dominica 1839           0
## 20392               Dominican Republic 1839           0
## 20393                            EU-28 1839  3004542288
## 20394                          Ecuador 1839           0
## 20395                            Egypt 1839           0
## 20396                      El Salvador 1839           0
## 20397                Equatorial Guinea 1839           0
## 20398                          Eritrea 1839           0
## 20399                          Estonia 1839           0
## 20400                         Ethiopia 1839           0
## 20401                   Europe (other) 1839      241824
## 20402                   Faeroe Islands 1839           0
## 20403                 Falkland Islands 1839           0
## 20404                             Fiji 1839           0
## 20405                          Finland 1839           0
## 20406                           France 1839   159567200
## 20407                    French Guiana 1839           0
## 20408                 French Polynesia 1839           0
## 20409                            Gabon 1839           0
## 20410                           Gambia 1839           0
## 20411                          Georgia 1839           0
## 20412                          Germany 1839   122637744
## 20413                            Ghana 1839           0
## 20414                        Gibraltar 1839           0
## 20415                           Greece 1839           0
## 20416                        Greenland 1839           0
## 20417                          Grenada 1839           0
## 20418                       Guadeloupe 1839           0
## 20419                        Guatemala 1839           0
## 20420                           Guinea 1839           0
## 20421                    Guinea-Bissau 1839           0
## 20422                           Guyana 1839           0
## 20423                            Haiti 1839           0
## 20424                         Honduras 1839           0
## 20425                        Hong Kong 1839           0
## 20426                          Hungary 1839      813408
## 20427                          Iceland 1839           0
## 20428                            India 1839           0
## 20429                        Indonesia 1839           0
## 20430                             Iran 1839           0
## 20431                             Iraq 1839           0
## 20432                          Ireland 1839           0
## 20433                           Israel 1839           0
## 20434                            Italy 1839           0
## 20435                          Jamaica 1839           0
## 20436                            Japan 1839           0
## 20437                           Jordan 1839           0
## 20438                       Kazakhstan 1839           0
## 20439                            Kenya 1839           0
## 20440                         Kiribati 1839           0
## 20441                           Kuwait 1839           0
## 20442                       Kyrgysztan 1839           0
## 20443                       Kyrgyzstan 1839           0
## 20444                             Laos 1839           0
## 20445                           Latvia 1839           0
## 20446                          Lebanon 1839           0
## 20447                          Lesotho 1839           0
## 20448                          Liberia 1839           0
## 20449                            Libya 1839           0
## 20450                    Liechtenstein 1839           0
## 20451                        Lithuania 1839           0
## 20452                       Luxembourg 1839           0
## 20453                            Macao 1839           0
## 20454                        Macedonia 1839           0
## 20455                       Madagascar 1839           0
## 20456                           Malawi 1839           0
## 20457                         Malaysia 1839           0
## 20458                         Maldives 1839           0
## 20459                             Mali 1839           0
## 20460                            Malta 1839           0
## 20461                 Marshall Islands 1839           0
## 20462                       Martinique 1839           0
## 20463                       Mauritania 1839           0
## 20464                        Mauritius 1839           0
## 20465                           Mexico 1839           0
## 20466             Micronesia (country) 1839           0
## 20467                      Middle East 1839           0
## 20468                          Moldova 1839           0
## 20469                         Mongolia 1839           0
## 20470                       Montenegro 1839           0
## 20471                       Montserrat 1839           0
## 20472                          Morocco 1839           0
## 20473                       Mozambique 1839           0
## 20474                          Myanmar 1839           0
## 20475                          Namibia 1839           0
## 20476                            Nauru 1839           0
## 20477                            Nepal 1839           0
## 20478                      Netherlands 1839           0
## 20479                    New Caledonia 1839           0
## 20480                      New Zealand 1839           0
## 20481                        Nicaragua 1839           0
## 20482                            Niger 1839           0
## 20483                          Nigeria 1839           0
## 20484                             Niue 1839           0
## 20485                      North Korea 1839           0
## 20486                           Norway 1839      172208
## 20487                             Oman 1839           0
## 20488                         Pakistan 1839           0
## 20489                            Palau 1839           0
## 20490                        Palestine 1839           0
## 20491                           Panama 1839           0
## 20492                 Papua New Guinea 1839           0
## 20493                         Paraguay 1839           0
## 20494                             Peru 1839           0
## 20495                      Philippines 1839           0
## 20496                           Poland 1839    34317024
## 20497                         Portugal 1839           0
## 20498                            Qatar 1839           0
## 20499                          Reunion 1839           0
## 20500                          Romania 1839           0
## 20501                           Russia 1839           0
## 20502                           Rwanda 1839           0
## 20503                     Saint Helena 1839           0
## 20504            Saint Kitts and Nevis 1839           0
## 20505                      Saint Lucia 1839           0
## 20506        Saint Pierre and Miquelon 1839           0
## 20507 Saint Vincent and the Grenadines 1839           0
## 20508                            Samoa 1839           0
## 20509            Sao Tome and Principe 1839           0
## 20510                     Saudi Arabia 1839           0
## 20511                          Senegal 1839           0
## 20512                           Serbia 1839           0
## 20513                       Seychelles 1839           0
## 20514                     Sierra Leone 1839           0
## 20515                        Singapore 1839           0
## 20516        Sint Maarten (Dutch part) 1839           0
## 20517                         Slovakia 1839           0
## 20518                         Slovenia 1839           0
## 20519                  Solomon Islands 1839           0
## 20520                          Somalia 1839           0
## 20521                     South Africa 1839           0
## 20522                      South Korea 1839           0
## 20523                      South Sudan 1839           0
## 20524                            Spain 1839      153888
## 20525                        Sri Lanka 1839           0
## 20526                            Sudan 1839           0
## 20527                         Suriname 1839           0
## 20528                        Swaziland 1839           0
## 20529                           Sweden 1839       76944
## 20530                      Switzerland 1839           0
## 20531                            Syria 1839           0
## 20532                           Taiwan 1839           0
## 20533                       Tajikistan 1839           0
## 20534                         Tanzania 1839           0
## 20535                         Thailand 1839           0
## 20536                            Timor 1839           0
## 20537                             Togo 1839           0
## 20538                            Tonga 1839           0
## 20539              Trinidad and Tobago 1839           0
## 20540                          Tunisia 1839           0
## 20541                           Turkey 1839           0
## 20542                     Turkmenistan 1839           0
## 20543         Turks and Caicos Islands 1839           0
## 20544                           Tuvalu 1839           0
## 20545                           Uganda 1839           0
## 20546                          Ukraine 1839           0
## 20547             United Arab Emirates 1839           0
## 20548                   United Kingdom 1839  2616117984
## 20549                    United States 1839    60115248
## 20550                          Uruguay 1839           0
## 20551                       Uzbekistan 1839           0
## 20552                          Vanuatu 1839           0
## 20553                        Venezuela 1839           0
## 20554                          Vietnam 1839           0
## 20555        Wallis and Futuna Islands 1839           0
## 20556                            World 1839  3065104544
## 20557                            Yemen 1839           0
## 20558                           Zambia 1839           0
## 20559                         Zimbabwe 1839           0
## 20560                      Afghanistan 1840           0
## 20561                           Africa 1840           0
## 20562                          Albania 1840           0
## 20563                          Algeria 1840           0
## 20564                 Americas (other) 1840      205184
## 20565                          Andorra 1840           0
## 20566                           Angola 1840           0
## 20567                         Anguilla 1840           0
## 20568              Antarctic Fisheries 1840           0
## 20569              Antigua and Barbuda 1840           0
## 20570                        Argentina 1840           0
## 20571                          Armenia 1840           0
## 20572                            Aruba 1840           0
## 20573         Asia and Pacific (other) 1840           0
## 20574                        Australia 1840           0
## 20575                          Austria 1840    12094864
## 20576                       Azerbaijan 1840           0
## 20577                          Bahamas 1840           0
## 20578                          Bahrain 1840           0
## 20579                       Bangladesh 1840           0
## 20580                         Barbados 1840           0
## 20581                          Belarus 1840           0
## 20582                          Belgium 1840    67659424
## 20583                           Belize 1840           0
## 20584                            Benin 1840           0
## 20585                          Bermuda 1840           0
## 20586                           Bhutan 1840           0
## 20587                          Bolivia 1840           0
## 20588  Bonaire Sint Eustatius and Saba 1840           0
## 20589           Bosnia and Herzegovina 1840           0
## 20590                         Botswana 1840           0
## 20591                           Brazil 1840           0
## 20592           British Virgin Islands 1840           0
## 20593                           Brunei 1840           0
## 20594                         Bulgaria 1840           0
## 20595                     Burkina Faso 1840           0
## 20596                          Burundi 1840           0
## 20597                         Cambodia 1840           0
## 20598                         Cameroon 1840           0
## 20599                           Canada 1840      205184
## 20600                       Cape Verde 1840           0
## 20601                   Cayman Islands 1840           0
## 20602         Central African Republic 1840           0
## 20603                             Chad 1840           0
## 20604                            Chile 1840           0
## 20605                            China 1840           0
## 20606                 Christmas Island 1840           0
## 20607                         Colombia 1840           0
## 20608                          Comoros 1840           0
## 20609                            Congo 1840           0
## 20610                     Cook Islands 1840           0
## 20611                       Costa Rica 1840           0
## 20612                    Cote d'Ivoire 1840           0
## 20613                          Croatia 1840           0
## 20614                             Cuba 1840           0
## 20615                          Curacao 1840           0
## 20616                           Cyprus 1840           0
## 20617                   Czech Republic 1840           0
## 20618                   Czechoslovakia 1840           0
## 20619     Democratic Republic of Congo 1840           0
## 20620                          Denmark 1840           0
## 20621                         Djibouti 1840           0
## 20622                         Dominica 1840           0
## 20623               Dominican Republic 1840           0
## 20624                            EU-28 1840  3117551040
## 20625                          Ecuador 1840           0
## 20626                            Egypt 1840           0
## 20627                      El Salvador 1840           0
## 20628                Equatorial Guinea 1840           0
## 20629                          Eritrea 1840           0
## 20630                          Estonia 1840           0
## 20631                         Ethiopia 1840           0
## 20632                   Europe (other) 1840      289456
## 20633                   Faeroe Islands 1840           0
## 20634                 Falkland Islands 1840           0
## 20635                             Fiji 1840           0
## 20636                          Finland 1840           0
## 20637                           France 1840   171365280
## 20638                    French Guiana 1840           0
## 20639                 French Polynesia 1840           0
## 20640                            Gabon 1840           0
## 20641                           Gambia 1840           0
## 20642                          Georgia 1840           0
## 20643                          Germany 1840   131812400
## 20644                            Ghana 1840           0
## 20645                        Gibraltar 1840           0
## 20646                           Greece 1840           0
## 20647                        Greenland 1840           0
## 20648                          Grenada 1840           0
## 20649                       Guadeloupe 1840           0
## 20650                        Guatemala 1840           0
## 20651                           Guinea 1840           0
## 20652                    Guinea-Bissau 1840           0
## 20653                           Guyana 1840           0
## 20654                            Haiti 1840           0
## 20655                         Honduras 1840           0
## 20656                        Hong Kong 1840           0
## 20657                          Hungary 1840      948976
## 20658                          Iceland 1840           0
## 20659                            India 1840           0
## 20660                        Indonesia 1840           0
## 20661                             Iran 1840           0
## 20662                             Iraq 1840           0
## 20663                          Ireland 1840           0
## 20664                           Israel 1840           0
## 20665                            Italy 1840           0
## 20666                          Jamaica 1840           0
## 20667                            Japan 1840           0
## 20668                           Jordan 1840           0
## 20669                       Kazakhstan 1840           0
## 20670                            Kenya 1840           0
## 20671                         Kiribati 1840           0
## 20672                           Kuwait 1840           0
## 20673                       Kyrgysztan 1840           0
## 20674                       Kyrgyzstan 1840           0
## 20675                             Laos 1840           0
## 20676                           Latvia 1840           0
## 20677                          Lebanon 1840           0
## 20678                          Lesotho 1840           0
## 20679                          Liberia 1840           0
## 20680                            Libya 1840           0
## 20681                    Liechtenstein 1840           0
## 20682                        Lithuania 1840           0
## 20683                       Luxembourg 1840           0
## 20684                            Macao 1840           0
## 20685                        Macedonia 1840           0
## 20686                       Madagascar 1840           0
## 20687                           Malawi 1840           0
## 20688                         Malaysia 1840           0
## 20689                         Maldives 1840           0
## 20690                             Mali 1840           0
## 20691                            Malta 1840           0
## 20692                 Marshall Islands 1840           0
## 20693                       Martinique 1840           0
## 20694                       Mauritania 1840           0
## 20695                        Mauritius 1840           0
## 20696                           Mexico 1840           0
## 20697             Micronesia (country) 1840           0
## 20698                      Middle East 1840           0
## 20699                          Moldova 1840           0
## 20700                         Mongolia 1840           0
## 20701                       Montenegro 1840           0
## 20702                       Montserrat 1840           0
## 20703                          Morocco 1840           0
## 20704                       Mozambique 1840           0
## 20705                          Myanmar 1840           0
## 20706                          Namibia 1840           0
## 20707                            Nauru 1840           0
## 20708                            Nepal 1840           0
## 20709                      Netherlands 1840           0
## 20710                    New Caledonia 1840           0
## 20711                      New Zealand 1840           0
## 20712                        Nicaragua 1840           0
## 20713                            Niger 1840           0
## 20714                          Nigeria 1840           0
## 20715                             Niue 1840           0
## 20716                      North Korea 1840           0
## 20717                           Norway 1840      216176
## 20718                             Oman 1840           0
## 20719                         Pakistan 1840           0
## 20720                            Palau 1840           0
## 20721                        Palestine 1840           0
## 20722                           Panama 1840           0
## 20723                 Papua New Guinea 1840           0
## 20724                         Paraguay 1840           0
## 20725                             Peru 1840           0
## 20726                      Philippines 1840           0
## 20727                           Poland 1840    36284592
## 20728                         Portugal 1840           0
## 20729                            Qatar 1840           0
## 20730                          Reunion 1840           0
## 20731                          Romania 1840           0
## 20732                           Russia 1840           0
## 20733                           Rwanda 1840           0
## 20734                     Saint Helena 1840           0
## 20735            Saint Kitts and Nevis 1840           0
## 20736                      Saint Lucia 1840           0
## 20737        Saint Pierre and Miquelon 1840           0
## 20738 Saint Vincent and the Grenadines 1840           0
## 20739                            Samoa 1840           0
## 20740            Sao Tome and Principe 1840           0
## 20741                     Saudi Arabia 1840           0
## 20742                          Senegal 1840           0
## 20743                           Serbia 1840           0
## 20744                       Seychelles 1840           0
## 20745                     Sierra Leone 1840           0
## 20746                        Singapore 1840           0
## 20747        Sint Maarten (Dutch part) 1840           0
## 20748                         Slovakia 1840           0
## 20749                         Slovenia 1840           0
## 20750                  Solomon Islands 1840           0
## 20751                          Somalia 1840           0
## 20752                     South Africa 1840           0
## 20753                      South Korea 1840           0
## 20754                      South Sudan 1840           0
## 20755                            Spain 1840      190528
## 20756                        Sri Lanka 1840           0
## 20757                            Sudan 1840           0
## 20758                         Suriname 1840           0
## 20759                        Swaziland 1840           0
## 20760                           Sweden 1840      117248
## 20761                      Switzerland 1840           0
## 20762                            Syria 1840           0
## 20763                           Taiwan 1840           0
## 20764                       Tajikistan 1840           0
## 20765                         Tanzania 1840           0
## 20766                         Thailand 1840           0
## 20767                            Timor 1840           0
## 20768                             Togo 1840           0
## 20769                            Tonga 1840           0
## 20770              Trinidad and Tobago 1840           0
## 20771                          Tunisia 1840           0
## 20772                           Turkey 1840           0
## 20773                     Turkmenistan 1840           0
## 20774         Turks and Caicos Islands 1840           0
## 20775                           Tuvalu 1840           0
## 20776                           Uganda 1840           0
## 20777                          Ukraine 1840           0
## 20778             United Arab Emirates 1840           0
## 20779                   United Kingdom 1840  2697077728
## 20780                    United States 1840    65988640
## 20781                          Uruguay 1840           0
## 20782                       Uzbekistan 1840           0
## 20783                          Vanuatu 1840           0
## 20784                        Venezuela 1840           0
## 20785                          Vietnam 1840           0
## 20786        Wallis and Futuna Islands 1840           0
## 20787                            World 1840  3184034320
## 20788                            Yemen 1840           0
## 20789                           Zambia 1840           0
## 20790                         Zimbabwe 1840           0
## 20791                      Afghanistan 1841           0
## 20792                           Africa 1841           0
## 20793                          Albania 1841           0
## 20794                          Algeria 1841           0
## 20795                 Americas (other) 1841      208848
## 20796                          Andorra 1841           0
## 20797                           Angola 1841           0
## 20798                         Anguilla 1841           0
## 20799              Antarctic Fisheries 1841           0
## 20800              Antigua and Barbuda 1841           0
## 20801                        Argentina 1841           0
## 20802                          Armenia 1841           0
## 20803                            Aruba 1841           0
## 20804         Asia and Pacific (other) 1841           0
## 20805                        Australia 1841           0
## 20806                          Austria 1841    13413904
## 20807                       Azerbaijan 1841           0
## 20808                          Bahamas 1841           0
## 20809                          Bahrain 1841           0
## 20810                       Bangladesh 1841           0
## 20811                         Barbados 1841           0
## 20812                          Belarus 1841           0
## 20813                          Belgium 1841    75049712
## 20814                           Belize 1841           0
## 20815                            Benin 1841           0
## 20816                          Bermuda 1841           0
## 20817                           Bhutan 1841           0
## 20818                          Bolivia 1841           0
## 20819  Bonaire Sint Eustatius and Saba 1841           0
## 20820           Bosnia and Herzegovina 1841           0
## 20821                         Botswana 1841           0
## 20822                           Brazil 1841           0
## 20823           British Virgin Islands 1841           0
## 20824                           Brunei 1841           0
## 20825                         Bulgaria 1841           0
## 20826                     Burkina Faso 1841           0
## 20827                          Burundi 1841           0
## 20828                         Cambodia 1841           0
## 20829                         Cameroon 1841           0
## 20830                           Canada 1841      208848
## 20831                       Cape Verde 1841           0
## 20832                   Cayman Islands 1841           0
## 20833         Central African Republic 1841           0
## 20834                             Chad 1841           0
## 20835                            Chile 1841           0
## 20836                            China 1841           0
## 20837                 Christmas Island 1841           0
## 20838                         Colombia 1841           0
## 20839                          Comoros 1841           0
## 20840                            Congo 1841           0
## 20841                     Cook Islands 1841           0
## 20842                       Costa Rica 1841           0
## 20843                    Cote d'Ivoire 1841           0
## 20844                          Croatia 1841           0
## 20845                             Cuba 1841           0
## 20846                          Curacao 1841           0
## 20847                           Cyprus 1841           0
## 20848                   Czech Republic 1841           0
## 20849                   Czechoslovakia 1841           0
## 20850     Democratic Republic of Congo 1841           0
## 20851                          Denmark 1841           0
## 20852                         Djibouti 1841           0
## 20853                         Dominica 1841           0
## 20854               Dominican Republic 1841           0
## 20855                            EU-28 1841  3233894032
## 20856                          Ecuador 1841           0
## 20857                            Egypt 1841           0
## 20858                      El Salvador 1841           0
## 20859                Equatorial Guinea 1841           0
## 20860                          Eritrea 1841           0
## 20861                          Estonia 1841           0
## 20862                         Ethiopia 1841           0
## 20863                   Europe (other) 1841      344416
## 20864                   Faeroe Islands 1841           0
## 20865                 Falkland Islands 1841           0
## 20866                             Fiji 1841           0
## 20867                          Finland 1841           0
## 20868                           France 1841   185185888
## 20869                    French Guiana 1841           0
## 20870                 French Polynesia 1841           0
## 20871                            Gabon 1841           0
## 20872                           Gambia 1841           0
## 20873                          Georgia 1841           0
## 20874                          Germany 1841   141360784
## 20875                            Ghana 1841           0
## 20876                        Gibraltar 1841           0
## 20877                           Greece 1841           0
## 20878                        Greenland 1841           0
## 20879                          Grenada 1841           0
## 20880                       Guadeloupe 1841           0
## 20881                        Guatemala 1841           0
## 20882                           Guinea 1841           0
## 20883                    Guinea-Bissau 1841           0
## 20884                           Guyana 1841           0
## 20885                            Haiti 1841           0
## 20886                         Honduras 1841           0
## 20887                        Hong Kong 1841           0
## 20888                          Hungary 1841     1091872
## 20889                          Iceland 1841           0
## 20890                            India 1841           0
## 20891                        Indonesia 1841           0
## 20892                             Iran 1841           0
## 20893                             Iraq 1841           0
## 20894                          Ireland 1841           0
## 20895                           Israel 1841           0
## 20896                            Italy 1841           0
## 20897                          Jamaica 1841           0
## 20898                            Japan 1841           0
## 20899                           Jordan 1841           0
## 20900                       Kazakhstan 1841           0
## 20901                            Kenya 1841           0
## 20902                         Kiribati 1841           0
## 20903                           Kuwait 1841           0
## 20904                       Kyrgysztan 1841           0
## 20905                       Kyrgyzstan 1841           0
## 20906                             Laos 1841           0
## 20907                           Latvia 1841           0
## 20908                          Lebanon 1841           0
## 20909                          Lesotho 1841           0
## 20910                          Liberia 1841           0
## 20911                            Libya 1841           0
## 20912                    Liechtenstein 1841           0
## 20913                        Lithuania 1841           0
## 20914                       Luxembourg 1841           0
## 20915                            Macao 1841           0
## 20916                        Macedonia 1841           0
## 20917                       Madagascar 1841           0
## 20918                           Malawi 1841           0
## 20919                         Malaysia 1841           0
## 20920                         Maldives 1841           0
## 20921                             Mali 1841           0
## 20922                            Malta 1841           0
## 20923                 Marshall Islands 1841           0
## 20924                       Martinique 1841           0
## 20925                       Mauritania 1841           0
## 20926                        Mauritius 1841           0
## 20927                           Mexico 1841           0
## 20928             Micronesia (country) 1841           0
## 20929                      Middle East 1841           0
## 20930                          Moldova 1841           0
## 20931                         Mongolia 1841           0
## 20932                       Montenegro 1841           0
## 20933                       Montserrat 1841           0
## 20934                          Morocco 1841           0
## 20935                       Mozambique 1841           0
## 20936                          Myanmar 1841           0
## 20937                          Namibia 1841           0
## 20938                            Nauru 1841           0
## 20939                            Nepal 1841           0
## 20940                      Netherlands 1841           0
## 20941                    New Caledonia 1841           0
## 20942                      New Zealand 1841           0
## 20943                        Nicaragua 1841           0
## 20944                            Niger 1841           0
## 20945                          Nigeria 1841           0
## 20946                             Niue 1841           0
## 20947                      North Korea 1841           0
## 20948                           Norway 1841      274800
## 20949                             Oman 1841           0
## 20950                         Pakistan 1841           0
## 20951                            Palau 1841           0
## 20952                        Palestine 1841           0
## 20953                           Panama 1841           0
## 20954                 Papua New Guinea 1841           0
## 20955                         Paraguay 1841           0
## 20956                             Peru 1841           0
## 20957                      Philippines 1841           0
## 20958                           Poland 1841    38424368
## 20959                         Portugal 1841           0
## 20960                            Qatar 1841           0
## 20961                          Reunion 1841           0
## 20962                          Romania 1841           0
## 20963                           Russia 1841           0
## 20964                           Rwanda 1841           0
## 20965                     Saint Helena 1841           0
## 20966            Saint Kitts and Nevis 1841           0
## 20967                      Saint Lucia 1841           0
## 20968        Saint Pierre and Miquelon 1841           0
## 20969 Saint Vincent and the Grenadines 1841           0
## 20970                            Samoa 1841           0
## 20971            Sao Tome and Principe 1841           0
## 20972                     Saudi Arabia 1841           0
## 20973                          Senegal 1841           0
## 20974                           Serbia 1841           0
## 20975                       Seychelles 1841           0
## 20976                     Sierra Leone 1841           0
## 20977                        Singapore 1841           0
## 20978        Sint Maarten (Dutch part) 1841           0
## 20979                         Slovakia 1841           0
## 20980                         Slovenia 1841           0
## 20981                  Solomon Islands 1841           0
## 20982                          Somalia 1841           0
## 20983                     South Africa 1841           0
## 20984                      South Korea 1841           0
## 20985                      South Sudan 1841           0
## 20986                            Spain 1841      293120
## 20987                        Sri Lanka 1841           0
## 20988                            Sudan 1841           0
## 20989                         Suriname 1841           0
## 20990                        Swaziland 1841           0
## 20991                           Sweden 1841      157552
## 20992                      Switzerland 1841           0
## 20993                            Syria 1841           0
## 20994                           Taiwan 1841           0
## 20995                       Tajikistan 1841           0
## 20996                         Tanzania 1841           0
## 20997                         Thailand 1841           0
## 20998                            Timor 1841           0
## 20999                             Togo 1841           0
## 21000                            Tonga 1841           0
## 21001              Trinidad and Tobago 1841           0
## 21002                          Tunisia 1841           0
## 21003                           Turkey 1841           0
## 21004                     Turkmenistan 1841           0
## 21005         Turks and Caicos Islands 1841           0
## 21006                           Tuvalu 1841           0
## 21007                           Uganda 1841           0
## 21008                          Ukraine 1841           0
## 21009             United Arab Emirates 1841           0
## 21010                   United Kingdom 1841  2778916832
## 21011                    United States 1841    72202784
## 21012                          Uruguay 1841           0
## 21013                       Uzbekistan 1841           0
## 21014                          Vanuatu 1841           0
## 21015                        Venezuela 1841           0
## 21016                          Vietnam 1841           0
## 21017        Wallis and Futuna Islands 1841           0
## 21018                            World 1841  3306653744
## 21019                            Yemen 1841           0
## 21020                           Zambia 1841           0
## 21021                         Zimbabwe 1841           0
## 21022                      Afghanistan 1842           0
## 21023                           Africa 1842           0
## 21024                          Albania 1842           0
## 21025                          Algeria 1842           0
## 21026                 Americas (other) 1842      212512
## 21027                          Andorra 1842           0
## 21028                           Angola 1842           0
## 21029                         Anguilla 1842           0
## 21030              Antarctic Fisheries 1842           0
## 21031              Antigua and Barbuda 1842           0
## 21032                        Argentina 1842           0
## 21033                          Armenia 1842           0
## 21034                            Aruba 1842           0
## 21035         Asia and Pacific (other) 1842           0
## 21036                        Australia 1842           0
## 21037                          Austria 1842    14872176
## 21038                       Azerbaijan 1842           0
## 21039                          Bahamas 1842           0
## 21040                          Bahrain 1842           0
## 21041                       Bangladesh 1842           0
## 21042                         Barbados 1842           0
## 21043                          Belarus 1842           0
## 21044                          Belgium 1842    82729456
## 21045                           Belize 1842           0
## 21046                            Benin 1842           0
## 21047                          Bermuda 1842           0
## 21048                           Bhutan 1842           0
## 21049                          Bolivia 1842           0
## 21050  Bonaire Sint Eustatius and Saba 1842           0
## 21051           Bosnia and Herzegovina 1842           0
## 21052                         Botswana 1842           0
## 21053                           Brazil 1842           0
## 21054           British Virgin Islands 1842           0
## 21055                           Brunei 1842           0
## 21056                         Bulgaria 1842           0
## 21057                     Burkina Faso 1842           0
## 21058                          Burundi 1842           0
## 21059                         Cambodia 1842           0
## 21060                         Cameroon 1842           0
## 21061                           Canada 1842      212512
## 21062                       Cape Verde 1842           0
## 21063                   Cayman Islands 1842           0
## 21064         Central African Republic 1842           0
## 21065                             Chad 1842           0
## 21066                            Chile 1842           0
## 21067                            China 1842           0
## 21068                 Christmas Island 1842           0
## 21069                         Colombia 1842           0
## 21070                          Comoros 1842           0
## 21071                            Congo 1842           0
## 21072                     Cook Islands 1842           0
## 21073                       Costa Rica 1842           0
## 21074                    Cote d'Ivoire 1842           0
## 21075                          Croatia 1842           0
## 21076                             Cuba 1842           0
## 21077                          Curacao 1842           0
## 21078                           Cyprus 1842           0
## 21079                   Czech Republic 1842           0
## 21080                   Czechoslovakia 1842           0
## 21081     Democratic Republic of Congo 1842           0
## 21082                          Denmark 1842           0
## 21083                         Djibouti 1842           0
## 21084                         Dominica 1842           0
## 21085               Dominican Republic 1842           0
## 21086                            EU-28 1842  3356403536
## 21087                          Ecuador 1842           0
## 21088                            Egypt 1842           0
## 21089                      El Salvador 1842           0
## 21090                Equatorial Guinea 1842           0
## 21091                          Eritrea 1842           0
## 21092                          Estonia 1842           0
## 21093                         Ethiopia 1842           0
## 21094                   Europe (other) 1842      414032
## 21095                   Faeroe Islands 1842           0
## 21096                 Falkland Islands 1842           0
## 21097                             Fiji 1842           0
## 21098                          Finland 1842           0
## 21099                           France 1842   199713648
## 21100                    French Guiana 1842           0
## 21101                 French Polynesia 1842           0
## 21102                            Gabon 1842           0
## 21103                           Gambia 1842           0
## 21104                          Georgia 1842           0
## 21105                          Germany 1842   152242864
## 21106                            Ghana 1842           0
## 21107                        Gibraltar 1842           0
## 21108                           Greece 1842           0
## 21109                        Greenland 1842           0
## 21110                          Grenada 1842           0
## 21111                       Guadeloupe 1842           0
## 21112                        Guatemala 1842           0
## 21113                           Guinea 1842           0
## 21114                    Guinea-Bissau 1842           0
## 21115                           Guyana 1842           0
## 21116                            Haiti 1842           0
## 21117                         Honduras 1842           0
## 21118                        Hong Kong 1842           0
## 21119                          Hungary 1842     1176144
## 21120                          Iceland 1842           0
## 21121                            India 1842           0
## 21122                        Indonesia 1842           0
## 21123                             Iran 1842           0
## 21124                             Iraq 1842           0
## 21125                          Ireland 1842           0
## 21126                           Israel 1842           0
## 21127                            Italy 1842           0
## 21128                          Jamaica 1842           0
## 21129                            Japan 1842           0
## 21130                           Jordan 1842           0
## 21131                       Kazakhstan 1842           0
## 21132                            Kenya 1842           0
## 21133                         Kiribati 1842           0
## 21134                           Kuwait 1842           0
## 21135                       Kyrgysztan 1842           0
## 21136                       Kyrgyzstan 1842           0
## 21137                             Laos 1842           0
## 21138                           Latvia 1842           0
## 21139                          Lebanon 1842           0
## 21140                          Lesotho 1842           0
## 21141                          Liberia 1842           0
## 21142                            Libya 1842           0
## 21143                    Liechtenstein 1842           0
## 21144                        Lithuania 1842           0
## 21145                       Luxembourg 1842           0
## 21146                            Macao 1842           0
## 21147                        Macedonia 1842           0
## 21148                       Madagascar 1842           0
## 21149                           Malawi 1842           0
## 21150                         Malaysia 1842           0
## 21151                         Maldives 1842           0
## 21152                             Mali 1842           0
## 21153                            Malta 1842           0
## 21154                 Marshall Islands 1842           0
## 21155                       Martinique 1842           0
## 21156                       Mauritania 1842           0
## 21157                        Mauritius 1842           0
## 21158                           Mexico 1842           0
## 21159             Micronesia (country) 1842           0
## 21160                      Middle East 1842           0
## 21161                          Moldova 1842           0
## 21162                         Mongolia 1842           0
## 21163                       Montenegro 1842           0
## 21164                       Montserrat 1842           0
## 21165                          Morocco 1842           0
## 21166                       Mozambique 1842           0
## 21167                          Myanmar 1842           0
## 21168                          Namibia 1842           0
## 21169                            Nauru 1842           0
## 21170                            Nepal 1842           0
## 21171                      Netherlands 1842           0
## 21172                    New Caledonia 1842           0
## 21173                      New Zealand 1842           0
## 21174                        Nicaragua 1842           0
## 21175                            Niger 1842           0
## 21176                          Nigeria 1842           0
## 21177                             Niue 1842           0
## 21178                      North Korea 1842           0
## 21179                           Norway 1842      348080
## 21180                             Oman 1842           0
## 21181                         Pakistan 1842           0
## 21182                            Palau 1842           0
## 21183                        Palestine 1842           0
## 21184                           Panama 1842           0
## 21185                 Papua New Guinea 1842           0
## 21186                         Paraguay 1842           0
## 21187                             Peru 1842           0
## 21188                      Philippines 1842           0
## 21189                           Poland 1842    40707040
## 21190                         Portugal 1842           0
## 21191                            Qatar 1842           0
## 21192                          Reunion 1842           0
## 21193                          Romania 1842           0
## 21194                           Russia 1842           0
## 21195                           Rwanda 1842           0
## 21196                     Saint Helena 1842           0
## 21197            Saint Kitts and Nevis 1842           0
## 21198                      Saint Lucia 1842           0
## 21199        Saint Pierre and Miquelon 1842           0
## 21200 Saint Vincent and the Grenadines 1842           0
## 21201                            Samoa 1842           0
## 21202            Sao Tome and Principe 1842           0
## 21203                     Saudi Arabia 1842           0
## 21204                          Senegal 1842           0
## 21205                           Serbia 1842           0
## 21206                       Seychelles 1842           0
## 21207                     Sierra Leone 1842           0
## 21208                        Singapore 1842           0
## 21209        Sint Maarten (Dutch part) 1842           0
## 21210                         Slovakia 1842           0
## 21211                         Slovenia 1842           0
## 21212                  Solomon Islands 1842           0
## 21213                          Somalia 1842           0
## 21214                     South Africa 1842           0
## 21215                      South Korea 1842           0
## 21216                      South Sudan 1842           0
## 21217                            Spain 1842      436016
## 21218                        Sri Lanka 1842           0
## 21219                            Sudan 1842           0
## 21220                         Suriname 1842           0
## 21221                        Swaziland 1842           0
## 21222                           Sweden 1842      238160
## 21223                      Switzerland 1842           0
## 21224                            Syria 1842           0
## 21225                           Taiwan 1842           0
## 21226                       Tajikistan 1842           0
## 21227                         Tanzania 1842           0
## 21228                         Thailand 1842           0
## 21229                            Timor 1842           0
## 21230                             Togo 1842           0
## 21231                            Tonga 1842           0
## 21232              Trinidad and Tobago 1842           0
## 21233                          Tunisia 1842           0
## 21234                           Turkey 1842           0
## 21235                     Turkmenistan 1842           0
## 21236         Turks and Caicos Islands 1842           0
## 21237                           Tuvalu 1842           0
## 21238                           Uganda 1842           0
## 21239                          Ukraine 1842           0
## 21240             United Arab Emirates 1842           0
## 21241                   United Kingdom 1842  2864288032
## 21242                    United States 1842    79120416
## 21243                          Uruguay 1842           0
## 21244                       Uzbekistan 1842           0
## 21245                          Vanuatu 1842           0
## 21246                        Venezuela 1842           0
## 21247                          Vietnam 1842           0
## 21248        Wallis and Futuna Islands 1842           0
## 21249                            World 1842  3436157824
## 21250                            Yemen 1842           0
## 21251                           Zambia 1842           0
## 21252                         Zimbabwe 1842           0
## 21253                      Afghanistan 1843           0
## 21254                           Africa 1843           0
## 21255                          Albania 1843           0
## 21256                          Algeria 1843           0
## 21257                 Americas (other) 1843      216176
## 21258                          Andorra 1843           0
## 21259                           Angola 1843           0
## 21260                         Anguilla 1843           0
## 21261              Antarctic Fisheries 1843           0
## 21262              Antigua and Barbuda 1843           0
## 21263                        Argentina 1843           0
## 21264                          Armenia 1843           0
## 21265                            Aruba 1843           0
## 21266         Asia and Pacific (other) 1843           0
## 21267                        Australia 1843           0
## 21268                          Austria 1843    16139920
## 21269                       Azerbaijan 1843           0
## 21270                          Bahamas 1843           0
## 21271                          Bahrain 1843           0
## 21272                       Bangladesh 1843           0
## 21273                         Barbados 1843           0
## 21274                          Belarus 1843           0
## 21275                          Belgium 1843    89841280
## 21276                           Belize 1843           0
## 21277                            Benin 1843           0
## 21278                          Bermuda 1843           0
## 21279                           Bhutan 1843           0
## 21280                          Bolivia 1843           0
## 21281  Bonaire Sint Eustatius and Saba 1843           0
## 21282           Bosnia and Herzegovina 1843           0
## 21283                         Botswana 1843           0
## 21284                           Brazil 1843           0
## 21285           British Virgin Islands 1843           0
## 21286                           Brunei 1843           0
## 21287                         Bulgaria 1843           0
## 21288                     Burkina Faso 1843           0
## 21289                          Burundi 1843           0
## 21290                         Cambodia 1843           0
## 21291                         Cameroon 1843           0
## 21292                           Canada 1843      216176
## 21293                       Cape Verde 1843           0
## 21294                   Cayman Islands 1843           0
## 21295         Central African Republic 1843           0
## 21296                             Chad 1843           0
## 21297                            Chile 1843           0
## 21298                            China 1843           0
## 21299                 Christmas Island 1843           0
## 21300                         Colombia 1843           0
## 21301                          Comoros 1843           0
## 21302                            Congo 1843           0
## 21303                     Cook Islands 1843           0
## 21304                       Costa Rica 1843           0
## 21305                    Cote d'Ivoire 1843           0
## 21306                          Croatia 1843           0
## 21307                             Cuba 1843           0
## 21308                          Curacao 1843           0
## 21309                           Cyprus 1843           0
## 21310                   Czech Republic 1843           0
## 21311                   Czechoslovakia 1843           0
## 21312     Democratic Republic of Congo 1843           0
## 21313                          Denmark 1843      135568
## 21314                         Djibouti 1843           0
## 21315                         Dominica 1843           0
## 21316               Dominican Republic 1843           0
## 21317                            EU-28 1843  3481426544
## 21318                          Ecuador 1843           0
## 21319                            Egypt 1843           0
## 21320                      El Salvador 1843           0
## 21321                Equatorial Guinea 1843           0
## 21322                          Eritrea 1843           0
## 21323                          Estonia 1843           0
## 21324                         Ethiopia 1843           0
## 21325                   Europe (other) 1843      479984
## 21326                   Faeroe Islands 1843           0
## 21327                 Falkland Islands 1843           0
## 21328                             Fiji 1843           0
## 21329                          Finland 1843           0
## 21330                           France 1843   214263392
## 21331                    French Guiana 1843           0
## 21332                 French Polynesia 1843           0
## 21333                            Gabon 1843           0
## 21334                           Gambia 1843           0
## 21335                          Georgia 1843           0
## 21336                          Germany 1843   162542368
## 21337                            Ghana 1843           0
## 21338                        Gibraltar 1843           0
## 21339                           Greece 1843           0
## 21340                        Greenland 1843           0
## 21341                          Grenada 1843           0
## 21342                       Guadeloupe 1843           0
## 21343                        Guatemala 1843           0
## 21344                           Guinea 1843           0
## 21345                    Guinea-Bissau 1843           0
## 21346                           Guyana 1843           0
## 21347                            Haiti 1843           0
## 21348                         Honduras 1843           0
## 21349                        Hong Kong 1843           0
## 21350                          Hungary 1843     1264080
## 21351                          Iceland 1843           0
## 21352                            India 1843           0
## 21353                        Indonesia 1843           0
## 21354                             Iran 1843           0
## 21355                             Iraq 1843           0
## 21356                          Ireland 1843           0
## 21357                           Israel 1843           0
## 21358                            Italy 1843           0
## 21359                          Jamaica 1843           0
## 21360                            Japan 1843           0
## 21361                           Jordan 1843           0
## 21362                       Kazakhstan 1843           0
## 21363                            Kenya 1843           0
## 21364                         Kiribati 1843           0
## 21365                           Kuwait 1843           0
## 21366                       Kyrgysztan 1843           0
## 21367                       Kyrgyzstan 1843           0
## 21368                             Laos 1843           0
## 21369                           Latvia 1843           0
## 21370                          Lebanon 1843           0
## 21371                          Lesotho 1843           0
## 21372                          Liberia 1843           0
## 21373                            Libya 1843           0
## 21374                    Liechtenstein 1843           0
## 21375                        Lithuania 1843           0
## 21376                       Luxembourg 1843           0
## 21377                            Macao 1843           0
## 21378                        Macedonia 1843           0
## 21379                       Madagascar 1843           0
## 21380                           Malawi 1843           0
## 21381                         Malaysia 1843           0
## 21382                         Maldives 1843           0
## 21383                             Mali 1843           0
## 21384                            Malta 1843           0
## 21385                 Marshall Islands 1843           0
## 21386                       Martinique 1843           0
## 21387                       Mauritania 1843           0
## 21388                        Mauritius 1843           0
## 21389                           Mexico 1843           0
## 21390             Micronesia (country) 1843           0
## 21391                      Middle East 1843           0
## 21392                          Moldova 1843           0
## 21393                         Mongolia 1843           0
## 21394                       Montenegro 1843           0
## 21395                       Montserrat 1843           0
## 21396                          Morocco 1843           0
## 21397                       Mozambique 1843           0
## 21398                          Myanmar 1843           0
## 21399                          Namibia 1843           0
## 21400                            Nauru 1843           0
## 21401                            Nepal 1843           0
## 21402                      Netherlands 1843           0
## 21403                    New Caledonia 1843           0
## 21404                      New Zealand 1843           0
## 21405                        Nicaragua 1843           0
## 21406                            Niger 1843           0
## 21407                          Nigeria 1843           0
## 21408                             Niue 1843           0
## 21409                      North Korea 1843           0
## 21410                           Norway 1843      410368
## 21411                             Oman 1843           0
## 21412                         Pakistan 1843           0
## 21413                            Palau 1843           0
## 21414                        Palestine 1843           0
## 21415                           Panama 1843           0
## 21416                 Papua New Guinea 1843           0
## 21417                         Paraguay 1843           0
## 21418                             Peru 1843           0
## 21419                      Philippines 1843           0
## 21420                           Poland 1843    42953072
## 21421                         Portugal 1843           0
## 21422                            Qatar 1843           0
## 21423                          Reunion 1843           0
## 21424                          Romania 1843           0
## 21425                           Russia 1843           0
## 21426                           Rwanda 1843           0
## 21427                     Saint Helena 1843           0
## 21428            Saint Kitts and Nevis 1843           0
## 21429                      Saint Lucia 1843           0
## 21430        Saint Pierre and Miquelon 1843           0
## 21431 Saint Vincent and the Grenadines 1843           0
## 21432                            Samoa 1843           0
## 21433            Sao Tome and Principe 1843           0
## 21434                     Saudi Arabia 1843           0
## 21435                          Senegal 1843           0
## 21436                           Serbia 1843           0
## 21437                       Seychelles 1843           0
## 21438                     Sierra Leone 1843           0
## 21439                        Singapore 1843           0
## 21440        Sint Maarten (Dutch part) 1843           0
## 21441                         Slovakia 1843           0
## 21442                         Slovenia 1843           0
## 21443                  Solomon Islands 1843           0
## 21444                          Somalia 1843           0
## 21445                     South Africa 1843           0
## 21446                      South Korea 1843           0
## 21447                      South Sudan 1843           0
## 21448                            Spain 1843      608224
## 21449                        Sri Lanka 1843           0
## 21450                            Sudan 1843           0
## 21451                         Suriname 1843           0
## 21452                        Swaziland 1843           0
## 21453                           Sweden 1843      296784
## 21454                      Switzerland 1843           0
## 21455                            Syria 1843           0
## 21456                           Taiwan 1843           0
## 21457                       Tajikistan 1843           0
## 21458                         Tanzania 1843           0
## 21459                         Thailand 1843           0
## 21460                            Timor 1843           0
## 21461                             Togo 1843           0
## 21462                            Tonga 1843           0
## 21463              Trinidad and Tobago 1843           0
## 21464                          Tunisia 1843           0
## 21465                           Turkey 1843           0
## 21466                     Turkmenistan 1843           0
## 21467         Turks and Caicos Islands 1843           0
## 21468                           Tuvalu 1843           0
## 21469                           Uganda 1843           0
## 21470                          Ukraine 1843           0
## 21471             United Arab Emirates 1843           0
## 21472                   United Kingdom 1843  2953381856
## 21473                    United States 1843    86884432
## 21474                          Uruguay 1843           0
## 21475                       Uzbekistan 1843           0
## 21476                          Vanuatu 1843           0
## 21477                        Venezuela 1843           0
## 21478                          Vietnam 1843           0
## 21479        Wallis and Futuna Islands 1843           0
## 21480                            World 1843  3569010800
## 21481                            Yemen 1843           0
## 21482                           Zambia 1843           0
## 21483                         Zimbabwe 1843           0
## 21484                      Afghanistan 1844           0
## 21485                           Africa 1844           0
## 21486                          Albania 1844           0
## 21487                          Algeria 1844           0
## 21488                 Americas (other) 1844      219840
## 21489                          Andorra 1844           0
## 21490                           Angola 1844           0
## 21491                         Anguilla 1844           0
## 21492              Antarctic Fisheries 1844           0
## 21493              Antigua and Barbuda 1844           0
## 21494                        Argentina 1844           0
## 21495                          Armenia 1844           0
## 21496                            Aruba 1844           0
## 21497         Asia and Pacific (other) 1844           0
## 21498                        Australia 1844           0
## 21499                          Austria 1844    17733760
## 21500                       Azerbaijan 1844           0
## 21501                          Bahamas 1844           0
## 21502                          Bahrain 1844           0
## 21503                       Bangladesh 1844           0
## 21504                         Barbados 1844           0
## 21505                          Belarus 1844           0
## 21506                          Belgium 1844    97641936
## 21507                           Belize 1844           0
## 21508                            Benin 1844           0
## 21509                          Bermuda 1844           0
## 21510                           Bhutan 1844           0
## 21511                          Bolivia 1844           0
## 21512  Bonaire Sint Eustatius and Saba 1844           0
## 21513           Bosnia and Herzegovina 1844           0
## 21514                         Botswana 1844           0
## 21515                           Brazil 1844           0
## 21516           British Virgin Islands 1844           0
## 21517                           Brunei 1844           0
## 21518                         Bulgaria 1844           0
## 21519                     Burkina Faso 1844           0
## 21520                          Burundi 1844           0
## 21521                         Cambodia 1844           0
## 21522                         Cameroon 1844           0
## 21523                           Canada 1844      219840
## 21524                       Cape Verde 1844           0
## 21525                   Cayman Islands 1844           0
## 21526         Central African Republic 1844           0
## 21527                             Chad 1844           0
## 21528                            Chile 1844           0
## 21529                            China 1844           0
## 21530                 Christmas Island 1844           0
## 21531                         Colombia 1844           0
## 21532                          Comoros 1844           0
## 21533                            Congo 1844           0
## 21534                     Cook Islands 1844           0
## 21535                       Costa Rica 1844           0
## 21536                    Cote d'Ivoire 1844           0
## 21537                          Croatia 1844           0
## 21538                             Cuba 1844           0
## 21539                          Curacao 1844           0
## 21540                           Cyprus 1844           0
## 21541                   Czech Republic 1844           0
## 21542                   Czechoslovakia 1844           0
## 21543     Democratic Republic of Congo 1844           0
## 21544                          Denmark 1844      293120
## 21545                         Djibouti 1844           0
## 21546                         Dominica 1844           0
## 21547               Dominican Republic 1844           0
## 21548                            EU-28 1844  3613473440
## 21549                          Ecuador 1844           0
## 21550                            Egypt 1844           0
## 21551                      El Salvador 1844           0
## 21552                Equatorial Guinea 1844           0
## 21553                          Eritrea 1844           0
## 21554                          Estonia 1844           0
## 21555                         Ethiopia 1844           0
## 21556                   Europe (other) 1844      556928
## 21557                   Faeroe Islands 1844           0
## 21558                 Falkland Islands 1844           0
## 21559                             Fiji 1844           0
## 21560                          Finland 1844           0
## 21561                           France 1844   229523952
## 21562                    French Guiana 1844           0
## 21563                 French Polynesia 1844           0
## 21564                            Gabon 1844           0
## 21565                           Gambia 1844           0
## 21566                          Georgia 1844           0
## 21567                          Germany 1844   173424448
## 21568                            Ghana 1844           0
## 21569                        Gibraltar 1844           0
## 21570                           Greece 1844           0
## 21571                        Greenland 1844           0
## 21572                          Grenada 1844           0
## 21573                       Guadeloupe 1844           0
## 21574                        Guatemala 1844           0
## 21575                           Guinea 1844           0
## 21576                    Guinea-Bissau 1844           0
## 21577                           Guyana 1844           0
## 21578                            Haiti 1844           0
## 21579                         Honduras 1844           0
## 21580                        Hong Kong 1844           0
## 21581                          Hungary 1844     1450944
## 21582                          Iceland 1844           0
## 21583                            India 1844           0
## 21584                        Indonesia 1844           0
## 21585                             Iran 1844           0
## 21586                             Iraq 1844           0
## 21587                          Ireland 1844           0
## 21588                           Israel 1844           0
## 21589                            Italy 1844           0
## 21590                          Jamaica 1844           0
## 21591                            Japan 1844           0
## 21592                           Jordan 1844           0
## 21593                       Kazakhstan 1844           0
## 21594                            Kenya 1844           0
## 21595                         Kiribati 1844           0
## 21596                           Kuwait 1844           0
## 21597                       Kyrgysztan 1844           0
## 21598                       Kyrgyzstan 1844           0
## 21599                             Laos 1844           0
## 21600                           Latvia 1844           0
## 21601                          Lebanon 1844           0
## 21602                          Lesotho 1844           0
## 21603                          Liberia 1844           0
## 21604                            Libya 1844           0
## 21605                    Liechtenstein 1844           0
## 21606                        Lithuania 1844           0
## 21607                       Luxembourg 1844           0
## 21608                            Macao 1844           0
## 21609                        Macedonia 1844           0
## 21610                       Madagascar 1844           0
## 21611                           Malawi 1844           0
## 21612                         Malaysia 1844           0
## 21613                         Maldives 1844           0
## 21614                             Mali 1844           0
## 21615                            Malta 1844           0
## 21616                 Marshall Islands 1844           0
## 21617                       Martinique 1844           0
## 21618                       Mauritania 1844           0
## 21619                        Mauritius 1844           0
## 21620                           Mexico 1844           0
## 21621             Micronesia (country) 1844           0
## 21622                      Middle East 1844           0
## 21623                          Moldova 1844           0
## 21624                         Mongolia 1844           0
## 21625                       Montenegro 1844           0
## 21626                       Montserrat 1844           0
## 21627                          Morocco 1844           0
## 21628                       Mozambique 1844           0
## 21629                          Myanmar 1844           0
## 21630                          Namibia 1844           0
## 21631                            Nauru 1844           0
## 21632                            Nepal 1844           0
## 21633                      Netherlands 1844           0
## 21634                    New Caledonia 1844           0
## 21635                      New Zealand 1844           0
## 21636                        Nicaragua 1844           0
## 21637                            Niger 1844           0
## 21638                          Nigeria 1844           0
## 21639                             Niue 1844           0
## 21640                      North Korea 1844           0
## 21641                           Norway 1844      476320
## 21642                             Oman 1844           0
## 21643                         Pakistan 1844           0
## 21644                            Palau 1844           0
## 21645                        Palestine 1844           0
## 21646                           Panama 1844           0
## 21647                 Papua New Guinea 1844           0
## 21648                         Paraguay 1844           0
## 21649                             Peru 1844           0
## 21650                      Philippines 1844           0
## 21651                           Poland 1844    45345664
## 21652                         Portugal 1844           0
## 21653                            Qatar 1844           0
## 21654                          Reunion 1844           0
## 21655                          Romania 1844           0
## 21656                           Russia 1844           0
## 21657                           Rwanda 1844           0
## 21658                     Saint Helena 1844           0
## 21659            Saint Kitts and Nevis 1844           0
## 21660                      Saint Lucia 1844           0
## 21661        Saint Pierre and Miquelon 1844           0
## 21662 Saint Vincent and the Grenadines 1844           0
## 21663                            Samoa 1844           0
## 21664            Sao Tome and Principe 1844           0
## 21665                     Saudi Arabia 1844           0
## 21666                          Senegal 1844           0
## 21667                           Serbia 1844           0
## 21668                       Seychelles 1844           0
## 21669                     Sierra Leone 1844           0
## 21670                        Singapore 1844           0
## 21671        Sint Maarten (Dutch part) 1844           0
## 21672                         Slovakia 1844           0
## 21673                         Slovenia 1844           0
## 21674                  Solomon Islands 1844           0
## 21675                          Somalia 1844           0
## 21676                     South Africa 1844           0
## 21677                      South Korea 1844           0
## 21678                      South Sudan 1844           0
## 21679                            Spain 1844      809744
## 21680                        Sri Lanka 1844           0
## 21681                            Sudan 1844           0
## 21682                         Suriname 1844           0
## 21683                        Swaziland 1844           0
## 21684                           Sweden 1844      395712
## 21685                      Switzerland 1844           0
## 21686                            Syria 1844           0
## 21687                           Taiwan 1844           0
## 21688                       Tajikistan 1844           0
## 21689                         Tanzania 1844           0
## 21690                         Thailand 1844           0
## 21691                            Timor 1844           0
## 21692                             Togo 1844           0
## 21693                            Tonga 1844           0
## 21694              Trinidad and Tobago 1844           0
## 21695                          Tunisia 1844           0
## 21696                           Turkey 1844           0
## 21697                     Turkmenistan 1844           0
## 21698         Turks and Caicos Islands 1844           0
## 21699                           Tuvalu 1844           0
## 21700                           Uganda 1844           0
## 21701                          Ukraine 1844           0
## 21702             United Arab Emirates 1844           0
## 21703                   United Kingdom 1844  3046854160
## 21704                    United States 1844    96190992
## 21705                          Uruguay 1844           0
## 21706                       Uzbekistan 1844           0
## 21707                          Vanuatu 1844           0
## 21708                        Venezuela 1844           0
## 21709                          Vietnam 1844           0
## 21710        Wallis and Futuna Islands 1844           0
## 21711                            World 1844  3710433872
## 21712                            Yemen 1844           0
## 21713                           Zambia 1844           0
## 21714                         Zimbabwe 1844           0
## 21715                      Afghanistan 1845           0
## 21716                           Africa 1845           0
## 21717                          Albania 1845           0
## 21718                          Algeria 1845           0
## 21719                 Americas (other) 1845      223504
## 21720                          Andorra 1845           0
## 21721                           Angola 1845           0
## 21722                         Anguilla 1845           0
## 21723              Antarctic Fisheries 1845           0
## 21724              Antigua and Barbuda 1845           0
## 21725                        Argentina 1845           0
## 21726                          Armenia 1845           0
## 21727                            Aruba 1845           0
## 21728         Asia and Pacific (other) 1845           0
## 21729                        Australia 1845           0
## 21730                          Austria 1845    19532784
## 21731                       Azerbaijan 1845           0
## 21732                          Bahamas 1845           0
## 21733                          Bahrain 1845           0
## 21734                       Bangladesh 1845           0
## 21735                         Barbados 1845           0
## 21736                          Belarus 1845           0
## 21737                          Belgium 1845   105860288
## 21738                           Belize 1845           0
## 21739                            Benin 1845           0
## 21740                          Bermuda 1845           0
## 21741                           Bhutan 1845           0
## 21742                          Bolivia 1845           0
## 21743  Bonaire Sint Eustatius and Saba 1845           0
## 21744           Bosnia and Herzegovina 1845           0
## 21745                         Botswana 1845           0
## 21746                           Brazil 1845           0
## 21747           British Virgin Islands 1845           0
## 21748                           Brunei 1845           0
## 21749                         Bulgaria 1845           0
## 21750                     Burkina Faso 1845           0
## 21751                          Burundi 1845           0
## 21752                         Cambodia 1845           0
## 21753                         Cameroon 1845           0
## 21754                           Canada 1845      223504
## 21755                       Cape Verde 1845           0
## 21756                   Cayman Islands 1845           0
## 21757         Central African Republic 1845           0
## 21758                             Chad 1845           0
## 21759                            Chile 1845           0
## 21760                            China 1845           0
## 21761                 Christmas Island 1845           0
## 21762                         Colombia 1845           0
## 21763                          Comoros 1845           0
## 21764                            Congo 1845           0
## 21765                     Cook Islands 1845           0
## 21766                       Costa Rica 1845           0
## 21767                    Cote d'Ivoire 1845           0
## 21768                          Croatia 1845           0
## 21769                             Cuba 1845           0
## 21770                          Curacao 1845           0
## 21771                           Cyprus 1845           0
## 21772                   Czech Republic 1845           0
## 21773                   Czechoslovakia 1845           0
## 21774     Democratic Republic of Congo 1845           0
## 21775                          Denmark 1845      501968
## 21776                         Djibouti 1845           0
## 21777                         Dominica 1845           0
## 21778               Dominican Republic 1845           0
## 21779                            EU-28 1845  3757377040
## 21780                          Ecuador 1845           0
## 21781                            Egypt 1845           0
## 21782                      El Salvador 1845           0
## 21783                Equatorial Guinea 1845           0
## 21784                          Eritrea 1845           0
## 21785                          Estonia 1845           0
## 21786                         Ethiopia 1845           0
## 21787                   Europe (other) 1845      659520
## 21788                   Faeroe Islands 1845           0
## 21789                 Falkland Islands 1845           0
## 21790                             Fiji 1845           0
## 21791                          Finland 1845           0
## 21792                           France 1845   247360304
## 21793                    French Guiana 1845           0
## 21794                 French Polynesia 1845           0
## 21795                            Gabon 1845           0
## 21796                           Gambia 1845           0
## 21797                          Georgia 1845           0
## 21798                          Germany 1845   186035936
## 21799                            Ghana 1845           0
## 21800                        Gibraltar 1845           0
## 21801                           Greece 1845           0
## 21802                        Greenland 1845           0
## 21803                          Grenada 1845           0
## 21804                       Guadeloupe 1845           0
## 21805                        Guatemala 1845           0
## 21806                           Guinea 1845           0
## 21807                    Guinea-Bissau 1845           0
## 21808                           Guyana 1845           0
## 21809                            Haiti 1845           0
## 21810                         Honduras 1845           0
## 21811                        Hong Kong 1845           0
## 21812                          Hungary 1845     1538880
## 21813                          Iceland 1845           0
## 21814                            India 1845           0
## 21815                        Indonesia 1845           0
## 21816                             Iran 1845           0
## 21817                             Iraq 1845           0
## 21818                          Ireland 1845           0
## 21819                           Israel 1845           0
## 21820                            Italy 1845           0
## 21821                          Jamaica 1845           0
## 21822                            Japan 1845           0
## 21823                           Jordan 1845           0
## 21824                       Kazakhstan 1845           0
## 21825                            Kenya 1845           0
## 21826                         Kiribati 1845           0
## 21827                           Kuwait 1845           0
## 21828                       Kyrgysztan 1845           0
## 21829                       Kyrgyzstan 1845           0
## 21830                             Laos 1845           0
## 21831                           Latvia 1845           0
## 21832                          Lebanon 1845           0
## 21833                          Lesotho 1845           0
## 21834                          Liberia 1845           0
## 21835                            Libya 1845           0
## 21836                    Liechtenstein 1845           0
## 21837                        Lithuania 1845           0
## 21838                       Luxembourg 1845           0
## 21839                            Macao 1845           0
## 21840                        Macedonia 1845           0
## 21841                       Madagascar 1845           0
## 21842                           Malawi 1845           0
## 21843                         Malaysia 1845           0
## 21844                         Maldives 1845           0
## 21845                             Mali 1845           0
## 21846                            Malta 1845           0
## 21847                 Marshall Islands 1845           0
## 21848                       Martinique 1845           0
## 21849                       Mauritania 1845           0
## 21850                        Mauritius 1845           0
## 21851                           Mexico 1845           0
## 21852             Micronesia (country) 1845           0
## 21853                      Middle East 1845           0
## 21854                          Moldova 1845           0
## 21855                         Mongolia 1845           0
## 21856                       Montenegro 1845           0
## 21857                       Montserrat 1845           0
## 21858                          Morocco 1845           0
## 21859                       Mozambique 1845           0
## 21860                          Myanmar 1845           0
## 21861                          Namibia 1845           0
## 21862                            Nauru 1845           0
## 21863                            Nepal 1845           0
## 21864                      Netherlands 1845           0
## 21865                    New Caledonia 1845           0
## 21866                      New Zealand 1845           0
## 21867                        Nicaragua 1845           0
## 21868                            Niger 1845           0
## 21869                          Nigeria 1845           0
## 21870                             Niue 1845           0
## 21871                      North Korea 1845           0
## 21872                           Norway 1845      575248
## 21873                             Oman 1845           0
## 21874                         Pakistan 1845           0
## 21875                            Palau 1845           0
## 21876                        Palestine 1845           0
## 21877                           Panama 1845           0
## 21878                 Papua New Guinea 1845           0
## 21879                         Paraguay 1845           0
## 21880                             Peru 1845           0
## 21881                      Philippines 1845           0
## 21882                           Poland 1845    48137632
## 21883                         Portugal 1845           0
## 21884                            Qatar 1845           0
## 21885                          Reunion 1845           0
## 21886                          Romania 1845           0
## 21887                           Russia 1845           0
## 21888                           Rwanda 1845           0
## 21889                     Saint Helena 1845           0
## 21890            Saint Kitts and Nevis 1845           0
## 21891                      Saint Lucia 1845           0
## 21892        Saint Pierre and Miquelon 1845           0
## 21893 Saint Vincent and the Grenadines 1845           0
## 21894                            Samoa 1845           0
## 21895            Sao Tome and Principe 1845           0
## 21896                     Saudi Arabia 1845           0
## 21897                          Senegal 1845           0
## 21898                           Serbia 1845           0
## 21899                       Seychelles 1845           0
## 21900                     Sierra Leone 1845           0
## 21901                        Singapore 1845           0
## 21902        Sint Maarten (Dutch part) 1845           0
## 21903                         Slovakia 1845           0
## 21904                         Slovenia 1845           0
## 21905                  Solomon Islands 1845           0
## 21906                          Somalia 1845           0
## 21907                     South Africa 1845           0
## 21908                      South Korea 1845           0
## 21909                      South Sudan 1845           0
## 21910                            Spain 1845     1084544
## 21911                        Sri Lanka 1845           0
## 21912                            Sudan 1845           0
## 21913                         Suriname 1845           0
## 21914                        Swaziland 1845           0
## 21915                           Sweden 1845      483648
## 21916                      Switzerland 1845           0
## 21917                            Syria 1845           0
## 21918                           Taiwan 1845           0
## 21919                       Tajikistan 1845           0
## 21920                         Tanzania 1845           0
## 21921                         Thailand 1845           0
## 21922                            Timor 1845           0
## 21923                             Togo 1845           0
## 21924                            Tonga 1845           0
## 21925              Trinidad and Tobago 1845           0
## 21926                          Tunisia 1845           0
## 21927                           Turkey 1845           0
## 21928                     Turkmenistan 1845           0
## 21929         Turks and Caicos Islands 1845           0
## 21930                           Tuvalu 1845           0
## 21931                           Uganda 1845           0
## 21932                          Ukraine 1845           0
## 21933             United Arab Emirates 1845           0
## 21934                   United Kingdom 1845  3146841056
## 21935                    United States 1845   107395504
## 21936                          Uruguay 1845           0
## 21937                       Uzbekistan 1845           0
## 21938                          Vanuatu 1845           0
## 21939                        Venezuela 1845           0
## 21940                          Vietnam 1845           0
## 21941        Wallis and Futuna Islands 1845           0
## 21942                            World 1845  3865644576
## 21943                            Yemen 1845           0
## 21944                           Zambia 1845           0
## 21945                         Zimbabwe 1845           0
## 21946                      Afghanistan 1846           0
## 21947                           Africa 1846           0
## 21948                          Albania 1846           0
## 21949                          Algeria 1846           0
## 21950                 Americas (other) 1846      252816
## 21951                          Andorra 1846           0
## 21952                           Angola 1846           0
## 21953                         Anguilla 1846           0
## 21954              Antarctic Fisheries 1846           0
## 21955              Antigua and Barbuda 1846           0
## 21956                        Argentina 1846           0
## 21957                          Armenia 1846           0
## 21958                            Aruba 1846           0
## 21959         Asia and Pacific (other) 1846           0
## 21960                        Australia 1846           0
## 21961                          Austria 1846    21646912
## 21962                       Azerbaijan 1846           0
## 21963                          Bahamas 1846           0
## 21964                          Bahrain 1846           0
## 21965                       Bangladesh 1846           0
## 21966                         Barbados 1846           0
## 21967                          Belarus 1846           0
## 21968                          Belgium 1846   114826096
## 21969                           Belize 1846           0
## 21970                            Benin 1846           0
## 21971                          Bermuda 1846           0
## 21972                           Bhutan 1846           0
## 21973                          Bolivia 1846           0
## 21974  Bonaire Sint Eustatius and Saba 1846           0
## 21975           Bosnia and Herzegovina 1846           0
## 21976                         Botswana 1846           0
## 21977                           Brazil 1846           0
## 21978           British Virgin Islands 1846           0
## 21979                           Brunei 1846           0
## 21980                         Bulgaria 1846           0
## 21981                     Burkina Faso 1846           0
## 21982                          Burundi 1846           0
## 21983                         Cambodia 1846           0
## 21984                         Cameroon 1846           0
## 21985                           Canada 1846      249152
## 21986                       Cape Verde 1846           0
## 21987                   Cayman Islands 1846           0
## 21988         Central African Republic 1846           0
## 21989                             Chad 1846           0
## 21990                            Chile 1846           0
## 21991                            China 1846           0
## 21992                 Christmas Island 1846           0
## 21993                         Colombia 1846           0
## 21994                          Comoros 1846           0
## 21995                            Congo 1846           0
## 21996                     Cook Islands 1846           0
## 21997                       Costa Rica 1846           0
## 21998                    Cote d'Ivoire 1846           0
## 21999                          Croatia 1846           0
## 22000                             Cuba 1846           0
## 22001                          Curacao 1846           0
## 22002                           Cyprus 1846           0
## 22003                   Czech Republic 1846           0
## 22004                   Czechoslovakia 1846           0
## 22005     Democratic Republic of Congo 1846           0
## 22006                          Denmark 1846      729136
## 22007                         Djibouti 1846           0
## 22008                         Dominica 1846           0
## 22009               Dominican Republic 1846           0
## 22010                            EU-28 1846  3902335872
## 22011                          Ecuador 1846           0
## 22012                            Egypt 1846           0
## 22013                      El Salvador 1846           0
## 22014                Equatorial Guinea 1846           0
## 22015                          Eritrea 1846           0
## 22016                          Estonia 1846           0
## 22017                         Ethiopia 1846           0
## 22018                   Europe (other) 1846      758448
## 22019                   Faeroe Islands 1846           0
## 22020                 Falkland Islands 1846           0
## 22021                             Fiji 1846           0
## 22022                          Finland 1846           0
## 22023                           France 1846   265889152
## 22024                    French Guiana 1846           0
## 22025                 French Polynesia 1846           0
## 22026                            Gabon 1846           0
## 22027                           Gambia 1846           0
## 22028                          Georgia 1846           0
## 22029                          Germany 1846   199222672
## 22030                            Ghana 1846           0
## 22031                        Gibraltar 1846           0
## 22032                           Greece 1846           0
## 22033                        Greenland 1846           0
## 22034                          Grenada 1846           0
## 22035                       Guadeloupe 1846           0
## 22036                        Guatemala 1846           0
## 22037                           Guinea 1846           0
## 22038                    Guinea-Bissau 1846           0
## 22039                           Guyana 1846           0
## 22040                            Haiti 1846           0
## 22041                         Honduras 1846           0
## 22042                        Hong Kong 1846           0
## 22043                          Hungary 1846     1601168
## 22044                          Iceland 1846           0
## 22045                            India 1846           0
## 22046                        Indonesia 1846           0
## 22047                             Iran 1846           0
## 22048                             Iraq 1846           0
## 22049                          Ireland 1846           0
## 22050                           Israel 1846           0
## 22051                            Italy 1846           0
## 22052                          Jamaica 1846           0
## 22053                            Japan 1846           0
## 22054                           Jordan 1846           0
## 22055                       Kazakhstan 1846           0
## 22056                            Kenya 1846           0
## 22057                         Kiribati 1846           0
## 22058                           Kuwait 1846           0
## 22059                       Kyrgysztan 1846           0
## 22060                       Kyrgyzstan 1846           0
## 22061                             Laos 1846           0
## 22062                           Latvia 1846           0
## 22063                          Lebanon 1846           0
## 22064                          Lesotho 1846           0
## 22065                          Liberia 1846           0
## 22066                            Libya 1846           0
## 22067                    Liechtenstein 1846           0
## 22068                        Lithuania 1846           0
## 22069                       Luxembourg 1846           0
## 22070                            Macao 1846           0
## 22071                        Macedonia 1846           0
## 22072                       Madagascar 1846           0
## 22073                           Malawi 1846           0
## 22074                         Malaysia 1846           0
## 22075                         Maldives 1846           0
## 22076                             Mali 1846           0
## 22077                            Malta 1846           0
## 22078                 Marshall Islands 1846           0
## 22079                       Martinique 1846           0
## 22080                       Mauritania 1846           0
## 22081                        Mauritius 1846           0
## 22082                           Mexico 1846           0
## 22083             Micronesia (country) 1846           0
## 22084                      Middle East 1846           0
## 22085                          Moldova 1846           0
## 22086                         Mongolia 1846           0
## 22087                       Montenegro 1846           0
## 22088                       Montserrat 1846           0
## 22089                          Morocco 1846           0
## 22090                       Mozambique 1846           0
## 22091                          Myanmar 1846           0
## 22092                          Namibia 1846           0
## 22093                            Nauru 1846           0
## 22094                            Nepal 1846           0
## 22095                      Netherlands 1846     2868912
## 22096                    New Caledonia 1846           0
## 22097                      New Zealand 1846           0
## 22098                        Nicaragua 1846           0
## 22099                            Niger 1846           0
## 22100                          Nigeria 1846           0
## 22101                             Niue 1846           0
## 22102                      North Korea 1846           0
## 22103                           Norway 1846      674176
## 22104                             Oman 1846           0
## 22105                         Pakistan 1846           0
## 22106                            Palau 1846           0
## 22107                        Palestine 1846           0
## 22108                           Panama 1846           0
## 22109                 Papua New Guinea 1846           0
## 22110                         Paraguay 1846           0
## 22111                             Peru 1846           0
## 22112                      Philippines 1846           0
## 22113                           Poland 1846    51087152
## 22114                         Portugal 1846           0
## 22115                            Qatar 1846           0
## 22116                          Reunion 1846           0
## 22117                          Romania 1846           0
## 22118                           Russia 1846           0
## 22119                           Rwanda 1846           0
## 22120                     Saint Helena 1846           0
## 22121            Saint Kitts and Nevis 1846           0
## 22122                      Saint Lucia 1846           0
## 22123        Saint Pierre and Miquelon 1846           0
## 22124 Saint Vincent and the Grenadines 1846           0
## 22125                            Samoa 1846           0
## 22126            Sao Tome and Principe 1846           0
## 22127                     Saudi Arabia 1846           0
## 22128                          Senegal 1846           0
## 22129                           Serbia 1846           0
## 22130                       Seychelles 1846           0
## 22131                     Sierra Leone 1846           0
## 22132                        Singapore 1846           0
## 22133        Sint Maarten (Dutch part) 1846           0
## 22134                         Slovakia 1846           0
## 22135                         Slovenia 1846           0
## 22136                  Solomon Islands 1846           0
## 22137                          Somalia 1846           0
## 22138                     South Africa 1846           0
## 22139                      South Korea 1846           0
## 22140                      South Sudan 1846           0
## 22141                            Spain 1846     1366672
## 22142                        Sri Lanka 1846           0
## 22143                            Sudan 1846           0
## 22144                         Suriname 1846           0
## 22145                        Swaziland 1846           0
## 22146                           Sweden 1846      564256
## 22147                      Switzerland 1846           0
## 22148                            Syria 1846           0
## 22149                           Taiwan 1846           0
## 22150                       Tajikistan 1846           0
## 22151                         Tanzania 1846           0
## 22152                         Thailand 1846           0
## 22153                            Timor 1846           0
## 22154                             Togo 1846           0
## 22155                            Tonga 1846           0
## 22156              Trinidad and Tobago 1846           0
## 22157                          Tunisia 1846           0
## 22158                           Turkey 1846           0
## 22159                     Turkmenistan 1846           0
## 22160         Turks and Caicos Islands 1846           0
## 22161                           Tuvalu 1846           0
## 22162                           Uganda 1846           0
## 22163                          Ukraine 1846           0
## 22164             United Arab Emirates 1846           0
## 22165                   United Kingdom 1846  3242533744
## 22166                    United States 1846   120105920
## 22167                          Uruguay 1846           0
## 22168                       Uzbekistan 1846           0
## 22169                          Vanuatu 1846           0
## 22170                        Venezuela 1846           0
## 22171                          Vietnam 1846           0
## 22172        Wallis and Futuna Islands 1846           0
## 22173                            World 1846  4023438400
## 22174                            Yemen 1846           0
## 22175                           Zambia 1846           0
## 22176                         Zimbabwe 1846           0
## 22177                      Afghanistan 1847           0
## 22178                           Africa 1847           0
## 22179                          Albania 1847           0
## 22180                          Algeria 1847           0
## 22181                 Americas (other) 1847      285792
## 22182                          Andorra 1847           0
## 22183                           Angola 1847           0
## 22184                         Anguilla 1847           0
## 22185              Antarctic Fisheries 1847           0
## 22186              Antigua and Barbuda 1847           0
## 22187                        Argentina 1847           0
## 22188                          Armenia 1847           0
## 22189                            Aruba 1847           0
## 22190         Asia and Pacific (other) 1847           0
## 22191                        Australia 1847           0
## 22192                          Austria 1847    23728064
## 22193                       Azerbaijan 1847           0
## 22194                          Bahamas 1847           0
## 22195                          Bahrain 1847           0
## 22196                       Bangladesh 1847           0
## 22197                         Barbados 1847           0
## 22198                          Belarus 1847           0
## 22199                          Belgium 1847   124143648
## 22200                           Belize 1847           0
## 22201                            Benin 1847           0
## 22202                          Bermuda 1847           0
## 22203                           Bhutan 1847           0
## 22204                          Bolivia 1847           0
## 22205  Bonaire Sint Eustatius and Saba 1847           0
## 22206           Bosnia and Herzegovina 1847           0
## 22207                         Botswana 1847           0
## 22208                           Brazil 1847           0
## 22209           British Virgin Islands 1847           0
## 22210                           Brunei 1847           0
## 22211                         Bulgaria 1847           0
## 22212                     Burkina Faso 1847           0
## 22213                          Burundi 1847           0
## 22214                         Cambodia 1847           0
## 22215                         Cameroon 1847           0
## 22216                           Canada 1847      282128
## 22217                       Cape Verde 1847           0
## 22218                   Cayman Islands 1847           0
## 22219         Central African Republic 1847           0
## 22220                             Chad 1847           0
## 22221                            Chile 1847           0
## 22222                            China 1847           0
## 22223                 Christmas Island 1847           0
## 22224                         Colombia 1847           0
## 22225                          Comoros 1847           0
## 22226                            Congo 1847           0
## 22227                     Cook Islands 1847           0
## 22228                       Costa Rica 1847           0
## 22229                    Cote d'Ivoire 1847           0
## 22230                          Croatia 1847           0
## 22231                             Cuba 1847           0
## 22232                          Curacao 1847           0
## 22233                           Cyprus 1847           0
## 22234                   Czech Republic 1847           0
## 22235                   Czechoslovakia 1847           0
## 22236     Democratic Republic of Congo 1847           0
## 22237                          Denmark 1847      901344
## 22238                         Djibouti 1847           0
## 22239                         Dominica 1847           0
## 22240               Dominican Republic 1847           0
## 22241                            EU-28 1847  4059532464
## 22242                          Ecuador 1847           0
## 22243                            Egypt 1847           0
## 22244                      El Salvador 1847           0
## 22245                Equatorial Guinea 1847           0
## 22246                          Eritrea 1847           0
## 22247                          Estonia 1847           0
## 22248                         Ethiopia 1847           0
## 22249                   Europe (other) 1847      857376
## 22250                   Faeroe Islands 1847           0
## 22251                 Falkland Islands 1847           0
## 22252                             Fiji 1847           0
## 22253                          Finland 1847           0
## 22254                           France 1847   286729984
## 22255                    French Guiana 1847           0
## 22256                 French Polynesia 1847           0
## 22257                            Gabon 1847           0
## 22258                           Gambia 1847           0
## 22259                          Georgia 1847           0
## 22260                          Germany 1847   213061600
## 22261                            Ghana 1847           0
## 22262                        Gibraltar 1847           0
## 22263                           Greece 1847           0
## 22264                        Greenland 1847           0
## 22265                          Grenada 1847           0
## 22266                       Guadeloupe 1847           0
## 22267                        Guatemala 1847           0
## 22268                           Guinea 1847           0
## 22269                    Guinea-Bissau 1847           0
## 22270                           Guyana 1847           0
## 22271                            Haiti 1847           0
## 22272                         Honduras 1847           0
## 22273                        Hong Kong 1847           0
## 22274                          Hungary 1847     1766048
## 22275                          Iceland 1847           0
## 22276                            India 1847           0
## 22277                        Indonesia 1847           0
## 22278                             Iran 1847           0
## 22279                             Iraq 1847           0
## 22280                          Ireland 1847           0
## 22281                           Israel 1847           0
## 22282                            Italy 1847           0
## 22283                          Jamaica 1847           0
## 22284                            Japan 1847           0
## 22285                           Jordan 1847           0
## 22286                       Kazakhstan 1847           0
## 22287                            Kenya 1847           0
## 22288                         Kiribati 1847           0
## 22289                           Kuwait 1847           0
## 22290                       Kyrgysztan 1847           0
## 22291                       Kyrgyzstan 1847           0
## 22292                             Laos 1847           0
## 22293                           Latvia 1847           0
## 22294                          Lebanon 1847           0
## 22295                          Lesotho 1847           0
## 22296                          Liberia 1847           0
## 22297                            Libya 1847           0
## 22298                    Liechtenstein 1847           0
## 22299                        Lithuania 1847           0
## 22300                       Luxembourg 1847           0
## 22301                            Macao 1847           0
## 22302                        Macedonia 1847           0
## 22303                       Madagascar 1847           0
## 22304                           Malawi 1847           0
## 22305                         Malaysia 1847           0
## 22306                         Maldives 1847           0
## 22307                             Mali 1847           0
## 22308                            Malta 1847           0
## 22309                 Marshall Islands 1847           0
## 22310                       Martinique 1847           0
## 22311                       Mauritania 1847           0
## 22312                        Mauritius 1847           0
## 22313                           Mexico 1847           0
## 22314             Micronesia (country) 1847           0
## 22315                      Middle East 1847           0
## 22316                          Moldova 1847           0
## 22317                         Mongolia 1847           0
## 22318                       Montenegro 1847           0
## 22319                       Montserrat 1847           0
## 22320                          Morocco 1847           0
## 22321                       Mozambique 1847           0
## 22322                          Myanmar 1847           0
## 22323                          Namibia 1847           0
## 22324                            Nauru 1847           0
## 22325                            Nepal 1847           0
## 22326                      Netherlands 1847     6738096
## 22327                    New Caledonia 1847           0
## 22328                      New Zealand 1847           0
## 22329                        Nicaragua 1847           0
## 22330                            Niger 1847           0
## 22331                          Nigeria 1847           0
## 22332                             Niue 1847           0
## 22333                      North Korea 1847           0
## 22334                           Norway 1847      776768
## 22335                             Oman 1847           0
## 22336                         Pakistan 1847           0
## 22337                            Palau 1847           0
## 22338                        Palestine 1847           0
## 22339                           Panama 1847           0
## 22340                 Papua New Guinea 1847           0
## 22341                         Paraguay 1847           0
## 22342                             Peru 1847           0
## 22343                      Philippines 1847           0
## 22344                           Poland 1847    54109952
## 22345                         Portugal 1847           0
## 22346                            Qatar 1847           0
## 22347                          Reunion 1847           0
## 22348                          Romania 1847           0
## 22349                           Russia 1847           0
## 22350                           Rwanda 1847           0
## 22351                     Saint Helena 1847           0
## 22352            Saint Kitts and Nevis 1847           0
## 22353                      Saint Lucia 1847           0
## 22354        Saint Pierre and Miquelon 1847           0
## 22355 Saint Vincent and the Grenadines 1847           0
## 22356                            Samoa 1847           0
## 22357            Sao Tome and Principe 1847           0
## 22358                     Saudi Arabia 1847           0
## 22359                          Senegal 1847           0
## 22360                           Serbia 1847           0
## 22361                       Seychelles 1847           0
## 22362                     Sierra Leone 1847           0
## 22363                        Singapore 1847           0
## 22364        Sint Maarten (Dutch part) 1847           0
## 22365                         Slovakia 1847           0
## 22366                         Slovenia 1847           0
## 22367                  Solomon Islands 1847           0
## 22368                          Somalia 1847           0
## 22369                     South Africa 1847           0
## 22370                      South Korea 1847           0
## 22371                      South Sudan 1847           0
## 22372                            Spain 1847     1626816
## 22373                        Sri Lanka 1847           0
## 22374                            Sudan 1847           0
## 22375                         Suriname 1847           0
## 22376                        Swaziland 1847           0
## 22377                           Sweden 1847      644864
## 22378                      Switzerland 1847           0
## 22379                            Syria 1847           0
## 22380                           Taiwan 1847           0
## 22381                       Tajikistan 1847           0
## 22382                         Tanzania 1847           0
## 22383                         Thailand 1847           0
## 22384                            Timor 1847           0
## 22385                             Togo 1847           0
## 22386                            Tonga 1847           0
## 22387              Trinidad and Tobago 1847           0
## 22388                          Tunisia 1847           0
## 22389                           Turkey 1847           0
## 22390                     Turkmenistan 1847           0
## 22391         Turks and Caicos Islands 1847           0
## 22392                           Tuvalu 1847           0
## 22393                           Uganda 1847           0
## 22394                          Ukraine 1847           0
## 22395             United Arab Emirates 1847           0
## 22396                   United Kingdom 1847  3346082048
## 22397                    United States 1847   135175952
## 22398                          Uruguay 1847           0
## 22399                       Uzbekistan 1847           0
## 22400                          Vanuatu 1847           0
## 22401                        Venezuela 1847           0
## 22402                          Vietnam 1847           0
## 22403        Wallis and Futuna Islands 1847           0
## 22404                            World 1847  4195840592
## 22405                            Yemen 1847           0
## 22406                           Zambia 1847           0
## 22407                         Zimbabwe 1847           0
## 22408                      Afghanistan 1848           0
## 22409                           Africa 1848           0
## 22410                          Albania 1848           0
## 22411                          Algeria 1848           0
## 22412                 Americas (other) 1848      322432
## 22413                          Andorra 1848           0
## 22414                           Angola 1848           0
## 22415                         Anguilla 1848           0
## 22416              Antarctic Fisheries 1848           0
## 22417              Antigua and Barbuda 1848           0
## 22418                        Argentina 1848           0
## 22419                          Armenia 1848           0
## 22420                            Aruba 1848           0
## 22421         Asia and Pacific (other) 1848           0
## 22422                        Australia 1848           0
## 22423                          Austria 1848    26062032
## 22424                       Azerbaijan 1848           0
## 22425                          Bahamas 1848           0
## 22426                          Bahrain 1848           0
## 22427                       Bangladesh 1848           0
## 22428                         Barbados 1848           0
## 22429                          Belarus 1848           0
## 22430                          Belgium 1848   132427952
## 22431                           Belize 1848           0
## 22432                            Benin 1848           0
## 22433                          Bermuda 1848           0
## 22434                           Bhutan 1848           0
## 22435                          Bolivia 1848           0
## 22436  Bonaire Sint Eustatius and Saba 1848           0
## 22437           Bosnia and Herzegovina 1848           0
## 22438                         Botswana 1848           0
## 22439                           Brazil 1848           0
## 22440           British Virgin Islands 1848           0
## 22441                           Brunei 1848           0
## 22442                         Bulgaria 1848           0
## 22443                     Burkina Faso 1848           0
## 22444                          Burundi 1848           0
## 22445                         Cambodia 1848           0
## 22446                         Cameroon 1848           0
## 22447                           Canada 1848      322432
## 22448                       Cape Verde 1848           0
## 22449                   Cayman Islands 1848           0
## 22450         Central African Republic 1848           0
## 22451                             Chad 1848           0
## 22452                            Chile 1848           0
## 22453                            China 1848           0
## 22454                 Christmas Island 1848           0
## 22455                         Colombia 1848           0
## 22456                          Comoros 1848           0
## 22457                            Congo 1848           0
## 22458                     Cook Islands 1848           0
## 22459                       Costa Rica 1848           0
## 22460                    Cote d'Ivoire 1848           0
## 22461                          Croatia 1848           0
## 22462                             Cuba 1848           0
## 22463                          Curacao 1848           0
## 22464                           Cyprus 1848           0
## 22465                   Czech Republic 1848           0
## 22466                   Czechoslovakia 1848           0
## 22467     Democratic Republic of Congo 1848           0
## 22468                          Denmark 1848     1212784
## 22469                         Djibouti 1848           0
## 22470                         Dominica 1848           0
## 22471               Dominican Republic 1848           0
## 22472                            EU-28 1848  4216391968
## 22473                          Ecuador 1848           0
## 22474                            Egypt 1848           0
## 22475                      El Salvador 1848           0
## 22476                Equatorial Guinea 1848           0
## 22477                          Eritrea 1848           0
## 22478                          Estonia 1848           0
## 22479                         Ethiopia 1848           0
## 22480                   Europe (other) 1848      989280
## 22481                   Faeroe Islands 1848           0
## 22482                 Falkland Islands 1848           0
## 22483                             Fiji 1848           0
## 22484                          Finland 1848           0
## 22485                           France 1848   303419504
## 22486                    French Guiana 1848           0
## 22487                 French Polynesia 1848           0
## 22488                            Gabon 1848           0
## 22489                           Gambia 1848           0
## 22490                          Georgia 1848           0
## 22491                          Germany 1848   225889264
## 22492                            Ghana 1848           0
## 22493                        Gibraltar 1848           0
## 22494                           Greece 1848           0
## 22495                        Greenland 1848           0
## 22496                          Grenada 1848           0
## 22497                       Guadeloupe 1848           0
## 22498                        Guatemala 1848           0
## 22499                           Guinea 1848           0
## 22500                    Guinea-Bissau 1848           0
## 22501                           Guyana 1848           0
## 22502                            Haiti 1848           0
## 22503                         Honduras 1848           0
## 22504                        Hong Kong 1848           0
## 22505                          Hungary 1848     1766048
## 22506                          Iceland 1848           0
## 22507                            India 1848           0
## 22508                        Indonesia 1848           0
## 22509                             Iran 1848           0
## 22510                             Iraq 1848           0
## 22511                          Ireland 1848           0
## 22512                           Israel 1848           0
## 22513                            Italy 1848           0
## 22514                          Jamaica 1848           0
## 22515                            Japan 1848           0
## 22516                           Jordan 1848           0
## 22517                       Kazakhstan 1848           0
## 22518                            Kenya 1848           0
## 22519                         Kiribati 1848           0
## 22520                           Kuwait 1848           0
## 22521                       Kyrgysztan 1848           0
## 22522                       Kyrgyzstan 1848           0
## 22523                             Laos 1848           0
## 22524                           Latvia 1848           0
## 22525                          Lebanon 1848           0
## 22526                          Lesotho 1848           0
## 22527                          Liberia 1848           0
## 22528                            Libya 1848           0
## 22529                    Liechtenstein 1848           0
## 22530                        Lithuania 1848           0
## 22531                       Luxembourg 1848           0
## 22532                            Macao 1848           0
## 22533                        Macedonia 1848           0
## 22534                       Madagascar 1848           0
## 22535                           Malawi 1848           0
## 22536                         Malaysia 1848           0
## 22537                         Maldives 1848           0
## 22538                             Mali 1848           0
## 22539                            Malta 1848           0
## 22540                 Marshall Islands 1848           0
## 22541                       Martinique 1848           0
## 22542                       Mauritania 1848           0
## 22543                        Mauritius 1848           0
## 22544                           Mexico 1848           0
## 22545             Micronesia (country) 1848           0
## 22546                      Middle East 1848           0
## 22547                          Moldova 1848           0
## 22548                         Mongolia 1848           0
## 22549                       Montenegro 1848           0
## 22550                       Montserrat 1848           0
## 22551                          Morocco 1848           0
## 22552                       Mozambique 1848           0
## 22553                          Myanmar 1848           0
## 22554                          Namibia 1848           0
## 22555                            Nauru 1848           0
## 22556                            Nepal 1848           0
## 22557                      Netherlands 1848    10387440
## 22558                    New Caledonia 1848           0
## 22559                      New Zealand 1848           0
## 22560                        Nicaragua 1848           0
## 22561                            Niger 1848           0
## 22562                          Nigeria 1848           0
## 22563                             Niue 1848           0
## 22564                      North Korea 1848           0
## 22565                           Norway 1848      908672
## 22566                             Oman 1848           0
## 22567                         Pakistan 1848           0
## 22568                            Palau 1848           0
## 22569                        Palestine 1848           0
## 22570                           Panama 1848           0
## 22571                 Papua New Guinea 1848           0
## 22572                         Paraguay 1848           0
## 22573                             Peru 1848           0
## 22574                      Philippines 1848           0
## 22575                           Poland 1848    57154736
## 22576                         Portugal 1848           0
## 22577                            Qatar 1848           0
## 22578                          Reunion 1848           0
## 22579                          Romania 1848           0
## 22580                           Russia 1848           0
## 22581                           Rwanda 1848           0
## 22582                     Saint Helena 1848           0
## 22583            Saint Kitts and Nevis 1848           0
## 22584                      Saint Lucia 1848           0
## 22585        Saint Pierre and Miquelon 1848           0
## 22586 Saint Vincent and the Grenadines 1848           0
## 22587                            Samoa 1848           0
## 22588            Sao Tome and Principe 1848           0
## 22589                     Saudi Arabia 1848           0
## 22590                          Senegal 1848           0
## 22591                           Serbia 1848           0
## 22592                       Seychelles 1848           0
## 22593                     Sierra Leone 1848           0
## 22594                        Singapore 1848           0
## 22595        Sint Maarten (Dutch part) 1848           0
## 22596                         Slovakia 1848           0
## 22597                         Slovenia 1848           0
## 22598                  Solomon Islands 1848           0
## 22599                          Somalia 1848           0
## 22600                     South Africa 1848           0
## 22601                      South Korea 1848           0
## 22602                      South Sudan 1848           0
## 22603                            Spain 1848     1919936
## 22604                        Sri Lanka 1848           0
## 22605                            Sudan 1848           0
## 22606                         Suriname 1848           0
## 22607                        Swaziland 1848           0
## 22608                           Sweden 1848      784096
## 22609                      Switzerland 1848           0
## 22610                            Syria 1848           0
## 22611                           Taiwan 1848           0
## 22612                       Tajikistan 1848           0
## 22613                         Tanzania 1848           0
## 22614                         Thailand 1848           0
## 22615                            Timor 1848           0
## 22616                             Togo 1848           0
## 22617                            Tonga 1848           0
## 22618              Trinidad and Tobago 1848           0
## 22619                          Tunisia 1848           0
## 22620                           Turkey 1848           0
## 22621                     Turkmenistan 1848           0
## 22622         Turks and Caicos Islands 1848           0
## 22623                           Tuvalu 1848           0
## 22624                           Uganda 1848           0
## 22625                          Ukraine 1848           0
## 22626             United Arab Emirates 1848           0
## 22627                   United Kingdom 1848  3455368176
## 22628                    United States 1848   151960736
## 22629                          Uruguay 1848           0
## 22630                       Uzbekistan 1848           0
## 22631                          Vanuatu 1848           0
## 22632                        Venezuela 1848           0
## 22633                          Vietnam 1848           0
## 22634        Wallis and Futuna Islands 1848           0
## 22635                            World 1848  4369657088
## 22636                            Yemen 1848           0
## 22637                           Zambia 1848           0
## 22638                         Zimbabwe 1848           0
## 22639                      Afghanistan 1849           0
## 22640                           Africa 1849           0
## 22641                          Albania 1849           0
## 22642                          Algeria 1849           0
## 22643                 Americas (other) 1849      370064
## 22644                          Andorra 1849           0
## 22645                           Angola 1849           0
## 22646                         Anguilla 1849           0
## 22647              Antarctic Fisheries 1849           0
## 22648              Antigua and Barbuda 1849           0
## 22649                        Argentina 1849           0
## 22650                          Armenia 1849           0
## 22651                            Aruba 1849           0
## 22652         Asia and Pacific (other) 1849           0
## 22653                        Australia 1849           0
## 22654                          Austria 1849    28322720
## 22655                       Azerbaijan 1849           0
## 22656                          Bahamas 1849           0
## 22657                          Bahrain 1849           0
## 22658                       Bangladesh 1849           0
## 22659                         Barbados 1849           0
## 22660                          Belarus 1849           0
## 22661                          Belgium 1849   141162928
## 22662                           Belize 1849           0
## 22663                            Benin 1849           0
## 22664                          Bermuda 1849           0
## 22665                           Bhutan 1849           0
## 22666                          Bolivia 1849           0
## 22667  Bonaire Sint Eustatius and Saba 1849           0
## 22668           Bosnia and Herzegovina 1849           0
## 22669                         Botswana 1849           0
## 22670                           Brazil 1849           0
## 22671           British Virgin Islands 1849           0
## 22672                           Brunei 1849           0
## 22673                         Bulgaria 1849           0
## 22674                     Burkina Faso 1849           0
## 22675                          Burundi 1849           0
## 22676                         Cambodia 1849           0
## 22677                         Cameroon 1849           0
## 22678                           Canada 1849      370064
## 22679                       Cape Verde 1849           0
## 22680                   Cayman Islands 1849           0
## 22681         Central African Republic 1849           0
## 22682                             Chad 1849           0
## 22683                            Chile 1849           0
## 22684                            China 1849           0
## 22685                 Christmas Island 1849           0
## 22686                         Colombia 1849           0
## 22687                          Comoros 1849           0
## 22688                            Congo 1849           0
## 22689                     Cook Islands 1849           0
## 22690                       Costa Rica 1849           0
## 22691                    Cote d'Ivoire 1849           0
## 22692                          Croatia 1849           0
## 22693                             Cuba 1849           0
## 22694                          Curacao 1849           0
## 22695                           Cyprus 1849           0
## 22696                   Czech Republic 1849           0
## 22697                   Czechoslovakia 1849           0
## 22698     Democratic Republic of Congo 1849           0
## 22699                          Denmark 1849     1483920
## 22700                         Djibouti 1849           0
## 22701                         Dominica 1849           0
## 22702               Dominican Republic 1849           0
## 22703                            EU-28 1849  4381528448
## 22704                          Ecuador 1849           0
## 22705                            Egypt 1849           0
## 22706                      El Salvador 1849           0
## 22707                Equatorial Guinea 1849           0
## 22708                          Eritrea 1849           0
## 22709                          Estonia 1849           0
## 22710                         Ethiopia 1849           0
## 22711                   Europe (other) 1849     1095536
## 22712                   Faeroe Islands 1849           0
## 22713                 Falkland Islands 1849           0
## 22714                             Fiji 1849           0
## 22715                          Finland 1849           0
## 22716                           France 1849   320805184
## 22717                    French Guiana 1849           0
## 22718                 French Polynesia 1849           0
## 22719                            Gabon 1849           0
## 22720                           Gambia 1849           0
## 22721                          Georgia 1849           0
## 22722                          Germany 1849   239512016
## 22723                            Ghana 1849           0
## 22724                        Gibraltar 1849           0
## 22725                           Greece 1849           0
## 22726                        Greenland 1849           0
## 22727                          Grenada 1849           0
## 22728                       Guadeloupe 1849           0
## 22729                        Guatemala 1849           0
## 22730                           Guinea 1849           0
## 22731                    Guinea-Bissau 1849           0
## 22732                           Guyana 1849           0
## 22733                            Haiti 1849           0
## 22734                         Honduras 1849           0
## 22735                        Hong Kong 1849           0
## 22736                          Hungary 1849     1766048
## 22737                          Iceland 1849           0
## 22738                            India 1849           0
## 22739                        Indonesia 1849           0
## 22740                             Iran 1849           0
## 22741                             Iraq 1849           0
## 22742                          Ireland 1849           0
## 22743                           Israel 1849           0
## 22744                            Italy 1849           0
## 22745                          Jamaica 1849           0
## 22746                            Japan 1849           0
## 22747                           Jordan 1849           0
## 22748                       Kazakhstan 1849           0
## 22749                            Kenya 1849           0
## 22750                         Kiribati 1849           0
## 22751                           Kuwait 1849           0
## 22752                       Kyrgysztan 1849           0
## 22753                       Kyrgyzstan 1849           0
## 22754                             Laos 1849           0
## 22755                           Latvia 1849           0
## 22756                          Lebanon 1849           0
## 22757                          Lesotho 1849           0
## 22758                          Liberia 1849           0
## 22759                            Libya 1849           0
## 22760                    Liechtenstein 1849           0
## 22761                        Lithuania 1849           0
## 22762                       Luxembourg 1849           0
## 22763                            Macao 1849           0
## 22764                        Macedonia 1849           0
## 22765                       Madagascar 1849           0
## 22766                           Malawi 1849           0
## 22767                         Malaysia 1849           0
## 22768                         Maldives 1849           0
## 22769                             Mali 1849           0
## 22770                            Malta 1849           0
## 22771                 Marshall Islands 1849           0
## 22772                       Martinique 1849           0
## 22773                       Mauritania 1849           0
## 22774                        Mauritius 1849           0
## 22775                           Mexico 1849           0
## 22776             Micronesia (country) 1849           0
## 22777                      Middle East 1849           0
## 22778                          Moldova 1849           0
## 22779                         Mongolia 1849           0
## 22780                       Montenegro 1849           0
## 22781                       Montserrat 1849           0
## 22782                          Morocco 1849           0
## 22783                       Mozambique 1849           0
## 22784                          Myanmar 1849           0
## 22785                          Namibia 1849           0
## 22786                            Nauru 1849           0
## 22787                            Nepal 1849           0
## 22788                      Netherlands 1849    13718016
## 22789                    New Caledonia 1849           0
## 22790                      New Zealand 1849           0
## 22791                        Nicaragua 1849           0
## 22792                            Niger 1849           0
## 22793                          Nigeria 1849           0
## 22794                             Niue 1849           0
## 22795                      North Korea 1849           0
## 22796                           Norway 1849     1014928
## 22797                             Oman 1849           0
## 22798                         Pakistan 1849           0
## 22799                            Palau 1849           0
## 22800                        Palestine 1849           0
## 22801                           Panama 1849           0
## 22802                 Papua New Guinea 1849           0
## 22803                         Paraguay 1849           0
## 22804                             Peru 1849           0
## 22805                      Philippines 1849           0
## 22806                           Poland 1849    60159216
## 22807                         Portugal 1849           0
## 22808                            Qatar 1849           0
## 22809                          Reunion 1849           0
## 22810                          Romania 1849           0
## 22811                           Russia 1849           0
## 22812                           Rwanda 1849           0
## 22813                     Saint Helena 1849           0
## 22814            Saint Kitts and Nevis 1849           0
## 22815                      Saint Lucia 1849           0
## 22816        Saint Pierre and Miquelon 1849           0
## 22817 Saint Vincent and the Grenadines 1849           0
## 22818                            Samoa 1849           0
## 22819            Sao Tome and Principe 1849           0
## 22820                     Saudi Arabia 1849           0
## 22821                          Senegal 1849           0
## 22822                           Serbia 1849           0
## 22823                       Seychelles 1849           0
## 22824                     Sierra Leone 1849           0
## 22825                        Singapore 1849           0
## 22826        Sint Maarten (Dutch part) 1849           0
## 22827                         Slovakia 1849           0
## 22828                         Slovenia 1849           0
## 22829                  Solomon Islands 1849           0
## 22830                          Somalia 1849           0
## 22831                     South Africa 1849           0
## 22832                      South Korea 1849           0
## 22833                      South Sudan 1849           0
## 22834                            Spain 1849     2246032
## 22835                        Sri Lanka 1849           0
## 22836                            Sudan 1849           0
## 22837                         Suriname 1849           0
## 22838                        Swaziland 1849           0
## 22839                           Sweden 1849      978288
## 22840                      Switzerland 1849           0
## 22841                            Syria 1849           0
## 22842                           Taiwan 1849           0
## 22843                       Tajikistan 1849           0
## 22844                         Tanzania 1849           0
## 22845                         Thailand 1849           0
## 22846                            Timor 1849           0
## 22847                             Togo 1849           0
## 22848                            Tonga 1849           0
## 22849              Trinidad and Tobago 1849           0
## 22850                          Tunisia 1849           0
## 22851                           Turkey 1849           0
## 22852                     Turkmenistan 1849           0
## 22853         Turks and Caicos Islands 1849           0
## 22854                           Tuvalu 1849           0
## 22855                           Uganda 1849           0
## 22856                          Ukraine 1849           0
## 22857             United Arab Emirates 1849           0
## 22858                   United Kingdom 1849  3571374080
## 22859                    United States 1849   170181808
## 22860                          Uruguay 1849           0
## 22861                       Uzbekistan 1849           0
## 22862                          Vanuatu 1849           0
## 22863                        Venezuela 1849           0
## 22864                          Vietnam 1849           0
## 22865        Wallis and Futuna Islands 1849           0
## 22866                            World 1849  4553168528
## 22867                            Yemen 1849           0
## 22868                           Zambia 1849           0
## 22869                         Zimbabwe 1849           0
## 22870                      Afghanistan 1850           0
## 22871                           Africa 1850           0
## 22872                          Albania 1850           0
## 22873                          Algeria 1850           0
## 22874                 Americas (other) 1850      428688
## 22875                          Andorra 1850           0
## 22876                           Angola 1850           0
## 22877                         Anguilla 1850           0
## 22878              Antarctic Fisheries 1850           0
## 22879              Antigua and Barbuda 1850           0
## 22880                        Argentina 1850           0
## 22881                          Armenia 1850           0
## 22882                            Aruba 1850           0
## 22883         Asia and Pacific (other) 1850           0
## 22884                        Australia 1850           0
## 22885                          Austria 1850    30649360
## 22886                       Azerbaijan 1850           0
## 22887                          Bahamas 1850           0
## 22888                          Bahrain 1850           0
## 22889                       Bangladesh 1850           0
## 22890                         Barbados 1850           0
## 22891                          Belarus 1850           0
## 22892                          Belgium 1850   150495136
## 22893                           Belize 1850           0
## 22894                            Benin 1850           0
## 22895                          Bermuda 1850           0
## 22896                           Bhutan 1850           0
## 22897                          Bolivia 1850           0
## 22898  Bonaire Sint Eustatius and Saba 1850           0
## 22899           Bosnia and Herzegovina 1850           0
## 22900                         Botswana 1850           0
## 22901                           Brazil 1850           0
## 22902           British Virgin Islands 1850           0
## 22903                           Brunei 1850           0
## 22904                         Bulgaria 1850           0
## 22905                     Burkina Faso 1850           0
## 22906                          Burundi 1850           0
## 22907                         Cambodia 1850           0
## 22908                         Cameroon 1850           0
## 22909                           Canada 1850      428688
## 22910                       Cape Verde 1850           0
## 22911                   Cayman Islands 1850           0
## 22912         Central African Republic 1850           0
## 22913                             Chad 1850           0
## 22914                            Chile 1850           0
## 22915                            China 1850           0
## 22916                 Christmas Island 1850           0
## 22917                         Colombia 1850           0
## 22918                          Comoros 1850           0
## 22919                            Congo 1850           0
## 22920                     Cook Islands 1850           0
## 22921                       Costa Rica 1850           0
## 22922                    Cote d'Ivoire 1850           0
## 22923                          Croatia 1850           0
## 22924                             Cuba 1850           0
## 22925                          Curacao 1850           0
## 22926                           Cyprus 1850           0
## 22927                   Czech Republic 1850           0
## 22928                   Czechoslovakia 1850           0
## 22929     Democratic Republic of Congo 1850           0
## 22930                          Denmark 1850     1824672
## 22931                         Djibouti 1850           0
## 22932                         Dominica 1850           0
## 22933               Dominican Republic 1850           0
## 22934                            EU-28 1850  4558320112
## 22935                          Ecuador 1850           0
## 22936                            Egypt 1850           0
## 22937                      El Salvador 1850           0
## 22938                Equatorial Guinea 1850           0
## 22939                          Eritrea 1850           0
## 22940                          Estonia 1850           0
## 22941                         Ethiopia 1850           0
## 22942                   Europe (other) 1850     1344688
## 22943                   Faeroe Islands 1850           0
## 22944                 Falkland Islands 1850           0
## 22945                             Fiji 1850           0
## 22946                          Finland 1850           0
## 22947                           France 1850   340422240
## 22948                    French Guiana 1850           0
## 22949                 French Polynesia 1850           0
## 22950                            Gabon 1850           0
## 22951                           Gambia 1850           0
## 22952                          Georgia 1850           0
## 22953                          Germany 1850   254651664
## 22954                            Ghana 1850           0
## 22955                        Gibraltar 1850           0
## 22956                           Greece 1850           0
## 22957                        Greenland 1850           0
## 22958                          Grenada 1850           0
## 22959                       Guadeloupe 1850           0
## 22960                        Guatemala 1850           0
## 22961                           Guinea 1850           0
## 22962                    Guinea-Bissau 1850           0
## 22963                           Guyana 1850           0
## 22964                            Haiti 1850           0
## 22965                         Honduras 1850           0
## 22966                        Hong Kong 1850           0
## 22967                          Hungary 1850     1766048
## 22968                          Iceland 1850           0
## 22969                            India 1850           0
## 22970                        Indonesia 1850           0
## 22971                             Iran 1850           0
## 22972                             Iraq 1850           0
## 22973                          Ireland 1850      395712
## 22974                           Israel 1850           0
## 22975                            Italy 1850           0
## 22976                          Jamaica 1850           0
## 22977                            Japan 1850           0
## 22978                           Jordan 1850           0
## 22979                       Kazakhstan 1850           0
## 22980                            Kenya 1850           0
## 22981                         Kiribati 1850           0
## 22982                           Kuwait 1850           0
## 22983                       Kyrgysztan 1850           0
## 22984                       Kyrgyzstan 1850           0
## 22985                             Laos 1850           0
## 22986                           Latvia 1850           0
## 22987                          Lebanon 1850           0
## 22988                          Lesotho 1850           0
## 22989                          Liberia 1850           0
## 22990                            Libya 1850           0
## 22991                    Liechtenstein 1850           0
## 22992                        Lithuania 1850           0
## 22993                       Luxembourg 1850           0
## 22994                            Macao 1850           0
## 22995                        Macedonia 1850           0
## 22996                       Madagascar 1850           0
## 22997                           Malawi 1850           0
## 22998                         Malaysia 1850           0
## 22999                         Maldives 1850           0
## 23000                             Mali 1850           0
## 23001                            Malta 1850           0
## 23002                 Marshall Islands 1850           0
## 23003                       Martinique 1850           0
## 23004                       Mauritania 1850           0
## 23005                        Mauritius 1850           0
## 23006                           Mexico 1850           0
## 23007             Micronesia (country) 1850           0
## 23008                      Middle East 1850           0
## 23009                          Moldova 1850           0
## 23010                         Mongolia 1850           0
## 23011                       Montenegro 1850           0
## 23012                       Montserrat 1850           0
## 23013                          Morocco 1850           0
## 23014                       Mozambique 1850           0
## 23015                          Myanmar 1850           0
## 23016                          Namibia 1850           0
## 23017                            Nauru 1850           0
## 23018                            Nepal 1850           0
## 23019                      Netherlands 1850    16854400
## 23020                    New Caledonia 1850           0
## 23021                      New Zealand 1850           0
## 23022                        Nicaragua 1850           0
## 23023                            Niger 1850           0
## 23024                          Nigeria 1850           0
## 23025                             Niue 1850           0
## 23026                      North Korea 1850           0
## 23027                           Norway 1850     1154160
## 23028                             Oman 1850           0
## 23029                         Pakistan 1850           0
## 23030                            Palau 1850           0
## 23031                        Palestine 1850           0
## 23032                           Panama 1850           0
## 23033                 Papua New Guinea 1850           0
## 23034                         Paraguay 1850           0
## 23035                             Peru 1850           0
## 23036                      Philippines 1850           0
## 23037                           Poland 1850    63361552
## 23038                         Portugal 1850           0
## 23039                            Qatar 1850           0
## 23040                          Reunion 1850           0
## 23041                          Romania 1850           0
## 23042                           Russia 1850           0
## 23043                           Rwanda 1850           0
## 23044                     Saint Helena 1850           0
## 23045            Saint Kitts and Nevis 1850           0
## 23046                      Saint Lucia 1850           0
## 23047        Saint Pierre and Miquelon 1850           0
## 23048 Saint Vincent and the Grenadines 1850           0
## 23049                            Samoa 1850           0
## 23050            Sao Tome and Principe 1850           0
## 23051                     Saudi Arabia 1850           0
## 23052                          Senegal 1850           0
## 23053                           Serbia 1850           0
## 23054                       Seychelles 1850           0
## 23055                     Sierra Leone 1850           0
## 23056                        Singapore 1850           0
## 23057        Sint Maarten (Dutch part) 1850           0
## 23058                         Slovakia 1850           0
## 23059                         Slovenia 1850           0
## 23060                  Solomon Islands 1850           0
## 23061                          Somalia 1850           0
## 23062                     South Africa 1850           0
## 23063                      South Korea 1850           0
## 23064                      South Sudan 1850           0
## 23065                            Spain 1850     2740672
## 23066                        Sri Lanka 1850           0
## 23067                            Sudan 1850           0
## 23068                         Suriname 1850           0
## 23069                        Swaziland 1850           0
## 23070                           Sweden 1850     1179808
## 23071                      Switzerland 1850           0
## 23072                            Syria 1850           0
## 23073                           Taiwan 1850           0
## 23074                       Tajikistan 1850           0
## 23075                         Tanzania 1850           0
## 23076                         Thailand 1850           0
## 23077                            Timor 1850           0
## 23078                             Togo 1850           0
## 23079                            Tonga 1850           0
## 23080              Trinidad and Tobago 1850           0
## 23081                          Tunisia 1850           0
## 23082                           Turkey 1850           0
## 23083                     Turkmenistan 1850           0
## 23084         Turks and Caicos Islands 1850           0
## 23085                           Tuvalu 1850           0
## 23086                           Uganda 1850           0
## 23087                          Ukraine 1850           0
## 23088             United Arab Emirates 1850           0
## 23089                   United Kingdom 1850  3693978848
## 23090                    United States 1850   189974736
## 23091                          Uruguay 1850           0
## 23092                       Uzbekistan 1850           0
## 23093                          Vanuatu 1850           0
## 23094                        Venezuela 1850           0
## 23095                          Vietnam 1850           0
## 23096        Wallis and Futuna Islands 1850           0
## 23097                            World 1850  4750064560
## 23098                            Yemen 1850           0
## 23099                           Zambia 1850           0
## 23100                         Zimbabwe 1850           0
## 23101                      Afghanistan 1851           0
## 23102                           Africa 1851           0
## 23103                          Albania 1851           0
## 23104                          Algeria 1851           0
## 23105                 Americas (other) 1851      498304
## 23106                          Andorra 1851           0
## 23107                           Angola 1851           0
## 23108                         Anguilla 1851           0
## 23109              Antarctic Fisheries 1851           0
## 23110              Antigua and Barbuda 1851           0
## 23111                        Argentina 1851           0
## 23112                          Armenia 1851           0
## 23113                            Aruba 1851           0
## 23114         Asia and Pacific (other) 1851           0
## 23115                        Australia 1851           0
## 23116                          Austria 1851    32983328
## 23117                       Azerbaijan 1851           0
## 23118                          Bahamas 1851           0
## 23119                          Bahrain 1851           0
## 23120                       Bangladesh 1851           0
## 23121                         Barbados 1851           0
## 23122                          Belarus 1851           0
## 23123                          Belgium 1851   160662736
## 23124                           Belize 1851           0
## 23125                            Benin 1851           0
## 23126                          Bermuda 1851           0
## 23127                           Bhutan 1851           0
## 23128                          Bolivia 1851           0
## 23129  Bonaire Sint Eustatius and Saba 1851           0
## 23130           Bosnia and Herzegovina 1851           0
## 23131                         Botswana 1851           0
## 23132                           Brazil 1851           0
## 23133           British Virgin Islands 1851           0
## 23134                           Brunei 1851           0
## 23135                         Bulgaria 1851           0
## 23136                     Burkina Faso 1851           0
## 23137                          Burundi 1851           0
## 23138                         Cambodia 1851           0
## 23139                         Cameroon 1851           0
## 23140                           Canada 1851      498304
## 23141                       Cape Verde 1851           0
## 23142                   Cayman Islands 1851           0
## 23143         Central African Republic 1851           0
## 23144                             Chad 1851           0
## 23145                            Chile 1851           0
## 23146                            China 1851           0
## 23147                 Christmas Island 1851           0
## 23148                         Colombia 1851           0
## 23149                          Comoros 1851           0
## 23150                            Congo 1851           0
## 23151                     Cook Islands 1851           0
## 23152                       Costa Rica 1851           0
## 23153                    Cote d'Ivoire 1851           0
## 23154                          Croatia 1851           0
## 23155                             Cuba 1851           0
## 23156                          Curacao 1851           0
## 23157                           Cyprus 1851           0
## 23158                   Czech Republic 1851           0
## 23159                   Czechoslovakia 1851           0
## 23160     Democratic Republic of Congo 1851           0
## 23161                          Denmark 1851     2136112
## 23162                         Djibouti 1851           0
## 23163                         Dominica 1851           0
## 23164               Dominican Republic 1851           0
## 23165                            EU-28 1851  4732272176
## 23166                          Ecuador 1851           0
## 23167                            Egypt 1851           0
## 23168                      El Salvador 1851           0
## 23169                Equatorial Guinea 1851           0
## 23170                          Eritrea 1851           0
## 23171                          Estonia 1851           0
## 23172                         Ethiopia 1851           0
## 23173                   Europe (other) 1851     1494912
## 23174                   Faeroe Islands 1851           0
## 23175                 Falkland Islands 1851           0
## 23176                             Fiji 1851           0
## 23177                          Finland 1851           0
## 23178                           France 1851   360460656
## 23179                    French Guiana 1851           0
## 23180                 French Polynesia 1851           0
## 23181                            Gabon 1851           0
## 23182                           Gambia 1851           0
## 23183                          Georgia 1851           0
## 23184                          Germany 1851   271520720
## 23185                            Ghana 1851           0
## 23186                        Gibraltar 1851           0
## 23187                           Greece 1851           0
## 23188                        Greenland 1851           0
## 23189                          Grenada 1851           0
## 23190                       Guadeloupe 1851           0
## 23191                        Guatemala 1851           0
## 23192                           Guinea 1851           0
## 23193                    Guinea-Bissau 1851           0
## 23194                           Guyana 1851           0
## 23195                            Haiti 1851           0
## 23196                         Honduras 1851           0
## 23197                        Hong Kong 1851           0
## 23198                          Hungary 1851     2040848
## 23199                          Iceland 1851           0
## 23200                            India 1851           0
## 23201                        Indonesia 1851           0
## 23202                             Iran 1851           0
## 23203                             Iraq 1851           0
## 23204                          Ireland 1851      395712
## 23205                           Israel 1851           0
## 23206                            Italy 1851           0
## 23207                          Jamaica 1851           0
## 23208                            Japan 1851           0
## 23209                           Jordan 1851           0
## 23210                       Kazakhstan 1851           0
## 23211                            Kenya 1851           0
## 23212                         Kiribati 1851           0
## 23213                           Kuwait 1851           0
## 23214                       Kyrgysztan 1851           0
## 23215                       Kyrgyzstan 1851           0
## 23216                             Laos 1851           0
## 23217                           Latvia 1851           0
## 23218                          Lebanon 1851           0
## 23219                          Lesotho 1851           0
## 23220                          Liberia 1851           0
## 23221                            Libya 1851           0
## 23222                    Liechtenstein 1851           0
## 23223                        Lithuania 1851           0
## 23224                       Luxembourg 1851           0
## 23225                            Macao 1851           0
## 23226                        Macedonia 1851           0
## 23227                       Madagascar 1851           0
## 23228                           Malawi 1851           0
## 23229                         Malaysia 1851           0
## 23230                         Maldives 1851           0
## 23231                             Mali 1851           0
## 23232                            Malta 1851           0
## 23233                 Marshall Islands 1851           0
## 23234                       Martinique 1851           0
## 23235                       Mauritania 1851           0
## 23236                        Mauritius 1851           0
## 23237                           Mexico 1851           0
## 23238             Micronesia (country) 1851           0
## 23239                      Middle East 1851           0
## 23240                          Moldova 1851           0
## 23241                         Mongolia 1851           0
## 23242                       Montenegro 1851           0
## 23243                       Montserrat 1851           0
## 23244                          Morocco 1851           0
## 23245                       Mozambique 1851           0
## 23246                          Myanmar 1851           0
## 23247                          Namibia 1851           0
## 23248                            Nauru 1851           0
## 23249                            Nepal 1851           0
## 23250                      Netherlands 1851    19972464
## 23251                    New Caledonia 1851           0
## 23252                      New Zealand 1851           0
## 23253                        Nicaragua 1851           0
## 23254                            Niger 1851           0
## 23255                          Nigeria 1851           0
## 23256                             Niue 1851           0
## 23257                      North Korea 1851           0
## 23258                           Norway 1851     1304384
## 23259                             Oman 1851           0
## 23260                         Pakistan 1851           0
## 23261                            Palau 1851           0
## 23262                        Palestine 1851           0
## 23263                           Panama 1851           0
## 23264                 Papua New Guinea 1851           0
## 23265                         Paraguay 1851           0
## 23266                             Peru 1851           0
## 23267                      Philippines 1851           0
## 23268                           Poland 1851    66820368
## 23269                         Portugal 1851           0
## 23270                            Qatar 1851           0
## 23271                          Reunion 1851           0
## 23272                          Romania 1851           0
## 23273                           Russia 1851           0
## 23274                           Rwanda 1851           0
## 23275                     Saint Helena 1851           0
## 23276            Saint Kitts and Nevis 1851           0
## 23277                      Saint Lucia 1851           0
## 23278        Saint Pierre and Miquelon 1851           0
## 23279 Saint Vincent and the Grenadines 1851           0
## 23280                            Samoa 1851           0
## 23281            Sao Tome and Principe 1851           0
## 23282                     Saudi Arabia 1851           0
## 23283                          Senegal 1851           0
## 23284                           Serbia 1851           0
## 23285                       Seychelles 1851           0
## 23286                     Sierra Leone 1851           0
## 23287                        Singapore 1851           0
## 23288        Sint Maarten (Dutch part) 1851           0
## 23289                         Slovakia 1851           0
## 23290                         Slovenia 1851           0
## 23291                  Solomon Islands 1851           0
## 23292                          Somalia 1851           0
## 23293                     South Africa 1851           0
## 23294                      South Korea 1851           0
## 23295                      South Sudan 1851           0
## 23296                            Spain 1851     3249968
## 23297                        Sri Lanka 1851           0
## 23298                            Sudan 1851           0
## 23299                         Suriname 1851           0
## 23300                        Swaziland 1851           0
## 23301                           Sweden 1851     1395984
## 23302                      Switzerland 1851           0
## 23303                            Syria 1851           0
## 23304                           Taiwan 1851           0
## 23305                       Tajikistan 1851           0
## 23306                         Tanzania 1851           0
## 23307                         Thailand 1851           0
## 23308                            Timor 1851           0
## 23309                             Togo 1851           0
## 23310                            Tonga 1851           0
## 23311              Trinidad and Tobago 1851           0
## 23312                          Tunisia 1851           0
## 23313                           Turkey 1851           0
## 23314                     Turkmenistan 1851           0
## 23315         Turks and Caicos Islands 1851           0
## 23316                           Tuvalu 1851           0
## 23317                           Uganda 1851           0
## 23318                          Ukraine 1851           0
## 23319             United Arab Emirates 1851           0
## 23320                   United Kingdom 1851  3810633280
## 23321                    United States 1851   214607808
## 23322                          Uruguay 1851           0
## 23323                       Uzbekistan 1851           0
## 23324                          Vanuatu 1851           0
## 23325                        Venezuela 1851           0
## 23326                          Vietnam 1851           0
## 23327        Wallis and Futuna Islands 1851           0
## 23328                            World 1851  4948807248
## 23329                            Yemen 1851           0
## 23330                           Zambia 1851           0
## 23331                         Zimbabwe 1851           0
## 23332                      Afghanistan 1852           0
## 23333                           Africa 1852           0
## 23334                          Albania 1852           0
## 23335                          Algeria 1852           0
## 23336                 Americas (other) 1852      582576
## 23337                          Andorra 1852           0
## 23338                           Angola 1852           0
## 23339                         Anguilla 1852           0
## 23340              Antarctic Fisheries 1852           0
## 23341              Antigua and Barbuda 1852           0
## 23342                        Argentina 1852           0
## 23343                          Armenia 1852           0
## 23344                            Aruba 1852           0
## 23345         Asia and Pacific (other) 1852           0
## 23346                        Australia 1852           0
## 23347                          Austria 1852    35793616
## 23348                       Azerbaijan 1852           0
## 23349                          Bahamas 1852           0
## 23350                          Bahrain 1852           0
## 23351                       Bangladesh 1852           0
## 23352                         Barbados 1852           0
## 23353                          Belarus 1852           0
## 23354                          Belgium 1852   172072432
## 23355                           Belize 1852           0
## 23356                            Benin 1852           0
## 23357                          Bermuda 1852           0
## 23358                           Bhutan 1852           0
## 23359                          Bolivia 1852           0
## 23360  Bonaire Sint Eustatius and Saba 1852           0
## 23361           Bosnia and Herzegovina 1852           0
## 23362                         Botswana 1852           0
## 23363                           Brazil 1852           0
## 23364           British Virgin Islands 1852           0
## 23365                           Brunei 1852           0
## 23366                         Bulgaria 1852           0
## 23367                     Burkina Faso 1852           0
## 23368                          Burundi 1852           0
## 23369                         Cambodia 1852           0
## 23370                         Cameroon 1852           0
## 23371                           Canada 1852      582576
## 23372                       Cape Verde 1852           0
## 23373                   Cayman Islands 1852           0
## 23374         Central African Republic 1852           0
## 23375                             Chad 1852           0
## 23376                            Chile 1852           0
## 23377                            China 1852           0
## 23378                 Christmas Island 1852           0
## 23379                         Colombia 1852           0
## 23380                          Comoros 1852           0
## 23381                            Congo 1852           0
## 23382                     Cook Islands 1852           0
## 23383                       Costa Rica 1852           0
## 23384                    Cote d'Ivoire 1852           0
## 23385                          Croatia 1852           0
## 23386                             Cuba 1852           0
## 23387                          Curacao 1852           0
## 23388                           Cyprus 1852           0
## 23389                   Czech Republic 1852           0
## 23390                   Czechoslovakia 1852           0
## 23391     Democratic Republic of Congo 1852           0
## 23392                          Denmark 1852     2469536
## 23393                         Djibouti 1852           0
## 23394                         Dominica 1852           0
## 23395               Dominican Republic 1852           0
## 23396                            EU-28 1852  4912797456
## 23397                          Ecuador 1852           0
## 23398                            Egypt 1852           0
## 23399                      El Salvador 1852           0
## 23400                Equatorial Guinea 1852           0
## 23401                          Eritrea 1852           0
## 23402                          Estonia 1852           0
## 23403                         Ethiopia 1852           0
## 23404                   Europe (other) 1852     1652464
## 23405                   Faeroe Islands 1852           0
## 23406                 Falkland Islands 1852           0
## 23407                             Fiji 1852           0
## 23408                          Finland 1852           0
## 23409                           France 1852   382030624
## 23410                    French Guiana 1852           0
## 23411                 French Polynesia 1852           0
## 23412                            Gabon 1852           0
## 23413                           Gambia 1852           0
## 23414                          Georgia 1852           0
## 23415                          Germany 1852   290694432
## 23416                            Ghana 1852           0
## 23417                        Gibraltar 1852           0
## 23418                           Greece 1852           0
## 23419                        Greenland 1852           0
## 23420                          Grenada 1852           0
## 23421                       Guadeloupe 1852           0
## 23422                        Guatemala 1852           0
## 23423                           Guinea 1852           0
## 23424                    Guinea-Bissau 1852           0
## 23425                           Guyana 1852           0
## 23426                            Haiti 1852           0
## 23427                         Honduras 1852           0
## 23428                        Hong Kong 1852           0
## 23429                          Hungary 1852     2385264
## 23430                          Iceland 1852           0
## 23431                            India 1852           0
## 23432                        Indonesia 1852           0
## 23433                             Iran 1852           0
## 23434                             Iraq 1852           0
## 23435                          Ireland 1852      395712
## 23436                           Israel 1852           0
## 23437                            Italy 1852           0
## 23438                          Jamaica 1852           0
## 23439                            Japan 1852           0
## 23440                           Jordan 1852           0
## 23441                       Kazakhstan 1852           0
## 23442                            Kenya 1852           0
## 23443                         Kiribati 1852           0
## 23444                           Kuwait 1852           0
## 23445                       Kyrgysztan 1852           0
## 23446                       Kyrgyzstan 1852           0
## 23447                             Laos 1852           0
## 23448                           Latvia 1852           0
## 23449                          Lebanon 1852           0
## 23450                          Lesotho 1852           0
## 23451                          Liberia 1852           0
## 23452                            Libya 1852           0
## 23453                    Liechtenstein 1852           0
## 23454                        Lithuania 1852           0
## 23455                       Luxembourg 1852           0
## 23456                            Macao 1852           0
## 23457                        Macedonia 1852           0
## 23458                       Madagascar 1852           0
## 23459                           Malawi 1852           0
## 23460                         Malaysia 1852           0
## 23461                         Maldives 1852           0
## 23462                             Mali 1852           0
## 23463                            Malta 1852           0
## 23464                 Marshall Islands 1852           0
## 23465                       Martinique 1852           0
## 23466                       Mauritania 1852           0
## 23467                        Mauritius 1852           0
## 23468                           Mexico 1852           0
## 23469             Micronesia (country) 1852           0
## 23470                      Middle East 1852           0
## 23471                          Moldova 1852           0
## 23472                         Mongolia 1852           0
## 23473                       Montenegro 1852           0
## 23474                       Montserrat 1852           0
## 23475                          Morocco 1852           0
## 23476                       Mozambique 1852           0
## 23477                          Myanmar 1852           0
## 23478                          Namibia 1852           0
## 23479                            Nauru 1852           0
## 23480                            Nepal 1852           0
## 23481                      Netherlands 1852    23735392
## 23482                    New Caledonia 1852           0
## 23483                      New Zealand 1852           0
## 23484                        Nicaragua 1852           0
## 23485                            Niger 1852           0
## 23486                          Nigeria 1852           0
## 23487                             Niue 1852           0
## 23488                      North Korea 1852           0
## 23489                           Norway 1852     1454608
## 23490                             Oman 1852           0
## 23491                         Pakistan 1852           0
## 23492                            Palau 1852           0
## 23493                        Palestine 1852           0
## 23494                           Panama 1852           0
## 23495                 Papua New Guinea 1852           0
## 23496                         Paraguay 1852           0
## 23497                             Peru 1852           0
## 23498                      Philippines 1852           0
## 23499                           Poland 1852    70949696
## 23500                         Portugal 1852           0
## 23501                            Qatar 1852           0
## 23502                          Reunion 1852           0
## 23503                          Romania 1852           0
## 23504                           Russia 1852           0
## 23505                           Rwanda 1852           0
## 23506                     Saint Helena 1852           0
## 23507            Saint Kitts and Nevis 1852           0
## 23508                      Saint Lucia 1852           0
## 23509        Saint Pierre and Miquelon 1852           0
## 23510 Saint Vincent and the Grenadines 1852           0
## 23511                            Samoa 1852           0
## 23512            Sao Tome and Principe 1852           0
## 23513                     Saudi Arabia 1852           0
## 23514                          Senegal 1852           0
## 23515                           Serbia 1852           0
## 23516                       Seychelles 1852           0
## 23517                     Sierra Leone 1852           0
## 23518                        Singapore 1852           0
## 23519        Sint Maarten (Dutch part) 1852           0
## 23520                         Slovakia 1852           0
## 23521                         Slovenia 1852           0
## 23522                  Solomon Islands 1852           0
## 23523                          Somalia 1852           0
## 23524                     South Africa 1852           0
## 23525                      South Korea 1852           0
## 23526                      South Sudan 1852           0
## 23527                            Spain 1852     3784912
## 23528                        Sri Lanka 1852           0
## 23529                            Sudan 1852           0
## 23530                         Suriname 1852           0
## 23531                        Swaziland 1852           0
## 23532                           Sweden 1852     1612160
## 23533                      Switzerland 1852           0
## 23534                            Syria 1852           0
## 23535                           Taiwan 1852           0
## 23536                       Tajikistan 1852           0
## 23537                         Tanzania 1852           0
## 23538                         Thailand 1852           0
## 23539                            Timor 1852           0
## 23540                             Togo 1852           0
## 23541                            Tonga 1852           0
## 23542              Trinidad and Tobago 1852           0
## 23543                          Tunisia 1852           0
## 23544                           Turkey 1852           0
## 23545                     Turkmenistan 1852           0
## 23546         Turks and Caicos Islands 1852           0
## 23547                           Tuvalu 1852           0
## 23548                           Uganda 1852           0
## 23549                          Ukraine 1852           0
## 23550             United Arab Emirates 1852           0
## 23551                   United Kingdom 1852  3926873680
## 23552                    United States 1852   241398976
## 23553                          Uruguay 1852           0
## 23554                       Uzbekistan 1852           0
## 23555                          Vanuatu 1852           0
## 23556                        Venezuela 1852           0
## 23557                          Vietnam 1852           0
## 23558        Wallis and Futuna Islands 1852           0
## 23559                            World 1852  5156303232
## 23560                            Yemen 1852           0
## 23561                           Zambia 1852           0
## 23562                         Zimbabwe 1852           0
## 23563                      Afghanistan 1853           0
## 23564                           Africa 1853           0
## 23565                          Albania 1853           0
## 23566                          Algeria 1853           0
## 23567                 Americas (other) 1853      688832
## 23568                          Andorra 1853           0
## 23569                           Angola 1853           0
## 23570                         Anguilla 1853           0
## 23571              Antarctic Fisheries 1853           0
## 23572              Antigua and Barbuda 1853           0
## 23573                        Argentina 1853           0
## 23574                          Armenia 1853           0
## 23575                            Aruba 1853           0
## 23576         Asia and Pacific (other) 1853           0
## 23577                        Australia 1853           0
## 23578                          Austria 1853    39017936
## 23579                       Azerbaijan 1853           0
## 23580                          Bahamas 1853           0
## 23581                          Bahrain 1853           0
## 23582                       Bangladesh 1853           0
## 23583                         Barbados 1853           0
## 23584                          Belarus 1853           0
## 23585                          Belgium 1853   183859520
## 23586                           Belize 1853           0
## 23587                            Benin 1853           0
## 23588                          Bermuda 1853           0
## 23589                           Bhutan 1853           0
## 23590                          Bolivia 1853           0
## 23591  Bonaire Sint Eustatius and Saba 1853           0
## 23592           Bosnia and Herzegovina 1853           0
## 23593                         Botswana 1853           0
## 23594                           Brazil 1853           0
## 23595           British Virgin Islands 1853           0
## 23596                           Brunei 1853           0
## 23597                         Bulgaria 1853           0
## 23598                     Burkina Faso 1853           0
## 23599                          Burundi 1853           0
## 23600                         Cambodia 1853           0
## 23601                         Cameroon 1853           0
## 23602                           Canada 1853      685168
## 23603                       Cape Verde 1853           0
## 23604                   Cayman Islands 1853           0
## 23605         Central African Republic 1853           0
## 23606                             Chad 1853           0
## 23607                            Chile 1853           0
## 23608                            China 1853           0
## 23609                 Christmas Island 1853           0
## 23610                         Colombia 1853           0
## 23611                          Comoros 1853           0
## 23612                            Congo 1853           0
## 23613                     Cook Islands 1853           0
## 23614                       Costa Rica 1853           0
## 23615                    Cote d'Ivoire 1853           0
## 23616                          Croatia 1853           0
## 23617                             Cuba 1853           0
## 23618                          Curacao 1853           0
## 23619                           Cyprus 1853           0
## 23620                   Czech Republic 1853           0
## 23621                   Czechoslovakia 1853           0
## 23622     Democratic Republic of Congo 1853           0
## 23623                          Denmark 1853     2828608
## 23624                         Djibouti 1853           0
## 23625                         Dominica 1853           0
## 23626               Dominican Republic 1853           0
## 23627                            EU-28 1853  5099577184
## 23628                          Ecuador 1853           0
## 23629                            Egypt 1853           0
## 23630                      El Salvador 1853           0
## 23631                Equatorial Guinea 1853           0
## 23632                          Eritrea 1853           0
## 23633                          Estonia 1853           0
## 23634                         Ethiopia 1853           0
## 23635                   Europe (other) 1853     1817344
## 23636                   Faeroe Islands 1853           0
## 23637                 Falkland Islands 1853           0
## 23638                             Fiji 1853           0
## 23639                          Finland 1853           0
## 23640                           France 1853   407370848
## 23641                    French Guiana 1853           0
## 23642                 French Polynesia 1853           0
## 23643                            Gabon 1853           0
## 23644                           Gambia 1853           0
## 23645                          Georgia 1853           0
## 23646                          Germany 1853   311454656
## 23647                            Ghana 1853           0
## 23648                        Gibraltar 1853           0
## 23649                           Greece 1853           0
## 23650                        Greenland 1853           0
## 23651                          Grenada 1853           0
## 23652                       Guadeloupe 1853           0
## 23653                        Guatemala 1853           0
## 23654                           Guinea 1853           0
## 23655                    Guinea-Bissau 1853           0
## 23656                           Guyana 1853           0
## 23657                            Haiti 1853           0
## 23658                         Honduras 1853           0
## 23659                        Hong Kong 1853           0
## 23660                          Hungary 1853     2729680
## 23661                          Iceland 1853           0
## 23662                            India 1853           0
## 23663                        Indonesia 1853           0
## 23664                             Iran 1853           0
## 23665                             Iraq 1853           0
## 23666                          Ireland 1853      395712
## 23667                           Israel 1853           0
## 23668                            Italy 1853           0
## 23669                          Jamaica 1853           0
## 23670                            Japan 1853           0
## 23671                           Jordan 1853           0
## 23672                       Kazakhstan 1853           0
## 23673                            Kenya 1853           0
## 23674                         Kiribati 1853           0
## 23675                           Kuwait 1853           0
## 23676                       Kyrgysztan 1853           0
## 23677                       Kyrgyzstan 1853           0
## 23678                             Laos 1853           0
## 23679                           Latvia 1853           0
## 23680                          Lebanon 1853           0
## 23681                          Lesotho 1853           0
## 23682                          Liberia 1853           0
## 23683                            Libya 1853           0
## 23684                    Liechtenstein 1853           0
## 23685                        Lithuania 1853           0
## 23686                       Luxembourg 1853           0
## 23687                            Macao 1853           0
## 23688                        Macedonia 1853           0
## 23689                       Madagascar 1853           0
## 23690                           Malawi 1853           0
## 23691                         Malaysia 1853           0
## 23692                         Maldives 1853           0
## 23693                             Mali 1853           0
## 23694                            Malta 1853           0
## 23695                 Marshall Islands 1853           0
## 23696                       Martinique 1853           0
## 23697                       Mauritania 1853           0
## 23698                        Mauritius 1853           0
## 23699                           Mexico 1853           0
## 23700             Micronesia (country) 1853           0
## 23701                      Middle East 1853           0
## 23702                          Moldova 1853           0
## 23703                         Mongolia 1853           0
## 23704                       Montenegro 1853           0
## 23705                       Montserrat 1853           0
## 23706                          Morocco 1853           0
## 23707                       Mozambique 1853           0
## 23708                          Myanmar 1853           0
## 23709                          Namibia 1853           0
## 23710                            Nauru 1853           0
## 23711                            Nepal 1853           0
## 23712                      Netherlands 1853    27905024
## 23713                    New Caledonia 1853           0
## 23714                      New Zealand 1853           0
## 23715                        Nicaragua 1853           0
## 23716                            Niger 1853           0
## 23717                          Nigeria 1853           0
## 23718                             Niue 1853           0
## 23719                      North Korea 1853           0
## 23720                           Norway 1853     1619488
## 23721                             Oman 1853           0
## 23722                         Pakistan 1853           0
## 23723                            Palau 1853           0
## 23724                        Palestine 1853           0
## 23725                           Panama 1853           0
## 23726                 Papua New Guinea 1853           0
## 23727                         Paraguay 1853           0
## 23728                             Peru 1853           0
## 23729                      Philippines 1853           0
## 23730                           Poland 1853    75265888
## 23731                         Portugal 1853           0
## 23732                            Qatar 1853           0
## 23733                          Reunion 1853           0
## 23734                          Romania 1853           0
## 23735                           Russia 1853           0
## 23736                           Rwanda 1853           0
## 23737                     Saint Helena 1853           0
## 23738            Saint Kitts and Nevis 1853           0
## 23739                      Saint Lucia 1853           0
## 23740        Saint Pierre and Miquelon 1853           0
## 23741 Saint Vincent and the Grenadines 1853           0
## 23742                            Samoa 1853           0
## 23743            Sao Tome and Principe 1853           0
## 23744                     Saudi Arabia 1853           0
## 23745                          Senegal 1853           0
## 23746                           Serbia 1853           0
## 23747                       Seychelles 1853           0
## 23748                     Sierra Leone 1853           0
## 23749                        Singapore 1853           0
## 23750        Sint Maarten (Dutch part) 1853           0
## 23751                         Slovakia 1853           0
## 23752                         Slovenia 1853           0
## 23753                  Solomon Islands 1853           0
## 23754                          Somalia 1853           0
## 23755                     South Africa 1853           0
## 23756                      South Korea 1853           0
## 23757                      South Sudan 1853           0
## 23758                            Spain 1853     4437104
## 23759                        Sri Lanka 1853           0
## 23760                            Sudan 1853           0
## 23761                         Suriname 1853           0
## 23762                        Swaziland 1853           0
## 23763                           Sweden 1853     1839328
## 23764                      Switzerland 1853           0
## 23765                            Syria 1853           0
## 23766                           Taiwan 1853           0
## 23767                       Tajikistan 1853           0
## 23768                         Tanzania 1853           0
## 23769                         Thailand 1853           0
## 23770                            Timor 1853           0
## 23771                             Togo 1853           0
## 23772                            Tonga 1853           0
## 23773              Trinidad and Tobago 1853           0
## 23774                          Tunisia 1853           0
## 23775                           Turkey 1853           0
## 23776                     Turkmenistan 1853           0
## 23777         Turks and Caicos Islands 1853           0
## 23778                           Tuvalu 1853           0
## 23779                           Uganda 1853           0
## 23780                          Ukraine 1853           0
## 23781             United Arab Emirates 1853           0
## 23782                   United Kingdom 1853  4042472880
## 23783                    United States 1853   271561024
## 23784                          Uruguay 1853           0
## 23785                       Uzbekistan 1853           0
## 23786                          Vanuatu 1853           0
## 23787                        Venezuela 1853           0
## 23788                          Vietnam 1853           0
## 23789        Wallis and Futuna Islands 1853           0
## 23790                            World 1853  5373402560
## 23791                            Yemen 1853           0
## 23792                           Zambia 1853           0
## 23793                         Zimbabwe 1853           0
## 23794                      Afghanistan 1854           0
## 23795                           Africa 1854           0
## 23796                          Albania 1854           0
## 23797                          Algeria 1854           0
## 23798                 Americas (other) 1854      813408
## 23799                          Andorra 1854           0
## 23800                           Angola 1854           0
## 23801                         Anguilla 1854           0
## 23802              Antarctic Fisheries 1854           0
## 23803              Antigua and Barbuda 1854           0
## 23804                        Argentina 1854           0
## 23805                          Armenia 1854           0
## 23806                            Aruba 1854           0
## 23807         Asia and Pacific (other) 1854           0
## 23808                        Australia 1854           0
## 23809                          Austria 1854    42194624
## 23810                       Azerbaijan 1854           0
## 23811                          Bahamas 1854           0
## 23812                          Bahrain 1854           0
## 23813                       Bangladesh 1854           0
## 23814                         Barbados 1854           0
## 23815                          Belarus 1854           0
## 23816                          Belgium 1854   196918016
## 23817                           Belize 1854           0
## 23818                            Benin 1854           0
## 23819                          Bermuda 1854           0
## 23820                           Bhutan 1854           0
## 23821                          Bolivia 1854           0
## 23822  Bonaire Sint Eustatius and Saba 1854           0
## 23823           Bosnia and Herzegovina 1854           0
## 23824                         Botswana 1854           0
## 23825                           Brazil 1854           0
## 23826           British Virgin Islands 1854           0
## 23827                           Brunei 1854           0
## 23828                         Bulgaria 1854           0
## 23829                     Burkina Faso 1854           0
## 23830                          Burundi 1854           0
## 23831                         Cambodia 1854           0
## 23832                         Cameroon 1854           0
## 23833                           Canada 1854      809744
## 23834                       Cape Verde 1854           0
## 23835                   Cayman Islands 1854           0
## 23836         Central African Republic 1854           0
## 23837                             Chad 1854           0
## 23838                            Chile 1854           0
## 23839                            China 1854           0
## 23840                 Christmas Island 1854           0
## 23841                         Colombia 1854           0
## 23842                          Comoros 1854           0
## 23843                            Congo 1854           0
## 23844                     Cook Islands 1854           0
## 23845                       Costa Rica 1854           0
## 23846                    Cote d'Ivoire 1854           0
## 23847                          Croatia 1854           0
## 23848                             Cuba 1854           0
## 23849                          Curacao 1854           0
## 23850                           Cyprus 1854           0
## 23851                   Czech Republic 1854           0
## 23852                   Czechoslovakia 1854           0
## 23853     Democratic Republic of Congo 1854           0
## 23854                          Denmark 1854     3286608
## 23855                         Djibouti 1854           0
## 23856                         Dominica 1854           0
## 23857               Dominican Republic 1854           0
## 23858                            EU-28 1854  5321197888
## 23859                          Ecuador 1854           0
## 23860                            Egypt 1854           0
## 23861                      El Salvador 1854           0
## 23862                Equatorial Guinea 1854           0
## 23863                          Eritrea 1854           0
## 23864                          Estonia 1854           0
## 23865                         Ethiopia 1854           0
## 23866                   Europe (other) 1854     2055504
## 23867                   Faeroe Islands 1854           0
## 23868                 Falkland Islands 1854           0
## 23869                             Fiji 1854           0
## 23870                          Finland 1854           0
## 23871                           France 1854   436583920
## 23872                    French Guiana 1854           0
## 23873                 French Polynesia 1854           0
## 23874                            Gabon 1854           0
## 23875                           Gambia 1854           0
## 23876                          Georgia 1854           0
## 23877                          Germany 1854   335820256
## 23878                            Ghana 1854           0
## 23879                        Gibraltar 1854           0
## 23880                           Greece 1854           0
## 23881                        Greenland 1854           0
## 23882                          Grenada 1854           0
## 23883                       Guadeloupe 1854           0
## 23884                        Guatemala 1854           0
## 23885                           Guinea 1854           0
## 23886                    Guinea-Bissau 1854           0
## 23887                           Guyana 1854           0
## 23888                            Haiti 1854           0
## 23889                         Honduras 1854           0
## 23890                        Hong Kong 1854           0
## 23891                          Hungary 1854     3165696
## 23892                          Iceland 1854           0
## 23893                            India 1854           0
## 23894                        Indonesia 1854           0
## 23895                             Iran 1854           0
## 23896                             Iraq 1854           0
## 23897                          Ireland 1854      395712
## 23898                           Israel 1854           0
## 23899                            Italy 1854           0
## 23900                          Jamaica 1854           0
## 23901                            Japan 1854           0
## 23902                           Jordan 1854           0
## 23903                       Kazakhstan 1854           0
## 23904                            Kenya 1854           0
## 23905                         Kiribati 1854           0
## 23906                           Kuwait 1854           0
## 23907                       Kyrgysztan 1854           0
## 23908                       Kyrgyzstan 1854           0
## 23909                             Laos 1854           0
## 23910                           Latvia 1854           0
## 23911                          Lebanon 1854           0
## 23912                          Lesotho 1854           0
## 23913                          Liberia 1854           0
## 23914                            Libya 1854           0
## 23915                    Liechtenstein 1854           0
## 23916                        Lithuania 1854           0
## 23917                       Luxembourg 1854           0
## 23918                            Macao 1854           0
## 23919                        Macedonia 1854           0
## 23920                       Madagascar 1854           0
## 23921                           Malawi 1854           0
## 23922                         Malaysia 1854           0
## 23923                         Maldives 1854           0
## 23924                             Mali 1854           0
## 23925                            Malta 1854           0
## 23926                 Marshall Islands 1854           0
## 23927                       Martinique 1854           0
## 23928                       Mauritania 1854           0
## 23929                        Mauritius 1854           0
## 23930                           Mexico 1854           0
## 23931             Micronesia (country) 1854           0
## 23932                      Middle East 1854           0
## 23933                          Moldova 1854           0
## 23934                         Mongolia 1854           0
## 23935                       Montenegro 1854           0
## 23936                       Montserrat 1854           0
## 23937                          Morocco 1854           0
## 23938                       Mozambique 1854           0
## 23939                          Myanmar 1854           0
## 23940                          Namibia 1854           0
## 23941                            Nauru 1854           0
## 23942                            Nepal 1854           0
## 23943                      Netherlands 1854    33851696
## 23944                    New Caledonia 1854           0
## 23945                      New Zealand 1854           0
## 23946                        Nicaragua 1854           0
## 23947                            Niger 1854           0
## 23948                          Nigeria 1854           0
## 23949                             Niue 1854           0
## 23950                      North Korea 1854           0
## 23951                           Norway 1854     1853984
## 23952                             Oman 1854           0
## 23953                         Pakistan 1854           0
## 23954                            Palau 1854           0
## 23955                        Palestine 1854           0
## 23956                           Panama 1854           0
## 23957                 Papua New Guinea 1854           0
## 23958                         Paraguay 1854           0
## 23959                             Peru 1854           0
## 23960                      Philippines 1854           0
## 23961                           Poland 1854    80043744
## 23962                         Portugal 1854           0
## 23963                            Qatar 1854           0
## 23964                          Reunion 1854           0
## 23965                          Romania 1854           0
## 23966                           Russia 1854           0
## 23967                           Rwanda 1854           0
## 23968                     Saint Helena 1854           0
## 23969            Saint Kitts and Nevis 1854           0
## 23970                      Saint Lucia 1854           0
## 23971        Saint Pierre and Miquelon 1854           0
## 23972 Saint Vincent and the Grenadines 1854           0
## 23973                            Samoa 1854           0
## 23974            Sao Tome and Principe 1854           0
## 23975                     Saudi Arabia 1854           0
## 23976                          Senegal 1854           0
## 23977                           Serbia 1854           0
## 23978                       Seychelles 1854           0
## 23979                     Sierra Leone 1854           0
## 23980                        Singapore 1854           0
## 23981        Sint Maarten (Dutch part) 1854           0
## 23982                         Slovakia 1854           0
## 23983                         Slovenia 1854           0
## 23984                  Solomon Islands 1854           0
## 23985                          Somalia 1854           0
## 23986                     South Africa 1854           0
## 23987                      South Korea 1854           0
## 23988                      South Sudan 1854           0
## 23989                            Spain 1854     4986704
## 23990                        Sri Lanka 1854           0
## 23991                            Sudan 1854           0
## 23992                         Suriname 1854           0
## 23993                        Swaziland 1854           0
## 23994                           Sweden 1854     2176416
## 23995                      Switzerland 1854           0
## 23996                            Syria 1854           0
## 23997                           Taiwan 1854           0
## 23998                       Tajikistan 1854           0
## 23999                         Tanzania 1854           0
## 24000                         Thailand 1854           0
## 24001                            Timor 1854           0
## 24002                             Togo 1854           0
## 24003                            Tonga 1854           0
## 24004              Trinidad and Tobago 1854           0
## 24005                          Tunisia 1854           0
## 24006                           Turkey 1854           0
## 24007                     Turkmenistan 1854           0
## 24008         Turks and Caicos Islands 1854           0
## 24009                           Tuvalu 1854           0
## 24010                           Uganda 1854           0
## 24011                          Ukraine 1854           0
## 24012             United Arab Emirates 1854           0
## 24013                   United Kingdom 1854  4181774496
## 24014                    United States 1854   304720224
## 24015                          Uruguay 1854           0
## 24016                       Uzbekistan 1854           0
## 24017                          Vanuatu 1854           0
## 24018                        Venezuela 1854           0
## 24019                          Vietnam 1854           0
## 24020        Wallis and Futuna Islands 1854           0
## 24021                            World 1854  5628413296
## 24022                            Yemen 1854           0
## 24023                           Zambia 1854           0
## 24024                         Zimbabwe 1854           0
## 24025                      Afghanistan 1855           0
## 24026                           Africa 1855           0
## 24027                          Albania 1855           0
## 24028                          Algeria 1855           0
## 24029                 Americas (other) 1855      959968
## 24030                          Andorra 1855           0
## 24031                           Angola 1855           0
## 24032                         Anguilla 1855           0
## 24033              Antarctic Fisheries 1855           0
## 24034              Antigua and Barbuda 1855           0
## 24035                        Argentina 1855           0
## 24036                          Armenia 1855           0
## 24037                            Aruba 1855           0
## 24038         Asia and Pacific (other) 1855           0
## 24039                        Australia 1855           0
## 24040                          Austria 1855    45895264
## 24041                       Azerbaijan 1855           0
## 24042                          Bahamas 1855           0
## 24043                          Bahrain 1855           0
## 24044                       Bangladesh 1855           0
## 24045                         Barbados 1855           0
## 24046                          Belarus 1855           0
## 24047                          Belgium 1855   210295280
## 24048                           Belize 1855           0
## 24049                            Benin 1855           0
## 24050                          Bermuda 1855           0
## 24051                           Bhutan 1855           0
## 24052                          Bolivia 1855           0
## 24053  Bonaire Sint Eustatius and Saba 1855           0
## 24054           Bosnia and Herzegovina 1855           0
## 24055                         Botswana 1855           0
## 24056                           Brazil 1855           0
## 24057           British Virgin Islands 1855           0
## 24058                           Brunei 1855           0
## 24059                         Bulgaria 1855           0
## 24060                     Burkina Faso 1855           0
## 24061                          Burundi 1855           0
## 24062                         Cambodia 1855           0
## 24063                         Cameroon 1855           0
## 24064                           Canada 1855      959968
## 24065                       Cape Verde 1855           0
## 24066                   Cayman Islands 1855           0
## 24067         Central African Republic 1855           0
## 24068                             Chad 1855           0
## 24069                            Chile 1855           0
## 24070                            China 1855           0
## 24071                 Christmas Island 1855           0
## 24072                         Colombia 1855           0
## 24073                          Comoros 1855           0
## 24074                            Congo 1855           0
## 24075                     Cook Islands 1855           0
## 24076                       Costa Rica 1855           0
## 24077                    Cote d'Ivoire 1855           0
## 24078                          Croatia 1855           0
## 24079                             Cuba 1855           0
## 24080                          Curacao 1855           0
## 24081                           Cyprus 1855           0
## 24082                   Czech Republic 1855           0
## 24083                   Czechoslovakia 1855           0
## 24084     Democratic Republic of Congo 1855           0
## 24085                          Denmark 1855     3740944
## 24086                         Djibouti 1855           0
## 24087                         Dominica 1855           0
## 24088               Dominican Republic 1855           0
## 24089                            EU-28 1855  5542452192
## 24090                          Ecuador 1855           0
## 24091                            Egypt 1855           0
## 24092                      El Salvador 1855           0
## 24093                Equatorial Guinea 1855           0
## 24094                          Eritrea 1855           0
## 24095                          Estonia 1855           0
## 24096                         Ethiopia 1855           0
## 24097                   Europe (other) 1855     2649072
## 24098                   Faeroe Islands 1855           0
## 24099                 Falkland Islands 1855           0
## 24100                             Fiji 1855           0
## 24101                          Finland 1855           0
## 24102                           France 1855   469655184
## 24103                    French Guiana 1855           0
## 24104                 French Polynesia 1855           0
## 24105                            Gabon 1855           0
## 24106                           Gambia 1855           0
## 24107                          Georgia 1855           0
## 24108                          Germany 1855   364436096
## 24109                            Ghana 1855           0
## 24110                        Gibraltar 1855           0
## 24111                           Greece 1855           0
## 24112                        Greenland 1855           0
## 24113                          Grenada 1855           0
## 24114                       Guadeloupe 1855           0
## 24115                        Guatemala 1855           0
## 24116                           Guinea 1855           0
## 24117                    Guinea-Bissau 1855           0
## 24118                           Guyana 1855           0
## 24119                            Haiti 1855           0
## 24120                         Honduras 1855           0
## 24121                        Hong Kong 1855           0
## 24122                          Hungary 1855     3620032
## 24123                          Iceland 1855           0
## 24124                            India 1855           0
## 24125                        Indonesia 1855           0
## 24126                             Iran 1855           0
## 24127                             Iraq 1855           0
## 24128                          Ireland 1855      395712
## 24129                           Israel 1855           0
## 24130                            Italy 1855           0
## 24131                          Jamaica 1855           0
## 24132                            Japan 1855           0
## 24133                           Jordan 1855           0
## 24134                       Kazakhstan 1855           0
## 24135                            Kenya 1855           0
## 24136                         Kiribati 1855           0
## 24137                           Kuwait 1855           0
## 24138                       Kyrgysztan 1855           0
## 24139                       Kyrgyzstan 1855           0
## 24140                             Laos 1855           0
## 24141                           Latvia 1855           0
## 24142                          Lebanon 1855           0
## 24143                          Lesotho 1855           0
## 24144                          Liberia 1855           0
## 24145                            Libya 1855           0
## 24146                    Liechtenstein 1855           0
## 24147                        Lithuania 1855           0
## 24148                       Luxembourg 1855           0
## 24149                            Macao 1855           0
## 24150                        Macedonia 1855           0
## 24151                       Madagascar 1855           0
## 24152                           Malawi 1855           0
## 24153                         Malaysia 1855           0
## 24154                         Maldives 1855           0
## 24155                             Mali 1855           0
## 24156                            Malta 1855           0
## 24157                 Marshall Islands 1855           0
## 24158                       Martinique 1855           0
## 24159                       Mauritania 1855           0
## 24160                        Mauritius 1855           0
## 24161                           Mexico 1855           0
## 24162             Micronesia (country) 1855           0
## 24163                      Middle East 1855           0
## 24164                          Moldova 1855           0
## 24165                         Mongolia 1855           0
## 24166                       Montenegro 1855           0
## 24167                       Montserrat 1855           0
## 24168                          Morocco 1855           0
## 24169                       Mozambique 1855           0
## 24170                          Myanmar 1855           0
## 24171                          Namibia 1855           0
## 24172                            Nauru 1855           0
## 24173                            Nepal 1855           0
## 24174                      Netherlands 1855    38501312
## 24175                    New Caledonia 1855           0
## 24176                      New Zealand 1855           0
## 24177                        Nicaragua 1855           0
## 24178                            Niger 1855           0
## 24179                          Nigeria 1855           0
## 24180                             Niue 1855           0
## 24181                      North Korea 1855           0
## 24182                           Norway 1855     2110464
## 24183                             Oman 1855           0
## 24184                         Pakistan 1855           0
## 24185                            Palau 1855           0
## 24186                        Palestine 1855           0
## 24187                           Panama 1855           0
## 24188                 Papua New Guinea 1855           0
## 24189                         Paraguay 1855           0
## 24190                             Peru 1855           0
## 24191                      Philippines 1855           0
## 24192                           Poland 1855    85664320
## 24193                         Portugal 1855           0
## 24194                            Qatar 1855           0
## 24195                          Reunion 1855           0
## 24196                          Romania 1855           0
## 24197                           Russia 1855           0
## 24198                           Rwanda 1855           0
## 24199                     Saint Helena 1855           0
## 24200            Saint Kitts and Nevis 1855           0
## 24201                      Saint Lucia 1855           0
## 24202        Saint Pierre and Miquelon 1855           0
## 24203 Saint Vincent and the Grenadines 1855           0
## 24204                            Samoa 1855           0
## 24205            Sao Tome and Principe 1855           0
## 24206                     Saudi Arabia 1855           0
## 24207                          Senegal 1855           0
## 24208                           Serbia 1855           0
## 24209                       Seychelles 1855           0
## 24210                     Sierra Leone 1855           0
## 24211                        Singapore 1855           0
## 24212        Sint Maarten (Dutch part) 1855           0
## 24213                         Slovakia 1855           0
## 24214                         Slovenia 1855           0
## 24215                  Solomon Islands 1855           0
## 24216                          Somalia 1855           0
## 24217                     South Africa 1855           0
## 24218                      South Korea 1855           0
## 24219                      South Sudan 1855           0
## 24220                            Spain 1855     5539968
## 24221                        Sri Lanka 1855           0
## 24222                            Sudan 1855           0
## 24223                         Suriname 1855           0
## 24224                        Swaziland 1855           0
## 24225                           Sweden 1855     2491520
## 24226                      Switzerland 1855           0
## 24227                            Syria 1855           0
## 24228                           Taiwan 1855           0
## 24229                       Tajikistan 1855           0
## 24230                         Tanzania 1855           0
## 24231                         Thailand 1855           0
## 24232                            Timor 1855           0
## 24233                             Togo 1855           0
## 24234                            Tonga 1855           0
## 24235              Trinidad and Tobago 1855           0
## 24236                          Tunisia 1855           0
## 24237                           Turkey 1855           0
## 24238                     Turkmenistan 1855           0
## 24239         Turks and Caicos Islands 1855           0
## 24240                           Tuvalu 1855           0
## 24241                           Uganda 1855           0
## 24242                          Ukraine 1855           0
## 24243             United Arab Emirates 1855           0
## 24244                   United Kingdom 1855  4312216560
## 24245                    United States 1855   342880784
## 24246                          Uruguay 1855           0
## 24247                       Uzbekistan 1855           0
## 24248                          Vanuatu 1855           0
## 24249                        Venezuela 1855           0
## 24250                          Vietnam 1855           0
## 24251        Wallis and Futuna Islands 1855           0
## 24252                            World 1855  5888447376
## 24253                            Yemen 1855           0
## 24254                           Zambia 1855           0
## 24255                         Zimbabwe 1855           0
## 24256                      Afghanistan 1856           0
## 24257                           Africa 1856           0
## 24258                          Albania 1856           0
## 24259                          Algeria 1856           0
## 24260                 Americas (other) 1856     1139504
## 24261                          Andorra 1856           0
## 24262                           Angola 1856           0
## 24263                         Anguilla 1856           0
## 24264              Antarctic Fisheries 1856           0
## 24265              Antigua and Barbuda 1856           0
## 24266                        Argentina 1856           0
## 24267                          Armenia 1856           0
## 24268                            Aruba 1856           0
## 24269         Asia and Pacific (other) 1856           0
## 24270                        Australia 1856           0
## 24271                          Austria 1856    50127184
## 24272                       Azerbaijan 1856           0
## 24273                          Bahamas 1856           0
## 24274                          Bahrain 1856           0
## 24275                       Bangladesh 1856           0
## 24276                         Barbados 1856           0
## 24277                          Belarus 1856           0
## 24278                          Belgium 1856   223507664
## 24279                           Belize 1856           0
## 24280                            Benin 1856           0
## 24281                          Bermuda 1856           0
## 24282                           Bhutan 1856           0
## 24283                          Bolivia 1856           0
## 24284  Bonaire Sint Eustatius and Saba 1856           0
## 24285           Bosnia and Herzegovina 1856           0
## 24286                         Botswana 1856           0
## 24287                           Brazil 1856           0
## 24288           British Virgin Islands 1856           0
## 24289                           Brunei 1856           0
## 24290                         Bulgaria 1856           0
## 24291                     Burkina Faso 1856           0
## 24292                          Burundi 1856           0
## 24293                         Cambodia 1856           0
## 24294                         Cameroon 1856           0
## 24295                           Canada 1856     1139504
## 24296                       Cape Verde 1856           0
## 24297                   Cayman Islands 1856           0
## 24298         Central African Republic 1856           0
## 24299                             Chad 1856           0
## 24300                            Chile 1856           0
## 24301                            China 1856           0
## 24302                 Christmas Island 1856           0
## 24303                         Colombia 1856           0
## 24304                          Comoros 1856           0
## 24305                            Congo 1856           0
## 24306                     Cook Islands 1856           0
## 24307                       Costa Rica 1856           0
## 24308                    Cote d'Ivoire 1856           0
## 24309                          Croatia 1856           0
## 24310                             Cuba 1856           0
## 24311                          Curacao 1856           0
## 24312                           Cyprus 1856           0
## 24313                   Czech Republic 1856           0
## 24314                   Czechoslovakia 1856           0
## 24315     Democratic Republic of Congo 1856           0
## 24316                          Denmark 1856     4389472
## 24317                         Djibouti 1856           0
## 24318                         Dominica 1856           0
## 24319               Dominican Republic 1856           0
## 24320                            EU-28 1856  5779223536
## 24321                          Ecuador 1856           0
## 24322                            Egypt 1856           0
## 24323                      El Salvador 1856           0
## 24324                Equatorial Guinea 1856           0
## 24325                          Eritrea 1856           0
## 24326                          Estonia 1856           0
## 24327                         Ethiopia 1856           0
## 24328                   Europe (other) 1856     2953184
## 24329                   Faeroe Islands 1856           0
## 24330                 Falkland Islands 1856           0
## 24331                             Fiji 1856           0
## 24332                          Finland 1856           0
## 24333                           France 1856   504287312
## 24334                    French Guiana 1856           0
## 24335                 French Polynesia 1856           0
## 24336                            Gabon 1856           0
## 24337                           Gambia 1856           0
## 24338                          Georgia 1856           0
## 24339                          Germany 1856   395360256
## 24340                            Ghana 1856           0
## 24341                        Gibraltar 1856           0
## 24342                           Greece 1856           0
## 24343                        Greenland 1856           0
## 24344                          Grenada 1856           0
## 24345                       Guadeloupe 1856           0
## 24346                        Guatemala 1856           0
## 24347                           Guinea 1856           0
## 24348                    Guinea-Bissau 1856           0
## 24349                           Guyana 1856           0
## 24350                            Haiti 1856           0
## 24351                         Honduras 1856           0
## 24352                        Hong Kong 1856           0
## 24353                          Hungary 1856     4096352
## 24354                          Iceland 1856           0
## 24355                            India 1856           0
## 24356                        Indonesia 1856           0
## 24357                             Iran 1856           0
## 24358                             Iraq 1856           0
## 24359                          Ireland 1856      395712
## 24360                           Israel 1856           0
## 24361                            Italy 1856           0
## 24362                          Jamaica 1856           0
## 24363                            Japan 1856           0
## 24364                           Jordan 1856           0
## 24365                       Kazakhstan 1856           0
## 24366                            Kenya 1856           0
## 24367                         Kiribati 1856           0
## 24368                           Kuwait 1856           0
## 24369                       Kyrgysztan 1856           0
## 24370                       Kyrgyzstan 1856           0
## 24371                             Laos 1856           0
## 24372                           Latvia 1856           0
## 24373                          Lebanon 1856           0
## 24374                          Lesotho 1856           0
## 24375                          Liberia 1856           0
## 24376                            Libya 1856           0
## 24377                    Liechtenstein 1856           0
## 24378                        Lithuania 1856           0
## 24379                       Luxembourg 1856           0
## 24380                            Macao 1856           0
## 24381                        Macedonia 1856           0
## 24382                       Madagascar 1856           0
## 24383                           Malawi 1856           0
## 24384                         Malaysia 1856           0
## 24385                         Maldives 1856           0
## 24386                             Mali 1856           0
## 24387                            Malta 1856           0
## 24388                 Marshall Islands 1856           0
## 24389                       Martinique 1856           0
## 24390                       Mauritania 1856           0
## 24391                        Mauritius 1856           0
## 24392                           Mexico 1856           0
## 24393             Micronesia (country) 1856           0
## 24394                      Middle East 1856           0
## 24395                          Moldova 1856           0
## 24396                         Mongolia 1856           0
## 24397                       Montenegro 1856           0
## 24398                       Montserrat 1856           0
## 24399                          Morocco 1856           0
## 24400                       Mozambique 1856           0
## 24401                          Myanmar 1856           0
## 24402                          Namibia 1856           0
## 24403                            Nauru 1856           0
## 24404                            Nepal 1856           0
## 24405                      Netherlands 1856    43224208
## 24406                    New Caledonia 1856           0
## 24407                      New Zealand 1856           0
## 24408                        Nicaragua 1856           0
## 24409                            Niger 1856           0
## 24410                          Nigeria 1856           0
## 24411                             Niue 1856           0
## 24412                      North Korea 1856           0
## 24413                           Norway 1856     2414576
## 24414                             Oman 1856           0
## 24415                         Pakistan 1856           0
## 24416                            Palau 1856           0
## 24417                        Palestine 1856           0
## 24418                           Panama 1856           0
## 24419                 Papua New Guinea 1856           0
## 24420                         Paraguay 1856           0
## 24421                             Peru 1856           0
## 24422                      Philippines 1856           0
## 24423                           Poland 1856    91981056
## 24424                         Portugal 1856           0
## 24425                            Qatar 1856           0
## 24426                          Reunion 1856           0
## 24427                          Romania 1856           0
## 24428                           Russia 1856           0
## 24429                           Rwanda 1856           0
## 24430                     Saint Helena 1856           0
## 24431            Saint Kitts and Nevis 1856           0
## 24432                      Saint Lucia 1856           0
## 24433        Saint Pierre and Miquelon 1856           0
## 24434 Saint Vincent and the Grenadines 1856           0
## 24435                            Samoa 1856           0
## 24436            Sao Tome and Principe 1856           0
## 24437                     Saudi Arabia 1856           0
## 24438                          Senegal 1856           0
## 24439                           Serbia 1856           0
## 24440                       Seychelles 1856           0
## 24441                     Sierra Leone 1856           0
## 24442                        Singapore 1856           0
## 24443        Sint Maarten (Dutch part) 1856           0
## 24444                         Slovakia 1856           0
## 24445                         Slovenia 1856           0
## 24446                  Solomon Islands 1856           0
## 24447                          Somalia 1856           0
## 24448                     South Africa 1856           0
## 24449                      South Korea 1856           0
## 24450                      South Sudan 1856           0
## 24451                            Spain 1856     6294752
## 24452                        Sri Lanka 1856           0
## 24453                            Sudan 1856           0
## 24454                         Suriname 1856           0
## 24455                        Swaziland 1856           0
## 24456                           Sweden 1856     2967840
## 24457                      Switzerland 1856           0
## 24458                            Syria 1856           0
## 24459                           Taiwan 1856           0
## 24460                       Tajikistan 1856           0
## 24461                         Tanzania 1856           0
## 24462                         Thailand 1856           0
## 24463                            Timor 1856           0
## 24464                             Togo 1856           0
## 24465                            Tonga 1856           0
## 24466              Trinidad and Tobago 1856           0
## 24467                          Tunisia 1856           0
## 24468                           Turkey 1856           0
## 24469                     Turkmenistan 1856           0
## 24470         Turks and Caicos Islands 1856           0
## 24471                           Tuvalu 1856           0
## 24472                           Uganda 1856           0
## 24473                          Ukraine 1856           0
## 24474             United Arab Emirates 1856           0
## 24475                   United Kingdom 1856  4452591728
## 24476                    United States 1856   382917312
## 24477                          Uruguay 1856           0
## 24478                       Uzbekistan 1856           0
## 24479                          Vanuatu 1856           0
## 24480                        Venezuela 1856           0
## 24481                          Vietnam 1856           0
## 24482        Wallis and Futuna Islands 1856           0
## 24483                            World 1856  6165555696
## 24484                            Yemen 1856           0
## 24485                           Zambia 1856           0
## 24486                         Zimbabwe 1856           0
## 24487                      Afghanistan 1857           0
## 24488                           Africa 1857           0
## 24489                          Albania 1857           0
## 24490                          Algeria 1857           0
## 24491                 Americas (other) 1857     1359344
## 24492                          Andorra 1857           0
## 24493                           Angola 1857           0
## 24494                         Anguilla 1857           0
## 24495              Antarctic Fisheries 1857           0
## 24496              Antigua and Barbuda 1857           0
## 24497                        Argentina 1857           0
## 24498                          Armenia 1857           0
## 24499                            Aruba 1857           0
## 24500         Asia and Pacific (other) 1857           0
## 24501                        Australia 1857           0
## 24502                          Austria 1857    55000304
## 24503                       Azerbaijan 1857           0
## 24504                          Bahamas 1857           0
## 24505                          Bahrain 1857           0
## 24506                       Bangladesh 1857           0
## 24507                         Barbados 1857           0
## 24508                          Belarus 1857           0
## 24509                          Belgium 1857   237262320
## 24510                           Belize 1857           0
## 24511                            Benin 1857           0
## 24512                          Bermuda 1857           0
## 24513                           Bhutan 1857           0
## 24514                          Bolivia 1857           0
## 24515  Bonaire Sint Eustatius and Saba 1857           0
## 24516           Bosnia and Herzegovina 1857           0
## 24517                         Botswana 1857           0
## 24518                           Brazil 1857           0
## 24519           British Virgin Islands 1857           0
## 24520                           Brunei 1857           0
## 24521                         Bulgaria 1857           0
## 24522                     Burkina Faso 1857           0
## 24523                          Burundi 1857           0
## 24524                         Cambodia 1857           0
## 24525                         Cameroon 1857           0
## 24526                           Canada 1857     1355680
## 24527                       Cape Verde 1857           0
## 24528                   Cayman Islands 1857           0
## 24529         Central African Republic 1857           0
## 24530                             Chad 1857           0
## 24531                            Chile 1857           0
## 24532                            China 1857           0
## 24533                 Christmas Island 1857           0
## 24534                         Colombia 1857           0
## 24535                          Comoros 1857           0
## 24536                            Congo 1857           0
## 24537                     Cook Islands 1857           0
## 24538                       Costa Rica 1857           0
## 24539                    Cote d'Ivoire 1857           0
## 24540                          Croatia 1857           0
## 24541                             Cuba 1857           0
## 24542                          Curacao 1857           0
## 24543                           Cyprus 1857           0
## 24544                   Czech Republic 1857           0
## 24545                   Czechoslovakia 1857           0
## 24546     Democratic Republic of Congo 1857           0
## 24547                          Denmark 1857     5052656
## 24548                         Djibouti 1857           0
## 24549                         Dominica 1857           0
## 24550               Dominican Republic 1857           0
## 24551                            EU-28 1857  6017537424
## 24552                          Ecuador 1857           0
## 24553                            Egypt 1857           0
## 24554                      El Salvador 1857           0
## 24555                Equatorial Guinea 1857           0
## 24556                          Eritrea 1857           0
## 24557                          Estonia 1857           0
## 24558                         Ethiopia 1857           0
## 24559                   Europe (other) 1857     3257296
## 24560                   Faeroe Islands 1857           0
## 24561                 Falkland Islands 1857           0
## 24562                             Fiji 1857           0
## 24563                          Finland 1857           0
## 24564                           France 1857   539567968
## 24565                    French Guiana 1857           0
## 24566                 French Polynesia 1857           0
## 24567                            Gabon 1857           0
## 24568                           Gambia 1857           0
## 24569                          Georgia 1857           0
## 24570                          Germany 1857   428299616
## 24571                            Ghana 1857           0
## 24572                        Gibraltar 1857           0
## 24573                           Greece 1857           0
## 24574                        Greenland 1857           0
## 24575                          Grenada 1857           0
## 24576                       Guadeloupe 1857           0
## 24577                        Guatemala 1857           0
## 24578                           Guinea 1857           0
## 24579                    Guinea-Bissau 1857           0
## 24580                           Guyana 1857           0
## 24581                            Haiti 1857           0
## 24582                         Honduras 1857           0
## 24583                        Hong Kong 1857           0
## 24584                          Hungary 1857     4642288
## 24585                          Iceland 1857           0
## 24586                            India 1857           0
## 24587                        Indonesia 1857           0
## 24588                             Iran 1857           0
## 24589                             Iraq 1857           0
## 24590                          Ireland 1857      395712
## 24591                           Israel 1857           0
## 24592                            Italy 1857           0
## 24593                          Jamaica 1857           0
## 24594                            Japan 1857           0
## 24595                           Jordan 1857           0
## 24596                       Kazakhstan 1857           0
## 24597                            Kenya 1857           0
## 24598                         Kiribati 1857           0
## 24599                           Kuwait 1857           0
## 24600                       Kyrgysztan 1857           0
## 24601                       Kyrgyzstan 1857           0
## 24602                             Laos 1857           0
## 24603                           Latvia 1857           0
## 24604                          Lebanon 1857           0
## 24605                          Lesotho 1857           0
## 24606                          Liberia 1857           0
## 24607                            Libya 1857           0
## 24608                    Liechtenstein 1857           0
## 24609                        Lithuania 1857           0
## 24610                       Luxembourg 1857           0
## 24611                            Macao 1857           0
## 24612                        Macedonia 1857           0
## 24613                       Madagascar 1857           0
## 24614                           Malawi 1857           0
## 24615                         Malaysia 1857           0
## 24616                         Maldives 1857           0
## 24617                             Mali 1857           0
## 24618                            Malta 1857           0
## 24619                 Marshall Islands 1857           0
## 24620                       Martinique 1857           0
## 24621                       Mauritania 1857           0
## 24622                        Mauritius 1857           0
## 24623                           Mexico 1857           0
## 24624             Micronesia (country) 1857           0
## 24625                      Middle East 1857           0
## 24626                          Moldova 1857           0
## 24627                         Mongolia 1857           0
## 24628                       Montenegro 1857           0
## 24629                       Montserrat 1857           0
## 24630                          Morocco 1857           0
## 24631                       Mozambique 1857           0
## 24632                          Myanmar 1857           0
## 24633                          Namibia 1857           0
## 24634                            Nauru 1857           0
## 24635                            Nepal 1857           0
## 24636                      Netherlands 1857    47441472
## 24637                    New Caledonia 1857           0
## 24638                      New Zealand 1857           0
## 24639                        Nicaragua 1857           0
## 24640                            Niger 1857           0
## 24641                          Nigeria 1857           0
## 24642                             Niue 1857           0
## 24643                      North Korea 1857           0
## 24644                           Norway 1857     2718688
## 24645                             Oman 1857           0
## 24646                         Pakistan 1857           0
## 24647                            Palau 1857           0
## 24648                        Palestine 1857           0
## 24649                           Panama 1857           0
## 24650                 Papua New Guinea 1857           0
## 24651                         Paraguay 1857           0
## 24652                             Peru 1857           0
## 24653                      Philippines 1857           0
## 24654                           Poland 1857    98697168
## 24655                         Portugal 1857           0
## 24656                            Qatar 1857           0
## 24657                          Reunion 1857           0
## 24658                          Romania 1857           0
## 24659                           Russia 1857           0
## 24660                           Rwanda 1857           0
## 24661                     Saint Helena 1857           0
## 24662            Saint Kitts and Nevis 1857           0
## 24663                      Saint Lucia 1857           0
## 24664        Saint Pierre and Miquelon 1857           0
## 24665 Saint Vincent and the Grenadines 1857           0
## 24666                            Samoa 1857           0
## 24667            Sao Tome and Principe 1857           0
## 24668                     Saudi Arabia 1857           0
## 24669                          Senegal 1857           0
## 24670                           Serbia 1857           0
## 24671                       Seychelles 1857           0
## 24672                     Sierra Leone 1857           0
## 24673                        Singapore 1857           0
## 24674        Sint Maarten (Dutch part) 1857           0
## 24675                         Slovakia 1857           0
## 24676                         Slovenia 1857           0
## 24677                  Solomon Islands 1857           0
## 24678                          Somalia 1857           0
## 24679                     South Africa 1857           0
## 24680                      South Korea 1857           0
## 24681                      South Sudan 1857           0
## 24682                            Spain 1857     7144800
## 24683                        Sri Lanka 1857           0
## 24684                            Sudan 1857           0
## 24685                         Suriname 1857           0
## 24686                        Swaziland 1857           0
## 24687                           Sweden 1857     3579728
## 24688                      Switzerland 1857           0
## 24689                            Syria 1857           0
## 24690                           Taiwan 1857           0
## 24691                       Tajikistan 1857           0
## 24692                         Tanzania 1857           0
## 24693                         Thailand 1857           0
## 24694                            Timor 1857           0
## 24695                             Togo 1857           0
## 24696                            Tonga 1857           0
## 24697              Trinidad and Tobago 1857           0
## 24698                          Tunisia 1857           0
## 24699                           Turkey 1857           0
## 24700                     Turkmenistan 1857           0
## 24701         Turks and Caicos Islands 1857           0
## 24702                           Tuvalu 1857           0
## 24703                           Uganda 1857           0
## 24704                          Ukraine 1857           0
## 24705             United Arab Emirates 1857           0
## 24706                   United Kingdom 1857  4590453392
## 24707                    United States 1857   423972432
## 24708                          Uruguay 1857           0
## 24709                       Uzbekistan 1857           0
## 24710                          Vanuatu 1857           0
## 24711                        Venezuela 1857           0
## 24712                          Vietnam 1857           0
## 24713        Wallis and Futuna Islands 1857           0
## 24714                            World 1857  6445236144
## 24715                            Yemen 1857           0
## 24716                           Zambia 1857           0
## 24717                         Zimbabwe 1857           0
## 24718                      Afghanistan 1858           0
## 24719                           Africa 1858           0
## 24720                          Albania 1858           0
## 24721                          Algeria 1858           0
## 24722                 Americas (other) 1858     1623152
## 24723                          Andorra 1858           0
## 24724                           Angola 1858           0
## 24725                         Anguilla 1858           0
## 24726              Antarctic Fisheries 1858           0
## 24727              Antigua and Barbuda 1858           0
## 24728                        Argentina 1858           0
## 24729                          Armenia 1858           0
## 24730                            Aruba 1858           0
## 24731         Asia and Pacific (other) 1858      436016
## 24732                        Australia 1858           0
## 24733                          Austria 1858    62244032
## 24734                       Azerbaijan 1858           0
## 24735                          Bahamas 1858           0
## 24736                          Bahrain 1858           0
## 24737                       Bangladesh 1858           0
## 24738                         Barbados 1858           0
## 24739                          Belarus 1858           0
## 24740                          Belgium 1858   251713136
## 24741                           Belize 1858           0
## 24742                            Benin 1858           0
## 24743                          Bermuda 1858           0
## 24744                           Bhutan 1858           0
## 24745                          Bolivia 1858           0
## 24746  Bonaire Sint Eustatius and Saba 1858           0
## 24747           Bosnia and Herzegovina 1858           0
## 24748                         Botswana 1858           0
## 24749                           Brazil 1858           0
## 24750           British Virgin Islands 1858           0
## 24751                           Brunei 1858           0
## 24752                         Bulgaria 1858           0
## 24753                     Burkina Faso 1858           0
## 24754                          Burundi 1858           0
## 24755                         Cambodia 1858           0
## 24756                         Cameroon 1858           0
## 24757                           Canada 1858     1619488
## 24758                       Cape Verde 1858           0
## 24759                   Cayman Islands 1858           0
## 24760         Central African Republic 1858           0
## 24761                             Chad 1858           0
## 24762                            Chile 1858           0
## 24763                            China 1858           0
## 24764                 Christmas Island 1858           0
## 24765                         Colombia 1858           0
## 24766                          Comoros 1858           0
## 24767                            Congo 1858           0
## 24768                     Cook Islands 1858           0
## 24769                       Costa Rica 1858           0
## 24770                    Cote d'Ivoire 1858           0
## 24771                          Croatia 1858           0
## 24772                             Cuba 1858           0
## 24773                          Curacao 1858           0
## 24774                           Cyprus 1858           0
## 24775                   Czech Republic 1858           0
## 24776                   Czechoslovakia 1858           0
## 24777     Democratic Republic of Congo 1858           0
## 24778                          Denmark 1858     5543632
## 24779                         Djibouti 1858           0
## 24780                         Dominica 1858           0
## 24781               Dominican Republic 1858           0
## 24782                            EU-28 1858  6258504048
## 24783                          Ecuador 1858           0
## 24784                            Egypt 1858           0
## 24785                      El Salvador 1858           0
## 24786                Equatorial Guinea 1858           0
## 24787                          Eritrea 1858           0
## 24788                          Estonia 1858           0
## 24789                         Ethiopia 1858           0
## 24790                   Europe (other) 1858     4151312
## 24791                   Faeroe Islands 1858           0
## 24792                 Falkland Islands 1858           0
## 24793                             Fiji 1858           0
## 24794                          Finland 1858           0
## 24795                           France 1858   574163456
## 24796                    French Guiana 1858           0
## 24797                 French Polynesia 1858           0
## 24798                            Gabon 1858           0
## 24799                           Gambia 1858           0
## 24800                          Georgia 1858           0
## 24801                          Germany 1858   463910032
## 24802                            Ghana 1858           0
## 24803                        Gibraltar 1858           0
## 24804                           Greece 1858           0
## 24805                        Greenland 1858           0
## 24806                          Grenada 1858           0
## 24807                       Guadeloupe 1858           0
## 24808                        Guatemala 1858           0
## 24809                           Guinea 1858           0
## 24810                    Guinea-Bissau 1858           0
## 24811                           Guyana 1858           0
## 24812                            Haiti 1858           0
## 24813                         Honduras 1858           0
## 24814                        Hong Kong 1858           0
## 24815                          Hungary 1858     5023344
## 24816                          Iceland 1858           0
## 24817                            India 1858      436016
## 24818                        Indonesia 1858           0
## 24819                             Iran 1858           0
## 24820                             Iraq 1858           0
## 24821                          Ireland 1858      395712
## 24822                           Israel 1858           0
## 24823                            Italy 1858           0
## 24824                          Jamaica 1858           0
## 24825                            Japan 1858           0
## 24826                           Jordan 1858           0
## 24827                       Kazakhstan 1858           0
## 24828                            Kenya 1858           0
## 24829                         Kiribati 1858           0
## 24830                           Kuwait 1858           0
## 24831                       Kyrgysztan 1858           0
## 24832                       Kyrgyzstan 1858           0
## 24833                             Laos 1858           0
## 24834                           Latvia 1858           0
## 24835                          Lebanon 1858           0
## 24836                          Lesotho 1858           0
## 24837                          Liberia 1858           0
## 24838                            Libya 1858           0
## 24839                    Liechtenstein 1858           0
## 24840                        Lithuania 1858           0
## 24841                       Luxembourg 1858           0
## 24842                            Macao 1858           0
## 24843                        Macedonia 1858           0
## 24844                       Madagascar 1858           0
## 24845                           Malawi 1858           0
## 24846                         Malaysia 1858           0
## 24847                         Maldives 1858           0
## 24848                             Mali 1858           0
## 24849                            Malta 1858           0
## 24850                 Marshall Islands 1858           0
## 24851                       Martinique 1858           0
## 24852                       Mauritania 1858           0
## 24853                        Mauritius 1858           0
## 24854                           Mexico 1858           0
## 24855             Micronesia (country) 1858           0
## 24856                      Middle East 1858           0
## 24857                          Moldova 1858           0
## 24858                         Mongolia 1858           0
## 24859                       Montenegro 1858           0
## 24860                       Montserrat 1858           0
## 24861                          Morocco 1858           0
## 24862                       Mozambique 1858           0
## 24863                          Myanmar 1858           0
## 24864                          Namibia 1858           0
## 24865                            Nauru 1858           0
## 24866                            Nepal 1858           0
## 24867                      Netherlands 1858    51149440
## 24868                    New Caledonia 1858           0
## 24869                      New Zealand 1858           0
## 24870                        Nicaragua 1858           0
## 24871                            Niger 1858           0
## 24872                          Nigeria 1858           0
## 24873                             Niue 1858           0
## 24874                      North Korea 1858           0
## 24875                           Norway 1858     2986160
## 24876                             Oman 1858           0
## 24877                         Pakistan 1858           0
## 24878                            Palau 1858           0
## 24879                        Palestine 1858           0
## 24880                           Panama 1858           0
## 24881                 Papua New Guinea 1858           0
## 24882                         Paraguay 1858           0
## 24883                             Peru 1858           0
## 24884                      Philippines 1858           0
## 24885                           Poland 1858   106402560
## 24886                         Portugal 1858           0
## 24887                            Qatar 1858           0
## 24888                          Reunion 1858           0
## 24889                          Romania 1858        3664
## 24890                           Russia 1858           0
## 24891                           Rwanda 1858           0
## 24892                     Saint Helena 1858           0
## 24893            Saint Kitts and Nevis 1858           0
## 24894                      Saint Lucia 1858           0
## 24895        Saint Pierre and Miquelon 1858           0
## 24896 Saint Vincent and the Grenadines 1858           0
## 24897                            Samoa 1858           0
## 24898            Sao Tome and Principe 1858           0
## 24899                     Saudi Arabia 1858           0
## 24900                          Senegal 1858           0
## 24901                           Serbia 1858           0
## 24902                       Seychelles 1858           0
## 24903                     Sierra Leone 1858           0
## 24904                        Singapore 1858           0
## 24905        Sint Maarten (Dutch part) 1858           0
## 24906                         Slovakia 1858           0
## 24907                         Slovenia 1858           0
## 24908                  Solomon Islands 1858           0
## 24909                          Somalia 1858           0
## 24910                     South Africa 1858           0
## 24911                      South Korea 1858           0
## 24912                      South Sudan 1858           0
## 24913                            Spain 1858     8295296
## 24914                        Sri Lanka 1858           0
## 24915                            Sudan 1858           0
## 24916                         Suriname 1858           0
## 24917                        Swaziland 1858           0
## 24918                           Sweden 1858     4092688
## 24919                      Switzerland 1858      146560
## 24920                            Syria 1858           0
## 24921                           Taiwan 1858           0
## 24922                       Tajikistan 1858           0
## 24923                         Tanzania 1858           0
## 24924                         Thailand 1858           0
## 24925                            Timor 1858           0
## 24926                             Togo 1858           0
## 24927                            Tonga 1858           0
## 24928              Trinidad and Tobago 1858           0
## 24929                          Tunisia 1858           0
## 24930                           Turkey 1858           0
## 24931                     Turkmenistan 1858           0
## 24932         Turks and Caicos Islands 1858           0
## 24933                           Tuvalu 1858           0
## 24934                           Uganda 1858           0
## 24935                          Ukraine 1858           0
## 24936             United Arab Emirates 1858           0
## 24937                   United Kingdom 1858  4725567056
## 24938                    United States 1858   465621120
## 24939                          Uruguay 1858           0
## 24940                       Uzbekistan 1858           0
## 24941                          Vanuatu 1858           0
## 24942                        Venezuela 1858           0
## 24943                          Vietnam 1858           0
## 24944        Wallis and Futuna Islands 1858           0
## 24945                            World 1858  6729203472
## 24946                            Yemen 1858           0
## 24947                           Zambia 1858           0
## 24948                         Zimbabwe 1858           0
## 24949                      Afghanistan 1859           0
## 24950                           Africa 1859           0
## 24951                          Albania 1859           0
## 24952                          Algeria 1859           0
## 24953                 Americas (other) 1859     1938256
## 24954                          Andorra 1859           0
## 24955                           Angola 1859           0
## 24956                         Anguilla 1859           0
## 24957              Antarctic Fisheries 1859           0
## 24958              Antigua and Barbuda 1859           0
## 24959                        Argentina 1859           0
## 24960                          Armenia 1859           0
## 24961                            Aruba 1859           0
## 24962         Asia and Pacific (other) 1859     1139504
## 24963                        Australia 1859           0
## 24964                          Austria 1859    68110096
## 24965                       Azerbaijan 1859           0
## 24966                          Bahamas 1859           0
## 24967                          Bahrain 1859           0
## 24968                       Bangladesh 1859           0
## 24969                         Barbados 1859           0
## 24970                          Belarus 1859           0
## 24971                          Belgium 1859   266610960
## 24972                           Belize 1859           0
## 24973                            Benin 1859           0
## 24974                          Bermuda 1859           0
## 24975                           Bhutan 1859           0
## 24976                          Bolivia 1859           0
## 24977  Bonaire Sint Eustatius and Saba 1859           0
## 24978           Bosnia and Herzegovina 1859           0
## 24979                         Botswana 1859           0
## 24980                           Brazil 1859           0
## 24981           British Virgin Islands 1859           0
## 24982                           Brunei 1859           0
## 24983                         Bulgaria 1859           0
## 24984                     Burkina Faso 1859           0
## 24985                          Burundi 1859           0
## 24986                         Cambodia 1859           0
## 24987                         Cameroon 1859           0
## 24988                           Canada 1859     1934592
## 24989                       Cape Verde 1859           0
## 24990                   Cayman Islands 1859           0
## 24991         Central African Republic 1859           0
## 24992                             Chad 1859           0
## 24993                            Chile 1859           0
## 24994                            China 1859           0
## 24995                 Christmas Island 1859           0
## 24996                         Colombia 1859           0
## 24997                          Comoros 1859           0
## 24998                            Congo 1859           0
## 24999                     Cook Islands 1859           0
## 25000                       Costa Rica 1859           0
## 25001                    Cote d'Ivoire 1859           0
## 25002                          Croatia 1859           0
## 25003                             Cuba 1859           0
## 25004                          Curacao 1859           0
## 25005                           Cyprus 1859           0
## 25006                   Czech Republic 1859           0
## 25007                   Czechoslovakia 1859           0
## 25008     Democratic Republic of Congo 1859           0
## 25009                          Denmark 1859     6170176
## 25010                         Djibouti 1859           0
## 25011                         Dominica 1859           0
## 25012               Dominican Republic 1859           0
## 25013                            EU-28 1859  6512499856
## 25014                          Ecuador 1859           0
## 25015                            Egypt 1859           0
## 25016                      El Salvador 1859           0
## 25017                Equatorial Guinea 1859           0
## 25018                          Eritrea 1859           0
## 25019                          Estonia 1859           0
## 25020                         Ethiopia 1859           0
## 25021                   Europe (other) 1859     5195552
## 25022                   Faeroe Islands 1859           0
## 25023                 Falkland Islands 1859           0
## 25024                             Fiji 1859           0
## 25025                          Finland 1859           0
## 25026                           France 1859   609154656
## 25027                    French Guiana 1859           0
## 25028                 French Polynesia 1859           0
## 25029                            Gabon 1859           0
## 25030                           Gambia 1859           0
## 25031                          Georgia 1859           0
## 25032                          Germany 1859   497717760
## 25033                            Ghana 1859           0
## 25034                        Gibraltar 1859           0
## 25035                           Greece 1859           0
## 25036                        Greenland 1859           0
## 25037                          Grenada 1859           0
## 25038                       Guadeloupe 1859           0
## 25039                        Guatemala 1859           0
## 25040                           Guinea 1859           0
## 25041                    Guinea-Bissau 1859           0
## 25042                           Guyana 1859           0
## 25043                            Haiti 1859           0
## 25044                         Honduras 1859           0
## 25045                        Hong Kong 1859           0
## 25046                          Hungary 1859     5792784
## 25047                          Iceland 1859           0
## 25048                            India 1859     1139504
## 25049                        Indonesia 1859           0
## 25050                             Iran 1859           0
## 25051                             Iraq 1859           0
## 25052                          Ireland 1859      395712
## 25053                           Israel 1859           0
## 25054                            Italy 1859           0
## 25055                          Jamaica 1859           0
## 25056                            Japan 1859           0
## 25057                           Jordan 1859           0
## 25058                       Kazakhstan 1859           0
## 25059                            Kenya 1859           0
## 25060                         Kiribati 1859           0
## 25061                           Kuwait 1859           0
## 25062                       Kyrgysztan 1859           0
## 25063                       Kyrgyzstan 1859           0
## 25064                             Laos 1859           0
## 25065                           Latvia 1859           0
## 25066                          Lebanon 1859           0
## 25067                          Lesotho 1859           0
## 25068                          Liberia 1859           0
## 25069                            Libya 1859           0
## 25070                    Liechtenstein 1859           0
## 25071                        Lithuania 1859           0
## 25072                       Luxembourg 1859           0
## 25073                            Macao 1859           0
## 25074                        Macedonia 1859           0
## 25075                       Madagascar 1859           0
## 25076                           Malawi 1859           0
## 25077                         Malaysia 1859           0
## 25078                         Maldives 1859           0
## 25079                             Mali 1859           0
## 25080                            Malta 1859           0
## 25081                 Marshall Islands 1859           0
## 25082                       Martinique 1859           0
## 25083                       Mauritania 1859           0
## 25084                        Mauritius 1859           0
## 25085                           Mexico 1859           0
## 25086             Micronesia (country) 1859           0
## 25087                      Middle East 1859           0
## 25088                          Moldova 1859           0
## 25089                         Mongolia 1859           0
## 25090                       Montenegro 1859           0
## 25091                       Montserrat 1859           0
## 25092                          Morocco 1859           0
## 25093                       Mozambique 1859           0
## 25094                          Myanmar 1859           0
## 25095                          Namibia 1859           0
## 25096                            Nauru 1859           0
## 25097                            Nepal 1859           0
## 25098                      Netherlands 1859    54674208
## 25099                    New Caledonia 1859           0
## 25100                      New Zealand 1859           0
## 25101                        Nicaragua 1859           0
## 25102                            Niger 1859           0
## 25103                          Nigeria 1859           0
## 25104                             Niue 1859           0
## 25105                      North Korea 1859           0
## 25106                           Norway 1859     3312256
## 25107                             Oman 1859           0
## 25108                         Pakistan 1859           0
## 25109                            Palau 1859           0
## 25110                        Palestine 1859           0
## 25111                           Panama 1859           0
## 25112                 Papua New Guinea 1859           0
## 25113                         Paraguay 1859           0
## 25114                             Peru 1859           0
## 25115                      Philippines 1859           0
## 25116                           Poland 1859   113514384
## 25117                         Portugal 1859           0
## 25118                            Qatar 1859           0
## 25119                          Reunion 1859           0
## 25120                          Romania 1859        7328
## 25121                           Russia 1859           0
## 25122                           Rwanda 1859           0
## 25123                     Saint Helena 1859           0
## 25124            Saint Kitts and Nevis 1859           0
## 25125                      Saint Lucia 1859           0
## 25126        Saint Pierre and Miquelon 1859           0
## 25127 Saint Vincent and the Grenadines 1859           0
## 25128                            Samoa 1859           0
## 25129            Sao Tome and Principe 1859           0
## 25130                     Saudi Arabia 1859           0
## 25131                          Senegal 1859           0
## 25132                           Serbia 1859           0
## 25133                       Seychelles 1859           0
## 25134                     Sierra Leone 1859           0
## 25135                        Singapore 1859           0
## 25136        Sint Maarten (Dutch part) 1859           0
## 25137                         Slovakia 1859           0
## 25138                         Slovenia 1859           0
## 25139                  Solomon Islands 1859           0
## 25140                          Somalia 1859           0
## 25141                     South Africa 1859           0
## 25142                      South Korea 1859           0
## 25143                      South Sudan 1859           0
## 25144                            Spain 1859     9925776
## 25145                        Sri Lanka 1859           0
## 25146                            Sudan 1859           0
## 25147                         Suriname 1859           0
## 25148                        Swaziland 1859           0
## 25149                           Sweden 1859     4847472
## 25150                      Switzerland 1859      351744
## 25151                            Syria 1859           0
## 25152                           Taiwan 1859           0
## 25153                       Tajikistan 1859           0
## 25154                         Tanzania 1859           0
## 25155                         Thailand 1859           0
## 25156                            Timor 1859           0
## 25157                             Togo 1859           0
## 25158                            Tonga 1859           0
## 25159              Trinidad and Tobago 1859           0
## 25160                          Tunisia 1859           0
## 25161                           Turkey 1859           0
## 25162                     Turkmenistan 1859           0
## 25163         Turks and Caicos Islands 1859           0
## 25164                           Tuvalu 1859           0
## 25165                           Uganda 1859           0
## 25166                          Ukraine 1859           0
## 25167             United Arab Emirates 1859           0
## 25168                   United Kingdom 1859  4875578544
## 25169                    United States 1859   510941136
## 25170                          Uruguay 1859           0
## 25171                       Uzbekistan 1859           0
## 25172                          Vanuatu 1859           0
## 25173                        Venezuela 1859           0
## 25174                          Vietnam 1859           0
## 25175        Wallis and Futuna Islands 1859           0
## 25176                            World 1859  7030204736
## 25177                            Yemen 1859           0
## 25178                           Zambia 1859           0
## 25179                         Zimbabwe 1859           0
## 25180                      Afghanistan 1860           0
## 25181                           Africa 1860           0
## 25182                          Albania 1860           0
## 25183                          Algeria 1860           0
## 25184                 Americas (other) 1860     2319312
## 25185                          Andorra 1860           0
## 25186                           Angola 1860           0
## 25187                         Anguilla 1860           0
## 25188              Antarctic Fisheries 1860           0
## 25189              Antigua and Barbuda 1860           0
## 25190                        Argentina 1860           0
## 25191                          Armenia 1860           0
## 25192                            Aruba 1860           0
## 25193         Asia and Pacific (other) 1860     2128784
## 25194                        Australia 1860      278464
## 25195                          Austria 1860    74258288
## 25196                       Azerbaijan 1860           0
## 25197                          Bahamas 1860           0
## 25198                          Bahrain 1860           0
## 25199                       Bangladesh 1860           0
## 25200                         Barbados 1860           0
## 25201                          Belarus 1860           0
## 25202                          Belgium 1860   281823888
## 25203                           Belize 1860           0
## 25204                            Benin 1860           0
## 25205                          Bermuda 1860           0
## 25206                           Bhutan 1860           0
## 25207                          Bolivia 1860           0
## 25208  Bonaire Sint Eustatius and Saba 1860           0
## 25209           Bosnia and Herzegovina 1860           0
## 25210                         Botswana 1860           0
## 25211                           Brazil 1860           0
## 25212           British Virgin Islands 1860           0
## 25213                           Brunei 1860           0
## 25214                         Bulgaria 1860           0
## 25215                     Burkina Faso 1860           0
## 25216                          Burundi 1860           0
## 25217                         Cambodia 1860           0
## 25218                         Cameroon 1860           0
## 25219                           Canada 1860     2315648
## 25220                       Cape Verde 1860           0
## 25221                   Cayman Islands 1860           0
## 25222         Central African Republic 1860           0
## 25223                             Chad 1860           0
## 25224                            Chile 1860           0
## 25225                            China 1860           0
## 25226                 Christmas Island 1860           0
## 25227                         Colombia 1860           0
## 25228                          Comoros 1860           0
## 25229                            Congo 1860           0
## 25230                     Cook Islands 1860           0
## 25231                       Costa Rica 1860           0
## 25232                    Cote d'Ivoire 1860           0
## 25233                          Croatia 1860           0
## 25234                             Cuba 1860           0
## 25235                          Curacao 1860           0
## 25236                           Cyprus 1860           0
## 25237                   Czech Republic 1860           0
## 25238                   Czechoslovakia 1860      267472
## 25239     Democratic Republic of Congo 1860           0
## 25240                          Denmark 1860     6712448
## 25241                         Djibouti 1860           0
## 25242                         Dominica 1860           0
## 25243               Dominican Republic 1860           0
## 25244                            EU-28 1860  6792817840
## 25245                          Ecuador 1860           0
## 25246                            Egypt 1860           0
## 25247                      El Salvador 1860           0
## 25248                Equatorial Guinea 1860           0
## 25249                          Eritrea 1860           0
## 25250                          Estonia 1860           0
## 25251                         Ethiopia 1860           0
## 25252                   Europe (other) 1860     6782064
## 25253                   Faeroe Islands 1860           0
## 25254                 Falkland Islands 1860           0
## 25255                             Fiji 1860           0
## 25256                          Finland 1860       36640
## 25257                           France 1860   647285904
## 25258                    French Guiana 1860           0
## 25259                 French Polynesia 1860           0
## 25260                            Gabon 1860           0
## 25261                           Gambia 1860           0
## 25262                          Georgia 1860           0
## 25263                          Germany 1860   534112272
## 25264                            Ghana 1860           0
## 25265                        Gibraltar 1860           0
## 25266                           Greece 1860           0
## 25267                        Greenland 1860           0
## 25268                          Grenada 1860           0
## 25269                       Guadeloupe 1860           0
## 25270                        Guatemala 1860           0
## 25271                           Guinea 1860           0
## 25272                    Guinea-Bissau 1860           0
## 25273                           Guyana 1860           0
## 25274                            Haiti 1860           0
## 25275                         Honduras 1860           0
## 25276                        Hong Kong 1860           0
## 25277                          Hungary 1860     6697792
## 25278                          Iceland 1860           0
## 25279                            India 1860     1850320
## 25280                        Indonesia 1860           0
## 25281                             Iran 1860           0
## 25282                             Iraq 1860           0
## 25283                          Ireland 1860      395712
## 25284                           Israel 1860           0
## 25285                            Italy 1860       29312
## 25286                          Jamaica 1860           0
## 25287                            Japan 1860           0
## 25288                           Jordan 1860           0
## 25289                       Kazakhstan 1860           0
## 25290                            Kenya 1860           0
## 25291                         Kiribati 1860           0
## 25292                           Kuwait 1860           0
## 25293                       Kyrgysztan 1860           0
## 25294                       Kyrgyzstan 1860           0
## 25295                             Laos 1860           0
## 25296                           Latvia 1860           0
## 25297                          Lebanon 1860           0
## 25298                          Lesotho 1860           0
## 25299                          Liberia 1860           0
## 25300                            Libya 1860           0
## 25301                    Liechtenstein 1860           0
## 25302                        Lithuania 1860           0
## 25303                       Luxembourg 1860           0
## 25304                            Macao 1860           0
## 25305                        Macedonia 1860           0
## 25306                       Madagascar 1860           0
## 25307                           Malawi 1860           0
## 25308                         Malaysia 1860           0
## 25309                         Maldives 1860           0
## 25310                             Mali 1860           0
## 25311                            Malta 1860           0
## 25312                 Marshall Islands 1860           0
## 25313                       Martinique 1860           0
## 25314                       Mauritania 1860           0
## 25315                        Mauritius 1860           0
## 25316                           Mexico 1860           0
## 25317             Micronesia (country) 1860           0
## 25318                      Middle East 1860           0
## 25319                          Moldova 1860           0
## 25320                         Mongolia 1860           0
## 25321                       Montenegro 1860           0
## 25322                       Montserrat 1860           0
## 25323                          Morocco 1860           0
## 25324                       Mozambique 1860           0
## 25325                          Myanmar 1860           0
## 25326                          Namibia 1860           0
## 25327                            Nauru 1860           0
## 25328                            Nepal 1860           0
## 25329                      Netherlands 1860    59470384
## 25330                    New Caledonia 1860           0
## 25331                      New Zealand 1860           0
## 25332                        Nicaragua 1860           0
## 25333                            Niger 1860           0
## 25334                          Nigeria 1860           0
## 25335                             Niue 1860           0
## 25336                      North Korea 1860           0
## 25337                           Norway 1860     3645680
## 25338                             Oman 1860           0
## 25339                         Pakistan 1860           0
## 25340                            Palau 1860           0
## 25341                        Palestine 1860           0
## 25342                           Panama 1860           0
## 25343                 Papua New Guinea 1860           0
## 25344                         Paraguay 1860           0
## 25345                             Peru 1860           0
## 25346                      Philippines 1860           0
## 25347                           Poland 1860   120999936
## 25348                         Portugal 1860           0
## 25349                            Qatar 1860           0
## 25350                          Reunion 1860           0
## 25351                          Romania 1860       10992
## 25352                           Russia 1860           0
## 25353                           Rwanda 1860           0
## 25354                     Saint Helena 1860           0
## 25355            Saint Kitts and Nevis 1860           0
## 25356                      Saint Lucia 1860           0
## 25357        Saint Pierre and Miquelon 1860           0
## 25358 Saint Vincent and the Grenadines 1860           0
## 25359                            Samoa 1860           0
## 25360            Sao Tome and Principe 1860           0
## 25361                     Saudi Arabia 1860           0
## 25362                          Senegal 1860           0
## 25363                           Serbia 1860           0
## 25364                       Seychelles 1860           0
## 25365                     Sierra Leone 1860           0
## 25366                        Singapore 1860           0
## 25367        Sint Maarten (Dutch part) 1860           0
## 25368                         Slovakia 1860           0
## 25369                         Slovenia 1860           0
## 25370                  Solomon Islands 1860           0
## 25371                          Somalia 1860           0
## 25372                     South Africa 1860           0
## 25373                      South Korea 1860           0
## 25374                      South Sudan 1860           0
## 25375                            Spain 1860    11856704
## 25376                        Sri Lanka 1860           0
## 25377                            Sudan 1860           0
## 25378                         Suriname 1860           0
## 25379                        Swaziland 1860           0
## 25380                           Sweden 1860     5598592
## 25381                      Switzerland 1860      655856
## 25382                            Syria 1860           0
## 25383                           Taiwan 1860           0
## 25384                       Tajikistan 1860           0
## 25385                         Tanzania 1860           0
## 25386                         Thailand 1860           0
## 25387                            Timor 1860           0
## 25388                             Togo 1860           0
## 25389                            Tonga 1860           0
## 25390              Trinidad and Tobago 1860           0
## 25391                          Tunisia 1860           0
## 25392                           Turkey 1860           0
## 25393                     Turkmenistan 1860           0
## 25394         Turks and Caicos Islands 1860           0
## 25395                           Tuvalu 1860           0
## 25396                           Uganda 1860           0
## 25397                          Ukraine 1860           0
## 25398             United Arab Emirates 1860           0
## 25399                   United Kingdom 1860  5043528976
## 25400                    United States 1860   558378944
## 25401                          Uruguay 1860           0
## 25402                       Uzbekistan 1860           0
## 25403                          Vanuatu 1860           0
## 25404                        Venezuela 1860           0
## 25405                          Vietnam 1860           0
## 25406        Wallis and Futuna Islands 1860           0
## 25407                            World 1860  7360913712
## 25408                            Yemen 1860           0
## 25409                           Zambia 1860           0
## 25410                         Zimbabwe 1860           0
## 25411                      Afghanistan 1861           0
## 25412                           Africa 1861           0
## 25413                          Albania 1861           0
## 25414                          Algeria 1861           0
## 25415                 Americas (other) 1861     2777312
## 25416                          Andorra 1861           0
## 25417                           Angola 1861           0
## 25418                         Anguilla 1861           0
## 25419              Antarctic Fisheries 1861           0
## 25420              Antigua and Barbuda 1861           0
## 25421                        Argentina 1861           0
## 25422                          Armenia 1861           0
## 25423                            Aruba 1861           0
## 25424         Asia and Pacific (other) 1861     3187680
## 25425                        Australia 1861      787760
## 25426                          Austria 1861    80637312
## 25427                       Azerbaijan 1861           0
## 25428                          Bahamas 1861           0
## 25429                          Bahrain 1861           0
## 25430                       Bangladesh 1861           0
## 25431                         Barbados 1861           0
## 25432                          Belarus 1861           0
## 25433                          Belgium 1861   298282576
## 25434                           Belize 1861           0
## 25435                            Benin 1861           0
## 25436                          Bermuda 1861           0
## 25437                           Bhutan 1861           0
## 25438                          Bolivia 1861           0
## 25439  Bonaire Sint Eustatius and Saba 1861           0
## 25440           Bosnia and Herzegovina 1861           0
## 25441                         Botswana 1861           0
## 25442                           Brazil 1861           0
## 25443           British Virgin Islands 1861           0
## 25444                           Brunei 1861           0
## 25445                         Bulgaria 1861           0
## 25446                     Burkina Faso 1861           0
## 25447                          Burundi 1861           0
## 25448                         Cambodia 1861           0
## 25449                         Cameroon 1861           0
## 25450                           Canada 1861     2773648
## 25451                       Cape Verde 1861           0
## 25452                   Cayman Islands 1861           0
## 25453         Central African Republic 1861           0
## 25454                             Chad 1861           0
## 25455                            Chile 1861           0
## 25456                            China 1861           0
## 25457                 Christmas Island 1861           0
## 25458                         Colombia 1861           0
## 25459                          Comoros 1861           0
## 25460                            Congo 1861           0
## 25461                     Cook Islands 1861           0
## 25462                       Costa Rica 1861           0
## 25463                    Cote d'Ivoire 1861           0
## 25464                          Croatia 1861           0
## 25465                             Cuba 1861           0
## 25466                          Curacao 1861           0
## 25467                           Cyprus 1861           0
## 25468                   Czech Republic 1861           0
## 25469                   Czechoslovakia 1861     1146832
## 25470     Democratic Republic of Congo 1861           0
## 25471                          Denmark 1861     7496544
## 25472                         Djibouti 1861           0
## 25473                         Dominica 1861           0
## 25474               Dominican Republic 1861           0
## 25475                            EU-28 1861  7090814624
## 25476                          Ecuador 1861           0
## 25477                            Egypt 1861           0
## 25478                      El Salvador 1861           0
## 25479                Equatorial Guinea 1861           0
## 25480                          Eritrea 1861           0
## 25481                          Estonia 1861           0
## 25482                         Ethiopia 1861           0
## 25483                   Europe (other) 1861     9372512
## 25484                   Faeroe Islands 1861           0
## 25485                 Falkland Islands 1861           0
## 25486                             Fiji 1861           0
## 25487                          Finland 1861      109920
## 25488                           France 1861   688527888
## 25489                    French Guiana 1861           0
## 25490                 French Polynesia 1861           0
## 25491                            Gabon 1861           0
## 25492                           Gambia 1861           0
## 25493                          Georgia 1861           0
## 25494                          Germany 1861   575442192
## 25495                            Ghana 1861           0
## 25496                        Gibraltar 1861           0
## 25497                           Greece 1861           0
## 25498                        Greenland 1861           0
## 25499                          Grenada 1861           0
## 25500                       Guadeloupe 1861           0
## 25501                        Guatemala 1861           0
## 25502                           Guinea 1861           0
## 25503                    Guinea-Bissau 1861           0
## 25504                           Guyana 1861           0
## 25505                            Haiti 1861           0
## 25506                         Honduras 1861           0
## 25507                        Hong Kong 1861           0
## 25508                          Hungary 1861     7657760
## 25509                          Iceland 1861           0
## 25510                            India 1861     2399920
## 25511                        Indonesia 1861           0
## 25512                             Iran 1861           0
## 25513                             Iraq 1861           0
## 25514                          Ireland 1861      395712
## 25515                           Israel 1861           0
## 25516                            Italy 1861      699824
## 25517                          Jamaica 1861           0
## 25518                            Japan 1861           0
## 25519                           Jordan 1861           0
## 25520                       Kazakhstan 1861           0
## 25521                            Kenya 1861           0
## 25522                         Kiribati 1861           0
## 25523                           Kuwait 1861           0
## 25524                       Kyrgysztan 1861           0
## 25525                       Kyrgyzstan 1861           0
## 25526                             Laos 1861           0
## 25527                           Latvia 1861           0
## 25528                          Lebanon 1861           0
## 25529                          Lesotho 1861           0
## 25530                          Liberia 1861           0
## 25531                            Libya 1861           0
## 25532                    Liechtenstein 1861           0
## 25533                        Lithuania 1861           0
## 25534                       Luxembourg 1861           0
## 25535                            Macao 1861           0
## 25536                        Macedonia 1861           0
## 25537                       Madagascar 1861           0
## 25538                           Malawi 1861           0
## 25539                         Malaysia 1861           0
## 25540                         Maldives 1861           0
## 25541                             Mali 1861           0
## 25542                            Malta 1861           0
## 25543                 Marshall Islands 1861           0
## 25544                       Martinique 1861           0
## 25545                       Mauritania 1861           0
## 25546                        Mauritius 1861           0
## 25547                           Mexico 1861           0
## 25548             Micronesia (country) 1861           0
## 25549                      Middle East 1861           0
## 25550                          Moldova 1861           0
## 25551                         Mongolia 1861           0
## 25552                       Montenegro 1861           0
## 25553                       Montserrat 1861           0
## 25554                          Morocco 1861           0
## 25555                       Mozambique 1861           0
## 25556                          Myanmar 1861           0
## 25557                          Namibia 1861           0
## 25558                            Nauru 1861           0
## 25559                            Nepal 1861           0
## 25560                      Netherlands 1861    63874512
## 25561                    New Caledonia 1861           0
## 25562                      New Zealand 1861           0
## 25563                        Nicaragua 1861           0
## 25564                            Niger 1861           0
## 25565                          Nigeria 1861           0
## 25566                             Niue 1861           0
## 25567                      North Korea 1861           0
## 25568                           Norway 1861     4074368
## 25569                             Oman 1861           0
## 25570                         Pakistan 1861           0
## 25571                            Palau 1861           0
## 25572                        Palestine 1861           0
## 25573                           Panama 1861           0
## 25574                 Papua New Guinea 1861           0
## 25575                         Paraguay 1861           0
## 25576                             Peru 1861           0
## 25577                      Philippines 1861           0
## 25578                           Poland 1861   128668688
## 25579                         Portugal 1861           0
## 25580                            Qatar 1861           0
## 25581                          Reunion 1861           0
## 25582                          Romania 1861       18320
## 25583                           Russia 1861           0
## 25584                           Rwanda 1861           0
## 25585                     Saint Helena 1861           0
## 25586            Saint Kitts and Nevis 1861           0
## 25587                      Saint Lucia 1861           0
## 25588        Saint Pierre and Miquelon 1861           0
## 25589 Saint Vincent and the Grenadines 1861           0
## 25590                            Samoa 1861           0
## 25591            Sao Tome and Principe 1861           0
## 25592                     Saudi Arabia 1861           0
## 25593                          Senegal 1861           0
## 25594                           Serbia 1861           0
## 25595                       Seychelles 1861           0
## 25596                     Sierra Leone 1861           0
## 25597                        Singapore 1861           0
## 25598        Sint Maarten (Dutch part) 1861           0
## 25599                         Slovakia 1861           0
## 25600                         Slovenia 1861           0
## 25601                  Solomon Islands 1861           0
## 25602                          Somalia 1861           0
## 25603                     South Africa 1861           0
## 25604                      South Korea 1861           0
## 25605                      South Sudan 1861           0
## 25606                            Spain 1861    13860912
## 25607                        Sri Lanka 1861           0
## 25608                            Sudan 1861           0
## 25609                         Suriname 1861           0
## 25610                        Swaziland 1861           0
## 25611                           Sweden 1861     6565888
## 25612                      Switzerland 1861     1080880
## 25613                            Syria 1861           0
## 25614                           Taiwan 1861           0
## 25615                       Tajikistan 1861           0
## 25616                         Tanzania 1861           0
## 25617                         Thailand 1861           0
## 25618                            Timor 1861           0
## 25619                             Togo 1861           0
## 25620                            Tonga 1861           0
## 25621              Trinidad and Tobago 1861           0
## 25622                          Tunisia 1861           0
## 25623                           Turkey 1861           0
## 25624                     Turkmenistan 1861           0
## 25625         Turks and Caicos Islands 1861           0
## 25626                           Tuvalu 1861           0
## 25627                           Uganda 1861           0
## 25628                          Ukraine 1861           0
## 25629             United Arab Emirates 1861           0
## 25630                   United Kingdom 1861  5218576576
## 25631                    United States 1861   604058032
## 25632                          Uruguay 1861           0
## 25633                       Uzbekistan 1861           0
## 25634                          Vanuatu 1861           0
## 25635                        Venezuela 1861           0
## 25636                          Vietnam 1861           0
## 25637        Wallis and Futuna Islands 1861           0
## 25638                            World 1861  7708700592
## 25639                            Yemen 1861           0
## 25640                           Zambia 1861           0
## 25641                         Zimbabwe 1861           0
## 25642                      Afghanistan 1862           0
## 25643                           Africa 1862           0
## 25644                          Albania 1862           0
## 25645                          Algeria 1862           0
## 25646                 Americas (other) 1862     3337904
## 25647                          Andorra 1862           0
## 25648                           Angola 1862           0
## 25649                         Anguilla 1862           0
## 25650              Antarctic Fisheries 1862           0
## 25651              Antigua and Barbuda 1862           0
## 25652                        Argentina 1862           0
## 25653                          Armenia 1862           0
## 25654                            Aruba 1862           0
## 25655         Asia and Pacific (other) 1862     4151312
## 25656                        Australia 1862     1143168
## 25657                          Austria 1862    86990688
## 25658                       Azerbaijan 1862           0
## 25659                          Bahamas 1862           0
## 25660                          Bahrain 1862           0
## 25661                       Bangladesh 1862           0
## 25662                         Barbados 1862           0
## 25663                          Belarus 1862           0
## 25664                          Belgium 1862   314627680
## 25665                           Belize 1862           0
## 25666                            Benin 1862           0
## 25667                          Bermuda 1862           0
## 25668                           Bhutan 1862           0
## 25669                          Bolivia 1862           0
## 25670  Bonaire Sint Eustatius and Saba 1862           0
## 25671           Bosnia and Herzegovina 1862           0
## 25672                         Botswana 1862           0
## 25673                           Brazil 1862           0
## 25674           British Virgin Islands 1862           0
## 25675                           Brunei 1862           0
## 25676                         Bulgaria 1862           0
## 25677                     Burkina Faso 1862           0
## 25678                          Burundi 1862           0
## 25679                         Cambodia 1862           0
## 25680                         Cameroon 1862           0
## 25681                           Canada 1862     3334240
## 25682                       Cape Verde 1862           0
## 25683                   Cayman Islands 1862           0
## 25684         Central African Republic 1862           0
## 25685                             Chad 1862           0
## 25686                            Chile 1862           0
## 25687                            China 1862           0
## 25688                 Christmas Island 1862           0
## 25689                         Colombia 1862           0
## 25690                          Comoros 1862           0
## 25691                            Congo 1862           0
## 25692                     Cook Islands 1862           0
## 25693                       Costa Rica 1862           0
## 25694                    Cote d'Ivoire 1862           0
## 25695                          Croatia 1862           0
## 25696                             Cuba 1862           0
## 25697                          Curacao 1862           0
## 25698                           Cyprus 1862           0
## 25699                   Czech Republic 1862           0
## 25700                   Czechoslovakia 1862     2641744
## 25701     Democratic Republic of Congo 1862           0
## 25702                          Denmark 1862     8174384
## 25703                         Djibouti 1862           0
## 25704                         Dominica 1862           0
## 25705               Dominican Republic 1862           0
## 25706                            EU-28 1862  7392845472
## 25707                          Ecuador 1862           0
## 25708                            Egypt 1862           0
## 25709                      El Salvador 1862           0
## 25710                Equatorial Guinea 1862           0
## 25711                          Eritrea 1862           0
## 25712                          Estonia 1862           0
## 25713                         Ethiopia 1862           0
## 25714                   Europe (other) 1862    12486912
## 25715                   Faeroe Islands 1862           0
## 25716                 Falkland Islands 1862           0
## 25717                             Fiji 1862           0
## 25718                          Finland 1862      183200
## 25719                           France 1862   732052544
## 25720                    French Guiana 1862           0
## 25721                 French Polynesia 1862           0
## 25722                            Gabon 1862           0
## 25723                           Gambia 1862           0
## 25724                          Georgia 1862           0
## 25725                          Germany 1862   620982048
## 25726                            Ghana 1862           0
## 25727                        Gibraltar 1862           0
## 25728                           Greece 1862           0
## 25729                        Greenland 1862           0
## 25730                          Grenada 1862           0
## 25731                       Guadeloupe 1862           0
## 25732                        Guatemala 1862           0
## 25733                           Guinea 1862           0
## 25734                    Guinea-Bissau 1862           0
## 25735                           Guyana 1862           0
## 25736                            Haiti 1862           0
## 25737                         Honduras 1862           0
## 25738                        Hong Kong 1862           0
## 25739                          Hungary 1862     8815584
## 25740                          Iceland 1862           0
## 25741                            India 1862     3008144
## 25742                        Indonesia 1862           0
## 25743                             Iran 1862           0
## 25744                             Iraq 1862           0
## 25745                          Ireland 1862      395712
## 25746                           Israel 1862           0
## 25747                            Italy 1862     1927264
## 25748                          Jamaica 1862           0
## 25749                            Japan 1862           0
## 25750                           Jordan 1862           0
## 25751                       Kazakhstan 1862           0
## 25752                            Kenya 1862           0
## 25753                         Kiribati 1862           0
## 25754                           Kuwait 1862           0
## 25755                       Kyrgysztan 1862           0
## 25756                       Kyrgyzstan 1862           0
## 25757                             Laos 1862           0
## 25758                           Latvia 1862           0
## 25759                          Lebanon 1862           0
## 25760                          Lesotho 1862           0
## 25761                          Liberia 1862           0
## 25762                            Libya 1862           0
## 25763                    Liechtenstein 1862           0
## 25764                        Lithuania 1862           0
## 25765                       Luxembourg 1862           0
## 25766                            Macao 1862           0
## 25767                        Macedonia 1862           0
## 25768                       Madagascar 1862           0
## 25769                           Malawi 1862           0
## 25770                         Malaysia 1862           0
## 25771                         Maldives 1862           0
## 25772                             Mali 1862           0
## 25773                            Malta 1862           0
## 25774                 Marshall Islands 1862           0
## 25775                       Martinique 1862           0
## 25776                       Mauritania 1862           0
## 25777                        Mauritius 1862           0
## 25778                           Mexico 1862           0
## 25779             Micronesia (country) 1862           0
## 25780                      Middle East 1862           0
## 25781                          Moldova 1862           0
## 25782                         Mongolia 1862           0
## 25783                       Montenegro 1862           0
## 25784                       Montserrat 1862           0
## 25785                          Morocco 1862           0
## 25786                       Mozambique 1862           0
## 25787                          Myanmar 1862           0
## 25788                          Namibia 1862           0
## 25789                            Nauru 1862           0
## 25790                            Nepal 1862           0
## 25791                      Netherlands 1862    69546384
## 25792                    New Caledonia 1862           0
## 25793                      New Zealand 1862           0
## 25794                        Nicaragua 1862           0
## 25795                            Niger 1862           0
## 25796                          Nigeria 1862           0
## 25797                             Niue 1862           0
## 25798                      North Korea 1862           0
## 25799                           Norway 1862     4444432
## 25800                             Oman 1862           0
## 25801                         Pakistan 1862           0
## 25802                            Palau 1862           0
## 25803                        Palestine 1862           0
## 25804                           Panama 1862           0
## 25805                 Papua New Guinea 1862           0
## 25806                         Paraguay 1862           0
## 25807                             Peru 1862           0
## 25808                      Philippines 1862           0
## 25809                           Poland 1862   137473280
## 25810                         Portugal 1862           0
## 25811                            Qatar 1862           0
## 25812                          Reunion 1862           0
## 25813                          Romania 1862       29312
## 25814                           Russia 1862           0
## 25815                           Rwanda 1862           0
## 25816                     Saint Helena 1862           0
## 25817            Saint Kitts and Nevis 1862           0
## 25818                      Saint Lucia 1862           0
## 25819        Saint Pierre and Miquelon 1862           0
## 25820 Saint Vincent and the Grenadines 1862           0
## 25821                            Samoa 1862           0
## 25822            Sao Tome and Principe 1862           0
## 25823                     Saudi Arabia 1862           0
## 25824                          Senegal 1862           0
## 25825                           Serbia 1862           0
## 25826                       Seychelles 1862           0
## 25827                     Sierra Leone 1862           0
## 25828                        Singapore 1862           0
## 25829        Sint Maarten (Dutch part) 1862           0
## 25830                         Slovakia 1862           0
## 25831                         Slovenia 1862           0
## 25832                  Solomon Islands 1862           0
## 25833                          Somalia 1862           0
## 25834                     South Africa 1862           0
## 25835                      South Korea 1862           0
## 25836                      South Sudan 1862           0
## 25837                            Spain 1862    16048320
## 25838                        Sri Lanka 1862           0
## 25839                            Sudan 1862           0
## 25840                         Suriname 1862           0
## 25841                        Swaziland 1862           0
## 25842                           Sweden 1862     7551504
## 25843                      Switzerland 1862     1549872
## 25844                            Syria 1862           0
## 25845                           Taiwan 1862           0
## 25846                       Tajikistan 1862           0
## 25847                         Tanzania 1862           0
## 25848                         Thailand 1862           0
## 25849                            Timor 1862           0
## 25850                             Togo 1862           0
## 25851                            Tonga 1862           0
## 25852              Trinidad and Tobago 1862           0
## 25853                          Tunisia 1862           0
## 25854                           Turkey 1862           0
## 25855                     Turkmenistan 1862           0
## 25856         Turks and Caicos Islands 1862           0
## 25857                           Tuvalu 1862           0
## 25858                           Uganda 1862           0
## 25859                          Ukraine 1862           0
## 25860             United Arab Emirates 1862           0
## 25861                   United Kingdom 1862  5388047568
## 25862                    United States 1862   651506832
## 25863                          Uruguay 1862           0
## 25864                       Uzbekistan 1862           0
## 25865                          Vanuatu 1862           0
## 25866                        Venezuela 1862           0
## 25867                          Vietnam 1862           0
## 25868        Wallis and Futuna Islands 1862           0
## 25869                            World 1862  8062815200
## 25870                            Yemen 1862           0
## 25871                           Zambia 1862           0
## 25872                         Zimbabwe 1862           0
## 25873                      Afghanistan 1863           0
## 25874                           Africa 1863           0
## 25875                          Albania 1863           0
## 25876                          Algeria 1863           0
## 25877                 Americas (other) 1863     4041392
## 25878                          Andorra 1863           0
## 25879                           Angola 1863           0
## 25880                         Anguilla 1863           0
## 25881              Antarctic Fisheries 1863           0
## 25882              Antigua and Barbuda 1863           0
## 25883                        Argentina 1863           0
## 25884                          Armenia 1863           0
## 25885                            Aruba 1863           0
## 25886         Asia and Pacific (other) 1863     5224864
## 25887                        Australia 1863     1542544
## 25888                          Austria 1863    92867744
## 25889                       Azerbaijan 1863           0
## 25890                          Bahamas 1863           0
## 25891                          Bahrain 1863           0
## 25892                       Bangladesh 1863           0
## 25893                         Barbados 1863           0
## 25894                          Belarus 1863           0
## 25895                          Belgium 1863   331855808
## 25896                           Belize 1863           0
## 25897                            Benin 1863           0
## 25898                          Bermuda 1863           0
## 25899                           Bhutan 1863           0
## 25900                          Bolivia 1863           0
## 25901  Bonaire Sint Eustatius and Saba 1863           0
## 25902           Bosnia and Herzegovina 1863           0
## 25903                         Botswana 1863           0
## 25904                           Brazil 1863           0
## 25905           British Virgin Islands 1863           0
## 25906                           Brunei 1863           0
## 25907                         Bulgaria 1863           0
## 25908                     Burkina Faso 1863           0
## 25909                          Burundi 1863           0
## 25910                         Cambodia 1863           0
## 25911                         Cameroon 1863           0
## 25912                           Canada 1863     4037728
## 25913                       Cape Verde 1863           0
## 25914                   Cayman Islands 1863           0
## 25915         Central African Republic 1863           0
## 25916                             Chad 1863           0
## 25917                            Chile 1863           0
## 25918                            China 1863           0
## 25919                 Christmas Island 1863           0
## 25920                         Colombia 1863           0
## 25921                          Comoros 1863           0
## 25922                            Congo 1863           0
## 25923                     Cook Islands 1863           0
## 25924                       Costa Rica 1863           0
## 25925                    Cote d'Ivoire 1863           0
## 25926                          Croatia 1863           0
## 25927                             Cuba 1863           0
## 25928                          Curacao 1863           0
## 25929                           Cyprus 1863           0
## 25930                   Czech Republic 1863           0
## 25931                   Czechoslovakia 1863     4752208
## 25932     Democratic Republic of Congo 1863           0
## 25933                          Denmark 1863     8929168
## 25934                         Djibouti 1863           0
## 25935                         Dominica 1863           0
## 25936               Dominican Republic 1863           0
## 25937                            EU-28 1863  7710426336
## 25938                          Ecuador 1863           0
## 25939                            Egypt 1863           0
## 25940                      El Salvador 1863           0
## 25941                Equatorial Guinea 1863           0
## 25942                          Eritrea 1863           0
## 25943                          Estonia 1863           0
## 25944                         Ethiopia 1863           0
## 25945                   Europe (other) 1863    16246176
## 25946                   Faeroe Islands 1863           0
## 25947                 Falkland Islands 1863           0
## 25948                             Fiji 1863           0
## 25949                          Finland 1863      260144
## 25950                           France 1863   776240384
## 25951                    French Guiana 1863           0
## 25952                 French Polynesia 1863           0
## 25953                            Gabon 1863           0
## 25954                           Gambia 1863           0
## 25955                          Georgia 1863           0
## 25956                          Germany 1863   670365440
## 25957                            Ghana 1863           0
## 25958                        Gibraltar 1863           0
## 25959                           Greece 1863           0
## 25960                        Greenland 1863           0
## 25961                          Grenada 1863           0
## 25962                       Guadeloupe 1863           0
## 25963                        Guatemala 1863           0
## 25964                           Guinea 1863           0
## 25965                    Guinea-Bissau 1863           0
## 25966                           Guyana 1863           0
## 25967                            Haiti 1863           0
## 25968                         Honduras 1863           0
## 25969                        Hong Kong 1863           0
## 25970                          Hungary 1863    10024704
## 25971                          Iceland 1863           0
## 25972                            India 1863     3682320
## 25973                        Indonesia 1863           0
## 25974                             Iran 1863           0
## 25975                             Iraq 1863           0
## 25976                          Ireland 1863      395712
## 25977                           Israel 1863           0
## 25978                            Italy 1863     2997152
## 25979                          Jamaica 1863           0
## 25980                            Japan 1863           0
## 25981                           Jordan 1863           0
## 25982                       Kazakhstan 1863           0
## 25983                            Kenya 1863           0
## 25984                         Kiribati 1863           0
## 25985                           Kuwait 1863           0
## 25986                       Kyrgysztan 1863           0
## 25987                       Kyrgyzstan 1863           0
## 25988                             Laos 1863           0
## 25989                           Latvia 1863           0
## 25990                          Lebanon 1863           0
## 25991                          Lesotho 1863           0
## 25992                          Liberia 1863           0
## 25993                            Libya 1863           0
## 25994                    Liechtenstein 1863           0
## 25995                        Lithuania 1863           0
## 25996                       Luxembourg 1863           0
## 25997                            Macao 1863           0
## 25998                        Macedonia 1863           0
## 25999                       Madagascar 1863           0
## 26000                           Malawi 1863           0
## 26001                         Malaysia 1863           0
## 26002                         Maldives 1863           0
## 26003                             Mali 1863           0
## 26004                            Malta 1863           0
## 26005                 Marshall Islands 1863           0
## 26006                       Martinique 1863           0
## 26007                       Mauritania 1863           0
## 26008                        Mauritius 1863           0
## 26009                           Mexico 1863           0
## 26010             Micronesia (country) 1863           0
## 26011                      Middle East 1863           0
## 26012                          Moldova 1863           0
## 26013                         Mongolia 1863           0
## 26014                       Montenegro 1863           0
## 26015                       Montserrat 1863           0
## 26016                          Morocco 1863           0
## 26017                       Mozambique 1863           0
## 26018                          Myanmar 1863           0
## 26019                          Namibia 1863           0
## 26020                            Nauru 1863           0
## 26021                            Nepal 1863           0
## 26022                      Netherlands 1863    73631744
## 26023                    New Caledonia 1863           0
## 26024                      New Zealand 1863           0
## 26025                        Nicaragua 1863           0
## 26026                            Niger 1863           0
## 26027                          Nigeria 1863           0
## 26028                             Niue 1863           0
## 26029                      North Korea 1863           0
## 26030                           Norway 1863     4807168
## 26031                             Oman 1863           0
## 26032                         Pakistan 1863           0
## 26033                            Palau 1863           0
## 26034                        Palestine 1863           0
## 26035                           Panama 1863           0
## 26036                 Papua New Guinea 1863           0
## 26037                         Paraguay 1863           0
## 26038                             Peru 1863           0
## 26039                      Philippines 1863           0
## 26040                           Poland 1863   147527296
## 26041                         Portugal 1863           0
## 26042                            Qatar 1863           0
## 26043                          Reunion 1863           0
## 26044                          Romania 1863       40304
## 26045                           Russia 1863           0
## 26046                           Rwanda 1863           0
## 26047                     Saint Helena 1863           0
## 26048            Saint Kitts and Nevis 1863           0
## 26049                      Saint Lucia 1863           0
## 26050        Saint Pierre and Miquelon 1863           0
## 26051 Saint Vincent and the Grenadines 1863           0
## 26052                            Samoa 1863           0
## 26053            Sao Tome and Principe 1863           0
## 26054                     Saudi Arabia 1863           0
## 26055                          Senegal 1863           0
## 26056                           Serbia 1863           0
## 26057                       Seychelles 1863           0
## 26058                     Sierra Leone 1863           0
## 26059                        Singapore 1863           0
## 26060        Sint Maarten (Dutch part) 1863           0
## 26061                         Slovakia 1863           0
## 26062                         Slovenia 1863           0
## 26063                  Solomon Islands 1863           0
## 26064                          Somalia 1863           0
## 26065                     South Africa 1863           0
## 26066                      South Korea 1863           0
## 26067                      South Sudan 1863           0
## 26068                            Spain 1863    18481216
## 26069                        Sri Lanka 1863           0
## 26070                            Sudan 1863           0
## 26071                         Suriname 1863           0
## 26072                        Swaziland 1863           0
## 26073                           Sweden 1863     8537120
## 26074                      Switzerland 1863     2018864
## 26075                            Syria 1863           0
## 26076                           Taiwan 1863           0
## 26077                       Tajikistan 1863           0
## 26078                         Tanzania 1863           0
## 26079                         Thailand 1863           0
## 26080                            Timor 1863           0
## 26081                             Togo 1863           0
## 26082                            Tonga 1863           0
## 26083              Trinidad and Tobago 1863           0
## 26084                          Tunisia 1863           0
## 26085                           Turkey 1863           0
## 26086                     Turkmenistan 1863           0
## 26087         Turks and Caicos Islands 1863           0
## 26088                           Tuvalu 1863           0
## 26089                           Uganda 1863           0
## 26090                          Ukraine 1863           0
## 26091             United Arab Emirates 1863           0
## 26092                   United Kingdom 1863  5568272400
## 26093                    United States 1863   706316608
## 26094                          Uruguay 1863           0
## 26095                       Uzbekistan 1863           0
## 26096                          Vanuatu 1863           0
## 26097                        Venezuela 1863           0
## 26098                          Vietnam 1863           0
## 26099        Wallis and Futuna Islands 1863           0
## 26100                            World 1863  8440738480
## 26101                            Yemen 1863           0
## 26102                           Zambia 1863           0
## 26103                         Zimbabwe 1863           0
## 26104                      Afghanistan 1864           0
## 26105                           Africa 1864           0
## 26106                          Albania 1864           0
## 26107                          Algeria 1864           0
## 26108                 Americas (other) 1864     4884112
## 26109                          Andorra 1864           0
## 26110                           Angola 1864           0
## 26111                         Anguilla 1864           0
## 26112              Antarctic Fisheries 1864           0
## 26113              Antigua and Barbuda 1864           0
## 26114                        Argentina 1864           0
## 26115                          Armenia 1864           0
## 26116                            Aruba 1864           0
## 26117         Asia and Pacific (other) 1864     6129872
## 26118                        Australia 1864     1810016
## 26119                          Austria 1864    97942384
## 26120                       Azerbaijan 1864           0
## 26121                          Bahamas 1864           0
## 26122                          Bahrain 1864           0
## 26123                       Bangladesh 1864           0
## 26124                         Barbados 1864           0
## 26125                          Belarus 1864           0
## 26126                          Belgium 1864   349937648
## 26127                           Belize 1864           0
## 26128                            Benin 1864           0
## 26129                          Bermuda 1864           0
## 26130                           Bhutan 1864           0
## 26131                          Bolivia 1864           0
## 26132  Bonaire Sint Eustatius and Saba 1864           0
## 26133           Bosnia and Herzegovina 1864           0
## 26134                         Botswana 1864           0
## 26135                           Brazil 1864           0
## 26136           British Virgin Islands 1864           0
## 26137                           Brunei 1864           0
## 26138                         Bulgaria 1864           0
## 26139                     Burkina Faso 1864           0
## 26140                          Burundi 1864           0
## 26141                         Cambodia 1864           0
## 26142                         Cameroon 1864           0
## 26143                           Canada 1864     4880448
## 26144                       Cape Verde 1864           0
## 26145                   Cayman Islands 1864           0
## 26146         Central African Republic 1864           0
## 26147                             Chad 1864           0
## 26148                            Chile 1864           0
## 26149                            China 1864           0
## 26150                 Christmas Island 1864           0
## 26151                         Colombia 1864           0
## 26152                          Comoros 1864           0
## 26153                            Congo 1864           0
## 26154                     Cook Islands 1864           0
## 26155                       Costa Rica 1864           0
## 26156                    Cote d'Ivoire 1864           0
## 26157                          Croatia 1864           0
## 26158                             Cuba 1864           0
## 26159                          Curacao 1864           0
## 26160                           Cyprus 1864           0
## 26161                   Czech Republic 1864           0
## 26162                   Czechoslovakia 1864     7478224
## 26163     Democratic Republic of Congo 1864           0
## 26164                          Denmark 1864     9577696
## 26165                         Djibouti 1864           0
## 26166                         Dominica 1864           0
## 26167               Dominican Republic 1864           0
## 26168                            EU-28 1864  8052482720
## 26169                          Ecuador 1864           0
## 26170                            Egypt 1864           0
## 26171                      El Salvador 1864           0
## 26172                Equatorial Guinea 1864           0
## 26173                          Eritrea 1864           0
## 26174                          Estonia 1864           0
## 26175                         Ethiopia 1864           0
## 26176                   Europe (other) 1864    20932432
## 26177                   Faeroe Islands 1864           0
## 26178                 Falkland Islands 1864           0
## 26179                             Fiji 1864           0
## 26180                          Finland 1864      307776
## 26181                           France 1864   823069968
## 26182                    French Guiana 1864           0
## 26183                 French Polynesia 1864           0
## 26184                            Gabon 1864           0
## 26185                           Gambia 1864           0
## 26186                          Georgia 1864           0
## 26187                          Germany 1864   727007216
## 26188                            Ghana 1864           0
## 26189                        Gibraltar 1864           0
## 26190                           Greece 1864           0
## 26191                        Greenland 1864           0
## 26192                          Grenada 1864           0
## 26193                       Guadeloupe 1864           0
## 26194                        Guatemala 1864           0
## 26195                           Guinea 1864           0
## 26196                    Guinea-Bissau 1864           0
## 26197                           Guyana 1864           0
## 26198                            Haiti 1864           0
## 26199                         Honduras 1864           0
## 26200                        Hong Kong 1864           0
## 26201                          Hungary 1864    11233824
## 26202                          Iceland 1864           0
## 26203                            India 1864     4319856
## 26204                        Indonesia 1864           0
## 26205                             Iran 1864           0
## 26206                             Iraq 1864           0
## 26207                          Ireland 1864      395712
## 26208                           Israel 1864           0
## 26209                            Italy 1864     4601984
## 26210                          Jamaica 1864           0
## 26211                            Japan 1864           0
## 26212                           Jordan 1864           0
## 26213                       Kazakhstan 1864           0
## 26214                            Kenya 1864           0
## 26215                         Kiribati 1864           0
## 26216                           Kuwait 1864           0
## 26217                       Kyrgysztan 1864           0
## 26218                       Kyrgyzstan 1864           0
## 26219                             Laos 1864           0
## 26220                           Latvia 1864           0
## 26221                          Lebanon 1864           0
## 26222                          Lesotho 1864           0
## 26223                          Liberia 1864           0
## 26224                            Libya 1864           0
## 26225                    Liechtenstein 1864           0
## 26226                        Lithuania 1864           0
## 26227                       Luxembourg 1864           0
## 26228                            Macao 1864           0
## 26229                        Macedonia 1864           0
## 26230                       Madagascar 1864           0
## 26231                           Malawi 1864           0
## 26232                         Malaysia 1864           0
## 26233                         Maldives 1864           0
## 26234                             Mali 1864           0
## 26235                            Malta 1864           0
## 26236                 Marshall Islands 1864           0
## 26237                       Martinique 1864           0
## 26238                       Mauritania 1864           0
## 26239                        Mauritius 1864           0
## 26240                           Mexico 1864           0
## 26241             Micronesia (country) 1864           0
## 26242                      Middle East 1864           0
## 26243                          Moldova 1864           0
## 26244                         Mongolia 1864           0
## 26245                       Montenegro 1864           0
## 26246                       Montserrat 1864           0
## 26247                          Morocco 1864           0
## 26248                       Mozambique 1864           0
## 26249                          Myanmar 1864           0
## 26250                          Namibia 1864           0
## 26251                            Nauru 1864           0
## 26252                            Nepal 1864           0
## 26253                      Netherlands 1864    77035600
## 26254                    New Caledonia 1864           0
## 26255                      New Zealand 1864           0
## 26256                        Nicaragua 1864           0
## 26257                            Niger 1864           0
## 26258                          Nigeria 1864           0
## 26259                             Niue 1864           0
## 26260                      North Korea 1864           0
## 26261                           Norway 1864     5287152
## 26262                             Oman 1864           0
## 26263                         Pakistan 1864           0
## 26264                            Palau 1864           0
## 26265                        Palestine 1864           0
## 26266                           Panama 1864           0
## 26267                 Papua New Guinea 1864           0
## 26268                         Paraguay 1864           0
## 26269                             Peru 1864           0
## 26270                      Philippines 1864           0
## 26271                           Poland 1864   158746464
## 26272                         Portugal 1864           0
## 26273                            Qatar 1864           0
## 26274                          Reunion 1864           0
## 26275                          Romania 1864       54960
## 26276                           Russia 1864           0
## 26277                           Rwanda 1864           0
## 26278                     Saint Helena 1864           0
## 26279            Saint Kitts and Nevis 1864           0
## 26280                      Saint Lucia 1864           0
## 26281        Saint Pierre and Miquelon 1864           0
## 26282 Saint Vincent and the Grenadines 1864           0
## 26283                            Samoa 1864           0
## 26284            Sao Tome and Principe 1864           0
## 26285                     Saudi Arabia 1864           0
## 26286                          Senegal 1864           0
## 26287                           Serbia 1864           0
## 26288                       Seychelles 1864           0
## 26289                     Sierra Leone 1864           0
## 26290                        Singapore 1864           0
## 26291        Sint Maarten (Dutch part) 1864           0
## 26292                         Slovakia 1864           0
## 26293                         Slovenia 1864           0
## 26294                  Solomon Islands 1864           0
## 26295                          Somalia 1864           0
## 26296                     South Africa 1864           0
## 26297                      South Korea 1864           0
## 26298                      South Sudan 1864           0
## 26299                            Spain 1864    20815184
## 26300                        Sri Lanka 1864           0
## 26301                            Sudan 1864           0
## 26302                         Suriname 1864           0
## 26303                        Swaziland 1864           0
## 26304                           Sweden 1864     9574032
## 26305                      Switzerland 1864     2590448
## 26306                            Syria 1864           0
## 26307                           Taiwan 1864           0
## 26308                       Tajikistan 1864           0
## 26309                         Tanzania 1864           0
## 26310                         Thailand 1864           0
## 26311                            Timor 1864           0
## 26312                             Togo 1864           0
## 26313                            Tonga 1864           0
## 26314              Trinidad and Tobago 1864           0
## 26315                          Tunisia 1864           0
## 26316                           Turkey 1864           0
## 26317                     Turkmenistan 1864           0
## 26318         Turks and Caicos Islands 1864           0
## 26319                           Tuvalu 1864           0
## 26320                           Uganda 1864           0
## 26321                          Ukraine 1864           0
## 26322             United Arab Emirates 1864           0
## 26323                   United Kingdom 1864  5762182272
## 26324                    United States 1864   764973584
## 26325                          Uruguay 1864           0
## 26326                       Uzbekistan 1864           0
## 26327                          Vanuatu 1864           0
## 26328                        Venezuela 1864           0
## 26329                          Vietnam 1864           0
## 26330        Wallis and Futuna Islands 1864           0
## 26331                            World 1864  8847889488
## 26332                            Yemen 1864           0
## 26333                           Zambia 1864           0
## 26334                         Zimbabwe 1864           0
## 26335                      Afghanistan 1865           0
## 26336                           Africa 1865           0
## 26337                          Albania 1865           0
## 26338                          Algeria 1865           0
## 26339                 Americas (other) 1865     5902704
## 26340                          Andorra 1865           0
## 26341                           Angola 1865           0
## 26342                         Anguilla 1865           0
## 26343              Antarctic Fisheries 1865           0
## 26344              Antigua and Barbuda 1865           0
## 26345                        Argentina 1865           0
## 26346                          Armenia 1865           0
## 26347                            Aruba 1865           0
## 26348         Asia and Pacific (other) 1865     7177776
## 26349                        Australia 1865     2231376
## 26350                          Austria 1865   103295488
## 26351                       Azerbaijan 1865           0
## 26352                          Bahamas 1865           0
## 26353                          Bahrain 1865           0
## 26354                       Bangladesh 1865           0
## 26355                         Barbados 1865           0
## 26356                          Belarus 1865           0
## 26357                          Belgium 1865   368997776
## 26358                           Belize 1865           0
## 26359                            Benin 1865           0
## 26360                          Bermuda 1865           0
## 26361                           Bhutan 1865           0
## 26362                          Bolivia 1865           0
## 26363  Bonaire Sint Eustatius and Saba 1865           0
## 26364           Bosnia and Herzegovina 1865           0
## 26365                         Botswana 1865           0
## 26366                           Brazil 1865           0
## 26367           British Virgin Islands 1865           0
## 26368                           Brunei 1865           0
## 26369                         Bulgaria 1865           0
## 26370                     Burkina Faso 1865           0
## 26371                          Burundi 1865           0
## 26372                         Cambodia 1865           0
## 26373                         Cameroon 1865           0
## 26374                           Canada 1865     5899040
## 26375                       Cape Verde 1865           0
## 26376                   Cayman Islands 1865           0
## 26377         Central African Republic 1865           0
## 26378                             Chad 1865           0
## 26379                            Chile 1865           0
## 26380                            China 1865           0
## 26381                 Christmas Island 1865           0
## 26382                         Colombia 1865           0
## 26383                          Comoros 1865           0
## 26384                            Congo 1865           0
## 26385                     Cook Islands 1865           0
## 26386                       Costa Rica 1865           0
## 26387                    Cote d'Ivoire 1865           0
## 26388                          Croatia 1865           0
## 26389                             Cuba 1865           0
## 26390                          Curacao 1865           0
## 26391                           Cyprus 1865           0
## 26392                   Czech Republic 1865           0
## 26393                   Czechoslovakia 1865    10819792
## 26394     Democratic Republic of Congo 1865           0
## 26395                          Denmark 1865    10592624
## 26396                         Djibouti 1865           0
## 26397                         Dominica 1865           0
## 26398               Dominican Republic 1865           0
## 26399                            EU-28 1865  8418428384
## 26400                          Ecuador 1865           0
## 26401                            Egypt 1865           0
## 26402                      El Salvador 1865           0
## 26403                Equatorial Guinea 1865           0
## 26404                          Eritrea 1865           0
## 26405                          Estonia 1865           0
## 26406                         Ethiopia 1865           0
## 26407                   Europe (other) 1865    26322176
## 26408                   Faeroe Islands 1865           0
## 26409                 Falkland Islands 1865           0
## 26410                             Fiji 1865           0
## 26411                          Finland 1865      370064
## 26412                           France 1865   872372752
## 26413                    French Guiana 1865           0
## 26414                 French Polynesia 1865           0
## 26415                            Gabon 1865           0
## 26416                           Gambia 1865           0
## 26417                          Georgia 1865           0
## 26418                          Germany 1865   790475024
## 26419                            Ghana 1865           0
## 26420                        Gibraltar 1865           0
## 26421                           Greece 1865           0
## 26422                        Greenland 1865           0
## 26423                          Grenada 1865           0
## 26424                       Guadeloupe 1865           0
## 26425                        Guatemala 1865           0
## 26426                           Guinea 1865           0
## 26427                    Guinea-Bissau 1865           0
## 26428                           Guyana 1865           0
## 26429                            Haiti 1865           0
## 26430                         Honduras 1865           0
## 26431                        Hong Kong 1865           0
## 26432                          Hungary 1865    12490576
## 26433                          Iceland 1865           0
## 26434                            India 1865     4946400
## 26435                        Indonesia 1865           0
## 26436                             Iran 1865           0
## 26437                             Iraq 1865           0
## 26438                          Ireland 1865      395712
## 26439                           Israel 1865           0
## 26440                            Italy 1865     5873392
## 26441                          Jamaica 1865           0
## 26442                            Japan 1865           0
## 26443                           Jordan 1865           0
## 26444                       Kazakhstan 1865           0
## 26445                            Kenya 1865           0
## 26446                         Kiribati 1865           0
## 26447                           Kuwait 1865           0
## 26448                       Kyrgysztan 1865           0
## 26449                       Kyrgyzstan 1865           0
## 26450                             Laos 1865           0
## 26451                           Latvia 1865           0
## 26452                          Lebanon 1865           0
## 26453                          Lesotho 1865           0
## 26454                          Liberia 1865           0
## 26455                            Libya 1865           0
## 26456                    Liechtenstein 1865           0
## 26457                        Lithuania 1865           0
## 26458                       Luxembourg 1865           0
## 26459                            Macao 1865           0
## 26460                        Macedonia 1865           0
## 26461                       Madagascar 1865           0
## 26462                           Malawi 1865           0
## 26463                         Malaysia 1865           0
## 26464                         Maldives 1865           0
## 26465                             Mali 1865           0
## 26466                            Malta 1865           0
## 26467                 Marshall Islands 1865           0
## 26468                       Martinique 1865           0
## 26469                       Mauritania 1865           0
## 26470                        Mauritius 1865           0
## 26471                           Mexico 1865           0
## 26472             Micronesia (country) 1865           0
## 26473                      Middle East 1865      150224
## 26474                          Moldova 1865           0
## 26475                         Mongolia 1865           0
## 26476                       Montenegro 1865           0
## 26477                       Montserrat 1865           0
## 26478                          Morocco 1865           0
## 26479                       Mozambique 1865           0
## 26480                          Myanmar 1865           0
## 26481                          Namibia 1865           0
## 26482                            Nauru 1865           0
## 26483                            Nepal 1865           0
## 26484                      Netherlands 1865    80882800
## 26485                    New Caledonia 1865           0
## 26486                      New Zealand 1865           0
## 26487                        Nicaragua 1865           0
## 26488                            Niger 1865           0
## 26489                          Nigeria 1865           0
## 26490                             Niue 1865           0
## 26491                      North Korea 1865           0
## 26492                           Norway 1865     5759808
## 26493                             Oman 1865           0
## 26494                         Pakistan 1865           0
## 26495                            Palau 1865           0
## 26496                        Palestine 1865           0
## 26497                           Panama 1865           0
## 26498                 Papua New Guinea 1865           0
## 26499                         Paraguay 1865           0
## 26500                             Peru 1865           0
## 26501                      Philippines 1865           0
## 26502                           Poland 1865   171167424
## 26503                         Portugal 1865           0
## 26504                            Qatar 1865           0
## 26505                          Reunion 1865           0
## 26506                          Romania 1865       69616
## 26507                           Russia 1865           0
## 26508                           Rwanda 1865           0
## 26509                     Saint Helena 1865           0
## 26510            Saint Kitts and Nevis 1865           0
## 26511                      Saint Lucia 1865           0
## 26512        Saint Pierre and Miquelon 1865           0
## 26513 Saint Vincent and the Grenadines 1865           0
## 26514                            Samoa 1865           0
## 26515            Sao Tome and Principe 1865           0
## 26516                     Saudi Arabia 1865           0
## 26517                          Senegal 1865           0
## 26518                           Serbia 1865           0
## 26519                       Seychelles 1865           0
## 26520                     Sierra Leone 1865           0
## 26521                        Singapore 1865           0
## 26522        Sint Maarten (Dutch part) 1865           0
## 26523                         Slovakia 1865           0
## 26524                         Slovenia 1865           0
## 26525                  Solomon Islands 1865           0
## 26526                          Somalia 1865           0
## 26527                     South Africa 1865           0
## 26528                      South Korea 1865           0
## 26529                      South Sudan 1865           0
## 26530                            Spain 1865    23119840
## 26531                        Sri Lanka 1865           0
## 26532                            Sudan 1865           0
## 26533                         Suriname 1865           0
## 26534                        Swaziland 1865           0
## 26535                           Sweden 1865    10654912
## 26536                      Switzerland 1865     3286608
## 26537                            Syria 1865           0
## 26538                           Taiwan 1865           0
## 26539                       Tajikistan 1865           0
## 26540                         Tanzania 1865           0
## 26541                         Thailand 1865           0
## 26542                            Timor 1865           0
## 26543                             Togo 1865           0
## 26544                            Tonga 1865           0
## 26545              Trinidad and Tobago 1865           0
## 26546                          Tunisia 1865           0
## 26547                           Turkey 1865      150224
## 26548                     Turkmenistan 1865           0
## 26549         Turks and Caicos Islands 1865           0
## 26550                           Tuvalu 1865           0
## 26551                           Uganda 1865           0
## 26552                          Ukraine 1865           0
## 26553             United Arab Emirates 1865           0
## 26554                   United Kingdom 1865  5967670384
## 26555                    United States 1865   823795440
## 26556                          Uruguay 1865           0
## 26557                       Uzbekistan 1865           0
## 26558                          Vanuatu 1865           0
## 26559                        Venezuela 1865           0
## 26560                          Vietnam 1865           0
## 26561        Wallis and Futuna Islands 1865           0
## 26562                            World 1865  9280256144
## 26563                            Yemen 1865           0
## 26564                           Zambia 1865           0
## 26565                         Zimbabwe 1865           0
## 26566                      Afghanistan 1866           0
## 26567                           Africa 1866           0
## 26568                          Albania 1866           0
## 26569                          Algeria 1866           0
## 26570                 Americas (other) 1866     7144800
## 26571                          Andorra 1866           0
## 26572                           Angola 1866           0
## 26573                         Anguilla 1866           0
## 26574              Antarctic Fisheries 1866           0
## 26575              Antigua and Barbuda 1866           0
## 26576                        Argentina 1866           0
## 26577                          Armenia 1866           0
## 26578                            Aruba 1866           0
## 26579         Asia and Pacific (other) 1866     8581088
## 26580                        Australia 1866     2927536
## 26581                          Austria 1866   106889872
## 26582                       Azerbaijan 1866           0
## 26583                          Bahamas 1866           0
## 26584                          Bahrain 1866           0
## 26585                       Bangladesh 1866           0
## 26586                         Barbados 1866           0
## 26587                          Belarus 1866           0
## 26588                          Belgium 1866   389527168
## 26589                           Belize 1866           0
## 26590                            Benin 1866           0
## 26591                          Bermuda 1866           0
## 26592                           Bhutan 1866           0
## 26593                          Bolivia 1866           0
## 26594  Bonaire Sint Eustatius and Saba 1866           0
## 26595           Bosnia and Herzegovina 1866           0
## 26596                         Botswana 1866           0
## 26597                           Brazil 1866           0
## 26598           British Virgin Islands 1866           0
## 26599                           Brunei 1866           0
## 26600                         Bulgaria 1866           0
## 26601                     Burkina Faso 1866           0
## 26602                          Burundi 1866           0
## 26603                         Cambodia 1866           0
## 26604                         Cameroon 1866           0
## 26605                           Canada 1866     7141136
## 26606                       Cape Verde 1866           0
## 26607                   Cayman Islands 1866           0
## 26608         Central African Republic 1866           0
## 26609                             Chad 1866           0
## 26610                            Chile 1866           0
## 26611                            China 1866           0
## 26612                 Christmas Island 1866           0
## 26613                         Colombia 1866           0
## 26614                          Comoros 1866           0
## 26615                            Congo 1866           0
## 26616                     Cook Islands 1866           0
## 26617                       Costa Rica 1866           0
## 26618                    Cote d'Ivoire 1866           0
## 26619                          Croatia 1866           0
## 26620                             Cuba 1866           0
## 26621                          Curacao 1866           0
## 26622                           Cyprus 1866           0
## 26623                   Czech Republic 1866           0
## 26624                   Czechoslovakia 1866    14776912
## 26625     Democratic Republic of Congo 1866           0
## 26626                          Denmark 1866    11530608
## 26627                         Djibouti 1866           0
## 26628                         Dominica 1866           0
## 26629               Dominican Republic 1866           0
## 26630                            EU-28 1866  8794457376
## 26631                          Ecuador 1866           0
## 26632                            Egypt 1866           0
## 26633                      El Salvador 1866           0
## 26634                Equatorial Guinea 1866           0
## 26635                          Eritrea 1866           0
## 26636                          Estonia 1866           0
## 26637                         Ethiopia 1866           0
## 26638                   Europe (other) 1866    34240080
## 26639                   Faeroe Islands 1866           0
## 26640                 Falkland Islands 1866           0
## 26641                             Fiji 1866           0
## 26642                          Finland 1866      439680
## 26643                           France 1866   925933104
## 26644                    French Guiana 1866           0
## 26645                 French Polynesia 1866           0
## 26646                            Gabon 1866           0
## 26647                           Gambia 1866           0
## 26648                          Georgia 1866           0
## 26649                          Germany 1866   853382240
## 26650                            Ghana 1866           0
## 26651                        Gibraltar 1866           0
## 26652                           Greece 1866           0
## 26653                        Greenland 1866           0
## 26654                          Grenada 1866           0
## 26655                       Guadeloupe 1866           0
## 26656                        Guatemala 1866           0
## 26657                           Guinea 1866           0
## 26658                    Guinea-Bissau 1866           0
## 26659                           Guyana 1866           0
## 26660                            Haiti 1866           0
## 26661                         Honduras 1866           0
## 26662                        Hong Kong 1866           0
## 26663                          Hungary 1866    13919536
## 26664                          Iceland 1866           0
## 26665                            India 1866     5653552
## 26666                        Indonesia 1866           0
## 26667                             Iran 1866           0
## 26668                             Iraq 1866           0
## 26669                          Ireland 1866      395712
## 26670                           Israel 1866           0
## 26671                            Italy 1866     7349984
## 26672                          Jamaica 1866           0
## 26673                            Japan 1866           0
## 26674                           Jordan 1866           0
## 26675                       Kazakhstan 1866           0
## 26676                            Kenya 1866           0
## 26677                         Kiribati 1866           0
## 26678                           Kuwait 1866           0
## 26679                       Kyrgysztan 1866           0
## 26680                       Kyrgyzstan 1866           0
## 26681                             Laos 1866           0
## 26682                           Latvia 1866           0
## 26683                          Lebanon 1866           0
## 26684                          Lesotho 1866           0
## 26685                          Liberia 1866           0
## 26686                            Libya 1866           0
## 26687                    Liechtenstein 1866           0
## 26688                        Lithuania 1866           0
## 26689                       Luxembourg 1866           0
## 26690                            Macao 1866           0
## 26691                        Macedonia 1866           0
## 26692                       Madagascar 1866           0
## 26693                           Malawi 1866           0
## 26694                         Malaysia 1866           0
## 26695                         Maldives 1866           0
## 26696                             Mali 1866           0
## 26697                            Malta 1866           0
## 26698                 Marshall Islands 1866           0
## 26699                       Martinique 1866           0
## 26700                       Mauritania 1866           0
## 26701                        Mauritius 1866           0
## 26702                           Mexico 1866           0
## 26703             Micronesia (country) 1866           0
## 26704                      Middle East 1866      359072
## 26705                          Moldova 1866           0
## 26706                         Mongolia 1866           0
## 26707                       Montenegro 1866           0
## 26708                       Montserrat 1866           0
## 26709                          Morocco 1866           0
## 26710                       Mozambique 1866           0
## 26711                          Myanmar 1866           0
## 26712                          Namibia 1866           0
## 26713                            Nauru 1866           0
## 26714                            Nepal 1866           0
## 26715                      Netherlands 1866    85100064
## 26716                    New Caledonia 1866           0
## 26717                      New Zealand 1866           0
## 26718                        Nicaragua 1866           0
## 26719                            Niger 1866           0
## 26720                          Nigeria 1866           0
## 26721                             Niue 1866           0
## 26722                      North Korea 1866           0
## 26723                           Norway 1866     6280096
## 26724                             Oman 1866           0
## 26725                         Pakistan 1866           0
## 26726                            Palau 1866           0
## 26727                        Palestine 1866           0
## 26728                           Panama 1866           0
## 26729                 Papua New Guinea 1866           0
## 26730                         Paraguay 1866           0
## 26731                             Peru 1866           0
## 26732                      Philippines 1866           0
## 26733                           Poland 1866   183320912
## 26734                         Portugal 1866           0
## 26735                            Qatar 1866           0
## 26736                          Reunion 1866           0
## 26737                          Romania 1866       87936
## 26738                           Russia 1866           0
## 26739                           Rwanda 1866           0
## 26740                     Saint Helena 1866           0
## 26741            Saint Kitts and Nevis 1866           0
## 26742                      Saint Lucia 1866           0
## 26743        Saint Pierre and Miquelon 1866           0
## 26744 Saint Vincent and the Grenadines 1866           0
## 26745                            Samoa 1866           0
## 26746            Sao Tome and Principe 1866           0
## 26747                     Saudi Arabia 1866           0
## 26748                          Senegal 1866           0
## 26749                           Serbia 1866           0
## 26750                       Seychelles 1866           0
## 26751                     Sierra Leone 1866           0
## 26752                        Singapore 1866           0
## 26753        Sint Maarten (Dutch part) 1866           0
## 26754                         Slovakia 1866           0
## 26755                         Slovenia 1866           0
## 26756                  Solomon Islands 1866           0
## 26757                          Somalia 1866           0
## 26758                     South Africa 1866           0
## 26759                      South Korea 1866           0
## 26760                      South Sudan 1866           0
## 26761                            Spain 1866    25409840
## 26762                        Sri Lanka 1866           0
## 26763                            Sudan 1866           0
## 26764                         Suriname 1866           0
## 26765                        Swaziland 1866           0
## 26766                           Sweden 1866    11768768
## 26767                      Switzerland 1866     3975440
## 26768                            Syria 1866           0
## 26769                           Taiwan 1866           0
## 26770                       Tajikistan 1866           0
## 26771                         Tanzania 1866           0
## 26772                         Thailand 1866           0
## 26773                            Timor 1866           0
## 26774                             Togo 1866           0
## 26775                            Tonga 1866           0
## 26776              Trinidad and Tobago 1866           0
## 26777                          Tunisia 1866           0
## 26778                           Turkey 1866      359072
## 26779                     Turkmenistan 1866           0
## 26780         Turks and Caicos Islands 1866           0
## 26781                           Tuvalu 1866           0
## 26782                           Uganda 1866           0
## 26783                          Ukraine 1866           0
## 26784             United Arab Emirates 1866           0
## 26785                   United Kingdom 1866  6179401952
## 26786                    United States 1866   883027664
## 26787                          Uruguay 1866           0
## 26788                       Uzbekistan 1866           0
## 26789                          Vanuatu 1866           0
## 26790                        Venezuela 1866           0
## 26791                          Vietnam 1866           0
## 26792        Wallis and Futuna Islands 1866           0
## 26793                            World 1866  9726293184
## 26794                            Yemen 1866           0
## 26795                           Zambia 1866           0
## 26796                         Zimbabwe 1866           0
## 26797                      Afghanistan 1867           0
## 26798                           Africa 1867           0
## 26799                          Albania 1867           0
## 26800                          Algeria 1867           0
## 26801                 Americas (other) 1867     8738640
## 26802                          Andorra 1867           0
## 26803                           Angola 1867           0
## 26804                         Anguilla 1867           0
## 26805              Antarctic Fisheries 1867           0
## 26806              Antigua and Barbuda 1867           0
## 26807                        Argentina 1867           0
## 26808                          Armenia 1867           0
## 26809                            Aruba 1867           0
## 26810         Asia and Pacific (other) 1867    11428016
## 26811                        Australia 1867     3821552
## 26812                          Austria 1867   111803296
## 26813                       Azerbaijan 1867           0
## 26814                          Bahamas 1867           0
## 26815                          Bahrain 1867           0
## 26816                       Bangladesh 1867           0
## 26817                         Barbados 1867           0
## 26818                          Belarus 1867           0
## 26819                          Belgium 1867   411760320
## 26820                           Belize 1867           0
## 26821                            Benin 1867           0
## 26822                          Bermuda 1867           0
## 26823                           Bhutan 1867           0
## 26824                          Bolivia 1867           0
## 26825  Bonaire Sint Eustatius and Saba 1867           0
## 26826           Bosnia and Herzegovina 1867           0
## 26827                         Botswana 1867           0
## 26828                           Brazil 1867           0
## 26829           British Virgin Islands 1867           0
## 26830                           Brunei 1867           0
## 26831                         Bulgaria 1867           0
## 26832                     Burkina Faso 1867           0
## 26833                          Burundi 1867           0
## 26834                         Cambodia 1867           0
## 26835                         Cameroon 1867           0
## 26836                           Canada 1867     8734976
## 26837                       Cape Verde 1867           0
## 26838                   Cayman Islands 1867           0
## 26839         Central African Republic 1867           0
## 26840                             Chad 1867           0
## 26841                            Chile 1867           0
## 26842                            China 1867           0
## 26843                 Christmas Island 1867           0
## 26844                         Colombia 1867           0
## 26845                          Comoros 1867           0
## 26846                            Congo 1867           0
## 26847                     Cook Islands 1867           0
## 26848                       Costa Rica 1867           0
## 26849                    Cote d'Ivoire 1867           0
## 26850                          Croatia 1867           0
## 26851                             Cuba 1867           0
## 26852                          Curacao 1867           0
## 26853                           Cyprus 1867           0
## 26854                   Czech Republic 1867           0
## 26855                   Czechoslovakia 1867    19345920
## 26856     Democratic Republic of Congo 1867           0
## 26857                          Denmark 1867    12446608
## 26858                         Djibouti 1867           0
## 26859                         Dominica 1867           0
## 26860               Dominican Republic 1867           0
## 26861                            EU-28 1867  9187666864
## 26862                          Ecuador 1867           0
## 26863                            Egypt 1867           0
## 26864                      El Salvador 1867           0
## 26865                Equatorial Guinea 1867           0
## 26866                          Eritrea 1867           0
## 26867                          Estonia 1867           0
## 26868                         Ethiopia 1867           0
## 26869                   Europe (other) 1867    43264512
## 26870                   Faeroe Islands 1867           0
## 26871                 Falkland Islands 1867           0
## 26872                             Fiji 1867           0
## 26873                          Finland 1867      501968
## 26874                           France 1867   980211600
## 26875                    French Guiana 1867           0
## 26876                 French Polynesia 1867           0
## 26877                            Gabon 1867           0
## 26878                           Gambia 1867           0
## 26879                          Georgia 1867           0
## 26880                          Germany 1867   922536576
## 26881                            Ghana 1867           0
## 26882                        Gibraltar 1867           0
## 26883                           Greece 1867      168544
## 26884                        Greenland 1867           0
## 26885                          Grenada 1867           0
## 26886                       Guadeloupe 1867           0
## 26887                        Guatemala 1867           0
## 26888                           Guinea 1867           0
## 26889                    Guinea-Bissau 1867           0
## 26890                           Guyana 1867           0
## 26891                            Haiti 1867           0
## 26892                         Honduras 1867           0
## 26893                        Hong Kong 1867           0
## 26894                          Hungary 1867    15608640
## 26895                          Iceland 1867           0
## 26896                            India 1867     5653552
## 26897                        Indonesia 1867           0
## 26898                             Iran 1867           0
## 26899                             Iraq 1867           0
## 26900                          Ireland 1867      395712
## 26901                           Israel 1867           0
## 26902                            Italy 1867     8819248
## 26903                          Jamaica 1867           0
## 26904                            Japan 1867           0
## 26905                           Jordan 1867           0
## 26906                       Kazakhstan 1867           0
## 26907                            Kenya 1867           0
## 26908                         Kiribati 1867           0
## 26909                           Kuwait 1867           0
## 26910                       Kyrgysztan 1867           0
## 26911                       Kyrgyzstan 1867           0
## 26912                             Laos 1867           0
## 26913                           Latvia 1867           0
## 26914                          Lebanon 1867           0
## 26915                          Lesotho 1867           0
## 26916                          Liberia 1867           0
## 26917                            Libya 1867           0
## 26918                    Liechtenstein 1867           0
## 26919                        Lithuania 1867           0
## 26920                       Luxembourg 1867           0
## 26921                            Macao 1867           0
## 26922                        Macedonia 1867           0
## 26923                       Madagascar 1867           0
## 26924                           Malawi 1867           0
## 26925                         Malaysia 1867           0
## 26926                         Maldives 1867           0
## 26927                             Mali 1867           0
## 26928                            Malta 1867           0
## 26929                 Marshall Islands 1867           0
## 26930                       Martinique 1867           0
## 26931                       Mauritania 1867           0
## 26932                        Mauritius 1867           0
## 26933                           Mexico 1867           0
## 26934             Micronesia (country) 1867           0
## 26935                      Middle East 1867      586240
## 26936                          Moldova 1867           0
## 26937                         Mongolia 1867           0
## 26938                       Montenegro 1867           0
## 26939                       Montserrat 1867           0
## 26940                          Morocco 1867           0
## 26941                       Mozambique 1867           0
## 26942                          Myanmar 1867           0
## 26943                          Namibia 1867           0
## 26944                            Nauru 1867           0
## 26945                            Nepal 1867           0
## 26946                      Netherlands 1867    89141456
## 26947                    New Caledonia 1867           0
## 26948                      New Zealand 1867           0
## 26949                        Nicaragua 1867           0
## 26950                            Niger 1867           0
## 26951                          Nigeria 1867           0
## 26952                             Niue 1867           0
## 26953                      North Korea 1867           0
## 26954                           Norway 1867     6899312
## 26955                             Oman 1867           0
## 26956                         Pakistan 1867           0
## 26957                            Palau 1867           0
## 26958                        Palestine 1867           0
## 26959                           Panama 1867           0
## 26960                 Papua New Guinea 1867           0
## 26961                         Paraguay 1867           0
## 26962                             Peru 1867           0
## 26963                      Philippines 1867           0
## 26964                           Poland 1867   196613904
## 26965                         Portugal 1867           0
## 26966                            Qatar 1867           0
## 26967                          Reunion 1867           0
## 26968                          Romania 1867      109920
## 26969                           Russia 1867           0
## 26970                           Rwanda 1867           0
## 26971                     Saint Helena 1867           0
## 26972            Saint Kitts and Nevis 1867           0
## 26973                      Saint Lucia 1867           0
## 26974        Saint Pierre and Miquelon 1867           0
## 26975 Saint Vincent and the Grenadines 1867           0
## 26976                            Samoa 1867           0
## 26977            Sao Tome and Principe 1867           0
## 26978                     Saudi Arabia 1867           0
## 26979                          Senegal 1867           0
## 26980                           Serbia 1867           0
## 26981                       Seychelles 1867           0
## 26982                     Sierra Leone 1867           0
## 26983                        Singapore 1867           0
## 26984        Sint Maarten (Dutch part) 1867           0
## 26985                         Slovakia 1867           0
## 26986                         Slovenia 1867           0
## 26987                  Solomon Islands 1867           0
## 26988                          Somalia 1867           0
## 26989                     South Africa 1867           0
## 26990                      South Korea 1867           0
## 26991                      South Sudan 1867           0
## 26992                            Spain 1867    27967312
## 26993                        Sri Lanka 1867           0
## 26994                            Sudan 1867           0
## 26995                         Suriname 1867           0
## 26996                        Swaziland 1867           0
## 26997                           Sweden 1867    12805680
## 26998                      Switzerland 1867     4649616
## 26999                            Syria 1867           0
## 27000                           Taiwan 1867           0
## 27001                       Tajikistan 1867           0
## 27002                         Tanzania 1867           0
## 27003                         Thailand 1867           0
## 27004                            Timor 1867           0
## 27005                             Togo 1867           0
## 27006                            Tonga 1867           0
## 27007              Trinidad and Tobago 1867           0
## 27008                          Tunisia 1867           0
## 27009                           Turkey 1867      586240
## 27010                     Turkmenistan 1867           0
## 27011         Turks and Caicos Islands 1867           0
## 27012                           Tuvalu 1867           0
## 27013                           Uganda 1867           0
## 27014                          Ukraine 1867           0
## 27015             United Arab Emirates 1867           0
## 27016                   United Kingdom 1867  6396776080
## 27017                    United States 1867   955893632
## 27018                          Uruguay 1867           0
## 27019                       Uzbekistan 1867           0
## 27020                          Vanuatu 1867           0
## 27021                        Venezuela 1867           0
## 27022                          Vietnam 1867           0
## 27023        Wallis and Futuna Islands 1867           0
## 27024                            World 1867 10204108096
## 27025                            Yemen 1867           0
## 27026                           Zambia 1867           0
## 27027                         Zimbabwe 1867           0
## 27028                      Afghanistan 1868           0
## 27029                           Africa 1868           0
## 27030                          Albania 1868           0
## 27031                          Algeria 1868           0
## 27032                 Americas (other) 1868     9680288
## 27033                          Andorra 1868           0
## 27034                           Angola 1868           0
## 27035                         Anguilla 1868           0
## 27036              Antarctic Fisheries 1868           0
## 27037              Antigua and Barbuda 1868           0
## 27038                        Argentina 1868           0
## 27039                          Armenia 1868           0
## 27040                            Aruba 1868           0
## 27041         Asia and Pacific (other) 1868    14025792
## 27042                        Australia 1868     4554352
## 27043                          Austria 1868   117874544
## 27044                       Azerbaijan 1868           0
## 27045                          Bahamas 1868           0
## 27046                          Bahrain 1868           0
## 27047                       Bangladesh 1868           0
## 27048                         Barbados 1868           0
## 27049                          Belarus 1868           0
## 27050                          Belgium 1868   431861024
## 27051                           Belize 1868           0
## 27052                            Benin 1868           0
## 27053                          Bermuda 1868           0
## 27054                           Bhutan 1868           0
## 27055                          Bolivia 1868           0
## 27056  Bonaire Sint Eustatius and Saba 1868           0
## 27057           Bosnia and Herzegovina 1868           0
## 27058                         Botswana 1868           0
## 27059                           Brazil 1868           0
## 27060           British Virgin Islands 1868           0
## 27061                           Brunei 1868           0
## 27062                         Bulgaria 1868           0
## 27063                     Burkina Faso 1868           0
## 27064                          Burundi 1868           0
## 27065                         Cambodia 1868           0
## 27066                         Cameroon 1868           0
## 27067                           Canada 1868     9680288
## 27068                       Cape Verde 1868           0
## 27069                   Cayman Islands 1868           0
## 27070         Central African Republic 1868           0
## 27071                             Chad 1868           0
## 27072                            Chile 1868           0
## 27073                            China 1868           0
## 27074                 Christmas Island 1868           0
## 27075                         Colombia 1868           0
## 27076                          Comoros 1868           0
## 27077                            Congo 1868           0
## 27078                     Cook Islands 1868           0
## 27079                       Costa Rica 1868           0
## 27080                    Cote d'Ivoire 1868           0
## 27081                          Croatia 1868           0
## 27082                             Cuba 1868           0
## 27083                          Curacao 1868           0
## 27084                           Cyprus 1868           0
## 27085                   Czech Republic 1868           0
## 27086                   Czechoslovakia 1868    24530480
## 27087     Democratic Republic of Congo 1868           0
## 27088                          Denmark 1868    13531152
## 27089                         Djibouti 1868           0
## 27090                         Dominica 1868           0
## 27091               Dominican Republic 1868           0
## 27092                            EU-28 1868  9584983696
## 27093                          Ecuador 1868           0
## 27094                            Egypt 1868           0
## 27095                      El Salvador 1868           0
## 27096                Equatorial Guinea 1868           0
## 27097                          Eritrea 1868           0
## 27098                          Estonia 1868           0
## 27099                         Ethiopia 1868           0
## 27100                   Europe (other) 1868    52486800
## 27101                   Faeroe Islands 1868           0
## 27102                 Falkland Islands 1868           0
## 27103                             Fiji 1868           0
## 27104                          Finland 1868      589904
## 27105                           France 1868  1035743184
## 27106                    French Guiana 1868           0
## 27107                 French Polynesia 1868           0
## 27108                            Gabon 1868           0
## 27109                           Gambia 1868           0
## 27110                          Georgia 1868           0
## 27111                          Germany 1868   996904784
## 27112                            Ghana 1868           0
## 27113                        Gibraltar 1868           0
## 27114                           Greece 1868      252816
## 27115                        Greenland 1868           0
## 27116                          Grenada 1868           0
## 27117                       Guadeloupe 1868           0
## 27118                        Guatemala 1868           0
## 27119                           Guinea 1868           0
## 27120                    Guinea-Bissau 1868           0
## 27121                           Guyana 1868           0
## 27122                            Haiti 1868           0
## 27123                         Honduras 1868           0
## 27124                        Hong Kong 1868           0
## 27125                          Hungary 1868    17414992
## 27126                          Iceland 1868           0
## 27127                            India 1868     5653552
## 27128                        Indonesia 1868           0
## 27129                             Iran 1868           0
## 27130                             Iraq 1868           0
## 27131                          Ireland 1868      395712
## 27132                           Israel 1868           0
## 27133                            Italy 1868    10515680
## 27134                          Jamaica 1868           0
## 27135                            Japan 1868       10992
## 27136                           Jordan 1868           0
## 27137                       Kazakhstan 1868           0
## 27138                            Kenya 1868           0
## 27139                         Kiribati 1868           0
## 27140                           Kuwait 1868           0
## 27141                       Kyrgysztan 1868           0
## 27142                       Kyrgyzstan 1868           0
## 27143                             Laos 1868           0
## 27144                           Latvia 1868           0
## 27145                          Lebanon 1868           0
## 27146                          Lesotho 1868           0
## 27147                          Liberia 1868           0
## 27148                            Libya 1868           0
## 27149                    Liechtenstein 1868           0
## 27150                        Lithuania 1868           0
## 27151                       Luxembourg 1868           0
## 27152                            Macao 1868           0
## 27153                        Macedonia 1868           0
## 27154                       Madagascar 1868           0
## 27155                           Malawi 1868           0
## 27156                         Malaysia 1868           0
## 27157                         Maldives 1868           0
## 27158                             Mali 1868           0
## 27159                            Malta 1868           0
## 27160                 Marshall Islands 1868           0
## 27161                       Martinique 1868           0
## 27162                       Mauritania 1868           0
## 27163                        Mauritius 1868           0
## 27164                           Mexico 1868           0
## 27165             Micronesia (country) 1868           0
## 27166                      Middle East 1868      762112
## 27167                          Moldova 1868           0
## 27168                         Mongolia 1868           0
## 27169                       Montenegro 1868           0
## 27170                       Montserrat 1868           0
## 27171                          Morocco 1868           0
## 27172                       Mozambique 1868           0
## 27173                          Myanmar 1868           0
## 27174                          Namibia 1868           0
## 27175                            Nauru 1868           0
## 27176                            Nepal 1868           0
## 27177                      Netherlands 1868    93380704
## 27178                    New Caledonia 1868           0
## 27179                      New Zealand 1868           0
## 27180                        Nicaragua 1868           0
## 27181                            Niger 1868           0
## 27182                          Nigeria 1868           0
## 27183                             Niue 1868           0
## 27184                      North Korea 1868           0
## 27185                           Norway 1868     7533184
## 27186                             Oman 1868           0
## 27187                         Pakistan 1868           0
## 27188                            Palau 1868           0
## 27189                        Palestine 1868           0
## 27190                           Panama 1868           0
## 27191                 Papua New Guinea 1868           0
## 27192                         Paraguay 1868           0
## 27193                             Peru 1868           0
## 27194                      Philippines 1868           0
## 27195                           Poland 1868   211731568
## 27196                         Portugal 1868           0
## 27197                            Qatar 1868           0
## 27198                          Reunion 1868           0
## 27199                          Romania 1868      135568
## 27200                           Russia 1868           0
## 27201                           Rwanda 1868           0
## 27202                     Saint Helena 1868           0
## 27203            Saint Kitts and Nevis 1868           0
## 27204                      Saint Lucia 1868           0
## 27205        Saint Pierre and Miquelon 1868           0
## 27206 Saint Vincent and the Grenadines 1868           0
## 27207                            Samoa 1868           0
## 27208            Sao Tome and Principe 1868           0
## 27209                     Saudi Arabia 1868           0
## 27210                          Senegal 1868           0
## 27211                           Serbia 1868           0
## 27212                       Seychelles 1868           0
## 27213                     Sierra Leone 1868           0
## 27214                        Singapore 1868           0
## 27215        Sint Maarten (Dutch part) 1868           0
## 27216                         Slovakia 1868           0
## 27217                         Slovenia 1868           0
## 27218                  Solomon Islands 1868           0
## 27219                          Somalia 1868           0
## 27220                     South Africa 1868           0
## 27221                      South Korea 1868           0
## 27222                      South Sudan 1868           0
## 27223                            Spain 1868    30627376
## 27224                        Sri Lanka 1868           0
## 27225                            Sudan 1868           0
## 27226                         Suriname 1868           0
## 27227                        Swaziland 1868           0
## 27228                           Sweden 1868    14029456
## 27229                      Switzerland 1868     5419056
## 27230                            Syria 1868           0
## 27231                           Taiwan 1868           0
## 27232                       Tajikistan 1868           0
## 27233                         Tanzania 1868           0
## 27234                         Thailand 1868           0
## 27235                            Timor 1868           0
## 27236                             Togo 1868           0
## 27237                            Tonga 1868           0
## 27238              Trinidad and Tobago 1868           0
## 27239                          Tunisia 1868           0
## 27240                           Turkey 1868      762112
## 27241                     Turkmenistan 1868           0
## 27242         Turks and Caicos Islands 1868           0
## 27243                           Tuvalu 1868           0
## 27244                           Uganda 1868           0
## 27245                          Ukraine 1868           0
## 27246             United Arab Emirates 1868           0
## 27247                   United Kingdom 1868  6609995232
## 27248                    United States 1868  1038245696
## 27249                          Uruguay 1868           0
## 27250                       Uzbekistan 1868           0
## 27251                          Vanuatu 1868           0
## 27252                        Venezuela 1868           0
## 27253                          Vietnam 1868           0
## 27254        Wallis and Futuna Islands 1868           0
## 27255                            World 1868 10694860592
## 27256                            Yemen 1868           0
## 27257                           Zambia 1868           0
## 27258                         Zimbabwe 1868           0
## 27259                      Afghanistan 1869           0
## 27260                           Africa 1869           0
## 27261                          Albania 1869           0
## 27262                          Algeria 1869           0
## 27263                 Americas (other) 1869    10365456
## 27264                          Andorra 1869           0
## 27265                           Angola 1869           0
## 27266                         Anguilla 1869           0
## 27267              Antarctic Fisheries 1869           0
## 27268              Antigua and Barbuda 1869           0
## 27269                        Argentina 1869           0
## 27270                          Armenia 1869           0
## 27271                            Aruba 1869           0
## 27272         Asia and Pacific (other) 1869    16759136
## 27273                        Australia 1869     5195552
## 27274                          Austria 1869   124359824
## 27275                       Azerbaijan 1869           0
## 27276                          Bahamas 1869           0
## 27277                          Bahrain 1869           0
## 27278                       Bangladesh 1869           0
## 27279                         Barbados 1869           0
## 27280                          Belarus 1869           0
## 27281                          Belgium 1869   453511600
## 27282                           Belize 1869           0
## 27283                            Benin 1869           0
## 27284                          Bermuda 1869           0
## 27285                           Bhutan 1869           0
## 27286                          Bolivia 1869           0
## 27287  Bonaire Sint Eustatius and Saba 1869           0
## 27288           Bosnia and Herzegovina 1869           0
## 27289                         Botswana 1869           0
## 27290                           Brazil 1869           0
## 27291           British Virgin Islands 1869           0
## 27292                           Brunei 1869           0
## 27293                         Bulgaria 1869           0
## 27294                     Burkina Faso 1869           0
## 27295                          Burundi 1869           0
## 27296                         Cambodia 1869           0
## 27297                         Cameroon 1869           0
## 27298                           Canada 1869    10365456
## 27299                       Cape Verde 1869           0
## 27300                   Cayman Islands 1869           0
## 27301         Central African Republic 1869           0
## 27302                             Chad 1869           0
## 27303                            Chile 1869           0
## 27304                            China 1869           0
## 27305                 Christmas Island 1869           0
## 27306                         Colombia 1869           0
## 27307                          Comoros 1869           0
## 27308                            Congo 1869           0
## 27309                     Cook Islands 1869           0
## 27310                       Costa Rica 1869           0
## 27311                    Cote d'Ivoire 1869           0
## 27312                          Croatia 1869           0
## 27313                             Cuba 1869           0
## 27314                          Curacao 1869           0
## 27315                           Cyprus 1869           0
## 27316                   Czech Republic 1869           0
## 27317                   Czechoslovakia 1869    30330592
## 27318     Democratic Republic of Congo 1869           0
## 27319                          Denmark 1869    14476464
## 27320                         Djibouti 1869           0
## 27321                         Dominica 1869           0
## 27322               Dominican Republic 1869           0
## 27323                            EU-28 1869 10000140544
## 27324                          Ecuador 1869           0
## 27325                            Egypt 1869           0
## 27326                      El Salvador 1869           0
## 27327                Equatorial Guinea 1869           0
## 27328                          Eritrea 1869           0
## 27329                          Estonia 1869           0
## 27330                         Ethiopia 1869           0
## 27331                   Europe (other) 1869    63149040
## 27332                   Faeroe Islands 1869           0
## 27333                 Falkland Islands 1869           0
## 27334                             Fiji 1869           0
## 27335                          Finland 1869      659520
## 27336                           France 1869  1092685408
## 27337                    French Guiana 1869           0
## 27338                 French Polynesia 1869           0
## 27339                            Gabon 1869           0
## 27340                           Gambia 1869           0
## 27341                          Georgia 1869           0
## 27342                          Germany 1869  1074497312
## 27343                            Ghana 1869           0
## 27344                        Gibraltar 1869           0
## 27345                           Greece 1869      447008
## 27346                        Greenland 1869           0
## 27347                          Grenada 1869           0
## 27348                       Guadeloupe 1869           0
## 27349                        Guatemala 1869           0
## 27350                           Guinea 1869           0
## 27351                    Guinea-Bissau 1869           0
## 27352                           Guyana 1869           0
## 27353                            Haiti 1869           0
## 27354                         Honduras 1869           0
## 27355                        Hong Kong 1869           0
## 27356                          Hungary 1869    19378896
## 27357                          Iceland 1869           0
## 27358                            India 1869     5653552
## 27359                        Indonesia 1869           0
## 27360                             Iran 1869           0
## 27361                             Iraq 1869           0
## 27362                          Ireland 1869      395712
## 27363                           Israel 1869           0
## 27364                            Italy 1869    12387984
## 27365                          Jamaica 1869           0
## 27366                            Japan 1869       29312
## 27367                           Jordan 1869           0
## 27368                       Kazakhstan 1869           0
## 27369                            Kenya 1869           0
## 27370                         Kiribati 1869           0
## 27371                           Kuwait 1869           0
## 27372                       Kyrgysztan 1869           0
## 27373                       Kyrgyzstan 1869           0
## 27374                             Laos 1869           0
## 27375                           Latvia 1869           0
## 27376                          Lebanon 1869           0
## 27377                          Lesotho 1869           0
## 27378                          Liberia 1869           0
## 27379                            Libya 1869           0
## 27380                    Liechtenstein 1869           0
## 27381                        Lithuania 1869           0
## 27382                       Luxembourg 1869           0
## 27383                            Macao 1869           0
## 27384                        Macedonia 1869           0
## 27385                       Madagascar 1869           0
## 27386                           Malawi 1869           0
## 27387                         Malaysia 1869           0
## 27388                         Maldives 1869           0
## 27389                             Mali 1869           0
## 27390                            Malta 1869           0
## 27391                 Marshall Islands 1869           0
## 27392                       Martinique 1869           0
## 27393                       Mauritania 1869           0
## 27394                        Mauritius 1869           0
## 27395                           Mexico 1869           0
## 27396             Micronesia (country) 1869           0
## 27397                      Middle East 1869     1029584
## 27398                          Moldova 1869           0
## 27399                         Mongolia 1869           0
## 27400                       Montenegro 1869           0
## 27401                       Montserrat 1869           0
## 27402                          Morocco 1869           0
## 27403                       Mozambique 1869           0
## 27404                          Myanmar 1869           0
## 27405                          Namibia 1869           0
## 27406                            Nauru 1869           0
## 27407                            Nepal 1869           0
## 27408                      Netherlands 1869    97751856
## 27409                    New Caledonia 1869           0
## 27410                      New Zealand 1869           0
## 27411                        Nicaragua 1869           0
## 27412                            Niger 1869           0
## 27413                          Nigeria 1869           0
## 27414                             Niue 1869           0
## 27415                      North Korea 1869           0
## 27416                           Norway 1869     8086448
## 27417                             Oman 1869           0
## 27418                         Pakistan 1869           0
## 27419                            Palau 1869           0
## 27420                        Palestine 1869           0
## 27421                           Panama 1869           0
## 27422                 Papua New Guinea 1869           0
## 27423                         Paraguay 1869           0
## 27424                             Peru 1869           0
## 27425                      Philippines 1869           0
## 27426                           Poland 1869   227343872
## 27427                         Portugal 1869           0
## 27428                            Qatar 1869           0
## 27429                          Reunion 1869           0
## 27430                          Romania 1869      161216
## 27431                           Russia 1869           0
## 27432                           Rwanda 1869           0
## 27433                     Saint Helena 1869           0
## 27434            Saint Kitts and Nevis 1869           0
## 27435                      Saint Lucia 1869           0
## 27436        Saint Pierre and Miquelon 1869           0
## 27437 Saint Vincent and the Grenadines 1869           0
## 27438                            Samoa 1869           0
## 27439            Sao Tome and Principe 1869           0
## 27440                     Saudi Arabia 1869           0
## 27441                          Senegal 1869           0
## 27442                           Serbia 1869           0
## 27443                       Seychelles 1869           0
## 27444                     Sierra Leone 1869           0
## 27445                        Singapore 1869           0
## 27446        Sint Maarten (Dutch part) 1869           0
## 27447                         Slovakia 1869           0
## 27448                         Slovenia 1869           0
## 27449                  Solomon Islands 1869           0
## 27450                          Somalia 1869           0
## 27451                     South Africa 1869           0
## 27452                      South Korea 1869           0
## 27453                      South Sudan 1869           0
## 27454                            Spain 1869    33265456
## 27455                        Sri Lanka 1869           0
## 27456                            Sudan 1869           0
## 27457                         Suriname 1869           0
## 27458                        Swaziland 1869           0
## 27459                           Sweden 1869    15117664
## 27460                      Switzerland 1869     6162848
## 27461                            Syria 1869           0
## 27462                           Taiwan 1869           0
## 27463                       Tajikistan 1869           0
## 27464                         Tanzania 1869           0
## 27465                         Thailand 1869           0
## 27466                            Timor 1869           0
## 27467                             Togo 1869           0
## 27468                            Tonga 1869           0
## 27469              Trinidad and Tobago 1869           0
## 27470                          Tunisia 1869           0
## 27471                           Turkey 1869     1029584
## 27472                     Turkmenistan 1869           0
## 27473         Turks and Caicos Islands 1869           0
## 27474                           Tuvalu 1869           0
## 27475                           Uganda 1869           0
## 27476                          Ukraine 1869           0
## 27477             United Arab Emirates 1869           0
## 27478                   United Kingdom 1869  6833700752
## 27479                    United States 1869  1131941504
## 27480                          Uruguay 1869           0
## 27481                       Uzbekistan 1869           0
## 27482                          Vanuatu 1869           0
## 27483                        Venezuela 1869           0
## 27484                          Vietnam 1869           0
## 27485        Wallis and Futuna Islands 1869           0
## 27486                            World 1869 11215991312
## 27487                            Yemen 1869           0
## 27488                           Zambia 1869           0
## 27489                         Zimbabwe 1869           0
## 27490                      Afghanistan 1870           0
## 27491                           Africa 1870           0
## 27492                          Albania 1870           0
## 27493                          Algeria 1870           0
## 27494                 Americas (other) 1870    11589232
## 27495                          Andorra 1870           0
## 27496                           Angola 1870           0
## 27497                         Anguilla 1870           0
## 27498              Antarctic Fisheries 1870           0
## 27499              Antigua and Barbuda 1870           0
## 27500                        Argentina 1870           0
## 27501                          Armenia 1870           0
## 27502                            Aruba 1870           0
## 27503         Asia and Pacific (other) 1870    19400880
## 27504                        Australia 1870     5796448
## 27505                          Austria 1870   131724464
## 27506                       Azerbaijan 1870           0
## 27507                          Bahamas 1870           0
## 27508                          Bahrain 1870           0
## 27509                       Bangladesh 1870           0
## 27510                         Barbados 1870           0
## 27511                          Belarus 1870           0
## 27512                          Belgium 1870   478258256
## 27513                           Belize 1870           0
## 27514                            Benin 1870           0
## 27515                          Bermuda 1870           0
## 27516                           Bhutan 1870           0
## 27517                          Bolivia 1870           0
## 27518  Bonaire Sint Eustatius and Saba 1870           0
## 27519           Bosnia and Herzegovina 1870           0
## 27520                         Botswana 1870           0
## 27521                           Brazil 1870           0
## 27522           British Virgin Islands 1870           0
## 27523                           Brunei 1870           0
## 27524                         Bulgaria 1870           0
## 27525                     Burkina Faso 1870           0
## 27526                          Burundi 1870           0
## 27527                         Cambodia 1870           0
## 27528                         Cameroon 1870           0
## 27529                           Canada 1870    11589232
## 27530                       Cape Verde 1870           0
## 27531                   Cayman Islands 1870           0
## 27532         Central African Republic 1870           0
## 27533                             Chad 1870           0
## 27534                            Chile 1870           0
## 27535                            China 1870           0
## 27536                 Christmas Island 1870           0
## 27537                         Colombia 1870           0
## 27538                          Comoros 1870           0
## 27539                            Congo 1870           0
## 27540                     Cook Islands 1870           0
## 27541                       Costa Rica 1870           0
## 27542                    Cote d'Ivoire 1870           0
## 27543                          Croatia 1870           0
## 27544                             Cuba 1870           0
## 27545                          Curacao 1870           0
## 27546                           Cyprus 1870           0
## 27547                   Czech Republic 1870           0
## 27548                   Czechoslovakia 1870    36746256
## 27549     Democratic Republic of Congo 1870           0
## 27550                          Denmark 1870    15619632
## 27551                         Djibouti 1870           0
## 27552                         Dominica 1870           0
## 27553               Dominican Republic 1870           0
## 27554                            EU-28 1870 10420240128
## 27555                          Ecuador 1870           0
## 27556                            Egypt 1870           0
## 27557                      El Salvador 1870           0
## 27558                Equatorial Guinea 1870           0
## 27559                          Eritrea 1870           0
## 27560                          Estonia 1870           0
## 27561                         Ethiopia 1870           0
## 27562                   Europe (other) 1870    74965440
## 27563                   Faeroe Islands 1870           0
## 27564                 Falkland Islands 1870           0
## 27565                             Fiji 1870           0
## 27566                          Finland 1870      751120
## 27567                           France 1870  1143222960
## 27568                    French Guiana 1870           0
## 27569                 French Polynesia 1870           0
## 27570                            Gabon 1870           0
## 27571                           Gambia 1870           0
## 27572                          Georgia 1870           0
## 27573                          Germany 1870  1151137200
## 27574                            Ghana 1870           0
## 27575                        Gibraltar 1870           0
## 27576                           Greece 1870      648528
## 27577                        Greenland 1870           0
## 27578                          Grenada 1870           0
## 27579                       Guadeloupe 1870           0
## 27580                        Guatemala 1870           0
## 27581                           Guinea 1870           0
## 27582                    Guinea-Bissau 1870           0
## 27583                           Guyana 1870           0
## 27584                            Haiti 1870           0
## 27585                         Honduras 1870           0
## 27586                        Hong Kong 1870           0
## 27587                          Hungary 1870    21500352
## 27588                          Iceland 1870           0
## 27589                            India 1870     5653552
## 27590                        Indonesia 1870           0
## 27591                             Iran 1870           0
## 27592                             Iraq 1870           0
## 27593                          Ireland 1870      395712
## 27594                           Israel 1870           0
## 27595                            Italy 1870    15066368
## 27596                          Jamaica 1870           0
## 27597                            Japan 1870       47632
## 27598                           Jordan 1870           0
## 27599                       Kazakhstan 1870           0
## 27600                            Kenya 1870           0
## 27601                         Kiribati 1870           0
## 27602                           Kuwait 1870           0
## 27603                       Kyrgysztan 1870           0
## 27604                       Kyrgyzstan 1870           0
## 27605                             Laos 1870           0
## 27606                           Latvia 1870           0
## 27607                          Lebanon 1870           0
## 27608                          Lesotho 1870           0
## 27609                          Liberia 1870           0
## 27610                            Libya 1870           0
## 27611                    Liechtenstein 1870           0
## 27612                        Lithuania 1870           0
## 27613                       Luxembourg 1870           0
## 27614                            Macao 1870           0
## 27615                        Macedonia 1870           0
## 27616                       Madagascar 1870           0
## 27617                           Malawi 1870           0
## 27618                         Malaysia 1870           0
## 27619                         Maldives 1870           0
## 27620                             Mali 1870           0
## 27621                            Malta 1870           0
## 27622                 Marshall Islands 1870           0
## 27623                       Martinique 1870           0
## 27624                       Mauritania 1870           0
## 27625                        Mauritius 1870           0
## 27626                           Mexico 1870           0
## 27627             Micronesia (country) 1870           0
## 27628                      Middle East 1870     1187136
## 27629                          Moldova 1870           0
## 27630                         Mongolia 1870           0
## 27631                       Montenegro 1870           0
## 27632                       Montserrat 1870           0
## 27633                          Morocco 1870           0
## 27634                       Mozambique 1870           0
## 27635                          Myanmar 1870           0
## 27636                          Namibia 1870           0
## 27637                            Nauru 1870           0
## 27638                            Nepal 1870           0
## 27639                      Netherlands 1870   102694592
## 27640                    New Caledonia 1870           0
## 27641                      New Zealand 1870           0
## 27642                        Nicaragua 1870           0
## 27643                            Niger 1870           0
## 27644                          Nigeria 1870           0
## 27645                             Niue 1870           0
## 27646                      North Korea 1870           0
## 27647                           Norway 1870     8716656
## 27648                             Oman 1870           0
## 27649                         Pakistan 1870           0
## 27650                            Palau 1870           0
## 27651                        Palestine 1870           0
## 27652                           Panama 1870           0
## 27653                 Papua New Guinea 1870           0
## 27654                         Paraguay 1870           0
## 27655                             Peru 1870           0
## 27656                      Philippines 1870           0
## 27657                           Poland 1870   244007744
## 27658                         Portugal 1870       21984
## 27659                            Qatar 1870           0
## 27660                          Reunion 1870           0
## 27661                          Romania 1870      197856
## 27662                           Russia 1870           0
## 27663                           Rwanda 1870           0
## 27664                     Saint Helena 1870           0
## 27665            Saint Kitts and Nevis 1870           0
## 27666                      Saint Lucia 1870           0
## 27667        Saint Pierre and Miquelon 1870           0
## 27668 Saint Vincent and the Grenadines 1870           0
## 27669                            Samoa 1870           0
## 27670            Sao Tome and Principe 1870           0
## 27671                     Saudi Arabia 1870           0
## 27672                          Senegal 1870           0
## 27673                           Serbia 1870           0
## 27674                       Seychelles 1870           0
## 27675                     Sierra Leone 1870           0
## 27676                        Singapore 1870           0
## 27677        Sint Maarten (Dutch part) 1870           0
## 27678                         Slovakia 1870           0
## 27679                         Slovenia 1870           0
## 27680                  Solomon Islands 1870           0
## 27681                          Somalia 1870           0
## 27682                     South Africa 1870           0
## 27683                      South Korea 1870           0
## 27684                      South Sudan 1870           0
## 27685                            Spain 1870    36339552
## 27686                        Sri Lanka 1870           0
## 27687                            Sudan 1870           0
## 27688                         Suriname 1870           0
## 27689                        Swaziland 1870           0
## 27690                           Sweden 1870    16458688
## 27691                      Switzerland 1870     7060528
## 27692                            Syria 1870           0
## 27693                           Taiwan 1870           0
## 27694                       Tajikistan 1870           0
## 27695                         Tanzania 1870           0
## 27696                         Thailand 1870           0
## 27697                            Timor 1870           0
## 27698                             Togo 1870           0
## 27699                            Tonga 1870           0
## 27700              Trinidad and Tobago 1870           0
## 27701                          Tunisia 1870           0
## 27702                           Turkey 1870     1187136
## 27703                     Turkmenistan 1870           0
## 27704         Turks and Caicos Islands 1870           0
## 27705                           Tuvalu 1870           0
## 27706                           Uganda 1870           0
## 27707                          Ukraine 1870           0
## 27708             United Arab Emirates 1870           0
## 27709                   United Kingdom 1870  7062195120
## 27710                    United States 1870  1230561728
## 27711                          Uruguay 1870           0
## 27712                       Uzbekistan 1870           0
## 27713                          Vanuatu 1870           0
## 27714                        Venezuela 1870           0
## 27715                          Vietnam 1870           0
## 27716        Wallis and Futuna Islands 1870           0
## 27717                            World 1870 11748528064
## 27718                            Yemen 1870           0
## 27719                           Zambia 1870           0
## 27720                         Zimbabwe 1870           0
## 27721                      Afghanistan 1871           0
## 27722                           Africa 1871           0
## 27723                          Albania 1871           0
## 27724                          Algeria 1871           0
## 27725                 Americas (other) 1871    13369936
## 27726                          Andorra 1871           0
## 27727                           Angola 1871           0
## 27728                         Anguilla 1871           0
## 27729              Antarctic Fisheries 1871           0
## 27730              Antigua and Barbuda 1871           0
## 27731                        Argentina 1871           0
## 27732                          Armenia 1871           0
## 27733                            Aruba 1871           0
## 27734         Asia and Pacific (other) 1871    22522608
## 27735                        Australia 1871     6488944
## 27736                          Austria 1871   141866416
## 27737                       Azerbaijan 1871           0
## 27738                          Bahamas 1871           0
## 27739                          Bahrain 1871           0
## 27740                       Bangladesh 1871           0
## 27741                         Barbados 1871           0
## 27742                          Belarus 1871           0
## 27743                          Belgium 1871   501975328
## 27744                           Belize 1871           0
## 27745                            Benin 1871           0
## 27746                          Bermuda 1871           0
## 27747                           Bhutan 1871           0
## 27748                          Bolivia 1871           0
## 27749  Bonaire Sint Eustatius and Saba 1871           0
## 27750           Bosnia and Herzegovina 1871           0
## 27751                         Botswana 1871           0
## 27752                           Brazil 1871           0
## 27753           British Virgin Islands 1871           0
## 27754                           Brunei 1871           0
## 27755                         Bulgaria 1871           0
## 27756                     Burkina Faso 1871           0
## 27757                          Burundi 1871           0
## 27758                         Cambodia 1871           0
## 27759                         Cameroon 1871           0
## 27760                           Canada 1871    13369936
## 27761                       Cape Verde 1871           0
## 27762                   Cayman Islands 1871           0
## 27763         Central African Republic 1871           0
## 27764                             Chad 1871           0
## 27765                            Chile 1871           0
## 27766                            China 1871           0
## 27767                 Christmas Island 1871           0
## 27768                         Colombia 1871           0
## 27769                          Comoros 1871           0
## 27770                            Congo 1871           0
## 27771                     Cook Islands 1871           0
## 27772                       Costa Rica 1871           0
## 27773                    Cote d'Ivoire 1871           0
## 27774                          Croatia 1871           0
## 27775                             Cuba 1871           0
## 27776                          Curacao 1871           0
## 27777                           Cyprus 1871           0
## 27778                   Czech Republic 1871           0
## 27779                   Czechoslovakia 1871    43777472
## 27780     Democratic Republic of Congo 1871           0
## 27781                          Denmark 1871    16806768
## 27782                         Djibouti 1871           0
## 27783                         Dominica 1871           0
## 27784               Dominican Republic 1871           0
## 27785                            EU-28 1871 10866683872
## 27786                          Ecuador 1871           0
## 27787                            Egypt 1871           0
## 27788                      El Salvador 1871           0
## 27789                Equatorial Guinea 1871           0
## 27790                          Eritrea 1871           0
## 27791                          Estonia 1871           0
## 27792                         Ethiopia 1871           0
## 27793                   Europe (other) 1871    88954592
## 27794                   Faeroe Islands 1871           0
## 27795                 Falkland Islands 1871           0
## 27796                             Fiji 1871           0
## 27797                          Finland 1871      864704
## 27798                           France 1871  1193485712
## 27799                    French Guiana 1871           0
## 27800                 French Polynesia 1871           0
## 27801                            Gabon 1871           0
## 27802                           Gambia 1871           0
## 27803                          Georgia 1871           0
## 27804                          Germany 1871  1236486416
## 27805                            Ghana 1871           0
## 27806                        Gibraltar 1871           0
## 27807                           Greece 1871      945312
## 27808                        Greenland 1871           0
## 27809                          Grenada 1871           0
## 27810                       Guadeloupe 1871           0
## 27811                        Guatemala 1871           0
## 27812                           Guinea 1871           0
## 27813                    Guinea-Bissau 1871           0
## 27814                           Guyana 1871           0
## 27815                            Haiti 1871           0
## 27816                         Honduras 1871           0
## 27817                        Hong Kong 1871           0
## 27818                          Hungary 1871    24131104
## 27819                          Iceland 1871           0
## 27820                            India 1871     5653552
## 27821                        Indonesia 1871           0
## 27822                             Iran 1871           0
## 27823                             Iraq 1871           0
## 27824                          Ireland 1871      395712
## 27825                           Israel 1871           0
## 27826                            Italy 1871    17374688
## 27827                          Jamaica 1871           0
## 27828                            Japan 1871       73280
## 27829                           Jordan 1871           0
## 27830                       Kazakhstan 1871           0
## 27831                            Kenya 1871           0
## 27832                         Kiribati 1871           0
## 27833                           Kuwait 1871           0
## 27834                       Kyrgysztan 1871           0
## 27835                       Kyrgyzstan 1871           0
## 27836                             Laos 1871           0
## 27837                           Latvia 1871           0
## 27838                          Lebanon 1871           0
## 27839                          Lesotho 1871           0
## 27840                          Liberia 1871           0
## 27841                            Libya 1871           0
## 27842                    Liechtenstein 1871           0
## 27843                        Lithuania 1871           0
## 27844                       Luxembourg 1871           0
## 27845                            Macao 1871           0
## 27846                        Macedonia 1871           0
## 27847                       Madagascar 1871           0
## 27848                           Malawi 1871           0
## 27849                         Malaysia 1871           0
## 27850                         Maldives 1871           0
## 27851                             Mali 1871           0
## 27852                            Malta 1871           0
## 27853                 Marshall Islands 1871           0
## 27854                       Martinique 1871           0
## 27855                       Mauritania 1871           0
## 27856                        Mauritius 1871           0
## 27857                           Mexico 1871           0
## 27858             Micronesia (country) 1871           0
## 27859                      Middle East 1871     1384992
## 27860                          Moldova 1871           0
## 27861                         Mongolia 1871           0
## 27862                       Montenegro 1871           0
## 27863                       Montserrat 1871           0
## 27864                          Morocco 1871           0
## 27865                       Mozambique 1871           0
## 27866                          Myanmar 1871           0
## 27867                          Namibia 1871           0
## 27868                            Nauru 1871           0
## 27869                            Nepal 1871           0
## 27870                      Netherlands 1871   107673968
## 27871                    New Caledonia 1871           0
## 27872                      New Zealand 1871           0
## 27873                        Nicaragua 1871           0
## 27874                            Niger 1871           0
## 27875                          Nigeria 1871           0
## 27876                             Niue 1871           0
## 27877                      North Korea 1871           0
## 27878                           Norway 1871     9328544
## 27879                             Oman 1871           0
## 27880                         Pakistan 1871           0
## 27881                            Palau 1871           0
## 27882                        Palestine 1871           0
## 27883                           Panama 1871           0
## 27884                 Papua New Guinea 1871           0
## 27885                         Paraguay 1871           0
## 27886                             Peru 1871           0
## 27887                      Philippines 1871           0
## 27888                           Poland 1871   262979936
## 27889                         Portugal 1871       58624
## 27890                            Qatar 1871           0
## 27891                          Reunion 1871           0
## 27892                          Romania 1871      238160
## 27893                           Russia 1871           0
## 27894                           Rwanda 1871           0
## 27895                     Saint Helena 1871           0
## 27896            Saint Kitts and Nevis 1871           0
## 27897                      Saint Lucia 1871           0
## 27898        Saint Pierre and Miquelon 1871           0
## 27899 Saint Vincent and the Grenadines 1871           0
## 27900                            Samoa 1871           0
## 27901            Sao Tome and Principe 1871           0
## 27902                     Saudi Arabia 1871           0
## 27903                          Senegal 1871           0
## 27904                           Serbia 1871           0
## 27905                       Seychelles 1871           0
## 27906                     Sierra Leone 1871           0
## 27907                        Singapore 1871           0
## 27908        Sint Maarten (Dutch part) 1871           0
## 27909                         Slovakia 1871           0
## 27910                         Slovenia 1871           0
## 27911                  Solomon Islands 1871           0
## 27912                          Somalia 1871           0
## 27913                     South Africa 1871           0
## 27914                      South Korea 1871           0
## 27915                      South Sudan 1871           0
## 27916                            Spain 1871    39278080
## 27917                        Sri Lanka 1871           0
## 27918                            Sudan 1871           0
## 27919                         Suriname 1871           0
## 27920                        Swaziland 1871           0
## 27921                           Sweden 1871    17891312
## 27922                      Switzerland 1871     8170720
## 27923                            Syria 1871           0
## 27924                           Taiwan 1871           0
## 27925                       Tajikistan 1871           0
## 27926                         Tanzania 1871           0
## 27927                         Thailand 1871           0
## 27928                            Timor 1871           0
## 27929                             Togo 1871           0
## 27930                            Tonga 1871           0
## 27931              Trinidad and Tobago 1871           0
## 27932                          Tunisia 1871           0
## 27933                           Turkey 1871     1384992
## 27934                     Turkmenistan 1871           0
## 27935         Turks and Caicos Islands 1871           0
## 27936                           Tuvalu 1871           0
## 27937                           Uganda 1871           0
## 27938                          Ukraine 1871           0
## 27939             United Arab Emirates 1871           0
## 27940                   United Kingdom 1871  7304231632
## 27941                    United States 1871  1333582416
## 27942                          Uruguay 1871           0
## 27943                       Uzbekistan 1871           0
## 27944                          Vanuatu 1871           0
## 27945                        Venezuela 1871           0
## 27946                          Vietnam 1871           0
## 27947        Wallis and Futuna Islands 1871           0
## 27948                            World 1871 12314671024
## 27949                            Yemen 1871           0
## 27950                           Zambia 1871           0
## 27951                         Zimbabwe 1871           0
## 27952                      Afghanistan 1872           0
## 27953                           Africa 1872           0
## 27954                          Albania 1872           0
## 27955                          Algeria 1872           0
## 27956                 Americas (other) 1872    15216592
## 27957                          Andorra 1872           0
## 27958                           Angola 1872           0
## 27959                         Anguilla 1872           0
## 27960              Antarctic Fisheries 1872           0
## 27961              Antigua and Barbuda 1872           0
## 27962                        Argentina 1872           0
## 27963                          Armenia 1872           0
## 27964                            Aruba 1872           0
## 27965         Asia and Pacific (other) 1872    25944784
## 27966                        Australia 1872     7196096
## 27967                          Austria 1872   151872800
## 27968                       Azerbaijan 1872           0
## 27969                          Bahamas 1872           0
## 27970                          Bahrain 1872           0
## 27971                       Bangladesh 1872           0
## 27972                         Barbados 1872           0
## 27973                          Belarus 1872           0
## 27974                          Belgium 1872   527564704
## 27975                           Belize 1872           0
## 27976                            Benin 1872           0
## 27977                          Bermuda 1872           0
## 27978                           Bhutan 1872           0
## 27979                          Bolivia 1872           0
## 27980  Bonaire Sint Eustatius and Saba 1872           0
## 27981           Bosnia and Herzegovina 1872           0
## 27982                         Botswana 1872           0
## 27983                           Brazil 1872           0
## 27984           British Virgin Islands 1872           0
## 27985                           Brunei 1872           0
## 27986                         Bulgaria 1872           0
## 27987                     Burkina Faso 1872           0
## 27988                          Burundi 1872           0
## 27989                         Cambodia 1872           0
## 27990                         Cameroon 1872           0
## 27991                           Canada 1872    15216592
## 27992                       Cape Verde 1872           0
## 27993                   Cayman Islands 1872           0
## 27994         Central African Republic 1872           0
## 27995                             Chad 1872           0
## 27996                            Chile 1872           0
## 27997                            China 1872           0
## 27998                 Christmas Island 1872           0
## 27999                         Colombia 1872           0
## 28000                          Comoros 1872           0
## 28001                            Congo 1872           0
## 28002                     Cook Islands 1872           0
## 28003                       Costa Rica 1872           0
## 28004                    Cote d'Ivoire 1872           0
## 28005                          Croatia 1872           0
## 28006                             Cuba 1872           0
## 28007                          Curacao 1872           0
## 28008                           Cyprus 1872           0
## 28009                   Czech Republic 1872           0
## 28010                   Czechoslovakia 1872    51420576
## 28011     Democratic Republic of Congo 1872           0
## 28012                          Denmark 1872    17946272
## 28013                         Djibouti 1872           0
## 28014                         Dominica 1872           0
## 28015               Dominican Republic 1872           0
## 28016                            EU-28 1872 11348976192
## 28017                          Ecuador 1872           0
## 28018                            Egypt 1872           0
## 28019                      El Salvador 1872           0
## 28020                Equatorial Guinea 1872           0
## 28021                          Eritrea 1872           0
## 28022                          Estonia 1872           0
## 28023                         Ethiopia 1872           0
## 28024                   Europe (other) 1872   103889056
## 28025                   Faeroe Islands 1872           0
## 28026                 Falkland Islands 1872           0
## 28027                             Fiji 1872           0
## 28028                          Finland 1872      956304
## 28029                           France 1872  1254410704
## 28030                    French Guiana 1872           0
## 28031                 French Polynesia 1872           0
## 28032                            Gabon 1872           0
## 28033                           Gambia 1872           0
## 28034                          Georgia 1872           0
## 28035                          Germany 1872  1328595712
## 28036                            Ghana 1872           0
## 28037                        Gibraltar 1872           0
## 28038                           Greece 1872     1121184
## 28039                        Greenland 1872           0
## 28040                          Grenada 1872           0
## 28041                       Guadeloupe 1872           0
## 28042                        Guatemala 1872           0
## 28043                           Guinea 1872           0
## 28044                    Guinea-Bissau 1872           0
## 28045                           Guyana 1872           0
## 28046                            Haiti 1872           0
## 28047                         Honduras 1872           0
## 28048                        Hong Kong 1872           0
## 28049                          Hungary 1872    26926736
## 28050                          Iceland 1872           0
## 28051                            India 1872     5653552
## 28052                        Indonesia 1872           0
## 28053                             Iran 1872           0
## 28054                             Iraq 1872           0
## 28055                          Ireland 1872      395712
## 28056                           Israel 1872           0
## 28057                            Italy 1872    20349856
## 28058                          Jamaica 1872           0
## 28059                            Japan 1872      106256
## 28060                           Jordan 1872           0
## 28061                       Kazakhstan 1872           0
## 28062                            Kenya 1872           0
## 28063                         Kiribati 1872           0
## 28064                           Kuwait 1872           0
## 28065                       Kyrgysztan 1872           0
## 28066                       Kyrgyzstan 1872           0
## 28067                             Laos 1872           0
## 28068                           Latvia 1872           0
## 28069                          Lebanon 1872           0
## 28070                          Lesotho 1872           0
## 28071                          Liberia 1872           0
## 28072                            Libya 1872           0
## 28073                    Liechtenstein 1872           0
## 28074                        Lithuania 1872           0
## 28075                       Luxembourg 1872           0
## 28076                            Macao 1872           0
## 28077                        Macedonia 1872           0
## 28078                       Madagascar 1872           0
## 28079                           Malawi 1872           0
## 28080                         Malaysia 1872           0
## 28081                         Maldives 1872           0
## 28082                             Mali 1872           0
## 28083                            Malta 1872           0
## 28084                 Marshall Islands 1872           0
## 28085                       Martinique 1872           0
## 28086                       Mauritania 1872           0
## 28087                        Mauritius 1872           0
## 28088                           Mexico 1872           0
## 28089             Micronesia (country) 1872           0
## 28090                      Middle East 1872     1630480
## 28091                          Moldova 1872           0
## 28092                         Mongolia 1872           0
## 28093                       Montenegro 1872           0
## 28094                       Montserrat 1872           0
## 28095                          Morocco 1872           0
## 28096                       Mozambique 1872           0
## 28097                          Myanmar 1872           0
## 28098                          Namibia 1872           0
## 28099                            Nauru 1872           0
## 28100                            Nepal 1872           0
## 28101                      Netherlands 1872   113005088
## 28102                    New Caledonia 1872           0
## 28103                      New Zealand 1872           0
## 28104                        Nicaragua 1872           0
## 28105                            Niger 1872           0
## 28106                          Nigeria 1872           0
## 28107                             Niue 1872           0
## 28108                      North Korea 1872           0
## 28109                           Norway 1872     9984400
## 28110                             Oman 1872           0
## 28111                         Pakistan 1872           0
## 28112                            Palau 1872           0
## 28113                        Palestine 1872           0
## 28114                           Panama 1872           0
## 28115                 Papua New Guinea 1872           0
## 28116                         Paraguay 1872           0
## 28117                             Peru 1872           0
## 28118                      Philippines 1872           0
## 28119                           Poland 1872   283611920
## 28120                         Portugal 1872      578912
## 28121                            Qatar 1872           0
## 28122                          Reunion 1872           0
## 28123                          Romania 1872      278464
## 28124                           Russia 1872           0
## 28125                           Rwanda 1872           0
## 28126                     Saint Helena 1872           0
## 28127            Saint Kitts and Nevis 1872           0
## 28128                      Saint Lucia 1872           0
## 28129        Saint Pierre and Miquelon 1872           0
## 28130 Saint Vincent and the Grenadines 1872           0
## 28131                            Samoa 1872           0
## 28132            Sao Tome and Principe 1872           0
## 28133                     Saudi Arabia 1872           0
## 28134                          Senegal 1872           0
## 28135                           Serbia 1872           0
## 28136                       Seychelles 1872           0
## 28137                     Sierra Leone 1872           0
## 28138                        Singapore 1872           0
## 28139        Sint Maarten (Dutch part) 1872           0
## 28140                         Slovakia 1872           0
## 28141                         Slovenia 1872           0
## 28142                  Solomon Islands 1872           0
## 28143                          Somalia 1872           0
## 28144                     South Africa 1872           0
## 28145                      South Korea 1872           0
## 28146                      South Sudan 1872           0
## 28147                            Spain 1872    42539040
## 28148                        Sri Lanka 1872           0
## 28149                            Sudan 1872           0
## 28150                         Suriname 1872           0
## 28151                        Swaziland 1872           0
## 28152                           Sweden 1872    19602400
## 28153                      Switzerland 1872     9445792
## 28154                            Syria 1872           0
## 28155                           Taiwan 1872           0
## 28156                       Tajikistan 1872           0
## 28157                         Tanzania 1872           0
## 28158                         Thailand 1872           0
## 28159                            Timor 1872           0
## 28160                             Togo 1872           0
## 28161                            Tonga 1872           0
## 28162              Trinidad and Tobago 1872           0
## 28163                          Tunisia 1872           0
## 28164                           Turkey 1872     1630480
## 28165                     Turkmenistan 1872           0
## 28166         Turks and Caicos Islands 1872           0
## 28167                           Tuvalu 1872           0
## 28168                           Uganda 1872           0
## 28169                          Ukraine 1872           0
## 28170             United Arab Emirates 1872           0
## 28171                   United Kingdom 1872  7559220384
## 28172                    United States 1872  1459887824
## 28173                          Uruguay 1872           0
## 28174                       Uzbekistan 1872           0
## 28175                          Vanuatu 1872           0
## 28176                        Venezuela 1872           0
## 28177                          Vietnam 1872           0
## 28178        Wallis and Futuna Islands 1872           0
## 28179                            World 1872 12941042816
## 28180                            Yemen 1872           0
## 28181                           Zambia 1872           0
## 28182                         Zimbabwe 1872           0
## 28183                      Afghanistan 1873           0
## 28184                           Africa 1873           0
## 28185                          Albania 1873           0
## 28186                          Algeria 1873           0
## 28187                 Americas (other) 1873    16828752
## 28188                          Andorra 1873           0
## 28189                           Angola 1873           0
## 28190                         Anguilla 1873           0
## 28191              Antarctic Fisheries 1873           0
## 28192              Antigua and Barbuda 1873           0
## 28193                        Argentina 1873           0
## 28194                          Armenia 1873           0
## 28195                            Aruba 1873           0
## 28196         Asia and Pacific (other) 1873    29839616
## 28197                        Australia 1873     8064464
## 28198                          Austria 1873   162600992
## 28199                       Azerbaijan 1873           0
## 28200                          Bahamas 1873           0
## 28201                          Bahrain 1873           0
## 28202                       Bangladesh 1873           0
## 28203                         Barbados 1873           0
## 28204                          Belarus 1873           0
## 28205                          Belgium 1873   555671248
## 28206                           Belize 1873           0
## 28207                            Benin 1873           0
## 28208                          Bermuda 1873           0
## 28209                           Bhutan 1873           0
## 28210                          Bolivia 1873           0
## 28211  Bonaire Sint Eustatius and Saba 1873           0
## 28212           Bosnia and Herzegovina 1873           0
## 28213                         Botswana 1873           0
## 28214                           Brazil 1873           0
## 28215           British Virgin Islands 1873           0
## 28216                           Brunei 1873           0
## 28217                         Bulgaria 1873           0
## 28218                     Burkina Faso 1873           0
## 28219                          Burundi 1873           0
## 28220                         Cambodia 1873           0
## 28221                         Cameroon 1873           0
## 28222                           Canada 1873    16825088
## 28223                       Cape Verde 1873           0
## 28224                   Cayman Islands 1873           0
## 28225         Central African Republic 1873           0
## 28226                             Chad 1873           0
## 28227                            Chile 1873           0
## 28228                            China 1873           0
## 28229                 Christmas Island 1873           0
## 28230                         Colombia 1873           0
## 28231                          Comoros 1873           0
## 28232                            Congo 1873           0
## 28233                     Cook Islands 1873           0
## 28234                       Costa Rica 1873           0
## 28235                    Cote d'Ivoire 1873           0
## 28236                          Croatia 1873           0
## 28237                             Cuba 1873           0
## 28238                          Curacao 1873           0
## 28239                           Cyprus 1873           0
## 28240                   Czech Republic 1873           0
## 28241                   Czechoslovakia 1873    59679232
## 28242     Democratic Republic of Congo 1873           0
## 28243                          Denmark 1873    19096768
## 28244                         Djibouti 1873           0
## 28245                         Dominica 1873           0
## 28246               Dominican Republic 1873           0
## 28247                            EU-28 1873 11856938496
## 28248                          Ecuador 1873           0
## 28249                            Egypt 1873           0
## 28250                      El Salvador 1873           0
## 28251                Equatorial Guinea 1873           0
## 28252                          Eritrea 1873           0
## 28253                          Estonia 1873           0
## 28254                         Ethiopia 1873           0
## 28255                   Europe (other) 1873   119087328
## 28256                   Faeroe Islands 1873           0
## 28257                 Falkland Islands 1873           0
## 28258                             Fiji 1873           0
## 28259                          Finland 1873     1044240
## 28260                           France 1873  1320260112
## 28261                    French Guiana 1873           0
## 28262                 French Polynesia 1873           0
## 28263                            Gabon 1873           0
## 28264                           Gambia 1873           0
## 28265                          Georgia 1873           0
## 28266                          Germany 1873  1426963120
## 28267                            Ghana 1873           0
## 28268                        Gibraltar 1873           0
## 28269                           Greece 1873     1315376
## 28270                        Greenland 1873           0
## 28271                          Grenada 1873           0
## 28272                       Guadeloupe 1873           0
## 28273                        Guatemala 1873           0
## 28274                           Guinea 1873           0
## 28275                    Guinea-Bissau 1873           0
## 28276                           Guyana 1873           0
## 28277                            Haiti 1873           0
## 28278                         Honduras 1873           0
## 28279                        Hong Kong 1873           0
## 28280                          Hungary 1873    29843280
## 28281                          Iceland 1873           0
## 28282                            India 1873     5653552
## 28283                        Indonesia 1873           0
## 28284                             Iran 1873           0
## 28285                             Iraq 1873           0
## 28286                          Ireland 1873      395712
## 28287                           Israel 1873           0
## 28288                            Italy 1873    23119840
## 28289                          Jamaica 1873           0
## 28290                            Japan 1873      146560
## 28291                           Jordan 1873           0
## 28292                       Kazakhstan 1873           0
## 28293                            Kenya 1873           0
## 28294                         Kiribati 1873           0
## 28295                           Kuwait 1873           0
## 28296                       Kyrgysztan 1873           0
## 28297                       Kyrgyzstan 1873           0
## 28298                             Laos 1873           0
## 28299                           Latvia 1873           0
## 28300                          Lebanon 1873           0
## 28301                          Lesotho 1873           0
## 28302                          Liberia 1873           0
## 28303                            Libya 1873           0
## 28304                    Liechtenstein 1873           0
## 28305                        Lithuania 1873           0
## 28306                       Luxembourg 1873           0
## 28307                            Macao 1873           0
## 28308                        Macedonia 1873           0
## 28309                       Madagascar 1873           0
## 28310                           Malawi 1873           0
## 28311                         Malaysia 1873           0
## 28312                         Maldives 1873           0
## 28313                             Mali 1873           0
## 28314                            Malta 1873           0
## 28315                 Marshall Islands 1873           0
## 28316                       Martinique 1873           0
## 28317                       Mauritania 1873           0
## 28318                        Mauritius 1873           0
## 28319                           Mexico 1873           0
## 28320             Micronesia (country) 1873           0
## 28321                      Middle East 1873     1868640
## 28322                          Moldova 1873           0
## 28323                         Mongolia 1873           0
## 28324                       Montenegro 1873           0
## 28325                       Montserrat 1873           0
## 28326                          Morocco 1873           0
## 28327                       Mozambique 1873           0
## 28328                          Myanmar 1873           0
## 28329                          Namibia 1873           0
## 28330                            Nauru 1873           0
## 28331                            Nepal 1873           0
## 28332                      Netherlands 1873   118145680
## 28333                    New Caledonia 1873           0
## 28334                      New Zealand 1873           0
## 28335                        Nicaragua 1873           0
## 28336                            Niger 1873           0
## 28337                          Nigeria 1873           0
## 28338                             Niue 1873           0
## 28339                      North Korea 1873           0
## 28340                           Norway 1873    10643920
## 28341                             Oman 1873           0
## 28342                         Pakistan 1873           0
## 28343                            Palau 1873           0
## 28344                        Palestine 1873           0
## 28345                           Panama 1873           0
## 28346                 Papua New Guinea 1873           0
## 28347                         Paraguay 1873           0
## 28348                             Peru 1873           0
## 28349                      Philippines 1873           0
## 28350                           Poland 1873   305962320
## 28351                         Portugal 1873     1304384
## 28352                            Qatar 1873           0
## 28353                          Reunion 1873           0
## 28354                          Romania 1873      322432
## 28355                           Russia 1873           0
## 28356                           Rwanda 1873           0
## 28357                     Saint Helena 1873           0
## 28358            Saint Kitts and Nevis 1873           0
## 28359                      Saint Lucia 1873           0
## 28360        Saint Pierre and Miquelon 1873           0
## 28361 Saint Vincent and the Grenadines 1873           0
## 28362                            Samoa 1873           0
## 28363            Sao Tome and Principe 1873           0
## 28364                     Saudi Arabia 1873           0
## 28365                          Senegal 1873           0
## 28366                           Serbia 1873           0
## 28367                       Seychelles 1873           0
## 28368                     Sierra Leone 1873           0
## 28369                        Singapore 1873           0
## 28370        Sint Maarten (Dutch part) 1873           0
## 28371                         Slovakia 1873           0
## 28372                         Slovenia 1873           0
## 28373                  Solomon Islands 1873           0
## 28374                          Somalia 1873           0
## 28375                     South Africa 1873           0
## 28376                      South Korea 1873           0
## 28377                      South Sudan 1873           0
## 28378                            Spain 1873    45675424
## 28379                        Sri Lanka 1873           0
## 28380                            Sudan 1873           0
## 28381                         Suriname 1873           0
## 28382                        Swaziland 1873           0
## 28383                           Sweden 1873    21339136
## 28384                      Switzerland 1873    10684224
## 28385                            Syria 1873           0
## 28386                           Taiwan 1873           0
## 28387                       Tajikistan 1873           0
## 28388                         Tanzania 1873           0
## 28389                         Thailand 1873           0
## 28390                            Timor 1873           0
## 28391                             Togo 1873           0
## 28392                            Tonga 1873           0
## 28393              Trinidad and Tobago 1873           0
## 28394                          Tunisia 1873           0
## 28395                           Turkey 1873     1868640
## 28396                     Turkmenistan 1873           0
## 28397         Turks and Caicos Islands 1873           0
## 28398                           Tuvalu 1873           0
## 28399                           Uganda 1873           0
## 28400                          Ukraine 1873           0
## 28401             United Arab Emirates 1873           0
## 28402                   United Kingdom 1873  7823878432
## 28403                    United States 1873  1599394624
## 28404                          Uruguay 1873           0
## 28405                       Uzbekistan 1873           0
## 28406                          Vanuatu 1873           0
## 28407                        Venezuela 1873           0
## 28408                          Vietnam 1873           0
## 28409        Wallis and Futuna Islands 1873           0
## 28410                            World 1873 13606461856
## 28411                            Yemen 1873           0
## 28412                           Zambia 1873           0
## 28413                         Zimbabwe 1873           0
## 28414                      Afghanistan 1874           0
## 28415                           Africa 1874           0
## 28416                          Albania 1874           0
## 28417                          Algeria 1874           0
## 28418                 Americas (other) 1874    18448240
## 28419                          Andorra 1874           0
## 28420                           Angola 1874           0
## 28421                         Anguilla 1874           0
## 28422              Antarctic Fisheries 1874           0
## 28423              Antigua and Barbuda 1874           0
## 28424                        Argentina 1874           0
## 28425                          Armenia 1874           0
## 28426                            Aruba 1874           0
## 28427         Asia and Pacific (other) 1874    34012912
## 28428                        Australia 1874     8954816
## 28429                          Austria 1874   171753664
## 28430                       Azerbaijan 1874           0
## 28431                          Bahamas 1874           0
## 28432                          Bahrain 1874           0
## 28433                       Bangladesh 1874           0
## 28434                         Barbados 1874           0
## 28435                          Belarus 1874           0
## 28436                          Belgium 1874   581586720
## 28437                           Belize 1874           0
## 28438                            Benin 1874           0
## 28439                          Bermuda 1874           0
## 28440                           Bhutan 1874           0
## 28441                          Bolivia 1874           0
## 28442  Bonaire Sint Eustatius and Saba 1874           0
## 28443           Bosnia and Herzegovina 1874           0
## 28444                         Botswana 1874           0
## 28445                           Brazil 1874           0
## 28446           British Virgin Islands 1874           0
## 28447                           Brunei 1874           0
## 28448                         Bulgaria 1874           0
## 28449                     Burkina Faso 1874           0
## 28450                          Burundi 1874           0
## 28451                         Cambodia 1874           0
## 28452                         Cameroon 1874           0
## 28453                           Canada 1874    18448240
## 28454                       Cape Verde 1874           0
## 28455                   Cayman Islands 1874           0
## 28456         Central African Republic 1874           0
## 28457                             Chad 1874           0
## 28458                            Chile 1874           0
## 28459                            China 1874           0
## 28460                 Christmas Island 1874           0
## 28461                         Colombia 1874           0
## 28462                          Comoros 1874           0
## 28463                            Congo 1874           0
## 28464                     Cook Islands 1874           0
## 28465                       Costa Rica 1874           0
## 28466                    Cote d'Ivoire 1874           0
## 28467                          Croatia 1874           0
## 28468                             Cuba 1874           0
## 28469                          Curacao 1874           0
## 28470                           Cyprus 1874           0
## 28471                   Czech Republic 1874           0
## 28472                   Czechoslovakia 1874    68553440
## 28473     Democratic Republic of Congo 1874           0
## 28474                          Denmark 1874    20338864
## 28475                         Djibouti 1874           0
## 28476                         Dominica 1874           0
## 28477               Dominican Republic 1874           0
## 28478                            EU-28 1874 12325307616
## 28479                          Ecuador 1874           0
## 28480                            Egypt 1874           0
## 28481                      El Salvador 1874           0
## 28482                Equatorial Guinea 1874           0
## 28483                          Eritrea 1874           0
## 28484                          Estonia 1874           0
## 28485                         Ethiopia 1874           0
## 28486                   Europe (other) 1874   136058976
## 28487                   Faeroe Islands 1874           0
## 28488                 Falkland Islands 1874           0
## 28489                             Fiji 1874           0
## 28490                          Finland 1874     1168816
## 28491                           France 1874  1382903520
## 28492                    French Guiana 1874           0
## 28493                 French Polynesia 1874           0
## 28494                            Gabon 1874           0
## 28495                           Gambia 1874           0
## 28496                          Georgia 1874           0
## 28497                          Germany 1874  1498557680
## 28498                            Ghana 1874           0
## 28499                        Gibraltar 1874           0
## 28500                           Greece 1874     1465600
## 28501                        Greenland 1874           0
## 28502                          Grenada 1874           0
## 28503                       Guadeloupe 1874           0
## 28504                        Guatemala 1874           0
## 28505                           Guinea 1874           0
## 28506                    Guinea-Bissau 1874           0
## 28507                           Guyana 1874           0
## 28508                            Haiti 1874           0
## 28509                         Honduras 1874           0
## 28510                        Hong Kong 1874           0
## 28511                          Hungary 1874    32400752
## 28512                          Iceland 1874           0
## 28513                            India 1874     5653552
## 28514                        Indonesia 1874           0
## 28515                             Iran 1874           0
## 28516                             Iraq 1874           0
## 28517                          Ireland 1874      395712
## 28518                           Israel 1874           0
## 28519                            Italy 1874    26116992
## 28520                          Jamaica 1874           0
## 28521                            Japan 1874      732800
## 28522                           Jordan 1874           0
## 28523                       Kazakhstan 1874           0
## 28524                            Kenya 1874           0
## 28525                         Kiribati 1874           0
## 28526                           Kuwait 1874           0
## 28527                       Kyrgysztan 1874           0
## 28528                       Kyrgyzstan 1874           0
## 28529                             Laos 1874           0
## 28530                           Latvia 1874           0
## 28531                          Lebanon 1874           0
## 28532                          Lesotho 1874           0
## 28533                          Liberia 1874           0
## 28534                            Libya 1874           0
## 28535                    Liechtenstein 1874           0
## 28536                        Lithuania 1874           0
## 28537                       Luxembourg 1874           0
## 28538                            Macao 1874           0
## 28539                        Macedonia 1874           0
## 28540                       Madagascar 1874           0
## 28541                           Malawi 1874           0
## 28542                         Malaysia 1874           0
## 28543                         Maldives 1874           0
## 28544                             Mali 1874           0
## 28545                            Malta 1874           0
## 28546                 Marshall Islands 1874           0
## 28547                       Martinique 1874           0
## 28548                       Mauritania 1874           0
## 28549                        Mauritius 1874           0
## 28550                           Mexico 1874           0
## 28551             Micronesia (country) 1874           0
## 28552                      Middle East 1874     2125120
## 28553                          Moldova 1874           0
## 28554                         Mongolia 1874           0
## 28555                       Montenegro 1874           0
## 28556                       Montserrat 1874           0
## 28557                          Morocco 1874           0
## 28558                       Mozambique 1874           0
## 28559                          Myanmar 1874           0
## 28560                          Namibia 1874           0
## 28561                            Nauru 1874           0
## 28562                            Nepal 1874           0
## 28563                      Netherlands 1874   122886896
## 28564                    New Caledonia 1874           0
## 28565                      New Zealand 1874           0
## 28566                        Nicaragua 1874           0
## 28567                            Niger 1874           0
## 28568                          Nigeria 1874           0
## 28569                             Niue 1874           0
## 28570                      North Korea 1874           0
## 28571                           Norway 1874    11460992
## 28572                             Oman 1874           0
## 28573                         Pakistan 1874           0
## 28574                            Palau 1874           0
## 28575                        Palestine 1874           0
## 28576                           Panama 1874           0
## 28577                 Papua New Guinea 1874           0
## 28578                         Paraguay 1874           0
## 28579                             Peru 1874           0
## 28580                      Philippines 1874           0
## 28581                           Poland 1874   330459824
## 28582                         Portugal 1874     1835664
## 28583                            Qatar 1874           0
## 28584                          Reunion 1874           0
## 28585                          Romania 1874      366400
## 28586                           Russia 1874           0
## 28587                           Rwanda 1874           0
## 28588                     Saint Helena 1874           0
## 28589            Saint Kitts and Nevis 1874           0
## 28590                      Saint Lucia 1874           0
## 28591        Saint Pierre and Miquelon 1874           0
## 28592 Saint Vincent and the Grenadines 1874           0
## 28593                            Samoa 1874           0
## 28594            Sao Tome and Principe 1874           0
## 28595                     Saudi Arabia 1874           0
## 28596                          Senegal 1874           0
## 28597                           Serbia 1874           0
## 28598                       Seychelles 1874           0
## 28599                     Sierra Leone 1874           0
## 28600                        Singapore 1874           0
## 28601        Sint Maarten (Dutch part) 1874           0
## 28602                         Slovakia 1874           0
## 28603                         Slovenia 1874           0
## 28604                  Solomon Islands 1874           0
## 28605                          Somalia 1874           0
## 28606                     South Africa 1874           0
## 28607                      South Korea 1874           0
## 28608                      South Sudan 1874           0
## 28609                            Spain 1874    48793488
## 28610                        Sri Lanka 1874           0
## 28611                            Sudan 1874           0
## 28612                         Suriname 1874           0
## 28613                        Swaziland 1874           0
## 28614                           Sweden 1874    23211440
## 28615                      Switzerland 1874    11853040
## 28616                            Syria 1874           0
## 28617                           Taiwan 1874           0
## 28618                       Tajikistan 1874           0
## 28619                         Tanzania 1874           0
## 28620                         Thailand 1874           0
## 28621                            Timor 1874           0
## 28622                             Togo 1874           0
## 28623                            Tonga 1874           0
## 28624              Trinidad and Tobago 1874           0
## 28625                          Tunisia 1874           0
## 28626                           Turkey 1874     2125120
## 28627                     Turkmenistan 1874           0
## 28628         Turks and Caicos Islands 1874           0
## 28629                           Tuvalu 1874           0
## 28630                           Uganda 1874           0
## 28631                          Ukraine 1874           0
## 28632             United Arab Emirates 1874           0
## 28633                   United Kingdom 1874  8081065584
## 28634                    United States 1874  1733691216
## 28635                          Uruguay 1874           0
## 28636                       Uzbekistan 1874           0
## 28637                          Vanuatu 1874           0
## 28638                        Venezuela 1874           0
## 28639                          Vietnam 1874           0
## 28640        Wallis and Futuna Islands 1874           0
## 28641                            World 1874 14229459104
## 28642                            Yemen 1874           0
## 28643                           Zambia 1874           0
## 28644                         Zimbabwe 1874           0
## 28645                      Afghanistan 1875           0
## 28646                           Africa 1875           0
## 28647                          Albania 1875           0
## 28648                          Algeria 1875           0
## 28649                 Americas (other) 1875    20324208
## 28650                          Andorra 1875           0
## 28651                           Angola 1875           0
## 28652                         Anguilla 1875           0
## 28653              Antarctic Fisheries 1875           0
## 28654              Antigua and Barbuda 1875           0
## 28655                        Argentina 1875           0
## 28656                          Armenia 1875           0
## 28657                            Aruba 1875           0
## 28658         Asia and Pacific (other) 1875    39307392
## 28659                        Australia 1875     9782880
## 28660                          Austria 1875   179612944
## 28661                       Azerbaijan 1875           0
## 28662                          Bahamas 1875           0
## 28663                          Bahrain 1875           0
## 28664                       Bangladesh 1875           0
## 28665                         Barbados 1875           0
## 28666                          Belarus 1875           0
## 28667                          Belgium 1875   608517120
## 28668                           Belize 1875           0
## 28669                            Benin 1875           0
## 28670                          Bermuda 1875           0
## 28671                           Bhutan 1875           0
## 28672                          Bolivia 1875           0
## 28673  Bonaire Sint Eustatius and Saba 1875           0
## 28674           Bosnia and Herzegovina 1875           0
## 28675                         Botswana 1875           0
## 28676                           Brazil 1875           0
## 28677           British Virgin Islands 1875           0
## 28678                           Brunei 1875           0
## 28679                         Bulgaria 1875           0
## 28680                     Burkina Faso 1875           0
## 28681                          Burundi 1875           0
## 28682                         Cambodia 1875           0
## 28683                         Cameroon 1875           0
## 28684                           Canada 1875    20324208
## 28685                       Cape Verde 1875           0
## 28686                   Cayman Islands 1875           0
## 28687         Central African Republic 1875           0
## 28688                             Chad 1875           0
## 28689                            Chile 1875           0
## 28690                            China 1875           0
## 28691                 Christmas Island 1875           0
## 28692                         Colombia 1875           0
## 28693                          Comoros 1875           0
## 28694                            Congo 1875           0
## 28695                     Cook Islands 1875           0
## 28696                       Costa Rica 1875           0
## 28697                    Cote d'Ivoire 1875           0
## 28698                          Croatia 1875           0
## 28699                             Cuba 1875           0
## 28700                          Curacao 1875           0
## 28701                           Cyprus 1875           0
## 28702                   Czech Republic 1875           0
## 28703                   Czechoslovakia 1875    78043200
## 28704     Democratic Republic of Congo 1875           0
## 28705                          Denmark 1875    21797136
## 28706                         Djibouti 1875           0
## 28707                         Dominica 1875           0
## 28708               Dominican Republic 1875           0
## 28709                            EU-28 1875 12842030544
## 28710                          Ecuador 1875           0
## 28711                            Egypt 1875           0
## 28712                      El Salvador 1875           0
## 28713                Equatorial Guinea 1875           0
## 28714                          Eritrea 1875           0
## 28715                          Estonia 1875           0
## 28716                         Ethiopia 1875           0
## 28717                   Europe (other) 1875   154888272
## 28718                   Faeroe Islands 1875           0
## 28719                 Falkland Islands 1875           0
## 28720                             Fiji 1875           0
## 28721                          Finland 1875     1253088
## 28722                           France 1875  1448163024
## 28723                    French Guiana 1875           0
## 28724                 French Polynesia 1875           0
## 28725                            Gabon 1875           0
## 28726                           Gambia 1875           0
## 28727                          Georgia 1875           0
## 28728                          Germany 1875  1600076128
## 28729                            Ghana 1875           0
## 28730                        Gibraltar 1875           0
## 28731                           Greece 1875     1630480
## 28732                        Greenland 1875           0
## 28733                          Grenada 1875           0
## 28734                       Guadeloupe 1875           0
## 28735                        Guatemala 1875           0
## 28736                           Guinea 1875           0
## 28737                    Guinea-Bissau 1875           0
## 28738                           Guyana 1875           0
## 28739                            Haiti 1875           0
## 28740                         Honduras 1875           0
## 28741                        Hong Kong 1875           0
## 28742                          Hungary 1875    35035168
## 28743                          Iceland 1875           0
## 28744                            India 1875     5653552
## 28745                        Indonesia 1875           0
## 28746                             Iran 1875           0
## 28747                             Iraq 1875           0
## 28748                          Ireland 1875      395712
## 28749                           Israel 1875           0
## 28750                            Italy 1875    29183760
## 28751                          Jamaica 1875           0
## 28752                            Japan 1875     2172752
## 28753                           Jordan 1875           0
## 28754                       Kazakhstan 1875           0
## 28755                            Kenya 1875           0
## 28756                         Kiribati 1875           0
## 28757                           Kuwait 1875           0
## 28758                       Kyrgysztan 1875           0
## 28759                       Kyrgyzstan 1875           0
## 28760                             Laos 1875           0
## 28761                           Latvia 1875           0
## 28762                          Lebanon 1875           0
## 28763                          Lesotho 1875           0
## 28764                          Liberia 1875           0
## 28765                            Libya 1875           0
## 28766                    Liechtenstein 1875           0
## 28767                        Lithuania 1875           0
## 28768                       Luxembourg 1875           0
## 28769                            Macao 1875           0
## 28770                        Macedonia 1875           0
## 28771                       Madagascar 1875           0
## 28772                           Malawi 1875           0
## 28773                         Malaysia 1875           0
## 28774                         Maldives 1875           0
## 28775                             Mali 1875           0
## 28776                            Malta 1875           0
## 28777                 Marshall Islands 1875           0
## 28778                       Martinique 1875           0
## 28779                       Mauritania 1875           0
## 28780                        Mauritius 1875           0
## 28781                           Mexico 1875           0
## 28782             Micronesia (country) 1875           0
## 28783                      Middle East 1875     2476864
## 28784                          Moldova 1875           0
## 28785                         Mongolia 1875           0
## 28786                       Montenegro 1875           0
## 28787                       Montserrat 1875           0
## 28788                          Morocco 1875           0
## 28789                       Mozambique 1875           0
## 28790                          Myanmar 1875           0
## 28791                          Namibia 1875           0
## 28792                            Nauru 1875           0
## 28793                            Nepal 1875           0
## 28794                      Netherlands 1875   128305952
## 28795                    New Caledonia 1875           0
## 28796                      New Zealand 1875           0
## 28797                        Nicaragua 1875           0
## 28798                            Niger 1875           0
## 28799                          Nigeria 1875           0
## 28800                             Niue 1875           0
## 28801                      North Korea 1875           0
## 28802                           Norway 1875    12486912
## 28803                             Oman 1875           0
## 28804                         Pakistan 1875           0
## 28805                            Palau 1875           0
## 28806                        Palestine 1875           0
## 28807                           Panama 1875           0
## 28808                 Papua New Guinea 1875           0
## 28809                         Paraguay 1875           0
## 28810                             Peru 1875           0
## 28811                      Philippines 1875           0
## 28812                           Poland 1875   354517648
## 28813                         Portugal 1875     3004480
## 28814                            Qatar 1875           0
## 28815                          Reunion 1875           0
## 28816                          Romania 1875      414032
## 28817                           Russia 1875           0
## 28818                           Rwanda 1875           0
## 28819                     Saint Helena 1875           0
## 28820            Saint Kitts and Nevis 1875           0
## 28821                      Saint Lucia 1875           0
## 28822        Saint Pierre and Miquelon 1875           0
## 28823 Saint Vincent and the Grenadines 1875           0
## 28824                            Samoa 1875           0
## 28825            Sao Tome and Principe 1875           0
## 28826                     Saudi Arabia 1875           0
## 28827                          Senegal 1875           0
## 28828                           Serbia 1875           0
## 28829                       Seychelles 1875           0
## 28830                     Sierra Leone 1875           0
## 28831                        Singapore 1875           0
## 28832        Sint Maarten (Dutch part) 1875           0
## 28833                         Slovakia 1875           0
## 28834                         Slovenia 1875           0
## 28835                  Solomon Islands 1875           0
## 28836                          Somalia 1875           0
## 28837                     South Africa 1875           0
## 28838                      South Korea 1875           0
## 28839                      South Sudan 1875           0
## 28840                            Spain 1875    52083760
## 28841                        Sri Lanka 1875           0
## 28842                            Sudan 1875           0
## 28843                         Suriname 1875           0
## 28844                        Swaziland 1875           0
## 28845                           Sweden 1875    25486784
## 28846                      Switzerland 1875    13131776
## 28847                            Syria 1875           0
## 28848                           Taiwan 1875           0
## 28849                       Tajikistan 1875           0
## 28850                         Tanzania 1875           0
## 28851                         Thailand 1875           0
## 28852                            Timor 1875           0
## 28853                             Togo 1875           0
## 28854                            Tonga 1875           0
## 28855              Trinidad and Tobago 1875           0
## 28856                          Tunisia 1875           0
## 28857                           Turkey 1875     2476864
## 28858                     Turkmenistan 1875           0
## 28859         Turks and Caicos Islands 1875           0
## 28860                           Tuvalu 1875           0
## 28861                           Uganda 1875           0
## 28862                          Ukraine 1875           0
## 28863             United Arab Emirates 1875           0
## 28864                   United Kingdom 1875  8352553328
## 28865                    United States 1875  1869438752
## 28866                          Uruguay 1875           0
## 28867                       Uzbekistan 1875           0
## 28868                          Vanuatu 1875           0
## 28869                        Venezuela 1875           0
## 28870                          Vietnam 1875           0
## 28871        Wallis and Futuna Islands 1875           0
## 28872                            World 1875 14905258256
## 28873                            Yemen 1875           0
## 28874                           Zambia 1875           0
## 28875                         Zimbabwe 1875           0
## 28876                      Afghanistan 1876           0
## 28877                           Africa 1876           0
## 28878                          Albania 1876           0
## 28879                          Algeria 1876           0
## 28880                 Americas (other) 1876    22181856
## 28881                          Andorra 1876           0
## 28882                           Angola 1876           0
## 28883                         Anguilla 1876           0
## 28884              Antarctic Fisheries 1876           0
## 28885              Antigua and Barbuda 1876           0
## 28886                        Argentina 1876           0
## 28887                          Armenia 1876           0
## 28888                            Aruba 1876           0
## 28889         Asia and Pacific (other) 1876    44993920
## 28890                        Australia 1876    10713536
## 28891                          Austria 1876   187703056
## 28892                       Azerbaijan 1876           0
## 28893                          Bahamas 1876           0
## 28894                          Bahrain 1876           0
## 28895                       Bangladesh 1876           0
## 28896                         Barbados 1876           0
## 28897                          Belarus 1876           0
## 28898                          Belgium 1876   634835632
## 28899                           Belize 1876           0
## 28900                            Benin 1876           0
## 28901                          Bermuda 1876           0
## 28902                           Bhutan 1876           0
## 28903                          Bolivia 1876           0
## 28904  Bonaire Sint Eustatius and Saba 1876           0
## 28905           Bosnia and Herzegovina 1876           0
## 28906                         Botswana 1876           0
## 28907                           Brazil 1876           0
## 28908           British Virgin Islands 1876           0
## 28909                           Brunei 1876           0
## 28910                         Bulgaria 1876           0
## 28911                     Burkina Faso 1876           0
## 28912                          Burundi 1876           0
## 28913                         Cambodia 1876           0
## 28914                         Cameroon 1876           0
## 28915                           Canada 1876    22181856
## 28916                       Cape Verde 1876           0
## 28917                   Cayman Islands 1876           0
## 28918         Central African Republic 1876           0
## 28919                             Chad 1876           0
## 28920                            Chile 1876           0
## 28921                            China 1876           0
## 28922                 Christmas Island 1876           0
## 28923                         Colombia 1876           0
## 28924                          Comoros 1876           0
## 28925                            Congo 1876           0
## 28926                     Cook Islands 1876           0
## 28927                       Costa Rica 1876           0
## 28928                    Cote d'Ivoire 1876           0
## 28929                          Croatia 1876           0
## 28930                             Cuba 1876           0
## 28931                          Curacao 1876           0
## 28932                           Cyprus 1876           0
## 28933                   Czech Republic 1876           0
## 28934                   Czechoslovakia 1876    94446928
## 28935     Democratic Republic of Congo 1876           0
## 28936                          Denmark 1876    23339680
## 28937                         Djibouti 1876           0
## 28938                         Dominica 1876           0
## 28939               Dominican Republic 1876           0
## 28940                            EU-28 1876 13362754560
## 28941                          Ecuador 1876           0
## 28942                            Egypt 1876           0
## 28943                      El Salvador 1876           0
## 28944                Equatorial Guinea 1876           0
## 28945                          Eritrea 1876           0
## 28946                          Estonia 1876           0
## 28947                         Ethiopia 1876           0
## 28948                   Europe (other) 1876   182426896
## 28949                   Faeroe Islands 1876           0
## 28950                 Falkland Islands 1876           0
## 28951                             Fiji 1876           0
## 28952                          Finland 1876     1348352
## 28953                           France 1876  1513521456
## 28954                    French Guiana 1876           0
## 28955                 French Polynesia 1876           0
## 28956                            Gabon 1876           0
## 28957                           Gambia 1876           0
## 28958                          Georgia 1876           0
## 28959                          Germany 1876  1703514512
## 28960                            Ghana 1876           0
## 28961                        Gibraltar 1876           0
## 28962                           Greece 1876     1630480
## 28963                        Greenland 1876           0
## 28964                          Grenada 1876           0
## 28965                       Guadeloupe 1876           0
## 28966                        Guatemala 1876           0
## 28967                           Guinea 1876           0
## 28968                    Guinea-Bissau 1876           0
## 28969                           Guyana 1876           0
## 28970                            Haiti 1876           0
## 28971                         Honduras 1876           0
## 28972                        Hong Kong 1876           0
## 28973                          Hungary 1876    37797824
## 28974                          Iceland 1876           0
## 28975                            India 1876     5653552
## 28976                        Indonesia 1876           0
## 28977                             Iran 1876           0
## 28978                             Iraq 1876           0
## 28979                          Ireland 1876      395712
## 28980                           Israel 1876           0
## 28981                            Italy 1876    33291104
## 28982                          Jamaica 1876           0
## 28983                            Japan 1876     3576064
## 28984                           Jordan 1876           0
## 28985                       Kazakhstan 1876           0
## 28986                            Kenya 1876           0
## 28987                         Kiribati 1876           0
## 28988                           Kuwait 1876           0
## 28989                       Kyrgysztan 1876           0
## 28990                       Kyrgyzstan 1876           0
## 28991                             Laos 1876           0
## 28992                           Latvia 1876           0
## 28993                          Lebanon 1876           0
## 28994                          Lesotho 1876           0
## 28995                          Liberia 1876           0
## 28996                            Libya 1876           0
## 28997                    Liechtenstein 1876           0
## 28998                        Lithuania 1876           0
## 28999                       Luxembourg 1876           0
## 29000                            Macao 1876           0
## 29001                        Macedonia 1876           0
## 29002                       Madagascar 1876           0
## 29003                           Malawi 1876           0
## 29004                         Malaysia 1876           0
## 29005                         Maldives 1876           0
## 29006                             Mali 1876           0
## 29007                            Malta 1876           0
## 29008                 Marshall Islands 1876           0
## 29009                       Martinique 1876           0
## 29010                       Mauritania 1876           0
## 29011                        Mauritius 1876           0
## 29012                           Mexico 1876           0
## 29013             Micronesia (country) 1876           0
## 29014                      Middle East 1876     2751664
## 29015                          Moldova 1876           0
## 29016                         Mongolia 1876           0
## 29017                       Montenegro 1876           0
## 29018                       Montserrat 1876           0
## 29019                          Morocco 1876           0
## 29020                       Mozambique 1876           0
## 29021                          Myanmar 1876           0
## 29022                          Namibia 1876           0
## 29023                            Nauru 1876           0
## 29024                            Nepal 1876           0
## 29025                      Netherlands 1876   134516432
## 29026                    New Caledonia 1876           0
## 29027                      New Zealand 1876           0
## 29028                        Nicaragua 1876           0
## 29029                            Niger 1876           0
## 29030                          Nigeria 1876           0
## 29031                             Niue 1876           0
## 29032                      North Korea 1876           0
## 29033                           Norway 1876    13391920
## 29034                             Oman 1876           0
## 29035                         Pakistan 1876           0
## 29036                            Palau 1876           0
## 29037                        Palestine 1876           0
## 29038                           Panama 1876           0
## 29039                 Papua New Guinea 1876           0
## 29040                         Paraguay 1876           0
## 29041                             Peru 1876           0
## 29042                      Philippines 1876           0
## 29043                           Poland 1876   379106752
## 29044                         Portugal 1876     4151312
## 29045                            Qatar 1876           0
## 29046                          Reunion 1876           0
## 29047                          Romania 1876      461664
## 29048                           Russia 1876           0
## 29049                           Rwanda 1876           0
## 29050                     Saint Helena 1876           0
## 29051            Saint Kitts and Nevis 1876           0
## 29052                      Saint Lucia 1876           0
## 29053        Saint Pierre and Miquelon 1876           0
## 29054 Saint Vincent and the Grenadines 1876           0
## 29055                            Samoa 1876           0
## 29056            Sao Tome and Principe 1876           0
## 29057                     Saudi Arabia 1876           0
## 29058                          Senegal 1876           0
## 29059                           Serbia 1876           0
## 29060                       Seychelles 1876           0
## 29061                     Sierra Leone 1876           0
## 29062                        Singapore 1876           0
## 29063        Sint Maarten (Dutch part) 1876           0
## 29064                         Slovakia 1876           0
## 29065                         Slovenia 1876           0
## 29066                  Solomon Islands 1876           0
## 29067                          Somalia 1876           0
## 29068                     South Africa 1876           0
## 29069                      South Korea 1876           0
## 29070                      South Sudan 1876           0
## 29071                            Spain 1876    55652496
## 29072                        Sri Lanka 1876           0
## 29073                            Sudan 1876           0
## 29074                         Suriname 1876           0
## 29075                        Swaziland 1876           0
## 29076                           Sweden 1876    27916016
## 29077                      Switzerland 1876    14626688
## 29078                            Syria 1876           0
## 29079                           Taiwan 1876           0
## 29080                       Tajikistan 1876           0
## 29081                         Tanzania 1876           0
## 29082                         Thailand 1876           0
## 29083                            Timor 1876           0
## 29084                             Togo 1876           0
## 29085                            Tonga 1876           0
## 29086              Trinidad and Tobago 1876           0
## 29087                          Tunisia 1876           0
## 29088                           Turkey 1876     2751664
## 29089                     Turkmenistan 1876           0
## 29090         Turks and Caicos Islands 1876           0
## 29091                           Tuvalu 1876           0
## 29092                           Uganda 1876           0
## 29093                          Ukraine 1876           0
## 29094             United Arab Emirates 1876           0
## 29095                   United Kingdom 1876  8623572080
## 29096                    United States 1876  2002258752
## 29097                          Uruguay 1876           0
## 29098                       Uzbekistan 1876           0
## 29099                          Vanuatu 1876           0
## 29100                        Venezuela 1876           0
## 29101                          Vietnam 1876           0
## 29102        Wallis and Futuna Islands 1876           0
## 29103                            World 1876 15590810976
## 29104                            Yemen 1876           0
## 29105                           Zambia 1876           0
## 29106                         Zimbabwe 1876           0
## 29107                      Afghanistan 1877           0
## 29108                           Africa 1877           0
## 29109                          Albania 1877           0
## 29110                          Algeria 1877           0
## 29111                 Americas (other) 1877    24204384
## 29112                          Andorra 1877           0
## 29113                           Angola 1877           0
## 29114                         Anguilla 1877           0
## 29115              Antarctic Fisheries 1877           0
## 29116              Antigua and Barbuda 1877           0
## 29117                        Argentina 1877           0
## 29118                          Armenia 1877           0
## 29119                            Aruba 1877           0
## 29120         Asia and Pacific (other) 1877    51068832
## 29121                        Australia 1877    11779760
## 29122                          Austria 1877   194987088
## 29123                       Azerbaijan 1877           0
## 29124                          Bahamas 1877           0
## 29125                          Bahrain 1877           0
## 29126                       Bangladesh 1877           0
## 29127                         Barbados 1877           0
## 29128                          Belarus 1877           0
## 29129                          Belgium 1877   659886400
## 29130                           Belize 1877           0
## 29131                            Benin 1877           0
## 29132                          Bermuda 1877           0
## 29133                           Bhutan 1877           0
## 29134                          Bolivia 1877           0
## 29135  Bonaire Sint Eustatius and Saba 1877           0
## 29136           Bosnia and Herzegovina 1877           0
## 29137                         Botswana 1877           0
## 29138                           Brazil 1877           0
## 29139           British Virgin Islands 1877           0
## 29140                           Brunei 1877           0
## 29141                         Bulgaria 1877           0
## 29142                     Burkina Faso 1877           0
## 29143                          Burundi 1877           0
## 29144                         Cambodia 1877           0
## 29145                         Cameroon 1877           0
## 29146                           Canada 1877    24204384
## 29147                       Cape Verde 1877           0
## 29148                   Cayman Islands 1877           0
## 29149         Central African Republic 1877           0
## 29150                             Chad 1877           0
## 29151                            Chile 1877           0
## 29152                            China 1877           0
## 29153                 Christmas Island 1877           0
## 29154                         Colombia 1877           0
## 29155                          Comoros 1877           0
## 29156                            Congo 1877           0
## 29157                     Cook Islands 1877           0
## 29158                       Costa Rica 1877           0
## 29159                    Cote d'Ivoire 1877           0
## 29160                          Croatia 1877           0
## 29161                             Cuba 1877           0
## 29162                          Curacao 1877           0
## 29163                           Cyprus 1877           0
## 29164                   Czech Republic 1877           0
## 29165                   Czechoslovakia 1877   111682384
## 29166     Democratic Republic of Congo 1877           0
## 29167                          Denmark 1877    24863904
## 29168                         Djibouti 1877           0
## 29169                         Dominica 1877           0
## 29170               Dominican Republic 1877           0
## 29171                            EU-28 1877 13881060336
## 29172                          Ecuador 1877           0
## 29173                            Egypt 1877           0
## 29174                      El Salvador 1877           0
## 29175                Equatorial Guinea 1877           0
## 29176                          Eritrea 1877           0
## 29177                          Estonia 1877           0
## 29178                         Ethiopia 1877           0
## 29179                   Europe (other) 1877   211222272
## 29180                   Faeroe Islands 1877           0
## 29181                 Falkland Islands 1877           0
## 29182                             Fiji 1877           0
## 29183                          Finland 1877     1461936
## 29184                           France 1877  1577447264
## 29185                    French Guiana 1877           0
## 29186                 French Polynesia 1877           0
## 29187                            Gabon 1877           0
## 29188                           Gambia 1877           0
## 29189                          Georgia 1877           0
## 29190                          Germany 1877  1804816784
## 29191                            Ghana 1877           0
## 29192                        Gibraltar 1877           0
## 29193                           Greece 1877     1630480
## 29194                        Greenland 1877           0
## 29195                          Grenada 1877           0
## 29196                       Guadeloupe 1877           0
## 29197                        Guatemala 1877           0
## 29198                           Guinea 1877           0
## 29199                    Guinea-Bissau 1877           0
## 29200                           Guyana 1877           0
## 29201                            Haiti 1877           0
## 29202                         Honduras 1877           0
## 29203                        Hong Kong 1877           0
## 29204                          Hungary 1877    40685056
## 29205                          Iceland 1877           0
## 29206                            India 1877     5653552
## 29207                        Indonesia 1877           0
## 29208                             Iran 1877           0
## 29209                             Iraq 1877           0
## 29210                          Ireland 1877      395712
## 29211                           Israel 1877           0
## 29212                            Italy 1877    37094336
## 29213                          Jamaica 1877           0
## 29214                            Japan 1877     4865792
## 29215                           Jordan 1877           0
## 29216                       Kazakhstan 1877           0
## 29217                            Kenya 1877           0
## 29218                         Kiribati 1877           0
## 29219                           Kuwait 1877           0
## 29220                       Kyrgysztan 1877           0
## 29221                       Kyrgyzstan 1877           0
## 29222                             Laos 1877           0
## 29223                           Latvia 1877           0
## 29224                          Lebanon 1877           0
## 29225                          Lesotho 1877           0
## 29226                          Liberia 1877           0
## 29227                            Libya 1877           0
## 29228                    Liechtenstein 1877           0
## 29229                        Lithuania 1877           0
## 29230                       Luxembourg 1877           0
## 29231                            Macao 1877           0
## 29232                        Macedonia 1877           0
## 29233                       Madagascar 1877           0
## 29234                           Malawi 1877           0
## 29235                         Malaysia 1877           0
## 29236                         Maldives 1877           0
## 29237                             Mali 1877           0
## 29238                            Malta 1877           0
## 29239                 Marshall Islands 1877           0
## 29240                       Martinique 1877           0
## 29241                       Mauritania 1877           0
## 29242                        Mauritius 1877           0
## 29243                           Mexico 1877           0
## 29244             Micronesia (country) 1877           0
## 29245                      Middle East 1877     3198672
## 29246                          Moldova 1877           0
## 29247                         Mongolia 1877           0
## 29248                       Montenegro 1877           0
## 29249                       Montserrat 1877           0
## 29250                          Morocco 1877           0
## 29251                       Mozambique 1877           0
## 29252                          Myanmar 1877           0
## 29253                          Namibia 1877           0
## 29254                            Nauru 1877           0
## 29255                            Nepal 1877           0
## 29256                      Netherlands 1877   140825840
## 29257                    New Caledonia 1877           0
## 29258                      New Zealand 1877           0
## 29259                        Nicaragua 1877           0
## 29260                            Niger 1877           0
## 29261                          Nigeria 1877           0
## 29262                             Niue 1877           0
## 29263                      North Korea 1877           0
## 29264                           Norway 1877    14612032
## 29265                             Oman 1877           0
## 29266                         Pakistan 1877           0
## 29267                            Palau 1877           0
## 29268                        Palestine 1877           0
## 29269                           Panama 1877           0
## 29270                 Papua New Guinea 1877           0
## 29271                         Paraguay 1877           0
## 29272                             Peru 1877           0
## 29273                      Philippines 1877           0
## 29274                           Poland 1877   402241248
## 29275                         Portugal 1877     4821824
## 29276                            Qatar 1877           0
## 29277                          Reunion 1877           0
## 29278                          Romania 1877      509296
## 29279                           Russia 1877           0
## 29280                           Rwanda 1877           0
## 29281                     Saint Helena 1877           0
## 29282            Saint Kitts and Nevis 1877           0
## 29283                      Saint Lucia 1877           0
## 29284        Saint Pierre and Miquelon 1877           0
## 29285 Saint Vincent and the Grenadines 1877           0
## 29286                            Samoa 1877           0
## 29287            Sao Tome and Principe 1877           0
## 29288                     Saudi Arabia 1877           0
## 29289                          Senegal 1877           0
## 29290                           Serbia 1877           0
## 29291                       Seychelles 1877           0
## 29292                     Sierra Leone 1877           0
## 29293                        Singapore 1877           0
## 29294        Sint Maarten (Dutch part) 1877           0
## 29295                         Slovakia 1877           0
## 29296                         Slovenia 1877           0
## 29297                  Solomon Islands 1877           0
## 29298                          Somalia 1877           0
## 29299                     South Africa 1877           0
## 29300                      South Korea 1877           0
## 29301                      South Sudan 1877           0
## 29302                            Spain 1877    59433744
## 29303                        Sri Lanka 1877           0
## 29304                            Sudan 1877           0
## 29305                         Suriname 1877           0
## 29306                        Swaziland 1877           0
## 29307                           Sweden 1877    30488144
## 29308                      Switzerland 1877    16044656
## 29309                            Syria 1877           0
## 29310                           Taiwan 1877           0
## 29311                       Tajikistan 1877           0
## 29312                         Tanzania 1877           0
## 29313                         Thailand 1877           0
## 29314                            Timor 1877           0
## 29315                             Togo 1877           0
## 29316                            Tonga 1877           0
## 29317              Trinidad and Tobago 1877           0
## 29318                          Tunisia 1877           0
## 29319                           Turkey 1877     3198672
## 29320                     Turkmenistan 1877           0
## 29321         Turks and Caicos Islands 1877           0
## 29322                           Tuvalu 1877           0
## 29323                           Uganda 1877           0
## 29324                          Ukraine 1877           0
## 29325             United Arab Emirates 1877           0
## 29326                   United Kingdom 1877  8899471280
## 29327                    United States 1877  2149434304
## 29328                          Uruguay 1877           0
## 29329                       Uzbekistan 1877           0
## 29330                          Vanuatu 1877           0
## 29331                        Venezuela 1877           0
## 29332                          Vietnam 1877           0
## 29333        Wallis and Futuna Islands 1877           0
## 29334                            World 1877 16289909504
## 29335                            Yemen 1877           0
## 29336                           Zambia 1877           0
## 29337                         Zimbabwe 1877           0
## 29338                      Afghanistan 1878           0
## 29339                           Africa 1878           0
## 29340                          Albania 1878           0
## 29341                          Algeria 1878           0
## 29342                 Americas (other) 1878    26138976
## 29343                          Andorra 1878           0
## 29344                           Angola 1878           0
## 29345                         Anguilla 1878           0
## 29346              Antarctic Fisheries 1878           0
## 29347              Antigua and Barbuda 1878           0
## 29348                        Argentina 1878           0
## 29349                          Armenia 1878           0
## 29350                            Aruba 1878           0
## 29351         Asia and Pacific (other) 1878    56678416
## 29352                        Australia 1878    12747056
## 29353                          Austria 1878   202227152
## 29354                       Azerbaijan 1878           0
## 29355                          Bahamas 1878           0
## 29356                          Bahrain 1878           0
## 29357                       Bangladesh 1878           0
## 29358                         Barbados 1878           0
## 29359                          Belarus 1878           0
## 29360                          Belgium 1878   687124576
## 29361                           Belize 1878           0
## 29362                            Benin 1878           0
## 29363                          Bermuda 1878           0
## 29364                           Bhutan 1878           0
## 29365                          Bolivia 1878           0
## 29366  Bonaire Sint Eustatius and Saba 1878           0
## 29367           Bosnia and Herzegovina 1878           0
## 29368                         Botswana 1878           0
## 29369                           Brazil 1878           0
## 29370           British Virgin Islands 1878           0
## 29371                           Brunei 1878           0
## 29372                         Bulgaria 1878           0
## 29373                     Burkina Faso 1878           0
## 29374                          Burundi 1878           0
## 29375                         Cambodia 1878           0
## 29376                         Cameroon 1878           0
## 29377                           Canada 1878    26138976
## 29378                       Cape Verde 1878           0
## 29379                   Cayman Islands 1878           0
## 29380         Central African Republic 1878           0
## 29381                             Chad 1878           0
## 29382                            Chile 1878           0
## 29383                            China 1878           0
## 29384                 Christmas Island 1878           0
## 29385                         Colombia 1878           0
## 29386                          Comoros 1878           0
## 29387                            Congo 1878           0
## 29388                     Cook Islands 1878           0
## 29389                       Costa Rica 1878           0
## 29390                    Cote d'Ivoire 1878           0
## 29391                          Croatia 1878           0
## 29392                             Cuba 1878           0
## 29393                          Curacao 1878           0
## 29394                           Cyprus 1878           0
## 29395                   Czech Republic 1878           0
## 29396                   Czechoslovakia 1878   129749568
## 29397     Democratic Republic of Congo 1878           0
## 29398                          Denmark 1878    26311184
## 29399                         Djibouti 1878           0
## 29400                         Dominica 1878           0
## 29401               Dominican Republic 1878           0
## 29402                            EU-28 1878 14402161744
## 29403                          Ecuador 1878           0
## 29404                            Egypt 1878           0
## 29405                      El Salvador 1878           0
## 29406                Equatorial Guinea 1878           0
## 29407                          Eritrea 1878           0
## 29408                          Estonia 1878           0
## 29409                         Ethiopia 1878           0
## 29410                   Europe (other) 1878   243395856
## 29411                   Faeroe Islands 1878           0
## 29412                 Falkland Islands 1878           0
## 29413                             Fiji 1878           0
## 29414                          Finland 1878     1590176
## 29415                           France 1878  1642670128
## 29416                    French Guiana 1878           0
## 29417                 French Polynesia 1878           0
## 29418                            Gabon 1878           0
## 29419                           Gambia 1878           0
## 29420                          Georgia 1878           0
## 29421                          Germany 1878  1909361696
## 29422                            Ghana 1878           0
## 29423                        Gibraltar 1878           0
## 29424                           Greece 1878     1630480
## 29425                        Greenland 1878           0
## 29426                          Grenada 1878           0
## 29427                       Guadeloupe 1878           0
## 29428                        Guatemala 1878           0
## 29429                           Guinea 1878           0
## 29430                    Guinea-Bissau 1878           0
## 29431                           Guyana 1878           0
## 29432                            Haiti 1878           0
## 29433                         Honduras 1878           0
## 29434                        Hong Kong 1878           0
## 29435                          Hungary 1878    43561296
## 29436                          Iceland 1878           0
## 29437                            India 1878     7606464
## 29438                        Indonesia 1878           0
## 29439                             Iran 1878           0
## 29440                             Iraq 1878           0
## 29441                          Ireland 1878      395712
## 29442                           Israel 1878           0
## 29443                            Italy 1878    40879248
## 29444                          Jamaica 1878           0
## 29445                            Japan 1878     6723440
## 29446                           Jordan 1878           0
## 29447                       Kazakhstan 1878           0
## 29448                            Kenya 1878           0
## 29449                         Kiribati 1878           0
## 29450                           Kuwait 1878           0
## 29451                       Kyrgysztan 1878           0
## 29452                       Kyrgyzstan 1878           0
## 29453                             Laos 1878           0
## 29454                           Latvia 1878           0
## 29455                          Lebanon 1878           0
## 29456                          Lesotho 1878           0
## 29457                          Liberia 1878           0
## 29458                            Libya 1878           0
## 29459                    Liechtenstein 1878           0
## 29460                        Lithuania 1878           0
## 29461                       Luxembourg 1878           0
## 29462                            Macao 1878           0
## 29463                        Macedonia 1878           0
## 29464                       Madagascar 1878           0
## 29465                           Malawi 1878           0
## 29466                         Malaysia 1878           0
## 29467                         Maldives 1878           0
## 29468                             Mali 1878           0
## 29469                            Malta 1878           0
## 29470                 Marshall Islands 1878           0
## 29471                       Martinique 1878           0
## 29472                       Mauritania 1878           0
## 29473                        Mauritius 1878           0
## 29474                           Mexico 1878           0
## 29475             Micronesia (country) 1878           0
## 29476                      Middle East 1878     3524768
## 29477                          Moldova 1878           0
## 29478                         Mongolia 1878           0
## 29479                       Montenegro 1878           0
## 29480                       Montserrat 1878           0
## 29481                          Morocco 1878           0
## 29482                       Mozambique 1878           0
## 29483                          Myanmar 1878           0
## 29484                          Namibia 1878           0
## 29485                            Nauru 1878           0
## 29486                            Nepal 1878           0
## 29487                      Netherlands 1878   147512640
## 29488                    New Caledonia 1878           0
## 29489                      New Zealand 1878      355408
## 29490                        Nicaragua 1878           0
## 29491                            Niger 1878           0
## 29492                          Nigeria 1878           0
## 29493                             Niue 1878           0
## 29494                      North Korea 1878           0
## 29495                           Norway 1878    15700240
## 29496                             Oman 1878           0
## 29497                         Pakistan 1878           0
## 29498                            Palau 1878           0
## 29499                        Palestine 1878           0
## 29500                           Panama 1878           0
## 29501                 Papua New Guinea 1878           0
## 29502                         Paraguay 1878           0
## 29503                             Peru 1878           0
## 29504                      Philippines 1878           0
## 29505                           Poland 1878   426573872
## 29506                         Portugal 1878     5463024
## 29507                            Qatar 1878           0
## 29508                          Reunion 1878           0
## 29509                          Romania 1878      556928
## 29510                           Russia 1878           0
## 29511                           Rwanda 1878           0
## 29512                     Saint Helena 1878           0
## 29513            Saint Kitts and Nevis 1878           0
## 29514                      Saint Lucia 1878           0
## 29515        Saint Pierre and Miquelon 1878           0
## 29516 Saint Vincent and the Grenadines 1878           0
## 29517                            Samoa 1878           0
## 29518            Sao Tome and Principe 1878           0
## 29519                     Saudi Arabia 1878           0
## 29520                          Senegal 1878           0
## 29521                           Serbia 1878           0
## 29522                       Seychelles 1878           0
## 29523                     Sierra Leone 1878           0
## 29524                        Singapore 1878           0
## 29525        Sint Maarten (Dutch part) 1878           0
## 29526                         Slovakia 1878           0
## 29527                         Slovenia 1878           0
## 29528                  Solomon Islands 1878           0
## 29529                          Somalia 1878           0
## 29530                     South Africa 1878           0
## 29531                      South Korea 1878           0
## 29532                      South Sudan 1878           0
## 29533                            Spain 1878    63189344
## 29534                        Sri Lanka 1878           0
## 29535                            Sudan 1878           0
## 29536                         Suriname 1878           0
## 29537                        Swaziland 1878           0
## 29538                           Sweden 1878    32668224
## 29539                      Switzerland 1878    17400336
## 29540                            Syria 1878           0
## 29541                           Taiwan 1878           0
## 29542                       Tajikistan 1878           0
## 29543                         Tanzania 1878           0
## 29544                         Thailand 1878           0
## 29545                            Timor 1878           0
## 29546                             Togo 1878           0
## 29547                            Tonga 1878           0
## 29548              Trinidad and Tobago 1878           0
## 29549                          Tunisia 1878           0
## 29550                           Turkey 1878     3524768
## 29551                     Turkmenistan 1878           0
## 29552         Turks and Caicos Islands 1878           0
## 29553                           Tuvalu 1878           0
## 29554                           Uganda 1878           0
## 29555                          Ukraine 1878           0
## 29556             United Arab Emirates 1878           0
## 29557                   United Kingdom 1878  9170446064
## 29558                    United States 1878  2293337904
## 29559                          Uruguay 1878           0
## 29560                       Uzbekistan 1878           0
## 29561                          Vanuatu 1878           0
## 29562                        Venezuela 1878           0
## 29563                          Vietnam 1878           0
## 29564        Wallis and Futuna Islands 1878           0
## 29565                            World 1878 16994474720
## 29566                            Yemen 1878           0
## 29567                           Zambia 1878           0
## 29568                         Zimbabwe 1878           0
## 29569                      Afghanistan 1879           0
## 29570                           Africa 1879           0
## 29571                          Albania 1879           0
## 29572                          Algeria 1879           0
## 29573                 Americas (other) 1879    28322720
## 29574                          Andorra 1879           0
## 29575                           Angola 1879           0
## 29576                         Anguilla 1879           0
## 29577              Antarctic Fisheries 1879           0
## 29578              Antigua and Barbuda 1879           0
## 29579                        Argentina 1879           0
## 29580                          Armenia 1879           0
## 29581                            Aruba 1879           0
## 29582         Asia and Pacific (other) 1879    63955120
## 29583                        Australia 1879    14201664
## 29584                          Austria 1879   211090368
## 29585                       Azerbaijan 1879           0
## 29586                          Bahamas 1879           0
## 29587                          Bahrain 1879           0
## 29588                       Bangladesh 1879           0
## 29589                         Barbados 1879           0
## 29590                          Belarus 1879           0
## 29591                          Belgium 1879   714857392
## 29592                           Belize 1879           0
## 29593                            Benin 1879           0
## 29594                          Bermuda 1879           0
## 29595                           Bhutan 1879           0
## 29596                          Bolivia 1879           0
## 29597  Bonaire Sint Eustatius and Saba 1879           0
## 29598           Bosnia and Herzegovina 1879           0
## 29599                         Botswana 1879           0
## 29600                           Brazil 1879           0
## 29601           British Virgin Islands 1879           0
## 29602                           Brunei 1879           0
## 29603                         Bulgaria 1879           0
## 29604                     Burkina Faso 1879           0
## 29605                          Burundi 1879           0
## 29606                         Cambodia 1879           0
## 29607                         Cameroon 1879           0
## 29608                           Canada 1879    28322720
## 29609                       Cape Verde 1879           0
## 29610                   Cayman Islands 1879           0
## 29611         Central African Republic 1879           0
## 29612                             Chad 1879           0
## 29613                            Chile 1879           0
## 29614                            China 1879           0
## 29615                 Christmas Island 1879           0
## 29616                         Colombia 1879           0
## 29617                          Comoros 1879           0
## 29618                            Congo 1879           0
## 29619                     Cook Islands 1879           0
## 29620                       Costa Rica 1879           0
## 29621                    Cote d'Ivoire 1879           0
## 29622                          Croatia 1879           0
## 29623                             Cuba 1879           0
## 29624                          Curacao 1879           0
## 29625                           Cyprus 1879           0
## 29626                   Czech Republic 1879           0
## 29627                   Czechoslovakia 1879   149165104
## 29628     Democratic Republic of Congo 1879           0
## 29629                          Denmark 1879    27945328
## 29630                         Djibouti 1879           0
## 29631                         Dominica 1879           0
## 29632               Dominican Republic 1879           0
## 29633                            EU-28 1879 14939326128
## 29634                          Ecuador 1879           0
## 29635                            Egypt 1879           0
## 29636                      El Salvador 1879           0
## 29637                Equatorial Guinea 1879           0
## 29638                          Eritrea 1879           0
## 29639                          Estonia 1879           0
## 29640                         Ethiopia 1879           0
## 29641                   Europe (other) 1879   277364800
## 29642                   Faeroe Islands 1879           0
## 29643                 Falkland Islands 1879           0
## 29644                             Fiji 1879           0
## 29645                          Finland 1879     1667120
## 29646                           France 1879  1710168336
## 29647                    French Guiana 1879           0
## 29648                 French Polynesia 1879           0
## 29649                            Gabon 1879           0
## 29650                           Gambia 1879           0
## 29651                          Georgia 1879           0
## 29652                          Germany 1879  2020208688
## 29653                            Ghana 1879           0
## 29654                        Gibraltar 1879           0
## 29655                           Greece 1879     1634144
## 29656                        Greenland 1879           0
## 29657                          Grenada 1879           0
## 29658                       Guadeloupe 1879           0
## 29659                        Guatemala 1879           0
## 29660                           Guinea 1879           0
## 29661                    Guinea-Bissau 1879           0
## 29662                           Guyana 1879           0
## 29663                            Haiti 1879           0
## 29664                         Honduras 1879           0
## 29665                        Hong Kong 1879           0
## 29666                          Hungary 1879    46430208
## 29667                          Iceland 1879           0
## 29668                            India 1879     9460448
## 29669                        Indonesia 1879           0
## 29670                             Iran 1879           0
## 29671                             Iraq 1879           0
## 29672                          Ireland 1879      395712
## 29673                           Israel 1879           0
## 29674                            Italy 1879    45235744
## 29675                          Jamaica 1879           0
## 29676                            Japan 1879     9039088
## 29677                           Jordan 1879           0
## 29678                       Kazakhstan 1879           0
## 29679                            Kenya 1879           0
## 29680                         Kiribati 1879           0
## 29681                           Kuwait 1879           0
## 29682                       Kyrgysztan 1879           0
## 29683                       Kyrgyzstan 1879           0
## 29684                             Laos 1879           0
## 29685                           Latvia 1879           0
## 29686                          Lebanon 1879           0
## 29687                          Lesotho 1879           0
## 29688                          Liberia 1879           0
## 29689                            Libya 1879           0
## 29690                    Liechtenstein 1879           0
## 29691                        Lithuania 1879           0
## 29692                       Luxembourg 1879           0
## 29693                            Macao 1879           0
## 29694                        Macedonia 1879           0
## 29695                       Madagascar 1879           0
## 29696                           Malawi 1879           0
## 29697                         Malaysia 1879           0
## 29698                         Maldives 1879           0
## 29699                             Mali 1879           0
## 29700                            Malta 1879           0
## 29701                 Marshall Islands 1879           0
## 29702                       Martinique 1879           0
## 29703                       Mauritania 1879           0
## 29704                        Mauritius 1879           0
## 29705                           Mexico 1879           0
## 29706             Micronesia (country) 1879           0
## 29707                      Middle East 1879     3649344
## 29708                          Moldova 1879           0
## 29709                         Mongolia 1879           0
## 29710                       Montenegro 1879           0
## 29711                       Montserrat 1879           0
## 29712                          Morocco 1879           0
## 29713                       Mozambique 1879           0
## 29714                          Myanmar 1879           0
## 29715                          Namibia 1879           0
## 29716                            Nauru 1879           0
## 29717                            Nepal 1879           0
## 29718                      Netherlands 1879   154723392
## 29719                    New Caledonia 1879           0
## 29720                      New Zealand 1879      861040
## 29721                        Nicaragua 1879           0
## 29722                            Niger 1879           0
## 29723                          Nigeria 1879           0
## 29724                             Niue 1879           0
## 29725                      North Korea 1879           0
## 29726                           Norway 1879    16843408
## 29727                             Oman 1879           0
## 29728                         Pakistan 1879           0
## 29729                            Palau 1879           0
## 29730                        Palestine 1879           0
## 29731                           Panama 1879           0
## 29732                 Papua New Guinea 1879           0
## 29733                         Paraguay 1879           0
## 29734                             Peru 1879           0
## 29735                      Philippines 1879           0
## 29736                           Poland 1879   453060928
## 29737                         Portugal 1879     6170176
## 29738                            Qatar 1879           0
## 29739                          Reunion 1879           0
## 29740                          Romania 1879      604560
## 29741                           Russia 1879           0
## 29742                           Rwanda 1879           0
## 29743                     Saint Helena 1879           0
## 29744            Saint Kitts and Nevis 1879           0
## 29745                      Saint Lucia 1879           0
## 29746        Saint Pierre and Miquelon 1879           0
## 29747 Saint Vincent and the Grenadines 1879           0
## 29748                            Samoa 1879           0
## 29749            Sao Tome and Principe 1879           0
## 29750                     Saudi Arabia 1879           0
## 29751                          Senegal 1879           0
## 29752                           Serbia 1879           0
## 29753                       Seychelles 1879           0
## 29754                     Sierra Leone 1879           0
## 29755                        Singapore 1879           0
## 29756        Sint Maarten (Dutch part) 1879           0
## 29757                         Slovakia 1879           0
## 29758                         Slovenia 1879           0
## 29759                  Solomon Islands 1879           0
## 29760                          Somalia 1879           0
## 29761                     South Africa 1879           0
## 29762                      South Korea 1879           0
## 29763                      South Sudan 1879           0
## 29764                            Spain 1879    67161120
## 29765                        Sri Lanka 1879           0
## 29766                            Sudan 1879           0
## 29767                         Suriname 1879           0
## 29768                        Swaziland 1879           0
## 29769                           Sweden 1879    34881280
## 29770                      Switzerland 1879    18847616
## 29771                            Syria 1879           0
## 29772                           Taiwan 1879           0
## 29773                       Tajikistan 1879           0
## 29774                         Tanzania 1879           0
## 29775                         Thailand 1879           0
## 29776                            Timor 1879           0
## 29777                             Togo 1879           0
## 29778                            Tonga 1879           0
## 29779              Trinidad and Tobago 1879           0
## 29780                          Tunisia 1879           0
## 29781                           Turkey 1879     3649344
## 29782                     Turkmenistan 1879           0
## 29783         Turks and Caicos Islands 1879           0
## 29784                           Tuvalu 1879           0
## 29785                           Uganda 1879           0
## 29786                          Ukraine 1879           0
## 29787             United Arab Emirates 1879           0
## 29788                   United Kingdom 1879  9443091632
## 29789                    United States 1879  2468806864
## 29790                          Uruguay 1879           0
## 29791                       Uzbekistan 1879           0
## 29792                          Vanuatu 1879           0
## 29793                        Venezuela 1879           0
## 29794                          Vietnam 1879           0
## 29795        Wallis and Futuna Islands 1879           0
## 29796                            World 1879 17749511536
## 29797                            Yemen 1879           0
## 29798                           Zambia 1879           0
## 29799                         Zimbabwe 1879           0
## 29800                      Afghanistan 1880           0
## 29801                           Africa 1880           0
## 29802                          Albania 1880           0
## 29803                          Algeria 1880           0
## 29804                 Americas (other) 1880    33554912
## 29805                          Andorra 1880           0
## 29806                           Angola 1880           0
## 29807                         Anguilla 1880           0
## 29808              Antarctic Fisheries 1880           0
## 29809              Antigua and Barbuda 1880           0
## 29810                        Argentina 1880           0
## 29811                          Armenia 1880           0
## 29812                            Aruba 1880           0
## 29813         Asia and Pacific (other) 1880    72331024
## 29814                        Australia 1880    16407392
## 29815                          Austria 1880   234737824
## 29816                       Azerbaijan 1880           0
## 29817                          Bahamas 1880           0
## 29818                          Bahrain 1880           0
## 29819                       Bangladesh 1880           0
## 29820                         Barbados 1880           0
## 29821                          Belarus 1880           0
## 29822                          Belgium 1880   745283248
## 29823                           Belize 1880           0
## 29824                            Benin 1880           0
## 29825                          Bermuda 1880           0
## 29826                           Bhutan 1880           0
## 29827                          Bolivia 1880           0
## 29828  Bonaire Sint Eustatius and Saba 1880           0
## 29829           Bosnia and Herzegovina 1880           0
## 29830                         Botswana 1880           0
## 29831                           Brazil 1880           0
## 29832           British Virgin Islands 1880           0
## 29833                           Brunei 1880           0
## 29834                         Bulgaria 1880           0
## 29835                     Burkina Faso 1880           0
## 29836                          Burundi 1880           0
## 29837                         Cambodia 1880           0
## 29838                         Cameroon 1880           0
## 29839                           Canada 1880    33554912
## 29840                       Cape Verde 1880           0
## 29841                   Cayman Islands 1880           0
## 29842         Central African Republic 1880           0
## 29843                             Chad 1880           0
## 29844                            Chile 1880           0
## 29845                            China 1880           0
## 29846                 Christmas Island 1880           0
## 29847                         Colombia 1880           0
## 29848                          Comoros 1880           0
## 29849                            Congo 1880           0
## 29850                     Cook Islands 1880           0
## 29851                       Costa Rica 1880           0
## 29852                    Cote d'Ivoire 1880           0
## 29853                          Croatia 1880           0
## 29854                             Cuba 1880           0
## 29855                          Curacao 1880           0
## 29856                           Cyprus 1880           0
## 29857                   Czech Republic 1880           0
## 29858                   Czechoslovakia 1880   169734800
## 29859     Democratic Republic of Congo 1880           0
## 29860                          Denmark 1880    29806640
## 29861                         Djibouti 1880           0
## 29862                         Dominica 1880           0
## 29863               Dominican Republic 1880           0
## 29864                            EU-28 1880 15544358784
## 29865                          Ecuador 1880           0
## 29866                            Egypt 1880           0
## 29867                      El Salvador 1880           0
## 29868                Equatorial Guinea 1880           0
## 29869                          Eritrea 1880           0
## 29870                          Estonia 1880           0
## 29871                         Ethiopia 1880           0
## 29872                   Europe (other) 1880   314884160
## 29873                   Faeroe Islands 1880           0
## 29874                 Falkland Islands 1880           0
## 29875                             Fiji 1880           0
## 29876                          Finland 1880     1766048
## 29877                           France 1880  1786317248
## 29878                    French Guiana 1880           0
## 29879                 French Polynesia 1880           0
## 29880                            Gabon 1880           0
## 29881                           Gambia 1880           0
## 29882                          Georgia 1880           0
## 29883                          Germany 1880  2144711408
## 29884                            Ghana 1880           0
## 29885                        Gibraltar 1880           0
## 29886                           Greece 1880     1634144
## 29887                        Greenland 1880           0
## 29888                          Grenada 1880           0
## 29889                       Guadeloupe 1880           0
## 29890                        Guatemala 1880           0
## 29891                           Guinea 1880           0
## 29892                    Guinea-Bissau 1880           0
## 29893                           Guyana 1880           0
## 29894                            Haiti 1880           0
## 29895                         Honduras 1880           0
## 29896                        Hong Kong 1880           0
## 29897                          Hungary 1880    49742464
## 29898                          Iceland 1880           0
## 29899                            India 1880    11534272
## 29900                        Indonesia 1880           0
## 29901                             Iran 1880           0
## 29902                             Iraq 1880           0
## 29903                          Ireland 1880      747456
## 29904                           Israel 1880           0
## 29905                            Italy 1880    50303056
## 29906                          Jamaica 1880           0
## 29907                            Japan 1880    11387712
## 29908                           Jordan 1880           0
## 29909                       Kazakhstan 1880           0
## 29910                            Kenya 1880           0
## 29911                         Kiribati 1880           0
## 29912                           Kuwait 1880           0
## 29913                       Kyrgysztan 1880           0
## 29914                       Kyrgyzstan 1880           0
## 29915                             Laos 1880           0
## 29916                           Latvia 1880           0
## 29917                          Lebanon 1880           0
## 29918                          Lesotho 1880           0
## 29919                          Liberia 1880           0
## 29920                            Libya 1880           0
## 29921                    Liechtenstein 1880           0
## 29922                        Lithuania 1880           0
## 29923                       Luxembourg 1880           0
## 29924                            Macao 1880           0
## 29925                        Macedonia 1880           0
## 29926                       Madagascar 1880           0
## 29927                           Malawi 1880           0
## 29928                         Malaysia 1880           0
## 29929                         Maldives 1880           0
## 29930                             Mali 1880           0
## 29931                            Malta 1880           0
## 29932                 Marshall Islands 1880           0
## 29933                       Martinique 1880           0
## 29934                       Mauritania 1880           0
## 29935                        Mauritius 1880           0
## 29936                           Mexico 1880           0
## 29937             Micronesia (country) 1880           0
## 29938                      Middle East 1880     3788576
## 29939                          Moldova 1880           0
## 29940                         Mongolia 1880           0
## 29941                       Montenegro 1880           0
## 29942                       Montserrat 1880           0
## 29943                          Morocco 1880           0
## 29944                       Mozambique 1880           0
## 29945                          Myanmar 1880           0
## 29946                          Namibia 1880           0
## 29947                            Nauru 1880           0
## 29948                            Nepal 1880           0
## 29949                      Netherlands 1880   162696256
## 29950                    New Caledonia 1880           0
## 29951                      New Zealand 1880     1516896
## 29952                        Nicaragua 1880           0
## 29953                            Niger 1880           0
## 29954                          Nigeria 1880           0
## 29955                             Niue 1880           0
## 29956                      North Korea 1880           0
## 29957                           Norway 1880    18092832
## 29958                             Oman 1880           0
## 29959                         Pakistan 1880           0
## 29960                            Palau 1880           0
## 29961                        Palestine 1880           0
## 29962                           Panama 1880           0
## 29963                 Papua New Guinea 1880           0
## 29964                         Paraguay 1880           0
## 29965                             Peru 1880           0
## 29966                      Philippines 1880           0
## 29967                           Poland 1880   479408752
## 29968                         Portugal 1880     7049536
## 29969                            Qatar 1880           0
## 29970                          Reunion 1880           0
## 29971                          Romania 1880      652192
## 29972                           Russia 1880           0
## 29973                           Rwanda 1880           0
## 29974                     Saint Helena 1880           0
## 29975            Saint Kitts and Nevis 1880           0
## 29976                      Saint Lucia 1880           0
## 29977        Saint Pierre and Miquelon 1880           0
## 29978 Saint Vincent and the Grenadines 1880           0
## 29979                            Samoa 1880           0
## 29980            Sao Tome and Principe 1880           0
## 29981                     Saudi Arabia 1880           0
## 29982                          Senegal 1880           0
## 29983                           Serbia 1880           0
## 29984                       Seychelles 1880           0
## 29985                     Sierra Leone 1880           0
## 29986                        Singapore 1880           0
## 29987        Sint Maarten (Dutch part) 1880           0
## 29988                         Slovakia 1880           0
## 29989                         Slovenia 1880           0
## 29990                  Solomon Islands 1880           0
## 29991                          Somalia 1880           0
## 29992                     South Africa 1880           0
## 29993                      South Korea 1880           0
## 29994                      South Sudan 1880           0
## 29995                            Spain 1880    71576240
## 29996                        Sri Lanka 1880           0
## 29997                            Sudan 1880           0
## 29998                         Suriname 1880           0
## 29999                        Swaziland 1880           0
## 30000                           Sweden 1880    37709888
## 30001                      Switzerland 1880    20518400
## 30002                            Syria 1880           0
## 30003                           Taiwan 1880           0
## 30004                       Tajikistan 1880           0
## 30005                         Tanzania 1880           0
## 30006                         Thailand 1880           0
## 30007                            Timor 1880           0
## 30008                             Togo 1880           0
## 30009                            Tonga 1880           0
## 30010              Trinidad and Tobago 1880           0
## 30011                          Tunisia 1880           0
## 30012                           Turkey 1880     3788576
## 30013                     Turkmenistan 1880           0
## 30014         Turks and Caicos Islands 1880           0
## 30015                           Tuvalu 1880           0
## 30016                           Uganda 1880           0
## 30017                          Ukraine 1880           0
## 30018             United Arab Emirates 1880           0
## 30019                   United Kingdom 1880  9740216384
## 30020                    United States 1880  2667490928
## 30021                          Uruguay 1880           0
## 30022                       Uzbekistan 1880           0
## 30023                          Vanuatu 1880           0
## 30024                        Venezuela 1880           0
## 30025                          Vietnam 1880           0
## 30026        Wallis and Futuna Islands 1880           0
## 30027                            World 1880 18603403072
## 30028                            Yemen 1880           0
## 30029                           Zambia 1880           0
## 30030                         Zimbabwe 1880           0
## 30031                      Afghanistan 1881           0
## 30032                           Africa 1881           0
## 30033                          Albania 1881           0
## 30034                          Algeria 1881           0
## 30035                 Americas (other) 1881    39142512
## 30036                          Andorra 1881           0
## 30037                           Angola 1881           0
## 30038                         Anguilla 1881           0
## 30039              Antarctic Fisheries 1881           0
## 30040              Antigua and Barbuda 1881           0
## 30041                        Argentina 1881           0
## 30042                          Armenia 1881           0
## 30043                            Aruba 1881           0
## 30044         Asia and Pacific (other) 1881    81164928
## 30045                        Australia 1881    18173440
## 30046                          Austria 1881   245051984
## 30047                       Azerbaijan 1881           0
## 30048                          Bahamas 1881           0
## 30049                          Bahrain 1881           0
## 30050                       Bangladesh 1881           0
## 30051                         Barbados 1881           0
## 30052                          Belarus 1881           0
## 30053                          Belgium 1881   775914288
## 30054                           Belize 1881           0
## 30055                            Benin 1881           0
## 30056                          Bermuda 1881           0
## 30057                           Bhutan 1881           0
## 30058                          Bolivia 1881           0
## 30059  Bonaire Sint Eustatius and Saba 1881           0
## 30060           Bosnia and Herzegovina 1881           0
## 30061                         Botswana 1881           0
## 30062                           Brazil 1881           0
## 30063           British Virgin Islands 1881           0
## 30064                           Brunei 1881           0
## 30065                         Bulgaria 1881        3664
## 30066                     Burkina Faso 1881           0
## 30067                          Burundi 1881           0
## 30068                         Cambodia 1881           0
## 30069                         Cameroon 1881           0
## 30070                           Canada 1881    39146176
## 30071                       Cape Verde 1881           0
## 30072                   Cayman Islands 1881           0
## 30073         Central African Republic 1881           0
## 30074                             Chad 1881           0
## 30075                            Chile 1881           0
## 30076                            China 1881           0
## 30077                 Christmas Island 1881           0
## 30078                         Colombia 1881           0
## 30079                          Comoros 1881           0
## 30080                            Congo 1881           0
## 30081                     Cook Islands 1881           0
## 30082                       Costa Rica 1881           0
## 30083                    Cote d'Ivoire 1881           0
## 30084                          Croatia 1881           0
## 30085                             Cuba 1881           0
## 30086                          Curacao 1881           0
## 30087                           Cyprus 1881           0
## 30088                   Czech Republic 1881           0
## 30089                   Czechoslovakia 1881   191458656
## 30090     Democratic Republic of Congo 1881           0
## 30091                          Denmark 1881    31777872
## 30092                         Djibouti 1881           0
## 30093                         Dominica 1881           0
## 30094               Dominican Republic 1881           0
## 30095                            EU-28 1881 16164681312
## 30096                          Ecuador 1881           0
## 30097                            Egypt 1881           0
## 30098                      El Salvador 1881           0
## 30099                Equatorial Guinea 1881           0
## 30100                          Eritrea 1881           0
## 30101                          Estonia 1881           0
## 30102                         Ethiopia 1881           0
## 30103                   Europe (other) 1881   354250176
## 30104                   Faeroe Islands 1881           0
## 30105                 Falkland Islands 1881           0
## 30106                             Fiji 1881           0
## 30107                          Finland 1881     1864976
## 30108                           France 1881  1864301824
## 30109                    French Guiana 1881           0
## 30110                 French Polynesia 1881           0
## 30111                            Gabon 1881           0
## 30112                           Gambia 1881           0
## 30113                          Georgia 1881           0
## 30114                          Germany 1881  2278975024
## 30115                            Ghana 1881           0
## 30116                        Gibraltar 1881           0
## 30117                           Greece 1881     1634144
## 30118                        Greenland 1881           0
## 30119                          Grenada 1881           0
## 30120                       Guadeloupe 1881           0
## 30121                        Guatemala 1881           0
## 30122                           Guinea 1881           0
## 30123                    Guinea-Bissau 1881           0
## 30124                           Guyana 1881           0
## 30125                            Haiti 1881           0
## 30126                         Honduras 1881           0
## 30127                        Hong Kong 1881           0
## 30128                          Hungary 1881    53292880
## 30129                          Iceland 1881           0
## 30130                            India 1881    13556800
## 30131                        Indonesia 1881           0
## 30132                             Iran 1881           0
## 30133                             Iraq 1881           0
## 30134                          Ireland 1881     1099200
## 30135                           Israel 1881           0
## 30136                            Italy 1881    56260720
## 30137                          Jamaica 1881           0
## 30138                            Japan 1881    13802288
## 30139                           Jordan 1881           0
## 30140                       Kazakhstan 1881           0
## 30141                            Kenya 1881           0
## 30142                         Kiribati 1881           0
## 30143                           Kuwait 1881           0
## 30144                       Kyrgysztan 1881           0
## 30145                       Kyrgyzstan 1881           0
## 30146                             Laos 1881           0
## 30147                           Latvia 1881           0
## 30148                          Lebanon 1881           0
## 30149                          Lesotho 1881           0
## 30150                          Liberia 1881           0
## 30151                            Libya 1881           0
## 30152                    Liechtenstein 1881           0
## 30153                        Lithuania 1881           0
## 30154                       Luxembourg 1881           0
## 30155                            Macao 1881           0
## 30156                        Macedonia 1881           0
## 30157                       Madagascar 1881           0
## 30158                           Malawi 1881           0
## 30159                         Malaysia 1881           0
## 30160                         Maldives 1881           0
## 30161                             Mali 1881           0
## 30162                            Malta 1881           0
## 30163                 Marshall Islands 1881           0
## 30164                       Martinique 1881           0
## 30165                       Mauritania 1881           0
## 30166                        Mauritius 1881           0
## 30167                           Mexico 1881           0
## 30168             Micronesia (country) 1881           0
## 30169                      Middle East 1881     3971776
## 30170                          Moldova 1881           0
## 30171                         Mongolia 1881           0
## 30172                       Montenegro 1881           0
## 30173                       Montserrat 1881           0
## 30174                          Morocco 1881           0
## 30175                       Mozambique 1881           0
## 30176                          Myanmar 1881           0
## 30177                          Namibia 1881           0
## 30178                            Nauru 1881           0
## 30179                            Nepal 1881           0
## 30180                      Netherlands 1881   170724080
## 30181                    New Caledonia 1881           0
## 30182                      New Zealand 1881     2253360
## 30183                        Nicaragua 1881           0
## 30184                            Niger 1881           0
## 30185                          Nigeria 1881           0
## 30186                             Niue 1881           0
## 30187                      North Korea 1881           0
## 30188                           Norway 1881    19386224
## 30189                             Oman 1881           0
## 30190                         Pakistan 1881           0
## 30191                            Palau 1881           0
## 30192                        Palestine 1881           0
## 30193                           Panama 1881           0
## 30194                 Papua New Guinea 1881           0
## 30195                         Paraguay 1881           0
## 30196                             Peru 1881           0
## 30197                      Philippines 1881           0
## 30198                           Poland 1881   505639328
## 30199                         Portugal 1881     7939888
## 30200                            Qatar 1881           0
## 30201                          Reunion 1881           0
## 30202                          Romania 1881      703488
## 30203                           Russia 1881           0
## 30204                           Rwanda 1881           0
## 30205                     Saint Helena 1881           0
## 30206            Saint Kitts and Nevis 1881           0
## 30207                      Saint Lucia 1881           0
## 30208        Saint Pierre and Miquelon 1881           0
## 30209 Saint Vincent and the Grenadines 1881           0
## 30210                            Samoa 1881           0
## 30211            Sao Tome and Principe 1881           0
## 30212                     Saudi Arabia 1881           0
## 30213                          Senegal 1881           0
## 30214                           Serbia 1881           0
## 30215                       Seychelles 1881           0
## 30216                     Sierra Leone 1881           0
## 30217                        Singapore 1881           0
## 30218        Sint Maarten (Dutch part) 1881           0
## 30219                         Slovakia 1881           0
## 30220                         Slovenia 1881           0
## 30221                  Solomon Islands 1881           0
## 30222                          Somalia 1881           0
## 30223                     South Africa 1881           0
## 30224                      South Korea 1881           0
## 30225                      South Sudan 1881           0
## 30226                            Spain 1881    76507984
## 30227                        Sri Lanka 1881           0
## 30228                            Sudan 1881           0
## 30229                         Suriname 1881           0
## 30230                        Swaziland 1881           0
## 30231                           Sweden 1881    40461552
## 30232                      Switzerland 1881    22082928
## 30233                            Syria 1881           0
## 30234                           Taiwan 1881           0
## 30235                       Tajikistan 1881           0
## 30236                         Tanzania 1881           0
## 30237                         Thailand 1881           0
## 30238                            Timor 1881           0
## 30239                             Togo 1881           0
## 30240                            Tonga 1881           0
## 30241              Trinidad and Tobago 1881           0
## 30242                          Tunisia 1881           0
## 30243                           Turkey 1881     3971776
## 30244                     Turkmenistan 1881           0
## 30245         Turks and Caicos Islands 1881           0
## 30246                           Tuvalu 1881           0
## 30247                           Uganda 1881           0
## 30248                          Ukraine 1881           0
## 30249             United Arab Emirates 1881           0
## 30250                   United Kingdom 1881 10052528416
## 30251                    United States 1881  2877683616
## 30252                          Uruguay 1881           0
## 30253                       Uzbekistan 1881           0
## 30254                          Vanuatu 1881           0
## 30255                        Venezuela 1881           0
## 30256                          Vietnam 1881           0
## 30257        Wallis and Futuna Islands 1881           0
## 30258                            World 1881 19485991056
## 30259                            Yemen 1881           0
## 30260                           Zambia 1881           0
## 30261                         Zimbabwe 1881           0
## 30262                      Afghanistan 1882           0
## 30263                           Africa 1882           0
## 30264                          Albania 1882           0
## 30265                          Algeria 1882           0
## 30266                 Americas (other) 1882    45756032
## 30267                          Andorra 1882           0
## 30268                           Angola 1882           0
## 30269                         Anguilla 1882           0
## 30270              Antarctic Fisheries 1882           0
## 30271              Antigua and Barbuda 1882           0
## 30272                        Argentina 1882           0
## 30273                          Armenia 1882           0
## 30274                            Aruba 1882           0
## 30275         Asia and Pacific (other) 1882    90544768
## 30276                        Australia 1882    20184976
## 30277                          Austria 1882   255651936
## 30278                       Azerbaijan 1882           0
## 30279                          Bahamas 1882           0
## 30280                          Bahrain 1882           0
## 30281                       Bangladesh 1882           0
## 30282                         Barbados 1882           0
## 30283                          Belarus 1882           0
## 30284                          Belgium 1882   808351680
## 30285                           Belize 1882           0
## 30286                            Benin 1882           0
## 30287                          Bermuda 1882           0
## 30288                           Bhutan 1882           0
## 30289                          Bolivia 1882           0
## 30290  Bonaire Sint Eustatius and Saba 1882           0
## 30291           Bosnia and Herzegovina 1882           0
## 30292                         Botswana 1882           0
## 30293                           Brazil 1882           0
## 30294           British Virgin Islands 1882           0
## 30295                           Brunei 1882           0
## 30296                         Bulgaria 1882        7328
## 30297                     Burkina Faso 1882           0
## 30298                          Burundi 1882           0
## 30299                         Cambodia 1882           0
## 30300                         Cameroon 1882           0
## 30301                           Canada 1882    45763360
## 30302                       Cape Verde 1882           0
## 30303                   Cayman Islands 1882           0
## 30304         Central African Republic 1882           0
## 30305                             Chad 1882           0
## 30306                            Chile 1882           0
## 30307                            China 1882           0
## 30308                 Christmas Island 1882           0
## 30309                         Colombia 1882           0
## 30310                          Comoros 1882           0
## 30311                            Congo 1882           0
## 30312                     Cook Islands 1882           0
## 30313                       Costa Rica 1882           0
## 30314                    Cote d'Ivoire 1882           0
## 30315                          Croatia 1882           0
## 30316                             Cuba 1882           0
## 30317                          Curacao 1882           0
## 30318                           Cyprus 1882           0
## 30319                   Czech Republic 1882           0
## 30320                   Czechoslovakia 1882   213673488
## 30321     Democratic Republic of Congo 1882           0
## 30322                          Denmark 1882    33892000
## 30323                         Djibouti 1882           0
## 30324                         Dominica 1882           0
## 30325               Dominican Republic 1882           0
## 30326                            EU-28 1882 16805965584
## 30327                          Ecuador 1882           0
## 30328                            Egypt 1882           0
## 30329                      El Salvador 1882           0
## 30330                Equatorial Guinea 1882           0
## 30331                          Eritrea 1882           0
## 30332                          Estonia 1882           0
## 30333                         Ethiopia 1882           0
## 30334                   Europe (other) 1882   395169728
## 30335                   Faeroe Islands 1882           0
## 30336                 Falkland Islands 1882           0
## 30337                             Fiji 1882           0
## 30338                          Finland 1882     1985888
## 30339                           France 1882  1946609920
## 30340                    French Guiana 1882           0
## 30341                 French Polynesia 1882           0
## 30342                            Gabon 1882           0
## 30343                           Gambia 1882           0
## 30344                          Georgia 1882           0
## 30345                          Germany 1882  2422640464
## 30346                            Ghana 1882           0
## 30347                        Gibraltar 1882           0
## 30348                           Greece 1882     1634144
## 30349                        Greenland 1882           0
## 30350                          Grenada 1882           0
## 30351                       Guadeloupe 1882           0
## 30352                        Guatemala 1882           0
## 30353                           Guinea 1882           0
## 30354                    Guinea-Bissau 1882           0
## 30355                           Guyana 1882           0
## 30356                            Haiti 1882           0
## 30357                         Honduras 1882           0
## 30358                        Hong Kong 1882           0
## 30359                          Hungary 1882    56876272
## 30360                          Iceland 1882           0
## 30361                            India 1882    15960384
## 30362                        Indonesia 1882           0
## 30363                             Iran 1882           0
## 30364                             Iraq 1882           0
## 30365                          Ireland 1882     1099200
## 30366                           Israel 1882           0
## 30367                            Italy 1882    62533488
## 30368                          Jamaica 1882           0
## 30369                            Japan 1882    16315792
## 30370                           Jordan 1882           0
## 30371                       Kazakhstan 1882           0
## 30372                            Kenya 1882           0
## 30373                         Kiribati 1882           0
## 30374                           Kuwait 1882           0
## 30375                       Kyrgysztan 1882           0
## 30376                       Kyrgyzstan 1882           0
## 30377                             Laos 1882           0
## 30378                           Latvia 1882           0
## 30379                          Lebanon 1882           0
## 30380                          Lesotho 1882           0
## 30381                          Liberia 1882           0
## 30382                            Libya 1882           0
## 30383                    Liechtenstein 1882           0
## 30384                        Lithuania 1882           0
## 30385                       Luxembourg 1882           0
## 30386                            Macao 1882           0
## 30387                        Macedonia 1882           0
## 30388                       Madagascar 1882           0
## 30389                           Malawi 1882           0
## 30390                         Malaysia 1882           0
## 30391                         Maldives 1882           0
## 30392                             Mali 1882           0
## 30393                            Malta 1882           0
## 30394                 Marshall Islands 1882           0
## 30395                       Martinique 1882           0
## 30396                       Mauritania 1882           0
## 30397                        Mauritius 1882           0
## 30398                           Mexico 1882           0
## 30399             Micronesia (country) 1882           0
## 30400                      Middle East 1882     4125664
## 30401                          Moldova 1882           0
## 30402                         Mongolia 1882           0
## 30403                       Montenegro 1882           0
## 30404                       Montserrat 1882           0
## 30405                          Morocco 1882           0
## 30406                       Mozambique 1882           0
## 30407                          Myanmar 1882           0
## 30408                          Namibia 1882           0
## 30409                            Nauru 1882           0
## 30410                            Nepal 1882           0
## 30411                      Netherlands 1882   178854496
## 30412                    New Caledonia 1882           0
## 30413                      New Zealand 1882     3081424
## 30414                        Nicaragua 1882           0
## 30415                            Niger 1882           0
## 30416                          Nigeria 1882           0
## 30417                             Niue 1882           0
## 30418                      North Korea 1882           0
## 30419                           Norway 1882    20800528
## 30420                             Oman 1882           0
## 30421                         Pakistan 1882           0
## 30422                            Palau 1882           0
## 30423                        Palestine 1882           0
## 30424                           Panama 1882           0
## 30425                 Papua New Guinea 1882           0
## 30426                         Paraguay 1882           0
## 30427                             Peru 1882           0
## 30428                      Philippines 1882           0
## 30429                           Poland 1882   532884832
## 30430                         Portugal 1882     9024432
## 30431                            Qatar 1882           0
## 30432                          Reunion 1882           0
## 30433                          Romania 1882      926992
## 30434                           Russia 1882           0
## 30435                           Rwanda 1882           0
## 30436                     Saint Helena 1882           0
## 30437            Saint Kitts and Nevis 1882           0
## 30438                      Saint Lucia 1882           0
## 30439        Saint Pierre and Miquelon 1882           0
## 30440 Saint Vincent and the Grenadines 1882           0
## 30441                            Samoa 1882           0
## 30442            Sao Tome and Principe 1882           0
## 30443                     Saudi Arabia 1882           0
## 30444                          Senegal 1882           0
## 30445                           Serbia 1882           0
## 30446                       Seychelles 1882           0
## 30447                     Sierra Leone 1882           0
## 30448                        Singapore 1882           0
## 30449        Sint Maarten (Dutch part) 1882           0
## 30450                         Slovakia 1882           0
## 30451                         Slovenia 1882           0
## 30452                  Solomon Islands 1882           0
## 30453                          Somalia 1882           0
## 30454                     South Africa 1882           0
## 30455                      South Korea 1882           0
## 30456                      South Sudan 1882           0
## 30457                            Spain 1882    81890400
## 30458                        Sri Lanka 1882           0
## 30459                            Sudan 1882           0
## 30460                         Suriname 1882           0
## 30461                        Swaziland 1882           0
## 30462                           Sweden 1882    43608928
## 30463                      Switzerland 1882    23812336
## 30464                            Syria 1882           0
## 30465                           Taiwan 1882           0
## 30466                       Tajikistan 1882           0
## 30467                         Tanzania 1882           0
## 30468                         Thailand 1882           0
## 30469                            Timor 1882           0
## 30470                             Togo 1882           0
## 30471                            Tonga 1882           0
## 30472              Trinidad and Tobago 1882           0
## 30473                          Tunisia 1882           0
## 30474                           Turkey 1882     4125664
## 30475                     Turkmenistan 1882           0
## 30476         Turks and Caicos Islands 1882           0
## 30477                           Tuvalu 1882           0
## 30478                           Uganda 1882           0
## 30479                          Ukraine 1882           0
## 30480             United Arab Emirates 1882           0
## 30481                   United Kingdom 1882 10367493184
## 30482                    United States 1882  3113077296
## 30483                          Uruguay 1882           0
## 30484                       Uzbekistan 1882           0
## 30485                          Vanuatu 1882           0
## 30486                        Venezuela 1882           0
## 30487                          Vietnam 1882           0
## 30488        Wallis and Futuna Islands 1882           0
## 30489                            World 1882 20418119984
## 30490                            Yemen 1882           0
## 30491                           Zambia 1882           0
## 30492                         Zimbabwe 1882           0
## 30493                      Afghanistan 1883           0
## 30494                           Africa 1883           0
## 30495                          Albania 1883           0
## 30496                          Algeria 1883           0
## 30497                 Americas (other) 1883    53186624
## 30498                          Andorra 1883           0
## 30499                           Angola 1883           0
## 30500                         Anguilla 1883           0
## 30501              Antarctic Fisheries 1883           0
## 30502              Antigua and Barbuda 1883           0
## 30503                        Argentina 1883           0
## 30504                          Armenia 1883           0
## 30505                            Aruba 1883           0
## 30506         Asia and Pacific (other) 1883   100591456
## 30507                        Australia 1883    22610544
## 30508                          Austria 1883   267413376
## 30509                       Azerbaijan 1883           0
## 30510                          Bahamas 1883           0
## 30511                          Bahrain 1883           0
## 30512                       Bangladesh 1883           0
## 30513                         Barbados 1883           0
## 30514                          Belarus 1883           0
## 30515                          Belgium 1883   842734656
## 30516                           Belize 1883           0
## 30517                            Benin 1883           0
## 30518                          Bermuda 1883           0
## 30519                           Bhutan 1883           0
## 30520                          Bolivia 1883           0
## 30521  Bonaire Sint Eustatius and Saba 1883           0
## 30522           Bosnia and Herzegovina 1883           0
## 30523                         Botswana 1883           0
## 30524                           Brazil 1883           0
## 30525           British Virgin Islands 1883           0
## 30526                           Brunei 1883           0
## 30527                         Bulgaria 1883       14656
## 30528                     Burkina Faso 1883           0
## 30529                          Burundi 1883           0
## 30530                         Cambodia 1883           0
## 30531                         Cameroon 1883           0
## 30532                           Canada 1883    53193952
## 30533                       Cape Verde 1883           0
## 30534                   Cayman Islands 1883           0
## 30535         Central African Republic 1883           0
## 30536                             Chad 1883           0
## 30537                            Chile 1883           0
## 30538                            China 1883           0
## 30539                 Christmas Island 1883           0
## 30540                         Colombia 1883           0
## 30541                          Comoros 1883           0
## 30542                            Congo 1883           0
## 30543                     Cook Islands 1883           0
## 30544                       Costa Rica 1883           0
## 30545                    Cote d'Ivoire 1883           0
## 30546                          Croatia 1883           0
## 30547                             Cuba 1883           0
## 30548                          Curacao 1883           0
## 30549                           Cyprus 1883           0
## 30550                   Czech Republic 1883           0
## 30551                   Czechoslovakia 1883   237401552
## 30552     Democratic Republic of Congo 1883           0
## 30553                          Denmark 1883    36321232
## 30554                         Djibouti 1883           0
## 30555                         Dominica 1883           0
## 30556               Dominican Republic 1883           0
## 30557                            EU-28 1883 17482138464
## 30558                          Ecuador 1883           0
## 30559                            Egypt 1883           0
## 30560                      El Salvador 1883           0
## 30561                Equatorial Guinea 1883           0
## 30562                          Eritrea 1883           0
## 30563                          Estonia 1883           0
## 30564                         Ethiopia 1883           0
## 30565                   Europe (other) 1883   440050064
## 30566                   Faeroe Islands 1883           0
## 30567                 Falkland Islands 1883           0
## 30568                             Fiji 1883           0
## 30569                          Finland 1883     2103136
## 30570                           France 1883  2032930096
## 30571                    French Guiana 1883           0
## 30572                 French Polynesia 1883           0
## 30573                            Gabon 1883           0
## 30574                           Gambia 1883           0
## 30575                          Georgia 1883           0
## 30576                          Germany 1883  2575733376
## 30577                            Ghana 1883           0
## 30578                        Gibraltar 1883           0
## 30579                           Greece 1883     1637808
## 30580                        Greenland 1883           0
## 30581                          Grenada 1883           0
## 30582                       Guadeloupe 1883           0
## 30583                        Guatemala 1883           0
## 30584                           Guinea 1883           0
## 30585                    Guinea-Bissau 1883           0
## 30586                           Guyana 1883           0
## 30587                            Haiti 1883           0
## 30588                         Honduras 1883           0
## 30589                        Hong Kong 1883           0
## 30590                          Hungary 1883    60954304
## 30591                          Iceland 1883           0
## 30592                            India 1883    18642432
## 30593                        Indonesia 1883           0
## 30594                             Iran 1883           0
## 30595                             Iraq 1883           0
## 30596                          Ireland 1883     1099200
## 30597                           Israel 1883           0
## 30598                            Italy 1883    69179984
## 30599                          Jamaica 1883           0
## 30600                            Japan 1883    19027152
## 30601                           Jordan 1883           0
## 30602                       Kazakhstan 1883           0
## 30603                            Kenya 1883           0
## 30604                         Kiribati 1883           0
## 30605                           Kuwait 1883           0
## 30606                       Kyrgysztan 1883           0
## 30607                       Kyrgyzstan 1883           0
## 30608                             Laos 1883           0
## 30609                           Latvia 1883           0
## 30610                          Lebanon 1883           0
## 30611                          Lesotho 1883           0
## 30612                          Liberia 1883           0
## 30613                            Libya 1883           0
## 30614                    Liechtenstein 1883           0
## 30615                        Lithuania 1883           0
## 30616                       Luxembourg 1883           0
## 30617                            Macao 1883           0
## 30618                        Macedonia 1883           0
## 30619                       Madagascar 1883           0
## 30620                           Malawi 1883           0
## 30621                         Malaysia 1883           0
## 30622                         Maldives 1883           0
## 30623                             Mali 1883           0
## 30624                            Malta 1883           0
## 30625                 Marshall Islands 1883           0
## 30626                       Martinique 1883           0
## 30627                       Mauritania 1883           0
## 30628                        Mauritius 1883           0
## 30629                           Mexico 1883           0
## 30630             Micronesia (country) 1883           0
## 30631                      Middle East 1883     4286880
## 30632                          Moldova 1883           0
## 30633                         Mongolia 1883           0
## 30634                       Montenegro 1883           0
## 30635                       Montserrat 1883           0
## 30636                          Morocco 1883           0
## 30637                       Mozambique 1883           0
## 30638                          Myanmar 1883           0
## 30639                          Namibia 1883           0
## 30640                            Nauru 1883           0
## 30641                            Nepal 1883           0
## 30642                      Netherlands 1883   187864272
## 30643                    New Caledonia 1883           0
## 30644                      New Zealand 1883     4008416
## 30645                        Nicaragua 1883           0
## 30646                            Niger 1883           0
## 30647                          Nigeria 1883           0
## 30648                             Niue 1883           0
## 30649                      North Korea 1883           0
## 30650                           Norway 1883    22324752
## 30651                             Oman 1883           0
## 30652                         Pakistan 1883           0
## 30653                            Palau 1883           0
## 30654                        Palestine 1883           0
## 30655                           Panama 1883           0
## 30656                 Papua New Guinea 1883           0
## 30657                         Paraguay 1883           0
## 30658                             Peru 1883           0
## 30659                      Philippines 1883           0
## 30660                           Poland 1883   562812384
## 30661                         Portugal 1883    10163936
## 30662                            Qatar 1883           0
## 30663                          Reunion 1883           0
## 30664                          Romania 1883     1333696
## 30665                           Russia 1883           0
## 30666                           Rwanda 1883           0
## 30667                     Saint Helena 1883           0
## 30668            Saint Kitts and Nevis 1883           0
## 30669                      Saint Lucia 1883           0
## 30670        Saint Pierre and Miquelon 1883           0
## 30671 Saint Vincent and the Grenadines 1883           0
## 30672                            Samoa 1883           0
## 30673            Sao Tome and Principe 1883           0
## 30674                     Saudi Arabia 1883           0
## 30675                          Senegal 1883           0
## 30676                           Serbia 1883           0
## 30677                       Seychelles 1883           0
## 30678                     Sierra Leone 1883           0
## 30679                        Singapore 1883           0
## 30680        Sint Maarten (Dutch part) 1883           0
## 30681                         Slovakia 1883           0
## 30682                         Slovenia 1883           0
## 30683                  Solomon Islands 1883           0
## 30684                          Somalia 1883           0
## 30685                     South Africa 1883           0
## 30686                      South Korea 1883           0
## 30687                      South Sudan 1883           0
## 30688                            Spain 1883    87793104
## 30689                        Sri Lanka 1883           0
## 30690                            Sudan 1883           0
## 30691                         Suriname 1883           0
## 30692                        Swaziland 1883           0
## 30693                           Sweden 1883    46825920
## 30694                      Switzerland 1883    25724944
## 30695                            Syria 1883           0
## 30696                           Taiwan 1883           0
## 30697                       Tajikistan 1883           0
## 30698                         Tanzania 1883           0
## 30699                         Thailand 1883           0
## 30700                            Timor 1883           0
## 30701                             Togo 1883           0
## 30702                            Tonga 1883           0
## 30703              Trinidad and Tobago 1883           0
## 30704                          Tunisia 1883           0
## 30705                           Turkey 1883     4286880
## 30706                     Turkmenistan 1883           0
## 30707         Turks and Caicos Islands 1883           0
## 30708                           Tuvalu 1883           0
## 30709                           Uganda 1883           0
## 30710                          Ukraine 1883           0
## 30711             United Arab Emirates 1883           0
## 30712                   United Kingdom 1883 10695223328
## 30713                    United States 1883  3366959520
## 30714                          Uruguay 1883           0
## 30715                       Uzbekistan 1883           0
## 30716                          Vanuatu 1883           0
## 30717                        Venezuela 1883           0
## 30718                          Vietnam 1883           0
## 30719        Wallis and Futuna Islands 1883           0
## 30720                            World 1883 21409393200
## 30721                            Yemen 1883           0
## 30722                           Zambia 1883           0
## 30723                         Zimbabwe 1883           0
## 30724                      Afghanistan 1884           0
## 30725                           Africa 1884       21984
## 30726                          Albania 1884           0
## 30727                          Algeria 1884           0
## 30728                 Americas (other) 1884    61789696
## 30729                          Andorra 1884           0
## 30730                           Angola 1884           0
## 30731                         Anguilla 1884           0
## 30732              Antarctic Fisheries 1884           0
## 30733              Antigua and Barbuda 1884           0
## 30734                        Argentina 1884           0
## 30735                          Armenia 1884           0
## 30736                            Aruba 1884           0
## 30737         Asia and Pacific (other) 1884   112752272
## 30738                        Australia 1884    25182672
## 30739                          Austria 1884   278874368
## 30740                       Azerbaijan 1884           0
## 30741                          Bahamas 1884           0
## 30742                          Bahrain 1884           0
## 30743                       Bangladesh 1884           0
## 30744                         Barbados 1884           0
## 30745                          Belarus 1884           0
## 30746                          Belgium 1884   876604672
## 30747                           Belize 1884           0
## 30748                            Benin 1884           0
## 30749                          Bermuda 1884           0
## 30750                           Bhutan 1884           0
## 30751                          Bolivia 1884           0
## 30752  Bonaire Sint Eustatius and Saba 1884           0
## 30753           Bosnia and Herzegovina 1884           0
## 30754                         Botswana 1884           0
## 30755                           Brazil 1884           0
## 30756           British Virgin Islands 1884           0
## 30757                           Brunei 1884           0
## 30758                         Bulgaria 1884       25648
## 30759                     Burkina Faso 1884           0
## 30760                          Burundi 1884           0
## 30761                         Cambodia 1884           0
## 30762                         Cameroon 1884           0
## 30763                           Canada 1884    61793360
## 30764                       Cape Verde 1884           0
## 30765                   Cayman Islands 1884           0
## 30766         Central African Republic 1884           0
## 30767                             Chad 1884           0
## 30768                            Chile 1884           0
## 30769                            China 1884           0
## 30770                 Christmas Island 1884           0
## 30771                         Colombia 1884           0
## 30772                          Comoros 1884           0
## 30773                            Congo 1884           0
## 30774                     Cook Islands 1884           0
## 30775                       Costa Rica 1884           0
## 30776                    Cote d'Ivoire 1884           0
## 30777                          Croatia 1884           0
## 30778                             Cuba 1884           0
## 30779                          Curacao 1884           0
## 30780                           Cyprus 1884           0
## 30781                   Czech Republic 1884           0
## 30782                   Czechoslovakia 1884   261910048
## 30783     Democratic Republic of Congo 1884           0
## 30784                          Denmark 1884    38739472
## 30785                         Djibouti 1884           0
## 30786                         Dominica 1884           0
## 30787               Dominican Republic 1884           0
## 30788                            EU-28 1884 18152584512
## 30789                          Ecuador 1884           0
## 30790                            Egypt 1884           0
## 30791                      El Salvador 1884           0
## 30792                Equatorial Guinea 1884           0
## 30793                          Eritrea 1884           0
## 30794                          Estonia 1884           0
## 30795                         Ethiopia 1884           0
## 30796                   Europe (other) 1884   486062576
## 30797                   Faeroe Islands 1884           0
## 30798                 Falkland Islands 1884           0
## 30799                             Fiji 1884           0
## 30800                          Finland 1884     2246032
## 30801                           France 1884  2115842752
## 30802                    French Guiana 1884           0
## 30803                 French Polynesia 1884           0
## 30804                            Gabon 1884           0
## 30805                           Gambia 1884           0
## 30806                          Georgia 1884           0
## 30807                          Germany 1884  2733259728
## 30808                            Ghana 1884           0
## 30809                        Gibraltar 1884           0
## 30810                           Greece 1884     1637808
## 30811                        Greenland 1884           0
## 30812                          Grenada 1884           0
## 30813                       Guadeloupe 1884           0
## 30814                        Guatemala 1884           0
## 30815                           Guinea 1884           0
## 30816                    Guinea-Bissau 1884           0
## 30817                           Guyana 1884           0
## 30818                            Haiti 1884           0
## 30819                         Honduras 1884           0
## 30820                        Hong Kong 1884           0
## 30821                          Hungary 1884    65285152
## 30822                          Iceland 1884           0
## 30823                            India 1884    21628592
## 30824                        Indonesia 1884           0
## 30825                             Iran 1884           0
## 30826                             Iraq 1884           0
## 30827                          Ireland 1884     1099200
## 30828                           Israel 1884           0
## 30829                            Italy 1884    76540960
## 30830                          Jamaica 1884           0
## 30831                            Japan 1884    21984000
## 30832                           Jordan 1884           0
## 30833                       Kazakhstan 1884           0
## 30834                            Kenya 1884           0
## 30835                         Kiribati 1884           0
## 30836                           Kuwait 1884           0
## 30837                       Kyrgysztan 1884           0
## 30838                       Kyrgyzstan 1884           0
## 30839                             Laos 1884           0
## 30840                           Latvia 1884           0
## 30841                          Lebanon 1884           0
## 30842                          Lesotho 1884           0
## 30843                          Liberia 1884           0
## 30844                            Libya 1884           0
## 30845                    Liechtenstein 1884           0
## 30846                        Lithuania 1884           0
## 30847                       Luxembourg 1884           0
## 30848                            Macao 1884           0
## 30849                        Macedonia 1884           0
## 30850                       Madagascar 1884           0
## 30851                           Malawi 1884           0
## 30852                         Malaysia 1884           0
## 30853                         Maldives 1884           0
## 30854                             Mali 1884           0
## 30855                            Malta 1884           0
## 30856                 Marshall Islands 1884           0
## 30857                       Martinique 1884           0
## 30858                       Mauritania 1884           0
## 30859                        Mauritius 1884           0
## 30860                           Mexico 1884           0
## 30861             Micronesia (country) 1884           0
## 30862                      Middle East 1884     4462752
## 30863                          Moldova 1884           0
## 30864                         Mongolia 1884           0
## 30865                       Montenegro 1884           0
## 30866                       Montserrat 1884           0
## 30867                          Morocco 1884           0
## 30868                       Mozambique 1884           0
## 30869                          Myanmar 1884           0
## 30870                          Namibia 1884           0
## 30871                            Nauru 1884           0
## 30872                            Nepal 1884           0
## 30873                      Netherlands 1884   196881376
## 30874                    New Caledonia 1884           0
## 30875                      New Zealand 1884     5067312
## 30876                        Nicaragua 1884           0
## 30877                            Niger 1884           0
## 30878                          Nigeria 1884           0
## 30879                             Niue 1884           0
## 30880                      North Korea 1884           0
## 30881                           Norway 1884    23885616
## 30882                             Oman 1884           0
## 30883                         Pakistan 1884           0
## 30884                            Palau 1884           0
## 30885                        Palestine 1884           0
## 30886                           Panama 1884           0
## 30887                 Papua New Guinea 1884           0
## 30888                         Paraguay 1884           0
## 30889                             Peru 1884        3664
## 30890                      Philippines 1884           0
## 30891                           Poland 1884   594015008
## 30892                         Portugal 1884    11365728
## 30893                            Qatar 1884           0
## 30894                          Reunion 1884           0
## 30895                          Romania 1884     1806352
## 30896                           Russia 1884           0
## 30897                           Rwanda 1884           0
## 30898                     Saint Helena 1884           0
## 30899            Saint Kitts and Nevis 1884           0
## 30900                      Saint Lucia 1884           0
## 30901        Saint Pierre and Miquelon 1884           0
## 30902 Saint Vincent and the Grenadines 1884           0
## 30903                            Samoa 1884           0
## 30904            Sao Tome and Principe 1884           0
## 30905                     Saudi Arabia 1884           0
## 30906                          Senegal 1884           0
## 30907                           Serbia 1884           0
## 30908                       Seychelles 1884           0
## 30909                     Sierra Leone 1884           0
## 30910                        Singapore 1884           0
## 30911        Sint Maarten (Dutch part) 1884           0
## 30912                         Slovakia 1884           0
## 30913                         Slovenia 1884           0
## 30914                  Solomon Islands 1884           0
## 30915                          Somalia 1884           0
## 30916                     South Africa 1884       21984
## 30917                      South Korea 1884           0
## 30918                      South Sudan 1884           0
## 30919                            Spain 1884    93662832
## 30920                        Sri Lanka 1884           0
## 30921                            Sudan 1884           0
## 30922                         Suriname 1884           0
## 30923                        Swaziland 1884           0
## 30924                           Sweden 1884    50376336
## 30925                      Switzerland 1884    27688848
## 30926                            Syria 1884           0
## 30927                           Taiwan 1884           0
## 30928                       Tajikistan 1884           0
## 30929                         Tanzania 1884           0
## 30930                         Thailand 1884           0
## 30931                            Timor 1884           0
## 30932                             Togo 1884           0
## 30933                            Tonga 1884           0
## 30934              Trinidad and Tobago 1884           0
## 30935                          Tunisia 1884           0
## 30936                           Turkey 1884     4462752
## 30937                     Turkmenistan 1884           0
## 30938         Turks and Caicos Islands 1884           0
## 30939                           Tuvalu 1884           0
## 30940                           Uganda 1884           0
## 30941                          Ukraine 1884           0
## 30942             United Arab Emirates 1884           0
## 30943                   United Kingdom 1884 11014321088
## 30944                    United States 1884  3634548768
## 30945                          Uruguay 1884           0
## 30946                       Uzbekistan 1884           0
## 30947                          Vanuatu 1884           0
## 30948                        Venezuela 1884           0
## 30949                          Vietnam 1884           0
## 30950        Wallis and Futuna Islands 1884           0
## 30951                            World 1884 22411823296
## 30952                            Yemen 1884           0
## 30953                           Zambia 1884           0
## 30954                         Zimbabwe 1884           0
## 30955                      Afghanistan 1885           0
## 30956                           Africa 1885       58624
## 30957                          Albania 1885           0
## 30958                          Algeria 1885           0
## 30959                 Americas (other) 1885    70037360
## 30960                          Andorra 1885           0
## 30961                           Angola 1885           0
## 30962                         Anguilla 1885           0
## 30963              Antarctic Fisheries 1885           0
## 30964              Antigua and Barbuda 1885           0
## 30965                        Argentina 1885           0
## 30966                          Armenia 1885           0
## 30967                            Aruba 1885           0
## 30968         Asia and Pacific (other) 1885   126745088
## 30969                        Australia 1885    28088224
## 30970                          Austria 1885   290921600
## 30971                       Azerbaijan 1885           0
## 30972                          Bahamas 1885           0
## 30973                          Bahrain 1885           0
## 30974                       Bangladesh 1885           0
## 30975                         Barbados 1885           0
## 30976                          Belarus 1885           0
## 30977                          Belgium 1885   909686928
## 30978                           Belize 1885           0
## 30979                            Benin 1885           0
## 30980                          Bermuda 1885           0
## 30981                           Bhutan 1885           0
## 30982                          Bolivia 1885           0
## 30983  Bonaire Sint Eustatius and Saba 1885           0
## 30984           Bosnia and Herzegovina 1885           0
## 30985                         Botswana 1885           0
## 30986                           Brazil 1885           0
## 30987           British Virgin Islands 1885           0
## 30988                           Brunei 1885           0
## 30989                         Bulgaria 1885       32976
## 30990                     Burkina Faso 1885           0
## 30991                          Burundi 1885           0
## 30992                         Cambodia 1885           0
## 30993                         Cameroon 1885           0
## 30994                           Canada 1885    70037360
## 30995                       Cape Verde 1885           0
## 30996                   Cayman Islands 1885           0
## 30997         Central African Republic 1885           0
## 30998                             Chad 1885           0
## 30999                            Chile 1885           0
## 31000                            China 1885           0
## 31001                 Christmas Island 1885           0
## 31002                         Colombia 1885           0
## 31003                          Comoros 1885           0
## 31004                            Congo 1885           0
## 31005                     Cook Islands 1885           0
## 31006                       Costa Rica 1885           0
## 31007                    Cote d'Ivoire 1885           0
## 31008                          Croatia 1885           0
## 31009                             Cuba 1885           0
## 31010                          Curacao 1885           0
## 31011                           Cyprus 1885           0
## 31012                   Czech Republic 1885           0
## 31013                   Czechoslovakia 1885   287642320
## 31014     Democratic Republic of Congo 1885           0
## 31015                          Denmark 1885    41274960
## 31016                         Djibouti 1885           0
## 31017                         Dominica 1885           0
## 31018               Dominican Republic 1885           0
## 31019                            EU-28 1885 18822590880
## 31020                          Ecuador 1885           0
## 31021                            Egypt 1885           0
## 31022                      El Salvador 1885           0
## 31023                Equatorial Guinea 1885           0
## 31024                          Eritrea 1885           0
## 31025                          Estonia 1885           0
## 31026                         Ethiopia 1885           0
## 31027                   Europe (other) 1885   535248112
## 31028                   Faeroe Islands 1885           0
## 31029                 Falkland Islands 1885           0
## 31030                             Fiji 1885           0
## 31031                          Finland 1885     2465872
## 31032                           France 1885  2195556736
## 31033                    French Guiana 1885           0
## 31034                 French Polynesia 1885           0
## 31035                            Gabon 1885           0
## 31036                           Gambia 1885           0
## 31037                          Georgia 1885           0
## 31038                          Germany 1885  2894442752
## 31039                            Ghana 1885           0
## 31040                        Gibraltar 1885           0
## 31041                           Greece 1885     1637808
## 31042                        Greenland 1885           0
## 31043                          Grenada 1885           0
## 31044                       Guadeloupe 1885           0
## 31045                        Guatemala 1885           0
## 31046                           Guinea 1885           0
## 31047                    Guinea-Bissau 1885           0
## 31048                           Guyana 1885           0
## 31049                            Haiti 1885           0
## 31050                         Honduras 1885           0
## 31051                        Hong Kong 1885           0
## 31052                          Hungary 1885    69663632
## 31053                          Iceland 1885           0
## 31054                            India 1885    24325296
## 31055                        Indonesia 1885           0
## 31056                             Iran 1885           0
## 31057                             Iraq 1885           0
## 31058                          Ireland 1885     1099200
## 31059                           Israel 1885           0
## 31060                            Italy 1885    84916864
## 31061                          Jamaica 1885           0
## 31062                            Japan 1885    25332896
## 31063                           Jordan 1885           0
## 31064                       Kazakhstan 1885           0
## 31065                            Kenya 1885           0
## 31066                         Kiribati 1885           0
## 31067                           Kuwait 1885           0
## 31068                       Kyrgysztan 1885           0
## 31069                       Kyrgyzstan 1885           0
## 31070                             Laos 1885           0
## 31071                           Latvia 1885           0
## 31072                          Lebanon 1885           0
## 31073                          Lesotho 1885           0
## 31074                          Liberia 1885           0
## 31075                            Libya 1885           0
## 31076                    Liechtenstein 1885           0
## 31077                        Lithuania 1885           0
## 31078                       Luxembourg 1885           0
## 31079                            Macao 1885           0
## 31080                        Macedonia 1885           0
## 31081                       Madagascar 1885           0
## 31082                           Malawi 1885           0
## 31083                         Malaysia 1885           0
## 31084                         Maldives 1885           0
## 31085                             Mali 1885           0
## 31086                            Malta 1885           0
## 31087                 Marshall Islands 1885           0
## 31088                       Martinique 1885           0
## 31089                       Mauritania 1885           0
## 31090                        Mauritius 1885           0
## 31091                           Mexico 1885           0
## 31092             Micronesia (country) 1885           0
## 31093                      Middle East 1885     4656944
## 31094                          Moldova 1885           0
## 31095                         Mongolia 1885           0
## 31096                       Montenegro 1885           0
## 31097                       Montserrat 1885           0
## 31098                          Morocco 1885           0
## 31099                       Mozambique 1885           0
## 31100                          Myanmar 1885           0
## 31101                          Namibia 1885           0
## 31102                            Nauru 1885           0
## 31103                            Nepal 1885           0
## 31104                      Netherlands 1885   206301520
## 31105                    New Caledonia 1885           0
## 31106                      New Zealand 1885     6195824
## 31107                        Nicaragua 1885           0
## 31108                            Niger 1885           0
## 31109                          Nigeria 1885           0
## 31110                             Niue 1885           0
## 31111                      North Korea 1885           0
## 31112                           Norway 1885    25669984
## 31113                             Oman 1885           0
## 31114                         Pakistan 1885           0
## 31115                            Palau 1885           0
## 31116                        Palestine 1885           0
## 31117                           Panama 1885           0
## 31118                 Papua New Guinea 1885           0
## 31119                         Paraguay 1885           0
## 31120                             Peru 1885        7328
## 31121                      Philippines 1885           0
## 31122                           Poland 1885   626613616
## 31123                         Portugal 1885    12479584
## 31124                            Qatar 1885           0
## 31125                          Reunion 1885           0
## 31126                          Romania 1885     2257024
## 31127                           Russia 1885           0
## 31128                           Rwanda 1885           0
## 31129                     Saint Helena 1885           0
## 31130            Saint Kitts and Nevis 1885           0
## 31131                      Saint Lucia 1885           0
## 31132        Saint Pierre and Miquelon 1885           0
## 31133 Saint Vincent and the Grenadines 1885           0
## 31134                            Samoa 1885           0
## 31135            Sao Tome and Principe 1885           0
## 31136                     Saudi Arabia 1885           0
## 31137                          Senegal 1885           0
## 31138                           Serbia 1885           0
## 31139                       Seychelles 1885           0
## 31140                     Sierra Leone 1885           0
## 31141                        Singapore 1885           0
## 31142        Sint Maarten (Dutch part) 1885           0
## 31143                         Slovakia 1885           0
## 31144                         Slovenia 1885           0
## 31145                  Solomon Islands 1885           0
## 31146                          Somalia 1885           0
## 31147                     South Africa 1885       58624
## 31148                      South Korea 1885           0
## 31149                      South Sudan 1885           0
## 31150                            Spain 1885    99422640
## 31151                        Sri Lanka 1885           0
## 31152                            Sudan 1885           0
## 31153                         Suriname 1885           0
## 31154                        Swaziland 1885           0
## 31155                           Sweden 1885    54205216
## 31156                      Switzerland 1885    29733360
## 31157                            Syria 1885           0
## 31158                           Taiwan 1885           0
## 31159                       Tajikistan 1885           0
## 31160                         Tanzania 1885           0
## 31161                         Thailand 1885           0
## 31162                            Timor 1885           0
## 31163                             Togo 1885           0
## 31164                            Tonga 1885           0
## 31165              Trinidad and Tobago 1885           0
## 31166                          Tunisia 1885           0
## 31167                           Turkey 1885     4656944
## 31168                     Turkmenistan 1885           0
## 31169         Turks and Caicos Islands 1885           0
## 31170                           Tuvalu 1885           0
## 31171                           Uganda 1885           0
## 31172                          Ukraine 1885           0
## 31173             United Arab Emirates 1885           0
## 31174                   United Kingdom 1885 11329611952
## 31175                    United States 1885  3906710688
## 31176                          Uruguay 1885           0
## 31177                       Uzbekistan 1885           0
## 31178                          Vanuatu 1885           0
## 31179                        Venezuela 1885           0
## 31180                          Vietnam 1885           0
## 31181        Wallis and Futuna Islands 1885           0
## 31182                            World 1885 23421731616
## 31183                            Yemen 1885           0
## 31184                           Zambia 1885           0
## 31185                         Zimbabwe 1885           0
## 31186                      Afghanistan 1886           0
## 31187                           Africa 1886      106256
## 31188                          Albania 1886           0
## 31189                          Algeria 1886           0
## 31190                 Americas (other) 1886    78841952
## 31191                          Andorra 1886           0
## 31192                           Angola 1886           0
## 31193                         Anguilla 1886           0
## 31194              Antarctic Fisheries 1886           0
## 31195              Antigua and Barbuda 1886           0
## 31196                        Argentina 1886           0
## 31197                          Armenia 1886           0
## 31198                            Aruba 1886           0
## 31199         Asia and Pacific (other) 1886   141639248
## 31200                        Australia 1886    30975456
## 31201                          Austria 1886   302290992
## 31202                       Azerbaijan 1886           0
## 31203                          Bahamas 1886           0
## 31204                          Bahrain 1886           0
## 31205                       Bangladesh 1886           0
## 31206                         Barbados 1886           0
## 31207                          Belarus 1886           0
## 31208                          Belgium 1886   941790896
## 31209                           Belize 1886           0
## 31210                            Benin 1886           0
## 31211                          Bermuda 1886           0
## 31212                           Bhutan 1886           0
## 31213                          Bolivia 1886           0
## 31214  Bonaire Sint Eustatius and Saba 1886           0
## 31215           Bosnia and Herzegovina 1886           0
## 31216                         Botswana 1886           0
## 31217                           Brazil 1886           0
## 31218           British Virgin Islands 1886           0
## 31219                           Brunei 1886           0
## 31220                         Bulgaria 1886       40304
## 31221                     Burkina Faso 1886           0
## 31222                          Burundi 1886           0
## 31223                         Cambodia 1886           0
## 31224                         Cameroon 1886           0
## 31225                           Canada 1886    78834624
## 31226                       Cape Verde 1886           0
## 31227                   Cayman Islands 1886           0
## 31228         Central African Republic 1886           0
## 31229                             Chad 1886           0
## 31230                            Chile 1886           0
## 31231                            China 1886           0
## 31232                 Christmas Island 1886           0
## 31233                         Colombia 1886           0
## 31234                          Comoros 1886           0
## 31235                            Congo 1886           0
## 31236                     Cook Islands 1886           0
## 31237                       Costa Rica 1886           0
## 31238                    Cote d'Ivoire 1886           0
## 31239                          Croatia 1886           0
## 31240                             Cuba 1886           0
## 31241                          Curacao 1886           0
## 31242                           Cyprus 1886           0
## 31243                   Czech Republic 1886           0
## 31244                   Czechoslovakia 1886   314693632
## 31245     Democratic Republic of Congo 1886           0
## 31246                          Denmark 1886    43704192
## 31247                         Djibouti 1886           0
## 31248                         Dominica 1886           0
## 31249               Dominican Republic 1886           0
## 31250                            EU-28 1886 19490197328
## 31251                          Ecuador 1886           0
## 31252                            Egypt 1886           0
## 31253                      El Salvador 1886           0
## 31254                Equatorial Guinea 1886           0
## 31255                          Eritrea 1886           0
## 31256                          Estonia 1886           0
## 31257                         Ethiopia 1886           0
## 31258                   Europe (other) 1886   586225344
## 31259                   Faeroe Islands 1886           0
## 31260                 Falkland Islands 1886           0
## 31261                             Fiji 1886           0
## 31262                          Finland 1886     2594112
## 31263                           France 1886  2274629520
## 31264                    French Guiana 1886           0
## 31265                 French Polynesia 1886           0
## 31266                            Gabon 1886           0
## 31267                           Gambia 1886           0
## 31268                          Georgia 1886           0
## 31269                          Germany 1886  3057476096
## 31270                            Ghana 1886           0
## 31271                        Gibraltar 1886           0
## 31272                           Greece 1886     1637808
## 31273                        Greenland 1886           0
## 31274                          Grenada 1886           0
## 31275                       Guadeloupe 1886           0
## 31276                        Guatemala 1886           0
## 31277                           Guinea 1886           0
## 31278                    Guinea-Bissau 1886           0
## 31279                           Guyana 1886           0
## 31280                            Haiti 1886           0
## 31281                         Honduras 1886           0
## 31282                        Hong Kong 1886           0
## 31283                          Hungary 1886    73759984
## 31284                          Iceland 1886           0
## 31285                            India 1886    27351760
## 31286                        Indonesia 1886           0
## 31287                             Iran 1886           0
## 31288                             Iraq 1886           0
## 31289                          Ireland 1886     1099200
## 31290                           Israel 1886           0
## 31291                            Italy 1886    93245136
## 31292                          Jamaica 1886           0
## 31293                            Japan 1886    28938272
## 31294                           Jordan 1886           0
## 31295                       Kazakhstan 1886           0
## 31296                            Kenya 1886           0
## 31297                         Kiribati 1886           0
## 31298                           Kuwait 1886           0
## 31299                       Kyrgysztan 1886           0
## 31300                       Kyrgyzstan 1886           0
## 31301                             Laos 1886           0
## 31302                           Latvia 1886           0
## 31303                          Lebanon 1886           0
## 31304                          Lesotho 1886           0
## 31305                          Liberia 1886           0
## 31306                            Libya 1886           0
## 31307                    Liechtenstein 1886           0
## 31308                        Lithuania 1886           0
## 31309                       Luxembourg 1886           0
## 31310                            Macao 1886           0
## 31311                        Macedonia 1886           0
## 31312                       Madagascar 1886           0
## 31313                           Malawi 1886           0
## 31314                         Malaysia 1886           0
## 31315                         Maldives 1886           0
## 31316                             Mali 1886           0
## 31317                            Malta 1886           0
## 31318                 Marshall Islands 1886           0
## 31319                       Martinique 1886           0
## 31320                       Mauritania 1886           0
## 31321                        Mauritius 1886           0
## 31322                           Mexico 1886           0
## 31323             Micronesia (country) 1886           0
## 31324                      Middle East 1886     4792512
## 31325                          Moldova 1886           0
## 31326                         Mongolia 1886           0
## 31327                       Montenegro 1886           0
## 31328                       Montserrat 1886           0
## 31329                          Morocco 1886           0
## 31330                       Mozambique 1886           0
## 31331                          Myanmar 1886           0
## 31332                          Namibia 1886           0
## 31333                            Nauru 1886           0
## 31334                            Nepal 1886           0
## 31335                      Netherlands 1886   215919520
## 31336                    New Caledonia 1886           0
## 31337                      New Zealand 1886     7375632
## 31338                        Nicaragua 1886           0
## 31339                            Niger 1886           0
## 31340                          Nigeria 1886           0
## 31341                             Niue 1886           0
## 31342                      North Korea 1886           0
## 31343                           Norway 1886    27414048
## 31344                             Oman 1886           0
## 31345                         Pakistan 1886           0
## 31346                            Palau 1886           0
## 31347                        Palestine 1886           0
## 31348                           Panama 1886           0
## 31349                 Papua New Guinea 1886           0
## 31350                         Paraguay 1886           0
## 31351                             Peru 1886       14656
## 31352                      Philippines 1886           0
## 31353                           Poland 1886   660043952
## 31354                         Portugal 1886    13710688
## 31355                            Qatar 1886           0
## 31356                          Reunion 1886           0
## 31357                          Romania 1886     2740672
## 31358                           Russia 1886           0
## 31359                           Rwanda 1886           0
## 31360                     Saint Helena 1886           0
## 31361            Saint Kitts and Nevis 1886           0
## 31362                      Saint Lucia 1886           0
## 31363        Saint Pierre and Miquelon 1886           0
## 31364 Saint Vincent and the Grenadines 1886           0
## 31365                            Samoa 1886           0
## 31366            Sao Tome and Principe 1886           0
## 31367                     Saudi Arabia 1886           0
## 31368                          Senegal 1886           0
## 31369                           Serbia 1886           0
## 31370                       Seychelles 1886           0
## 31371                     Sierra Leone 1886           0
## 31372                        Singapore 1886           0
## 31373        Sint Maarten (Dutch part) 1886           0
## 31374                         Slovakia 1886           0
## 31375                         Slovenia 1886           0
## 31376                  Solomon Islands 1886           0
## 31377                          Somalia 1886           0
## 31378                     South Africa 1886      106256
## 31379                      South Korea 1886           0
## 31380                      South Sudan 1886           0
## 31381                            Spain 1886   105515872
## 31382                        Sri Lanka 1886           0
## 31383                            Sudan 1886           0
## 31384                         Suriname 1886           0
## 31385                        Swaziland 1886           0
## 31386                           Sweden 1886    57957152
## 31387                      Switzerland 1886    31818176
## 31388                            Syria 1886           0
## 31389                           Taiwan 1886           0
## 31390                       Tajikistan 1886           0
## 31391                         Tanzania 1886           0
## 31392                         Thailand 1886           0
## 31393                            Timor 1886           0
## 31394                             Togo 1886           0
## 31395                            Tonga 1886           0
## 31396              Trinidad and Tobago 1886           0
## 31397                          Tunisia 1886           0
## 31398                           Turkey 1886     4792512
## 31399                     Turkmenistan 1886           0
## 31400         Turks and Caicos Islands 1886           0
## 31401                           Tuvalu 1886           0
## 31402                           Uganda 1886           0
## 31403                          Ukraine 1886           0
## 31404             United Arab Emirates 1886           0
## 31405                   United Kingdom 1886 11642041232
## 31406                    United States 1886  4194173472
## 31407                          Uruguay 1886           0
## 31408                       Uzbekistan 1886           0
## 31409                          Vanuatu 1886           0
## 31410                        Venezuela 1886           0
## 31411                          Vietnam 1886           0
## 31412        Wallis and Futuna Islands 1886           0
## 31413                            World 1886 24447461088
## 31414                            Yemen 1886           0
## 31415                           Zambia 1886           0
## 31416                         Zimbabwe 1886           0
## 31417                      Afghanistan 1887           0
## 31418                           Africa 1887      153888
## 31419                          Albania 1887           0
## 31420                          Algeria 1887           0
## 31421                 Americas (other) 1887    90083104
## 31422                          Andorra 1887           0
## 31423                           Angola 1887           0
## 31424                         Anguilla 1887           0
## 31425              Antarctic Fisheries 1887           0
## 31426              Antigua and Barbuda 1887           0
## 31427                        Argentina 1887     1084544
## 31428                          Armenia 1887           0
## 31429                            Aruba 1887           0
## 31430         Asia and Pacific (other) 1887   158533952
## 31431                        Australia 1887    34009248
## 31432                          Austria 1887   314547072
## 31433                       Azerbaijan 1887           0
## 31434                          Bahamas 1887           0
## 31435                          Bahrain 1887           0
## 31436                       Bangladesh 1887           0
## 31437                         Barbados 1887           0
## 31438                          Belarus 1887           0
## 31439                          Belgium 1887   975759840
## 31440                           Belize 1887           0
## 31441                            Benin 1887           0
## 31442                          Bermuda 1887           0
## 31443                           Bhutan 1887           0
## 31444                          Bolivia 1887           0
## 31445  Bonaire Sint Eustatius and Saba 1887           0
## 31446           Bosnia and Herzegovina 1887           0
## 31447                         Botswana 1887           0
## 31448                           Brazil 1887           0
## 31449           British Virgin Islands 1887           0
## 31450                           Brunei 1887           0
## 31451                         Bulgaria 1887       51296
## 31452                     Burkina Faso 1887           0
## 31453                          Burundi 1887           0
## 31454                         Cambodia 1887           0
## 31455                         Cameroon 1887           0
## 31456                           Canada 1887    88983904
## 31457                       Cape Verde 1887           0
## 31458                   Cayman Islands 1887           0
## 31459         Central African Republic 1887           0
## 31460                             Chad 1887           0
## 31461                            Chile 1887           0
## 31462                            China 1887           0
## 31463                 Christmas Island 1887           0
## 31464                         Colombia 1887           0
## 31465                          Comoros 1887           0
## 31466                            Congo 1887           0
## 31467                     Cook Islands 1887           0
## 31468                       Costa Rica 1887           0
## 31469                    Cote d'Ivoire 1887           0
## 31470                          Croatia 1887           0
## 31471                             Cuba 1887           0
## 31472                          Curacao 1887           0
## 31473                           Cyprus 1887           0
## 31474                   Czech Republic 1887           0
## 31475                   Czechoslovakia 1887   343107952
## 31476     Democratic Republic of Congo 1887           0
## 31477                          Denmark 1887    46195712
## 31478                         Djibouti 1887           0
## 31479                         Dominica 1887           0
## 31480               Dominican Republic 1887           0
## 31481                            EU-28 1887 20182612720
## 31482                          Ecuador 1887           0
## 31483                            Egypt 1887           0
## 31484                      El Salvador 1887           0
## 31485                Equatorial Guinea 1887           0
## 31486                          Eritrea 1887           0
## 31487                          Estonia 1887           0
## 31488                         Ethiopia 1887           0
## 31489                   Europe (other) 1887   639840656
## 31490                   Faeroe Islands 1887           0
## 31491                 Falkland Islands 1887           0
## 31492                             Fiji 1887           0
## 31493                          Finland 1887     2722352
## 31494                           France 1887  2357919568
## 31495                    French Guiana 1887           0
## 31496                 French Polynesia 1887           0
## 31497                            Gabon 1887           0
## 31498                           Gambia 1887           0
## 31499                          Georgia 1887           0
## 31500                          Germany 1887  3227866752
## 31501                            Ghana 1887           0
## 31502                        Gibraltar 1887           0
## 31503                           Greece 1887     1637808
## 31504                        Greenland 1887           0
## 31505                          Grenada 1887           0
## 31506                       Guadeloupe 1887           0
## 31507                        Guatemala 1887           0
## 31508                           Guinea 1887           0
## 31509                    Guinea-Bissau 1887           0
## 31510                           Guyana 1887           0
## 31511                            Haiti 1887           0
## 31512                         Honduras 1887           0
## 31513                        Hong Kong 1887           0
## 31514                          Hungary 1887    77845344
## 31515                          Iceland 1887           0
## 31516                            India 1887    30704320
## 31517                        Indonesia 1887           0
## 31518                             Iran 1887           0
## 31519                             Iraq 1887           0
## 31520                          Ireland 1887     1099200
## 31521                           Israel 1887           0
## 31522                            Italy 1887   103394416
## 31523                          Jamaica 1887           0
## 31524                            Japan 1887    33412016
## 31525                           Jordan 1887           0
## 31526                       Kazakhstan 1887           0
## 31527                            Kenya 1887           0
## 31528                         Kiribati 1887           0
## 31529                           Kuwait 1887           0
## 31530                       Kyrgysztan 1887           0
## 31531                       Kyrgyzstan 1887           0
## 31532                             Laos 1887           0
## 31533                           Latvia 1887           0
## 31534                          Lebanon 1887           0
## 31535                          Lesotho 1887           0
## 31536                          Liberia 1887           0
## 31537                            Libya 1887           0
## 31538                    Liechtenstein 1887           0
## 31539                        Lithuania 1887           0
## 31540                       Luxembourg 1887           0
## 31541                            Macao 1887           0
## 31542                        Macedonia 1887           0
## 31543                       Madagascar 1887           0
## 31544                           Malawi 1887           0
## 31545                         Malaysia 1887           0
## 31546                         Maldives 1887           0
## 31547                             Mali 1887           0
## 31548                            Malta 1887           0
## 31549                 Marshall Islands 1887           0
## 31550                       Martinique 1887           0
## 31551                       Mauritania 1887           0
## 31552                        Mauritius 1887           0
## 31553                           Mexico 1887           0
## 31554             Micronesia (country) 1887           0
## 31555                      Middle East 1887     5038000
## 31556                          Moldova 1887           0
## 31557                         Mongolia 1887           0
## 31558                       Montenegro 1887           0
## 31559                       Montserrat 1887           0
## 31560                          Morocco 1887           0
## 31561                       Mozambique 1887           0
## 31562                          Myanmar 1887           0
## 31563                          Namibia 1887           0
## 31564                            Nauru 1887           0
## 31565                            Nepal 1887           0
## 31566                      Netherlands 1887   225706064
## 31567                    New Caledonia 1887           0
## 31568                      New Zealand 1887     8614064
## 31569                        Nicaragua 1887           0
## 31570                            Niger 1887           0
## 31571                          Nigeria 1887           0
## 31572                             Niue 1887           0
## 31573                      North Korea 1887           0
## 31574                           Norway 1887    29095824
## 31575                             Oman 1887           0
## 31576                         Pakistan 1887           0
## 31577                            Palau 1887           0
## 31578                        Palestine 1887           0
## 31579                           Panama 1887           0
## 31580                 Papua New Guinea 1887           0
## 31581                         Paraguay 1887           0
## 31582                             Peru 1887       21984
## 31583                      Philippines 1887           0
## 31584                           Poland 1887   693719776
## 31585                         Portugal 1887    14978432
## 31586                            Qatar 1887           0
## 31587                          Reunion 1887           0
## 31588                          Romania 1887     3268288
## 31589                           Russia 1887           0
## 31590                           Rwanda 1887           0
## 31591                     Saint Helena 1887           0
## 31592            Saint Kitts and Nevis 1887           0
## 31593                      Saint Lucia 1887           0
## 31594        Saint Pierre and Miquelon 1887           0
## 31595 Saint Vincent and the Grenadines 1887           0
## 31596                            Samoa 1887           0
## 31597            Sao Tome and Principe 1887           0
## 31598                     Saudi Arabia 1887           0
## 31599                          Senegal 1887           0
## 31600                           Serbia 1887           0
## 31601                       Seychelles 1887           0
## 31602                     Sierra Leone 1887           0
## 31603                        Singapore 1887           0
## 31604        Sint Maarten (Dutch part) 1887           0
## 31605                         Slovakia 1887           0
## 31606                         Slovenia 1887           0
## 31607                  Solomon Islands 1887           0
## 31608                          Somalia 1887           0
## 31609                     South Africa 1887      153888
## 31610                      South Korea 1887           0
## 31611                      South Sudan 1887           0
## 31612                            Spain 1887   111656736
## 31613                        Sri Lanka 1887           0
## 31614                            Sudan 1887           0
## 31615                         Suriname 1887           0
## 31616                        Swaziland 1887           0
## 31617                           Sweden 1887    61760384
## 31618                      Switzerland 1887    34075200
## 31619                            Syria 1887           0
## 31620                           Taiwan 1887           0
## 31621                       Tajikistan 1887           0
## 31622                         Tanzania 1887           0
## 31623                         Thailand 1887           0
## 31624                            Timor 1887           0
## 31625                             Togo 1887           0
## 31626                            Tonga 1887           0
## 31627              Trinidad and Tobago 1887           0
## 31628                          Tunisia 1887           0
## 31629                           Turkey 1887     5038000
## 31630                     Turkmenistan 1887           0
## 31631         Turks and Caicos Islands 1887           0
## 31632                           Tuvalu 1887           0
## 31633                           Uganda 1887           0
## 31634                          Ukraine 1887           0
## 31635             United Arab Emirates 1887           0
## 31636                   United Kingdom 1887 11962483680
## 31637                    United States 1887  4501553760
## 31638                          Uruguay 1887           0
## 31639                       Uzbekistan 1887           0
## 31640                          Vanuatu 1887           0
## 31641                        Venezuela 1887           0
## 31642                          Vietnam 1887           0
## 31643        Wallis and Futuna Islands 1887           0
## 31644                            World 1887 25524504880
## 31645                            Yemen 1887           0
## 31646                           Zambia 1887           0
## 31647                         Zimbabwe 1887           0
## 31648                      Afghanistan 1888           0
## 31649                           Africa 1888      234496
## 31650                          Albania 1888           0
## 31651                          Algeria 1888           0
## 31652                 Americas (other) 1888   104292096
## 31653                          Andorra 1888           0
## 31654                           Angola 1888           0
## 31655                         Anguilla 1888           0
## 31656              Antarctic Fisheries 1888           0
## 31657              Antigua and Barbuda 1888           0
## 31658                        Argentina 1888     1974896
## 31659                          Armenia 1888           0
## 31660                            Aruba 1888           0
## 31661         Asia and Pacific (other) 1888   177187376
## 31662                        Australia 1888    37537680
## 31663                          Austria 1888   326499040
## 31664                       Azerbaijan 1888           0
## 31665                          Bahamas 1888           0
## 31666                          Bahrain 1888           0
## 31667                       Bangladesh 1888           0
## 31668                         Barbados 1888           0
## 31669                          Belarus 1888           0
## 31670                          Belgium 1888  1011813600
## 31671                           Belize 1888           0
## 31672                            Benin 1888           0
## 31673                          Bermuda 1888           0
## 31674                           Bhutan 1888           0
## 31675                          Bolivia 1888           0
## 31676  Bonaire Sint Eustatius and Saba 1888           0
## 31677           Bosnia and Herzegovina 1888           0
## 31678                         Botswana 1888           0
## 31679                           Brazil 1888           0
## 31680           British Virgin Islands 1888           0
## 31681                           Brunei 1888           0
## 31682                         Bulgaria 1888       69616
## 31683                     Burkina Faso 1888           0
## 31684                          Burundi 1888           0
## 31685                         Cambodia 1888           0
## 31686                         Cameroon 1888           0
## 31687                           Canada 1888   102295216
## 31688                       Cape Verde 1888           0
## 31689                   Cayman Islands 1888           0
## 31690         Central African Republic 1888           0
## 31691                             Chad 1888           0
## 31692                            Chile 1888           0
## 31693                            China 1888           0
## 31694                 Christmas Island 1888           0
## 31695                         Colombia 1888           0
## 31696                          Comoros 1888           0
## 31697                            Congo 1888           0
## 31698                     Cook Islands 1888           0
## 31699                       Costa Rica 1888           0
## 31700                    Cote d'Ivoire 1888           0
## 31701                          Croatia 1888           0
## 31702                             Cuba 1888           0
## 31703                          Curacao 1888           0
## 31704                           Cyprus 1888           0
## 31705                   Czech Republic 1888           0
## 31706                   Czechoslovakia 1888   373563120
## 31707     Democratic Republic of Congo 1888           0
## 31708                          Denmark 1888    48998672
## 31709                         Djibouti 1888           0
## 31710                         Dominica 1888           0
## 31711               Dominican Republic 1888           0
## 31712                            EU-28 1888 20916097888
## 31713                          Ecuador 1888           0
## 31714                            Egypt 1888           0
## 31715                      El Salvador 1888           0
## 31716                Equatorial Guinea 1888           0
## 31717                          Eritrea 1888           0
## 31718                          Estonia 1888           0
## 31719                         Ethiopia 1888           0
## 31720                   Europe (other) 1888   696716928
## 31721                   Faeroe Islands 1888           0
## 31722                 Falkland Islands 1888           0
## 31723                             Fiji 1888           0
## 31724                          Finland 1888     2843264
## 31725                           France 1888  2444573168
## 31726                    French Guiana 1888           0
## 31727                 French Polynesia 1888           0
## 31728                            Gabon 1888           0
## 31729                           Gambia 1888           0
## 31730                          Georgia 1888           0
## 31731                          Germany 1888  3414214128
## 31732                            Ghana 1888           0
## 31733                        Gibraltar 1888           0
## 31734                           Greece 1888     1641472
## 31735                        Greenland 1888           0
## 31736                          Grenada 1888           0
## 31737                       Guadeloupe 1888           0
## 31738                        Guatemala 1888           0
## 31739                           Guinea 1888           0
## 31740                    Guinea-Bissau 1888           0
## 31741                           Guyana 1888           0
## 31742                            Haiti 1888           0
## 31743                         Honduras 1888           0
## 31744                        Hong Kong 1888           0
## 31745                          Hungary 1888    82275120
## 31746                          Iceland 1888           0
## 31747                            India 1888    34426944
## 31748                        Indonesia 1888           0
## 31749                             Iran 1888           0
## 31750                             Iraq 1888           0
## 31751                          Ireland 1888     1099200
## 31752                           Israel 1888           0
## 31753                            Italy 1888   114291152
## 31754                          Jamaica 1888           0
## 31755                            Japan 1888    38581920
## 31756                           Jordan 1888           0
## 31757                       Kazakhstan 1888           0
## 31758                            Kenya 1888           0
## 31759                         Kiribati 1888           0
## 31760                           Kuwait 1888           0
## 31761                       Kyrgysztan 1888           0
## 31762                       Kyrgyzstan 1888           0
## 31763                             Laos 1888           0
## 31764                           Latvia 1888           0
## 31765                          Lebanon 1888           0
## 31766                          Lesotho 1888           0
## 31767                          Liberia 1888           0
## 31768                            Libya 1888           0
## 31769                    Liechtenstein 1888           0
## 31770                        Lithuania 1888           0
## 31771                       Luxembourg 1888           0
## 31772                            Macao 1888           0
## 31773                        Macedonia 1888           0
## 31774                       Madagascar 1888           0
## 31775                           Malawi 1888           0
## 31776                         Malaysia 1888           0
## 31777                         Maldives 1888           0
## 31778                             Mali 1888           0
## 31779                            Malta 1888           0
## 31780                 Marshall Islands 1888           0
## 31781                       Martinique 1888           0
## 31782                       Mauritania 1888           0
## 31783                        Mauritius 1888           0
## 31784                           Mexico 1888           0
## 31785             Micronesia (country) 1888           0
## 31786                      Middle East 1888     5305472
## 31787                          Moldova 1888           0
## 31788                         Mongolia 1888           0
## 31789                       Montenegro 1888           0
## 31790                       Montserrat 1888           0
## 31791                          Morocco 1888           0
## 31792                       Mozambique 1888           0
## 31793                          Myanmar 1888           0
## 31794                          Namibia 1888           0
## 31795                            Nauru 1888           0
## 31796                            Nepal 1888           0
## 31797                      Netherlands 1888   236566160
## 31798                    New Caledonia 1888           0
## 31799                      New Zealand 1888     9977072
## 31800                        Nicaragua 1888           0
## 31801                            Niger 1888           0
## 31802                          Nigeria 1888           0
## 31803                             Niue 1888           0
## 31804                      North Korea 1888           0
## 31805                           Norway 1888    31041408
## 31806                             Oman 1888           0
## 31807                         Pakistan 1888           0
## 31808                            Palau 1888           0
## 31809                        Palestine 1888           0
## 31810                           Panama 1888           0
## 31811                 Papua New Guinea 1888           0
## 31812                         Paraguay 1888           0
## 31813                             Peru 1888       29312
## 31814                      Philippines 1888           0
## 31815                           Poland 1888   731220816
## 31816                         Portugal 1888    16345104
## 31817                            Qatar 1888           0
## 31818                          Reunion 1888           0
## 31819                          Romania 1888     3898496
## 31820                           Russia 1888           0
## 31821                           Rwanda 1888           0
## 31822                     Saint Helena 1888           0
## 31823            Saint Kitts and Nevis 1888           0
## 31824                      Saint Lucia 1888           0
## 31825        Saint Pierre and Miquelon 1888           0
## 31826 Saint Vincent and the Grenadines 1888           0
## 31827                            Samoa 1888           0
## 31828            Sao Tome and Principe 1888           0
## 31829                     Saudi Arabia 1888           0
## 31830                          Senegal 1888           0
## 31831                           Serbia 1888           0
## 31832                       Seychelles 1888           0
## 31833                     Sierra Leone 1888           0
## 31834                        Singapore 1888           0
## 31835        Sint Maarten (Dutch part) 1888           0
## 31836                         Slovakia 1888           0
## 31837                         Slovenia 1888           0
## 31838                  Solomon Islands 1888           0
## 31839                          Somalia 1888           0
## 31840                     South Africa 1888      234496
## 31841                      South Korea 1888           0
## 31842                      South Sudan 1888           0
## 31843                            Spain 1888   118090720
## 31844                        Sri Lanka 1888           0
## 31845                            Sudan 1888           0
## 31846                         Suriname 1888           0
## 31847                        Swaziland 1888           0
## 31848                           Sweden 1888    66006960
## 31849                      Switzerland 1888    36379856
## 31850                            Syria 1888           0
## 31851                           Taiwan 1888           0
## 31852                       Tajikistan 1888           0
## 31853                         Tanzania 1888           0
## 31854                         Thailand 1888           0
## 31855                            Timor 1888           0
## 31856                             Togo 1888           0
## 31857                            Tonga 1888           0
## 31858              Trinidad and Tobago 1888           0
## 31859                          Tunisia 1888           0
## 31860                           Turkey 1888     5305472
## 31861                     Turkmenistan 1888           0
## 31862         Turks and Caicos Islands 1888           0
## 31863                           Tuvalu 1888           0
## 31864                           Uganda 1888           0
## 31865                          Ukraine 1888           0
## 31866             United Arab Emirates 1888           0
## 31867                   United Kingdom 1888 12295651200
## 31868                    United States 1888  4875428320
## 31869                          Uruguay 1888           0
## 31870                       Uzbekistan 1888           0
## 31871                          Vanuatu 1888           0
## 31872                        Venezuela 1888           0
## 31873                          Vietnam 1888           0
## 31874        Wallis and Futuna Islands 1888           0
## 31875                            World 1888 26717089248
## 31876                            Yemen 1888           0
## 31877                           Zambia 1888           0
## 31878                         Zimbabwe 1888           0
## 31879                      Afghanistan 1889           0
## 31880                           Africa 1889      366400
## 31881                          Albania 1889           0
## 31882                          Algeria 1889           0
## 31883                 Americas (other) 1889   117339600
## 31884                          Andorra 1889           0
## 31885                           Angola 1889           0
## 31886                         Anguilla 1889           0
## 31887              Antarctic Fisheries 1889           0
## 31888              Antigua and Barbuda 1889           0
## 31889                        Argentina 1889     3729952
## 31890                          Armenia 1889           0
## 31891                            Aruba 1889           0
## 31892         Asia and Pacific (other) 1889   198229728
## 31893                        Australia 1889    40963520
## 31894                          Austria 1889   339374336
## 31895                       Azerbaijan 1889           0
## 31896                          Bahamas 1889           0
## 31897                          Bahrain 1889           0
## 31898                       Bangladesh 1889           0
## 31899                         Barbados 1889           0
## 31900                          Belarus 1889           0
## 31901                          Belgium 1889  1048647792
## 31902                           Belize 1889           0
## 31903                            Benin 1889           0
## 31904                          Bermuda 1889           0
## 31905                           Bhutan 1889           0
## 31906                          Bolivia 1889           0
## 31907  Bonaire Sint Eustatius and Saba 1889           0
## 31908           Bosnia and Herzegovina 1889           0
## 31909                         Botswana 1889           0
## 31910                           Brazil 1889           0
## 31911           British Virgin Islands 1889           0
## 31912                           Brunei 1889           0
## 31913                         Bulgaria 1889       95264
## 31914                     Burkina Faso 1889           0
## 31915                          Burundi 1889           0
## 31916                         Cambodia 1889           0
## 31917                         Cameroon 1889           0
## 31918                           Canada 1889   113587664
## 31919                       Cape Verde 1889           0
## 31920                   Cayman Islands 1889           0
## 31921         Central African Republic 1889           0
## 31922                             Chad 1889           0
## 31923                            Chile 1889           0
## 31924                            China 1889           0
## 31925                 Christmas Island 1889           0
## 31926                         Colombia 1889           0
## 31927                          Comoros 1889           0
## 31928                            Congo 1889           0
## 31929                     Cook Islands 1889           0
## 31930                       Costa Rica 1889           0
## 31931                    Cote d'Ivoire 1889           0
## 31932                          Croatia 1889           0
## 31933                             Cuba 1889           0
## 31934                          Curacao 1889           0
## 31935                           Cyprus 1889           0
## 31936                   Czech Republic 1889           0
## 31937                   Czechoslovakia 1889   405806320
## 31938     Democratic Republic of Congo 1889           0
## 31939                          Denmark 1889    51992160
## 31940                         Djibouti 1889           0
## 31941                         Dominica 1889           0
## 31942               Dominican Republic 1889           0
## 31943                            EU-28 1889 21682789888
## 31944                          Ecuador 1889           0
## 31945                            Egypt 1889           0
## 31946                      El Salvador 1889           0
## 31947                Equatorial Guinea 1889           0
## 31948                          Eritrea 1889           0
## 31949                          Estonia 1889           0
## 31950                         Ethiopia 1889           0
## 31951                   Europe (other) 1889   757682224
## 31952                   Faeroe Islands 1889           0
## 31953                 Falkland Islands 1889           0
## 31954                             Fiji 1889           0
## 31955                          Finland 1889     3004480
## 31956                           France 1889  2533370208
## 31957                    French Guiana 1889           0
## 31958                 French Polynesia 1889           0
## 31959                            Gabon 1889           0
## 31960                           Gambia 1889           0
## 31961                          Georgia 1889           0
## 31962                          Germany 1889  3613063072
## 31963                            Ghana 1889           0
## 31964                        Gibraltar 1889           0
## 31965                           Greece 1889     1641472
## 31966                        Greenland 1889           0
## 31967                          Grenada 1889           0
## 31968                       Guadeloupe 1889           0
## 31969                        Guatemala 1889           0
## 31970                           Guinea 1889           0
## 31971                    Guinea-Bissau 1889           0
## 31972                           Guyana 1889           0
## 31973                            Haiti 1889           0
## 31974                         Honduras 1889           0
## 31975                        Hong Kong 1889           0
## 31976                          Hungary 1889    87027328
## 31977                          Iceland 1889           0
## 31978                            India 1889    38805424
## 31979                        Indonesia 1889        3664
## 31980                             Iran 1889           0
## 31981                             Iraq 1889           0
## 31982                          Ireland 1889     1099200
## 31983                           Israel 1889           0
## 31984                            Italy 1889   125546960
## 31985                          Jamaica 1889           0
## 31986                            Japan 1889    44836368
## 31987                           Jordan 1889           0
## 31988                       Kazakhstan 1889           0
## 31989                            Kenya 1889           0
## 31990                         Kiribati 1889           0
## 31991                           Kuwait 1889           0
## 31992                       Kyrgysztan 1889           0
## 31993                       Kyrgyzstan 1889           0
## 31994                             Laos 1889           0
## 31995                           Latvia 1889           0
## 31996                          Lebanon 1889           0
## 31997                          Lesotho 1889           0
## 31998                          Liberia 1889           0
## 31999                            Libya 1889           0
## 32000                    Liechtenstein 1889           0
## 32001                        Lithuania 1889           0
## 32002                       Luxembourg 1889           0
## 32003                            Macao 1889           0
## 32004                        Macedonia 1889           0
## 32005                       Madagascar 1889           0
## 32006                           Malawi 1889           0
## 32007                         Malaysia 1889           0
## 32008                         Maldives 1889           0
## 32009                             Mali 1889           0
## 32010                            Malta 1889           0
## 32011                 Marshall Islands 1889           0
## 32012                       Martinique 1889           0
## 32013                       Mauritania 1889           0
## 32014                        Mauritius 1889           0
## 32015                           Mexico 1889           0
## 32016             Micronesia (country) 1889           0
## 32017                      Middle East 1889     5708512
## 32018                          Moldova 1889           0
## 32019                         Mongolia 1889           0
## 32020                       Montenegro 1889           0
## 32021                       Montserrat 1889           0
## 32022                          Morocco 1889           0
## 32023                       Mozambique 1889           0
## 32024                          Myanmar 1889           0
## 32025                          Namibia 1889           0
## 32026                            Nauru 1889           0
## 32027                            Nepal 1889           0
## 32028                      Netherlands 1889   247177104
## 32029                    New Caledonia 1889           0
## 32030                      New Zealand 1889    11288784
## 32031                        Nicaragua 1889           0
## 32032                            Niger 1889           0
## 32033                          Nigeria 1889           0
## 32034                             Niue 1889           0
## 32035                      North Korea 1889           0
## 32036                           Norway 1889    33261792
## 32037                             Oman 1889           0
## 32038                         Pakistan 1889           0
## 32039                            Palau 1889           0
## 32040                        Palestine 1889           0
## 32041                           Panama 1889           0
## 32042                 Papua New Guinea 1889           0
## 32043                         Paraguay 1889           0
## 32044                             Peru 1889       36640
## 32045                      Philippines 1889           0
## 32046                           Poland 1889   771737328
## 32047                         Portugal 1889    17916960
## 32048                            Qatar 1889           0
## 32049                          Reunion 1889           0
## 32050                          Romania 1889     4543360
## 32051                           Russia 1889           0
## 32052                           Rwanda 1889           0
## 32053                     Saint Helena 1889           0
## 32054            Saint Kitts and Nevis 1889           0
## 32055                      Saint Lucia 1889           0
## 32056        Saint Pierre and Miquelon 1889           0
## 32057 Saint Vincent and the Grenadines 1889           0
## 32058                            Samoa 1889           0
## 32059            Sao Tome and Principe 1889           0
## 32060                     Saudi Arabia 1889           0
## 32061                          Senegal 1889           0
## 32062                           Serbia 1889           0
## 32063                       Seychelles 1889           0
## 32064                     Sierra Leone 1889           0
## 32065                        Singapore 1889           0
## 32066        Sint Maarten (Dutch part) 1889           0
## 32067                         Slovakia 1889           0
## 32068                         Slovenia 1889           0
## 32069                  Solomon Islands 1889           0
## 32070                          Somalia 1889           0
## 32071                     South Africa 1889      366400
## 32072                      South Korea 1889           0
## 32073                      South Sudan 1889           0
## 32074                            Spain 1889   124913088
## 32075                        Sri Lanka 1889           0
## 32076                            Sudan 1889           0
## 32077                         Suriname 1889           0
## 32078                        Swaziland 1889           0
## 32079                           Sweden 1889    70964352
## 32080                      Switzerland 1889    38922672
## 32081                            Syria 1889           0
## 32082                           Taiwan 1889           0
## 32083                       Tajikistan 1889           0
## 32084                         Tanzania 1889           0
## 32085                         Thailand 1889           0
## 32086                            Timor 1889           0
## 32087                             Togo 1889           0
## 32088                            Tonga 1889           0
## 32089              Trinidad and Tobago 1889           0
## 32090                          Tunisia 1889           0
## 32091                           Turkey 1889     5708512
## 32092                     Turkmenistan 1889           0
## 32093         Turks and Caicos Islands 1889           0
## 32094                           Tuvalu 1889           0
## 32095                           Uganda 1889           0
## 32096                          Ukraine 1889           0
## 32097             United Arab Emirates 1889           0
## 32098                   United Kingdom 1889 12640675424
## 32099                    United States 1889  5210970112
## 32100                          Uruguay 1889           0
## 32101                       Uzbekistan 1889           0
## 32102                          Vanuatu 1889           0
## 32103                        Venezuela 1889           0
## 32104                          Vietnam 1889           0
## 32105        Wallis and Futuna Islands 1889           0
## 32106                            World 1889 27909244928
## 32107                            Yemen 1889           0
## 32108                           Zambia 1889           0
## 32109                         Zimbabwe 1889           0
## 32110                      Afghanistan 1890           0
## 32111                           Africa 1890      663184
## 32112                          Albania 1890           0
## 32113                          Algeria 1890           0
## 32114                 Americas (other) 1890   131138224
## 32115                          Andorra 1890           0
## 32116                           Angola 1890           0
## 32117                         Anguilla 1890           0
## 32118              Antarctic Fisheries 1890           0
## 32119              Antigua and Barbuda 1890           0
## 32120                        Argentina 1890     5100288
## 32121                          Armenia 1890           0
## 32122                            Aruba 1890           0
## 32123         Asia and Pacific (other) 1890   221990768
## 32124                        Australia 1890    44510272
## 32125                          Austria 1890   352410848
## 32126                       Azerbaijan 1890           0
## 32127                          Bahamas 1890           0
## 32128                          Bahrain 1890           0
## 32129                       Bangladesh 1890           0
## 32130                         Barbados 1890           0
## 32131                          Belarus 1890           0
## 32132                          Belgium 1890  1088471808
## 32133                           Belize 1890           0
## 32134                            Benin 1890           0
## 32135                          Bermuda 1890           0
## 32136                           Bhutan 1890           0
## 32137                          Bolivia 1890           0
## 32138  Bonaire Sint Eustatius and Saba 1890           0
## 32139           Bosnia and Herzegovina 1890           0
## 32140                         Botswana 1890           0
## 32141                           Brazil 1890           0
## 32142           British Virgin Islands 1890           0
## 32143                           Brunei 1890           0
## 32144                         Bulgaria 1890      128240
## 32145                     Burkina Faso 1890           0
## 32146                          Burundi 1890           0
## 32147                         Cambodia 1890           0
## 32148                         Cameroon 1890           0
## 32149                           Canada 1890   126001296
## 32150                       Cape Verde 1890           0
## 32151                   Cayman Islands 1890           0
## 32152         Central African Republic 1890           0
## 32153                             Chad 1890           0
## 32154                            Chile 1890           0
## 32155                            China 1890           0
## 32156                 Christmas Island 1890           0
## 32157                         Colombia 1890           0
## 32158                          Comoros 1890           0
## 32159                            Congo 1890           0
## 32160                     Cook Islands 1890           0
## 32161                       Costa Rica 1890           0
## 32162                    Cote d'Ivoire 1890           0
## 32163                          Croatia 1890           0
## 32164                             Cuba 1890           0
## 32165                          Curacao 1890           0
## 32166                           Cyprus 1890           0
## 32167                   Czech Republic 1890           0
## 32168                   Czechoslovakia 1890   440288224
## 32169     Democratic Republic of Congo 1890           0
## 32170                          Denmark 1890    54861072
## 32171                         Djibouti 1890           0
## 32172                         Dominica 1890           0
## 32173               Dominican Republic 1890           0
## 32174                            EU-28 1890 22482216064
## 32175                          Ecuador 1890           0
## 32176                            Egypt 1890           0
## 32177                      El Salvador 1890           0
## 32178                Equatorial Guinea 1890           0
## 32179                          Eritrea 1890           0
## 32180                          Estonia 1890           0
## 32181                         Ethiopia 1890           0
## 32182                   Europe (other) 1890   824330384
## 32183                   Faeroe Islands 1890           0
## 32184                 Falkland Islands 1890           0
## 32185                             Fiji 1890           0
## 32186                          Finland 1890     3213328
## 32187                           France 1890  2631188016
## 32188                    French Guiana 1890           0
## 32189                 French Polynesia 1890           0
## 32190                            Gabon 1890           0
## 32191                           Gambia 1890           0
## 32192                          Georgia 1890           0
## 32193                          Germany 1890  3821295520
## 32194                            Ghana 1890           0
## 32195                        Gibraltar 1890           0
## 32196                           Greece 1890     1641472
## 32197                        Greenland 1890           0
## 32198                          Grenada 1890           0
## 32199                       Guadeloupe 1890           0
## 32200                        Guatemala 1890           0
## 32201                           Guinea 1890           0
## 32202                    Guinea-Bissau 1890           0
## 32203                           Guyana 1890           0
## 32204                            Haiti 1890           0
## 32205                         Honduras 1890           0
## 32206                        Hong Kong 1890           0
## 32207                          Hungary 1890    92281504
## 32208                          Iceland 1890           0
## 32209                            India 1890    43634576
## 32210                        Indonesia 1890       18320
## 32211                             Iran 1890           0
## 32212                             Iraq 1890           0
## 32213                          Ireland 1890     1099200
## 32214                           Israel 1890           0
## 32215                            Italy 1890   137755408
## 32216                          Jamaica 1890           0
## 32217                            Japan 1890    51592784
## 32218                           Jordan 1890           0
## 32219                       Kazakhstan 1890           0
## 32220                            Kenya 1890           0
## 32221                         Kiribati 1890           0
## 32222                           Kuwait 1890           0
## 32223                       Kyrgysztan 1890           0
## 32224                       Kyrgyzstan 1890           0
## 32225                             Laos 1890           0
## 32226                           Latvia 1890           0
## 32227                          Lebanon 1890           0
## 32228                          Lesotho 1890           0
## 32229                          Liberia 1890           0
## 32230                            Libya 1890           0
## 32231                    Liechtenstein 1890           0
## 32232                        Lithuania 1890           0
## 32233                       Luxembourg 1890           0
## 32234                            Macao 1890           0
## 32235                        Macedonia 1890           0
## 32236                       Madagascar 1890           0
## 32237                           Malawi 1890           0
## 32238                         Malaysia 1890        7328
## 32239                         Maldives 1890           0
## 32240                             Mali 1890           0
## 32241                            Malta 1890           0
## 32242                 Marshall Islands 1890           0
## 32243                       Martinique 1890           0
## 32244                       Mauritania 1890           0
## 32245                        Mauritius 1890           0
## 32246                           Mexico 1890           0
## 32247             Micronesia (country) 1890           0
## 32248                      Middle East 1890     6074912
## 32249                          Moldova 1890           0
## 32250                         Mongolia 1890           0
## 32251                       Montenegro 1890           0
## 32252                       Montserrat 1890           0
## 32253                          Morocco 1890           0
## 32254                       Mozambique 1890           0
## 32255                          Myanmar 1890           0
## 32256                          Namibia 1890           0
## 32257                            Nauru 1890           0
## 32258                            Nepal 1890           0
## 32259                      Netherlands 1890   257461952
## 32260                    New Caledonia 1890           0
## 32261                      New Zealand 1890    12710416
## 32262                        Nicaragua 1890           0
## 32263                            Niger 1890           0
## 32264                          Nigeria 1890           0
## 32265                             Niue 1890           0
## 32266                      North Korea 1890           0
## 32267                           Norway 1890    35339280
## 32268                             Oman 1890           0
## 32269                         Pakistan 1890           0
## 32270                            Palau 1890           0
## 32271                        Palestine 1890           0
## 32272                           Panama 1890           0
## 32273                 Papua New Guinea 1890           0
## 32274                         Paraguay 1890           0
## 32275                             Peru 1890       47632
## 32276                      Philippines 1890           0
## 32277                           Poland 1890   813602192
## 32278                         Portugal 1890    19595072
## 32279                            Qatar 1890           0
## 32280                          Reunion 1890           0
## 32281                          Romania 1890     5349440
## 32282                           Russia 1890           0
## 32283                           Rwanda 1890           0
## 32284                     Saint Helena 1890           0
## 32285            Saint Kitts and Nevis 1890           0
## 32286                      Saint Lucia 1890           0
## 32287        Saint Pierre and Miquelon 1890           0
## 32288 Saint Vincent and the Grenadines 1890           0
## 32289                            Samoa 1890           0
## 32290            Sao Tome and Principe 1890           0
## 32291                     Saudi Arabia 1890           0
## 32292                          Senegal 1890           0
## 32293                           Serbia 1890           0
## 32294                       Seychelles 1890           0
## 32295                     Sierra Leone 1890           0
## 32296                        Singapore 1890           0
## 32297        Sint Maarten (Dutch part) 1890           0
## 32298                         Slovakia 1890           0
## 32299                         Slovenia 1890           0
## 32300                  Solomon Islands 1890           0
## 32301                          Somalia 1890           0
## 32302                     South Africa 1890      663184
## 32303                      South Korea 1890           0
## 32304                      South Sudan 1890           0
## 32305                            Spain 1890   132252080
## 32306                        Sri Lanka 1890           0
## 32307                            Sudan 1890           0
## 32308                         Suriname 1890           0
## 32309                        Swaziland 1890           0
## 32310                           Sweden 1890    75910752
## 32311                      Switzerland 1890    41798912
## 32312                            Syria 1890           0
## 32313                           Taiwan 1890           0
## 32314                       Tajikistan 1890           0
## 32315                         Tanzania 1890           0
## 32316                         Thailand 1890           0
## 32317                            Timor 1890           0
## 32318                             Togo 1890           0
## 32319                            Tonga 1890           0
## 32320              Trinidad and Tobago 1890           0
## 32321                          Tunisia 1890           0
## 32322                           Turkey 1890     6074912
## 32323                     Turkmenistan 1890           0
## 32324         Turks and Caicos Islands 1890           0
## 32325                           Tuvalu 1890           0
## 32326                           Uganda 1890           0
## 32327                          Ukraine 1890           0
## 32328             United Arab Emirates 1890           0
## 32329                   United Kingdom 1890 12993698160
## 32330                    United States 1890  5612716720
## 32331                          Uruguay 1890           0
## 32332                       Uzbekistan 1890           0
## 32333                          Vanuatu 1890           0
## 32334                        Venezuela 1890           0
## 32335                          Vietnam 1890           0
## 32336        Wallis and Futuna Islands 1890           0
## 32337                            World 1890 29208099952
## 32338                            Yemen 1890           0
## 32339                           Zambia 1890           0
## 32340                         Zimbabwe 1890           0
## 32341                      Afghanistan 1891           0
## 32342                           Africa 1891      959968
## 32343                          Albania 1891           0
## 32344                          Algeria 1891           0
## 32345                 Americas (other) 1891   146585648
## 32346                          Andorra 1891           0
## 32347                           Angola 1891           0
## 32348                         Anguilla 1891           0
## 32349              Antarctic Fisheries 1891           0
## 32350              Antigua and Barbuda 1891           0
## 32351                        Argentina 1891     6038272
## 32352                          Armenia 1891           0
## 32353                            Aruba 1891           0
## 32354         Asia and Pacific (other) 1891   248144400
## 32355                        Australia 1891    48518688
## 32356                          Austria 1891   367356304
## 32357                       Azerbaijan 1891           0
## 32358                          Bahamas 1891           0
## 32359                          Bahrain 1891           0
## 32360                       Bangladesh 1891           0
## 32361                         Barbados 1891           0
## 32362                          Belarus 1891           0
## 32363                          Belgium 1891  1126251312
## 32364                           Belize 1891           0
## 32365                            Benin 1891           0
## 32366                          Bermuda 1891           0
## 32367                           Bhutan 1891           0
## 32368                          Bolivia 1891           0
## 32369  Bonaire Sint Eustatius and Saba 1891           0
## 32370           Bosnia and Herzegovina 1891           0
## 32371                         Botswana 1891           0
## 32372                           Brazil 1891           0
## 32373           British Virgin Islands 1891           0
## 32374                           Brunei 1891           0
## 32375                         Bulgaria 1891      168544
## 32376                     Burkina Faso 1891           0
## 32377                          Burundi 1891           0
## 32378                         Cambodia 1891           0
## 32379                         Cameroon 1891           0
## 32380                           Canada 1891   139942816
## 32381                       Cape Verde 1891           0
## 32382                   Cayman Islands 1891           0
## 32383         Central African Republic 1891           0
## 32384                             Chad 1891           0
## 32385                            Chile 1891           0
## 32386                            China 1891           0
## 32387                 Christmas Island 1891           0
## 32388                         Colombia 1891           0
## 32389                          Comoros 1891           0
## 32390                            Congo 1891           0
## 32391                     Cook Islands 1891           0
## 32392                       Costa Rica 1891           0
## 32393                    Cote d'Ivoire 1891           0
## 32394                          Croatia 1891           0
## 32395                             Cuba 1891           0
## 32396                          Curacao 1891           0
## 32397                           Cyprus 1891           0
## 32398                   Czech Republic 1891           0
## 32399                   Czechoslovakia 1891   476037872
## 32400     Democratic Republic of Congo 1891           0
## 32401                          Denmark 1891    57946160
## 32402                         Djibouti 1891           0
## 32403                         Dominica 1891           0
## 32404               Dominican Republic 1891           0
## 32405                            EU-28 1891 23307429472
## 32406                          Ecuador 1891           0
## 32407                            Egypt 1891           0
## 32408                      El Salvador 1891           0
## 32409                Equatorial Guinea 1891           0
## 32410                          Eritrea 1891           0
## 32411                          Estonia 1891           0
## 32412                         Ethiopia 1891           0
## 32413                   Europe (other) 1891   895976240
## 32414                   Faeroe Islands 1891           0
## 32415                 Falkland Islands 1891           0
## 32416                             Fiji 1891           0
## 32417                          Finland 1891     3433168
## 32418                           France 1891  2729170704
## 32419                    French Guiana 1891           0
## 32420                 French Polynesia 1891           0
## 32421                            Gabon 1891           0
## 32422                           Gambia 1891           0
## 32423                          Georgia 1891           0
## 32424                          Germany 1891  4042135792
## 32425                            Ghana 1891           0
## 32426                        Gibraltar 1891           0
## 32427                           Greece 1891     1641472
## 32428                        Greenland 1891           0
## 32429                          Grenada 1891           0
## 32430                       Guadeloupe 1891           0
## 32431                        Guatemala 1891           0
## 32432                           Guinea 1891           0
## 32433                    Guinea-Bissau 1891           0
## 32434                           Guyana 1891           0
## 32435                            Haiti 1891           0
## 32436                         Honduras 1891           0
## 32437                        Hong Kong 1891           0
## 32438                          Hungary 1891    97803152
## 32439                          Iceland 1891           0
## 32440                            India 1891    48833792
## 32441                        Indonesia 1891       40304
## 32442                             Iran 1891           0
## 32443                             Iraq 1891           0
## 32444                          Ireland 1891     1099200
## 32445                           Israel 1891           0
## 32446                            Italy 1891   148754736
## 32447                          Jamaica 1891           0
## 32448                            Japan 1891    59715872
## 32449                           Jordan 1891           0
## 32450                       Kazakhstan 1891           0
## 32451                            Kenya 1891           0
## 32452                         Kiribati 1891           0
## 32453                           Kuwait 1891           0
## 32454                       Kyrgysztan 1891           0
## 32455                       Kyrgyzstan 1891           0
## 32456                             Laos 1891           0
## 32457                           Latvia 1891           0
## 32458                          Lebanon 1891           0
## 32459                          Lesotho 1891           0
## 32460                          Liberia 1891           0
## 32461                            Libya 1891           0
## 32462                    Liechtenstein 1891           0
## 32463                        Lithuania 1891           0
## 32464                       Luxembourg 1891           0
## 32465                            Macao 1891           0
## 32466                        Macedonia 1891           0
## 32467                       Madagascar 1891           0
## 32468                           Malawi 1891           0
## 32469                         Malaysia 1891       25648
## 32470                         Maldives 1891           0
## 32471                             Mali 1891           0
## 32472                            Malta 1891           0
## 32473                 Marshall Islands 1891           0
## 32474                       Martinique 1891           0
## 32475                       Mauritania 1891           0
## 32476                        Mauritius 1891           0
## 32477                           Mexico 1891      520288
## 32478             Micronesia (country) 1891           0
## 32479                      Middle East 1891     6477952
## 32480                          Moldova 1891           0
## 32481                         Mongolia 1891           0
## 32482                       Montenegro 1891           0
## 32483                       Montserrat 1891           0
## 32484                          Morocco 1891           0
## 32485                       Mozambique 1891           0
## 32486                          Myanmar 1891           0
## 32487                          Namibia 1891           0
## 32488                            Nauru 1891           0
## 32489                            Nepal 1891           0
## 32490                      Netherlands 1891   269369952
## 32491                    New Caledonia 1891           0
## 32492                      New Zealand 1891    14201664
## 32493                        Nicaragua 1891           0
## 32494                            Niger 1891           0
## 32495                          Nigeria 1891           0
## 32496                             Niue 1891           0
## 32497                      North Korea 1891           0
## 32498                           Norway 1891    37753856
## 32499                             Oman 1891           0
## 32500                         Pakistan 1891           0
## 32501                            Palau 1891           0
## 32502                        Palestine 1891           0
## 32503                           Panama 1891           0
## 32504                 Papua New Guinea 1891           0
## 32505                         Paraguay 1891           0
## 32506                             Peru 1891       95264
## 32507                      Philippines 1891           0
## 32508                           Poland 1891   858944192
## 32509                         Portugal 1891    21335472
## 32510                            Qatar 1891           0
## 32511                          Reunion 1891           0
## 32512                          Romania 1891     6466960
## 32513                           Russia 1891           0
## 32514                           Rwanda 1891           0
## 32515                     Saint Helena 1891           0
## 32516            Saint Kitts and Nevis 1891           0
## 32517                      Saint Lucia 1891           0
## 32518        Saint Pierre and Miquelon 1891           0
## 32519 Saint Vincent and the Grenadines 1891           0
## 32520                            Samoa 1891           0
## 32521            Sao Tome and Principe 1891           0
## 32522                     Saudi Arabia 1891           0
## 32523                          Senegal 1891           0
## 32524                           Serbia 1891           0
## 32525                       Seychelles 1891           0
## 32526                     Sierra Leone 1891           0
## 32527                        Singapore 1891           0
## 32528        Sint Maarten (Dutch part) 1891           0
## 32529                         Slovakia 1891           0
## 32530                         Slovenia 1891           0
## 32531                  Solomon Islands 1891           0
## 32532                          Somalia 1891           0
## 32533                     South Africa 1891      959968
## 32534                      South Korea 1891           0
## 32535                      South Sudan 1891           0
## 32536                            Spain 1891   140191968
## 32537                        Sri Lanka 1891           0
## 32538                            Sudan 1891           0
## 32539                         Suriname 1891           0
## 32540                        Swaziland 1891           0
## 32541                           Sweden 1891    81190576
## 32542                      Switzerland 1891    45320016
## 32543                            Syria 1891           0
## 32544                           Taiwan 1891           0
## 32545                       Tajikistan 1891           0
## 32546                         Tanzania 1891           0
## 32547                         Thailand 1891           0
## 32548                            Timor 1891           0
## 32549                             Togo 1891           0
## 32550                            Tonga 1891           0
## 32551              Trinidad and Tobago 1891           0
## 32552                          Tunisia 1891           0
## 32553                           Turkey 1891     6477952
## 32554                     Turkmenistan 1891           0
## 32555         Turks and Caicos Islands 1891           0
## 32556                           Tuvalu 1891           0
## 32557                           Uganda 1891           0
## 32558                          Ukraine 1891           0
## 32559             United Arab Emirates 1891           0
## 32560                   United Kingdom 1891 13354169808
## 32561                    United States 1891  6040140640
## 32562                          Uruguay 1891           0
## 32563                       Uzbekistan 1891           0
## 32564                          Vanuatu 1891           0
## 32565                        Venezuela 1891           0
## 32566                          Vietnam 1891           0
## 32567        Wallis and Futuna Islands 1891           0
## 32568                            World 1891 30567399984
## 32569                            Yemen 1891           0
## 32570                           Zambia 1891           0
## 32571                         Zimbabwe 1891           0
## 32572                      Afghanistan 1892           0
## 32573                           Africa 1892     1439952
## 32574                          Albania 1892           0
## 32575                          Algeria 1892           0
## 32576                 Americas (other) 1892   162505728
## 32577                          Andorra 1892           0
## 32578                           Angola 1892           0
## 32579                         Anguilla 1892           0
## 32580              Antarctic Fisheries 1892           0
## 32581              Antigua and Barbuda 1892           0
## 32582                        Argentina 1892     7423264
## 32583                          Armenia 1892           0
## 32584                            Aruba 1892           0
## 32585         Asia and Pacific (other) 1892   262313088
## 32586                        Australia 1892    52670000
## 32587                          Austria 1892   381821776
## 32588                       Azerbaijan 1892           0
## 32589                          Bahamas 1892           0
## 32590                          Bahrain 1892           0
## 32591                       Bangladesh 1892           0
## 32592                         Barbados 1892           0
## 32593                          Belarus 1892           0
## 32594                          Belgium 1892  1163979520
## 32595                           Belize 1892           0
## 32596                            Benin 1892           0
## 32597                          Bermuda 1892           0
## 32598                           Bhutan 1892           0
## 32599                          Bolivia 1892           0
## 32600  Bonaire Sint Eustatius and Saba 1892           0
## 32601           Bosnia and Herzegovina 1892           0
## 32602                         Botswana 1892           0
## 32603                           Brazil 1892           0
## 32604           British Virgin Islands 1892           0
## 32605                           Brunei 1892           0
## 32606                         Bulgaria 1892      216176
## 32607                     Burkina Faso 1892           0
## 32608                          Burundi 1892           0
## 32609                         Cambodia 1892           0
## 32610                         Cameroon 1892           0
## 32611                           Canada 1892   153833040
## 32612                       Cape Verde 1892           0
## 32613                   Cayman Islands 1892           0
## 32614         Central African Republic 1892           0
## 32615                             Chad 1892           0
## 32616                            Chile 1892           0
## 32617                            China 1892           0
## 32618                 Christmas Island 1892           0
## 32619                         Colombia 1892           0
## 32620                          Comoros 1892           0
## 32621                            Congo 1892           0
## 32622                     Cook Islands 1892           0
## 32623                       Costa Rica 1892           0
## 32624                    Cote d'Ivoire 1892           0
## 32625                          Croatia 1892           0
## 32626                             Cuba 1892           0
## 32627                          Curacao 1892           0
## 32628                           Cyprus 1892           0
## 32629                   Czech Republic 1892           0
## 32630                   Czechoslovakia 1892   512329792
## 32631     Democratic Republic of Congo 1892           0
## 32632                          Denmark 1892    61115520
## 32633                         Djibouti 1892           0
## 32634                         Dominica 1892           0
## 32635               Dominican Republic 1892           0
## 32636                            EU-28 1892 24116876688
## 32637                          Ecuador 1892           0
## 32638                            Egypt 1892           0
## 32639                      El Salvador 1892           0
## 32640                Equatorial Guinea 1892           0
## 32641                          Eritrea 1892           0
## 32642                          Estonia 1892           0
## 32643                         Ethiopia 1892           0
## 32644                   Europe (other) 1892   969934080
## 32645                   Faeroe Islands 1892           0
## 32646                 Falkland Islands 1892           0
## 32647                             Fiji 1892           0
## 32648                          Finland 1892     3627360
## 32649                           France 1892  2827292624
## 32650                    French Guiana 1892           0
## 32651                 French Polynesia 1892           0
## 32652                            Gabon 1892           0
## 32653                           Gambia 1892           0
## 32654                          Georgia 1892           0
## 32655                          Germany 1892  4257124656
## 32656                            Ghana 1892           0
## 32657                        Gibraltar 1892           0
## 32658                           Greece 1892     2011536
## 32659                        Greenland 1892           0
## 32660                          Grenada 1892           0
## 32661                       Guadeloupe 1892           0
## 32662                        Guatemala 1892           0
## 32663                           Guinea 1892           0
## 32664                    Guinea-Bissau 1892           0
## 32665                           Guyana 1892           0
## 32666                            Haiti 1892           0
## 32667                         Honduras 1892           0
## 32668                        Hong Kong 1892           0
## 32669                          Hungary 1892   103555632
## 32670                          Iceland 1892           0
## 32671                            India 1892    54545968
## 32672                        Indonesia 1892      219840
## 32673                             Iran 1892           0
## 32674                             Iraq 1892           0
## 32675                          Ireland 1892     1099200
## 32676                           Israel 1892           0
## 32677                            Italy 1892   159644144
## 32678                          Jamaica 1892           0
## 32679                            Japan 1892    67791328
## 32680                           Jordan 1892           0
## 32681                       Kazakhstan 1892           0
## 32682                            Kenya 1892           0
## 32683                         Kiribati 1892           0
## 32684                           Kuwait 1892           0
## 32685                       Kyrgysztan 1892           0
## 32686                       Kyrgyzstan 1892           0
## 32687                             Laos 1892           0
## 32688                           Latvia 1892           0
## 32689                          Lebanon 1892           0
## 32690                          Lesotho 1892           0
## 32691                          Liberia 1892           0
## 32692                            Libya 1892           0
## 32693                    Liechtenstein 1892           0
## 32694                        Lithuania 1892           0
## 32695                       Luxembourg 1892           0
## 32696                            Macao 1892           0
## 32697                        Macedonia 1892           0
## 32698                       Madagascar 1892           0
## 32699                           Malawi 1892           0
## 32700                         Malaysia 1892       73280
## 32701                         Maldives 1892           0
## 32702                             Mali 1892           0
## 32703                            Malta 1892           0
## 32704                 Marshall Islands 1892           0
## 32705                       Martinique 1892           0
## 32706                       Mauritania 1892           0
## 32707                        Mauritius 1892           0
## 32708                           Mexico 1892     1099200
## 32709             Micronesia (country) 1892           0
## 32710                      Middle East 1892     6888320
## 32711                          Moldova 1892           0
## 32712                         Mongolia 1892           0
## 32713                       Montenegro 1892           0
## 32714                       Montserrat 1892           0
## 32715                          Morocco 1892           0
## 32716                       Mozambique 1892           0
## 32717                          Myanmar 1892           0
## 32718                          Namibia 1892           0
## 32719                            Nauru 1892           0
## 32720                            Nepal 1892           0
## 32721                      Netherlands 1892   280691712
## 32722                    New Caledonia 1892           0
## 32723                      New Zealand 1892    15703904
## 32724                        Nicaragua 1892           0
## 32725                            Niger 1892           0
## 32726                          Nigeria 1892           0
## 32727                             Niue 1892           0
## 32728                      North Korea 1892           0
## 32729                           Norway 1892    40219728
## 32730                             Oman 1892           0
## 32731                         Pakistan 1892           0
## 32732                            Palau 1892           0
## 32733                        Palestine 1892           0
## 32734                           Panama 1892           0
## 32735                 Papua New Guinea 1892           0
## 32736                         Paraguay 1892           0
## 32737                             Peru 1892      161216
## 32738                      Philippines 1892           0
## 32739                           Poland 1892   902040160
## 32740                         Portugal 1892    23028240
## 32741                            Qatar 1892           0
## 32742                          Reunion 1892           0
## 32743                          Romania 1892     7518528
## 32744                           Russia 1892           0
## 32745                           Rwanda 1892           0
## 32746                     Saint Helena 1892           0
## 32747            Saint Kitts and Nevis 1892           0
## 32748                      Saint Lucia 1892           0
## 32749        Saint Pierre and Miquelon 1892           0
## 32750 Saint Vincent and the Grenadines 1892           0
## 32751                            Samoa 1892           0
## 32752            Sao Tome and Principe 1892           0
## 32753                     Saudi Arabia 1892           0
## 32754                          Senegal 1892           0
## 32755                           Serbia 1892           0
## 32756                       Seychelles 1892           0
## 32757                     Sierra Leone 1892           0
## 32758                        Singapore 1892           0
## 32759        Sint Maarten (Dutch part) 1892           0
## 32760                         Slovakia 1892           0
## 32761                         Slovenia 1892           0
## 32762                  Solomon Islands 1892           0
## 32763                          Somalia 1892           0
## 32764                     South Africa 1892     1439952
## 32765                      South Korea 1892           0
## 32766                      South Sudan 1892           0
## 32767                            Spain 1892   148490928
## 32768                        Sri Lanka 1892           0
## 32769                            Sudan 1892           0
## 32770                         Suriname 1892           0
## 32771                        Swaziland 1892           0
## 32772                           Sweden 1892    86441088
## 32773                      Switzerland 1892    48789824
## 32774                            Syria 1892           0
## 32775                           Taiwan 1892           0
## 32776                       Tajikistan 1892           0
## 32777                         Tanzania 1892           0
## 32778                         Thailand 1892           0
## 32779                            Timor 1892           0
## 32780                             Togo 1892           0
## 32781                            Tonga 1892           0
## 32782              Trinidad and Tobago 1892           0
## 32783                          Tunisia 1892           0
## 32784                           Turkey 1892     6888320
## 32785                     Turkmenistan 1892           0
## 32786         Turks and Caicos Islands 1892           0
## 32787                           Tuvalu 1892           0
## 32788                           Uganda 1892           0
## 32789                          Ukraine 1892           0
## 32790             United Arab Emirates 1892           0
## 32791                   United Kingdom 1892 13707177888
## 32792                    United States 1892  6490589136
## 32793                          Uruguay 1892           0
## 32794                       Uzbekistan 1892           0
## 32795                          Vanuatu 1892           0
## 32796                        Venezuela 1892           0
## 32797                          Vietnam 1892      212512
## 32798        Wallis and Futuna Islands 1892           0
## 32799                            World 1892 31937941168
## 32800                            Yemen 1892           0
## 32801                           Zambia 1892           0
## 32802                         Zimbabwe 1892           0
## 32803                      Afghanistan 1893           0
## 32804                           Africa 1893     3238976
## 32805                          Albania 1893           0
## 32806                          Algeria 1893           0
## 32807                 Americas (other) 1893   179488368
## 32808                          Andorra 1893           0
## 32809                           Angola 1893           0
## 32810                         Anguilla 1893           0
## 32811              Antarctic Fisheries 1893           0
## 32812              Antigua and Barbuda 1893           0
## 32813                        Argentina 1893     8976800
## 32814                          Armenia 1893           0
## 32815                            Aruba 1893           0
## 32816         Asia and Pacific (other) 1893   277474720
## 32817                        Australia 1893    56634448
## 32818                          Austria 1893   399522560
## 32819                       Azerbaijan 1893           0
## 32820                          Bahamas 1893           0
## 32821                          Bahrain 1893           0
## 32822                       Bangladesh 1893           0
## 32823                         Barbados 1893           0
## 32824                          Belarus 1893           0
## 32825                          Belgium 1893  1200055264
## 32826                           Belize 1893           0
## 32827                            Benin 1893           0
## 32828                          Bermuda 1893           0
## 32829                           Bhutan 1893           0
## 32830                          Bolivia 1893           0
## 32831  Bonaire Sint Eustatius and Saba 1893           0
## 32832           Bosnia and Herzegovina 1893           0
## 32833                         Botswana 1893           0
## 32834                           Brazil 1893           0
## 32835           British Virgin Islands 1893           0
## 32836                           Brunei 1893           0
## 32837                         Bulgaria 1893      278464
## 32838                     Burkina Faso 1893           0
## 32839                          Burundi 1893           0
## 32840                         Cambodia 1893           0
## 32841                         Cameroon 1893           0
## 32842                           Canada 1893   168686896
## 32843                       Cape Verde 1893           0
## 32844                   Cayman Islands 1893           0
## 32845         Central African Republic 1893           0
## 32846                             Chad 1893           0
## 32847                            Chile 1893           0
## 32848                            China 1893           0
## 32849                 Christmas Island 1893           0
## 32850                         Colombia 1893           0
## 32851                          Comoros 1893           0
## 32852                            Congo 1893           0
## 32853                     Cook Islands 1893           0
## 32854                       Costa Rica 1893           0
## 32855                    Cote d'Ivoire 1893           0
## 32856                          Croatia 1893           0
## 32857                             Cuba 1893           0
## 32858                          Curacao 1893           0
## 32859                           Cyprus 1893           0
## 32860                   Czech Republic 1893           0
## 32861                   Czechoslovakia 1893   549427792
## 32862     Democratic Republic of Congo 1893           0
## 32863                          Denmark 1893    64112672
## 32864                         Djibouti 1893           0
## 32865                         Dominica 1893           0
## 32866               Dominican Republic 1893           0
## 32867                            EU-28 1893 24896847024
## 32868                          Ecuador 1893           0
## 32869                            Egypt 1893           0
## 32870                      El Salvador 1893           0
## 32871                Equatorial Guinea 1893           0
## 32872                          Eritrea 1893           0
## 32873                          Estonia 1893           0
## 32874                         Ethiopia 1893           0
## 32875                   Europe (other) 1893  1049615088
## 32876                   Faeroe Islands 1893           0
## 32877                 Falkland Islands 1893           0
## 32878                             Fiji 1893           0
## 32879                          Finland 1893     3821552
## 32880                           France 1893  2923622848
## 32881                    French Guiana 1893           0
## 32882                 French Polynesia 1893           0
## 32883                            Gabon 1893           0
## 32884                           Gambia 1893           0
## 32885                          Georgia 1893           0
## 32886                          Germany 1893  4477836688
## 32887                            Ghana 1893           0
## 32888                        Gibraltar 1893           0
## 32889                           Greece 1893     2337632
## 32890                        Greenland 1893           0
## 32891                          Grenada 1893           0
## 32892                       Guadeloupe 1893           0
## 32893                        Guatemala 1893           0
## 32894                           Guinea 1893           0
## 32895                    Guinea-Bissau 1893           0
## 32896                           Guyana 1893           0
## 32897                            Haiti 1893           0
## 32898                         Honduras 1893           0
## 32899                        Hong Kong 1893           0
## 32900                          Hungary 1893   109549936
## 32901                          Iceland 1893           0
## 32902                            India 1893    60558592
## 32903                        Indonesia 1893      622880
## 32904                             Iran 1893           0
## 32905                             Iraq 1893           0
## 32906                          Ireland 1893     1099200
## 32907                           Israel 1893           0
## 32908                            Italy 1893   170167152
## 32909                          Jamaica 1893           0
## 32910                            Japan 1893    76365088
## 32911                           Jordan 1893           0
## 32912                       Kazakhstan 1893           0
## 32913                            Kenya 1893           0
## 32914                         Kiribati 1893           0
## 32915                           Kuwait 1893           0
## 32916                       Kyrgysztan 1893           0
## 32917                       Kyrgyzstan 1893           0
## 32918                             Laos 1893           0
## 32919                           Latvia 1893           0
## 32920                          Lebanon 1893           0
## 32921                          Lesotho 1893           0
## 32922                          Liberia 1893           0
## 32923                            Libya 1893           0
## 32924                    Liechtenstein 1893           0
## 32925                        Lithuania 1893           0
## 32926                       Luxembourg 1893           0
## 32927                            Macao 1893           0
## 32928                        Macedonia 1893           0
## 32929                       Madagascar 1893           0
## 32930                           Malawi 1893           0
## 32931                         Malaysia 1893       84272
## 32932                         Maldives 1893           0
## 32933                             Mali 1893           0
## 32934                            Malta 1893           0
## 32935                 Marshall Islands 1893           0
## 32936                       Martinique 1893           0
## 32937                       Mauritania 1893           0
## 32938                        Mauritius 1893           0
## 32939                           Mexico 1893     1630480
## 32940             Micronesia (country) 1893           0
## 32941                      Middle East 1893     7313344
## 32942                          Moldova 1893           0
## 32943                         Mongolia 1893           0
## 32944                       Montenegro 1893           0
## 32945                       Montserrat 1893           0
## 32946                          Morocco 1893           0
## 32947                       Mozambique 1893           0
## 32948                          Myanmar 1893           0
## 32949                          Namibia 1893           0
## 32950                            Nauru 1893           0
## 32951                            Nepal 1893           0
## 32952                      Netherlands 1893   292152704
## 32953                    New Caledonia 1893           0
## 32954                      New Zealand 1893    17246448
## 32955                        Nicaragua 1893           0
## 32956                            Niger 1893           0
## 32957                          Nigeria 1893           0
## 32958                             Niue 1893           0
## 32959                      North Korea 1893           0
## 32960                           Norway 1893    42681936
## 32961                             Oman 1893           0
## 32962                         Pakistan 1893           0
## 32963                            Palau 1893           0
## 32964                        Palestine 1893           0
## 32965                           Panama 1893           0
## 32966                 Papua New Guinea 1893           0
## 32967                         Paraguay 1893           0
## 32968                             Peru 1893      208848
## 32969                      Philippines 1893           0
## 32970                           Poland 1893   947374832
## 32971                         Portugal 1893    24541472
## 32972                            Qatar 1893           0
## 32973                          Reunion 1893           0
## 32974                          Romania 1893     8654368
## 32975                           Russia 1893           0
## 32976                           Rwanda 1893           0
## 32977                     Saint Helena 1893           0
## 32978            Saint Kitts and Nevis 1893           0
## 32979                      Saint Lucia 1893           0
## 32980        Saint Pierre and Miquelon 1893           0
## 32981 Saint Vincent and the Grenadines 1893           0
## 32982                            Samoa 1893           0
## 32983            Sao Tome and Principe 1893           0
## 32984                     Saudi Arabia 1893           0
## 32985                          Senegal 1893           0
## 32986                           Serbia 1893           0
## 32987                       Seychelles 1893           0
## 32988                     Sierra Leone 1893           0
## 32989                        Singapore 1893           0
## 32990        Sint Maarten (Dutch part) 1893           0
## 32991                         Slovakia 1893           0
## 32992                         Slovenia 1893           0
## 32993                  Solomon Islands 1893           0
## 32994                          Somalia 1893           0
## 32995                     South Africa 1893     3238976
## 32996                      South Korea 1893           0
## 32997                      South Sudan 1893           0
## 32998                            Spain 1893   156610352
## 32999                        Sri Lanka 1893           0
## 33000                            Sudan 1893           0
## 33001                         Suriname 1893           0
## 33002                        Swaziland 1893           0
## 33003                           Sweden 1893    91720912
## 33004                      Switzerland 1893    51666064
## 33005                            Syria 1893           0
## 33006                           Taiwan 1893           0
## 33007                       Tajikistan 1893           0
## 33008                         Tanzania 1893           0
## 33009                         Thailand 1893           0
## 33010                            Timor 1893           0
## 33011                             Togo 1893           0
## 33012                            Tonga 1893           0
## 33013              Trinidad and Tobago 1893           0
## 33014                          Tunisia 1893           0
## 33015                           Turkey 1893     7313344
## 33016                     Turkmenistan 1893           0
## 33017         Turks and Caicos Islands 1893           0
## 33018                           Tuvalu 1893           0
## 33019                           Uganda 1893           0
## 33020                          Ukraine 1893           0
## 33021             United Arab Emirates 1893           0
## 33022                   United Kingdom 1893 14023388416
## 33023                    United States 1893  6944683312
## 33024                          Uruguay 1893           0
## 33025                       Uzbekistan 1893           0
## 33026                          Vanuatu 1893           0
## 33027                        Venezuela 1893           0
## 33028                          Vietnam 1893      875696
## 33029        Wallis and Futuna Islands 1893           0
## 33030                            World 1893 33292078624
## 33031                            Yemen 1893           0
## 33032                           Zambia 1893           0
## 33033                         Zimbabwe 1893           0
## 33034                      Afghanistan 1894           0
## 33035                           Africa 1894     5671872
## 33036                          Albania 1894           0
## 33037                          Algeria 1894           0
## 33038                 Americas (other) 1894   196240176
## 33039                          Andorra 1894           0
## 33040                           Angola 1894           0
## 33041                         Anguilla 1894           0
## 33042              Antarctic Fisheries 1894           0
## 33043              Antigua and Barbuda 1894           0
## 33044                        Argentina 1894    10970016
## 33045                          Armenia 1894           0
## 33046                            Aruba 1894           0
## 33047         Asia and Pacific (other) 1894   295300080
## 33048                        Australia 1894    60994608
## 33049                          Austria 1894   417652032
## 33050                       Azerbaijan 1894           0
## 33051                          Bahamas 1894           0
## 33052                          Bahrain 1894           0
## 33053                       Bangladesh 1894           0
## 33054                         Barbados 1894           0
## 33055                          Belarus 1894           0
## 33056                          Belgium 1894  1239886608
## 33057                           Belize 1894           0
## 33058                            Benin 1894           0
## 33059                          Bermuda 1894           0
## 33060                           Bhutan 1894           0
## 33061                          Bolivia 1894           0
## 33062  Bonaire Sint Eustatius and Saba 1894           0
## 33063           Bosnia and Herzegovina 1894           0
## 33064                         Botswana 1894           0
## 33065                           Brazil 1894           0
## 33066           British Virgin Islands 1894           0
## 33067                           Brunei 1894           0
## 33068                         Bulgaria 1894      359072
## 33069                     Burkina Faso 1894           0
## 33070                          Burundi 1894           0
## 33071                         Cambodia 1894           0
## 33072                         Cameroon 1894           0
## 33073                           Canada 1894   182866576
## 33074                       Cape Verde 1894           0
## 33075                   Cayman Islands 1894           0
## 33076         Central African Republic 1894           0
## 33077                             Chad 1894           0
## 33078                            Chile 1894           0
## 33079                            China 1894           0
## 33080                 Christmas Island 1894           0
## 33081                         Colombia 1894           0
## 33082                          Comoros 1894           0
## 33083                            Congo 1894           0
## 33084                     Cook Islands 1894           0
## 33085                       Costa Rica 1894           0
## 33086                    Cote d'Ivoire 1894           0
## 33087                          Croatia 1894           0
## 33088                             Cuba 1894           0
## 33089                          Curacao 1894           0
## 33090                           Cyprus 1894           0
## 33091                   Czech Republic 1894           0
## 33092                   Czechoslovakia 1894   587456448
## 33093     Democratic Republic of Congo 1894           0
## 33094                          Denmark 1894    67512864
## 33095                         Djibouti 1894           0
## 33096                         Dominica 1894           0
## 33097               Dominican Republic 1894           0
## 33098                            EU-28 1894 25746993952
## 33099                          Ecuador 1894           0
## 33100                            Egypt 1894           0
## 33101                      El Salvador 1894           0
## 33102                Equatorial Guinea 1894           0
## 33103                          Eritrea 1894           0
## 33104                          Estonia 1894           0
## 33105                         Ethiopia 1894           0
## 33106                   Europe (other) 1894  1132245616
## 33107                   Faeroe Islands 1894           0
## 33108                 Falkland Islands 1894           0
## 33109                             Fiji 1894           0
## 33110                          Finland 1894     4041392
## 33111                           France 1894  3025522352
## 33112                    French Guiana 1894           0
## 33113                 French Polynesia 1894           0
## 33114                            Gabon 1894           0
## 33115                           Gambia 1894           0
## 33116                          Georgia 1894           0
## 33117                          Germany 1894  4707334992
## 33118                            Ghana 1894           0
## 33119                        Gibraltar 1894           0
## 33120                           Greece 1894     2671056
## 33121                        Greenland 1894           0
## 33122                          Grenada 1894           0
## 33123                       Guadeloupe 1894           0
## 33124                        Guatemala 1894           0
## 33125                           Guinea 1894           0
## 33126                    Guinea-Bissau 1894           0
## 33127                           Guyana 1894           0
## 33128                            Haiti 1894           0
## 33129                         Honduras 1894           0
## 33130                        Hong Kong 1894           0
## 33131                          Hungary 1894   115983920
## 33132                          Iceland 1894           0
## 33133                            India 1894    66692128
## 33134                        Indonesia 1894     1102864
## 33135                             Iran 1894           0
## 33136                             Iraq 1894           0
## 33137                          Ireland 1894     1099200
## 33138                           Israel 1894           0
## 33139                            Italy 1894   183229312
## 33140                          Jamaica 1894           0
## 33141                            Japan 1894    87390064
## 33142                           Jordan 1894           0
## 33143                       Kazakhstan 1894           0
## 33144                            Kenya 1894           0
## 33145                         Kiribati 1894           0
## 33146                           Kuwait 1894           0
## 33147                       Kyrgysztan 1894           0
## 33148                       Kyrgyzstan 1894           0
## 33149                             Laos 1894           0
## 33150                           Latvia 1894           0
## 33151                          Lebanon 1894           0
## 33152                          Lesotho 1894           0
## 33153                          Liberia 1894           0
## 33154                            Libya 1894           0
## 33155                    Liechtenstein 1894           0
## 33156                        Lithuania 1894           0
## 33157                       Luxembourg 1894           0
## 33158                            Macao 1894           0
## 33159                        Macedonia 1894           0
## 33160                       Madagascar 1894           0
## 33161                           Malawi 1894           0
## 33162                         Malaysia 1894      131904
## 33163                         Maldives 1894           0
## 33164                             Mali 1894           0
## 33165                            Malta 1894           0
## 33166                 Marshall Islands 1894           0
## 33167                       Martinique 1894           0
## 33168                       Mauritania 1894           0
## 33169                        Mauritius 1894           0
## 33170                           Mexico 1894     2169088
## 33171             Micronesia (country) 1894           0
## 33172                      Middle East 1894     7705392
## 33173                          Moldova 1894           0
## 33174                         Mongolia 1894           0
## 33175                       Montenegro 1894           0
## 33176                       Montserrat 1894           0
## 33177                          Morocco 1894           0
## 33178                       Mozambique 1894           0
## 33179                          Myanmar 1894           0
## 33180                          Namibia 1894           0
## 33181                            Nauru 1894           0
## 33182                            Nepal 1894           0
## 33183                      Netherlands 1894   303771248
## 33184                    New Caledonia 1894           0
## 33185                      New Zealand 1894    18854944
## 33186                        Nicaragua 1894           0
## 33187                            Niger 1894           0
## 33188                          Nigeria 1894           0
## 33189                             Niue 1894           0
## 33190                      North Korea 1894           0
## 33191                           Norway 1894    45587488
## 33192                             Oman 1894           0
## 33193                         Pakistan 1894           0
## 33194                            Palau 1894           0
## 33195                        Palestine 1894           0
## 33196                           Panama 1894           0
## 33197                 Papua New Guinea 1894           0
## 33198                         Paraguay 1894           0
## 33199                             Peru 1894      249152
## 33200                      Philippines 1894           0
## 33201                           Poland 1894   993467952
## 33202                         Portugal 1894    26318512
## 33203                            Qatar 1894           0
## 33204                          Reunion 1894           0
## 33205                          Romania 1894     9694944
## 33206                           Russia 1894           0
## 33207                           Rwanda 1894           0
## 33208                     Saint Helena 1894           0
## 33209            Saint Kitts and Nevis 1894           0
## 33210                      Saint Lucia 1894           0
## 33211        Saint Pierre and Miquelon 1894           0
## 33212 Saint Vincent and the Grenadines 1894           0
## 33213                            Samoa 1894           0
## 33214            Sao Tome and Principe 1894           0
## 33215                     Saudi Arabia 1894           0
## 33216                          Senegal 1894           0
## 33217                           Serbia 1894           0
## 33218                       Seychelles 1894           0
## 33219                     Sierra Leone 1894           0
## 33220                        Singapore 1894           0
## 33221        Sint Maarten (Dutch part) 1894           0
## 33222                         Slovakia 1894           0
## 33223                         Slovenia 1894           0
## 33224                  Solomon Islands 1894           0
## 33225                          Somalia 1894           0
## 33226                     South Africa 1894     5671872
## 33227                      South Korea 1894           0
## 33228                      South Sudan 1894           0
## 33229                            Spain 1894   165345328
## 33230                        Sri Lanka 1894           0
## 33231                            Sudan 1894           0
## 33232                         Suriname 1894           0
## 33233                        Swaziland 1894           0
## 33234                           Sweden 1894    97612624
## 33235                      Switzerland 1894    55249456
## 33236                            Syria 1894           0
## 33237                           Taiwan 1894           0
## 33238                       Tajikistan 1894           0
## 33239                         Tanzania 1894           0
## 33240                         Thailand 1894           0
## 33241                            Timor 1894           0
## 33242                             Togo 1894           0
## 33243                            Tonga 1894           0
## 33244              Trinidad and Tobago 1894           0
## 33245                          Tunisia 1894           0
## 33246                           Turkey 1894     7705392
## 33247                     Turkmenistan 1894           0
## 33248         Turks and Caicos Islands 1894           0
## 33249                           Tuvalu 1894           0
## 33250                           Uganda 1894           0
## 33251                          Ukraine 1894           0
## 33252             United Arab Emirates 1894           0
## 33253                   United Kingdom 1894 14385490544
## 33254                    United States 1894  7369732960
## 33255                          Uruguay 1894           0
## 33256                       Uzbekistan 1894           0
## 33257                          Vanuatu 1894           0
## 33258                        Venezuela 1894           0
## 33259                          Vietnam 1894     1179808
## 33260        Wallis and Futuna Islands 1894           0
## 33261                            World 1894 34693452368
## 33262                            Yemen 1894           0
## 33263                           Zambia 1894           0
## 33264                         Zimbabwe 1894           0
## 33265                      Afghanistan 1895           0
## 33266                           Africa 1895     9009776
## 33267                          Albania 1895           0
## 33268                          Algeria 1895           0
## 33269                 Americas (other) 1895   213098240
## 33270                          Andorra 1895           0
## 33271                           Angola 1895           0
## 33272                         Anguilla 1895           0
## 33273              Antarctic Fisheries 1895           0
## 33274              Antigua and Barbuda 1895           0
## 33275                        Argentina 1895    13234368
## 33276                          Armenia 1895           0
## 33277                            Aruba 1895           0
## 33278         Asia and Pacific (other) 1895   314792560
## 33279                        Australia 1895    65585600
## 33280                          Austria 1895   438023872
## 33281                       Azerbaijan 1895           0
## 33282                          Bahamas 1895           0
## 33283                          Bahrain 1895           0
## 33284                       Bangladesh 1895           0
## 33285                         Barbados 1895           0
## 33286                          Belarus 1895           0
## 33287                          Belgium 1895  1280018400
## 33288                           Belize 1895           0
## 33289                            Benin 1895           0
## 33290                          Bermuda 1895           0
## 33291                           Bhutan 1895           0
## 33292                          Bolivia 1895           0
## 33293  Bonaire Sint Eustatius and Saba 1895           0
## 33294           Bosnia and Herzegovina 1895           0
## 33295                         Botswana 1895           0
## 33296                           Brazil 1895           0
## 33297           British Virgin Islands 1895           0
## 33298                           Brunei 1895           0
## 33299                         Bulgaria 1895      443344
## 33300                     Burkina Faso 1895           0
## 33301                          Burundi 1895           0
## 33302                         Cambodia 1895           0
## 33303                         Cameroon 1895           0
## 33304                           Canada 1895   196397728
## 33305                       Cape Verde 1895           0
## 33306                   Cayman Islands 1895           0
## 33307         Central African Republic 1895           0
## 33308                             Chad 1895           0
## 33309                            Chile 1895      523952
## 33310                            China 1895           0
## 33311                 Christmas Island 1895           0
## 33312                         Colombia 1895           0
## 33313                          Comoros 1895           0
## 33314                            Congo 1895           0
## 33315                     Cook Islands 1895           0
## 33316                       Costa Rica 1895           0
## 33317                    Cote d'Ivoire 1895           0
## 33318                          Croatia 1895           0
## 33319                             Cuba 1895           0
## 33320                          Curacao 1895           0
## 33321                           Cyprus 1895           0
## 33322                   Czech Republic 1895           0
## 33323                   Czechoslovakia 1895   626925056
## 33324     Democratic Republic of Congo 1895           0
## 33325                          Denmark 1895    71037632
## 33326                         Djibouti 1895           0
## 33327                         Dominica 1895           0
## 33328               Dominican Republic 1895           0
## 33329                            EU-28 1895 26615094480
## 33330                          Ecuador 1895           0
## 33331                            Egypt 1895           0
## 33332                      El Salvador 1895           0
## 33333                Equatorial Guinea 1895           0
##  [ reached 'max' / getOption("max.print") -- omitted 28344 rows ]
View(emission_transpose)
View(emission_multi)

데이터 시각화 = bar 차트

ggplot은 도화지에다가 그림을 그리는 작업

aes : color, fill

# 변수 1개
ggplot(data = iris, aes(x = Sepal.Width, fill = Species)) + 
  geom_bar()

iris
##     Sepal.Length Sepal.Width Petal.Length Petal.Width    Species
## 1            5.1         3.5          1.4         0.2     setosa
## 2            4.9         3.0          1.4         0.2     setosa
## 3            4.7         3.2          1.3         0.2     setosa
## 4            4.6         3.1          1.5         0.2     setosa
## 5            5.0         3.6          1.4         0.2     setosa
## 6            5.4         3.9          1.7         0.4     setosa
## 7            4.6         3.4          1.4         0.3     setosa
## 8            5.0         3.4          1.5         0.2     setosa
## 9            4.4         2.9          1.4         0.2     setosa
## 10           4.9         3.1          1.5         0.1     setosa
## 11           5.4         3.7          1.5         0.2     setosa
## 12           4.8         3.4          1.6         0.2     setosa
## 13           4.8         3.0          1.4         0.1     setosa
## 14           4.3         3.0          1.1         0.1     setosa
## 15           5.8         4.0          1.2         0.2     setosa
## 16           5.7         4.4          1.5         0.4     setosa
## 17           5.4         3.9          1.3         0.4     setosa
## 18           5.1         3.5          1.4         0.3     setosa
## 19           5.7         3.8          1.7         0.3     setosa
## 20           5.1         3.8          1.5         0.3     setosa
## 21           5.4         3.4          1.7         0.2     setosa
## 22           5.1         3.7          1.5         0.4     setosa
## 23           4.6         3.6          1.0         0.2     setosa
## 24           5.1         3.3          1.7         0.5     setosa
## 25           4.8         3.4          1.9         0.2     setosa
## 26           5.0         3.0          1.6         0.2     setosa
## 27           5.0         3.4          1.6         0.4     setosa
## 28           5.2         3.5          1.5         0.2     setosa
## 29           5.2         3.4          1.4         0.2     setosa
## 30           4.7         3.2          1.6         0.2     setosa
## 31           4.8         3.1          1.6         0.2     setosa
## 32           5.4         3.4          1.5         0.4     setosa
## 33           5.2         4.1          1.5         0.1     setosa
## 34           5.5         4.2          1.4         0.2     setosa
## 35           4.9         3.1          1.5         0.2     setosa
## 36           5.0         3.2          1.2         0.2     setosa
## 37           5.5         3.5          1.3         0.2     setosa
## 38           4.9         3.6          1.4         0.1     setosa
## 39           4.4         3.0          1.3         0.2     setosa
## 40           5.1         3.4          1.5         0.2     setosa
## 41           5.0         3.5          1.3         0.3     setosa
## 42           4.5         2.3          1.3         0.3     setosa
## 43           4.4         3.2          1.3         0.2     setosa
## 44           5.0         3.5          1.6         0.6     setosa
## 45           5.1         3.8          1.9         0.4     setosa
## 46           4.8         3.0          1.4         0.3     setosa
## 47           5.1         3.8          1.6         0.2     setosa
## 48           4.6         3.2          1.4         0.2     setosa
## 49           5.3         3.7          1.5         0.2     setosa
## 50           5.0         3.3          1.4         0.2     setosa
## 51           7.0         3.2          4.7         1.4 versicolor
## 52           6.4         3.2          4.5         1.5 versicolor
## 53           6.9         3.1          4.9         1.5 versicolor
## 54           5.5         2.3          4.0         1.3 versicolor
## 55           6.5         2.8          4.6         1.5 versicolor
## 56           5.7         2.8          4.5         1.3 versicolor
## 57           6.3         3.3          4.7         1.6 versicolor
## 58           4.9         2.4          3.3         1.0 versicolor
## 59           6.6         2.9          4.6         1.3 versicolor
## 60           5.2         2.7          3.9         1.4 versicolor
## 61           5.0         2.0          3.5         1.0 versicolor
## 62           5.9         3.0          4.2         1.5 versicolor
## 63           6.0         2.2          4.0         1.0 versicolor
## 64           6.1         2.9          4.7         1.4 versicolor
## 65           5.6         2.9          3.6         1.3 versicolor
## 66           6.7         3.1          4.4         1.4 versicolor
## 67           5.6         3.0          4.5         1.5 versicolor
## 68           5.8         2.7          4.1         1.0 versicolor
## 69           6.2         2.2          4.5         1.5 versicolor
## 70           5.6         2.5          3.9         1.1 versicolor
## 71           5.9         3.2          4.8         1.8 versicolor
## 72           6.1         2.8          4.0         1.3 versicolor
## 73           6.3         2.5          4.9         1.5 versicolor
## 74           6.1         2.8          4.7         1.2 versicolor
## 75           6.4         2.9          4.3         1.3 versicolor
## 76           6.6         3.0          4.4         1.4 versicolor
## 77           6.8         2.8          4.8         1.4 versicolor
## 78           6.7         3.0          5.0         1.7 versicolor
## 79           6.0         2.9          4.5         1.5 versicolor
## 80           5.7         2.6          3.5         1.0 versicolor
## 81           5.5         2.4          3.8         1.1 versicolor
## 82           5.5         2.4          3.7         1.0 versicolor
## 83           5.8         2.7          3.9         1.2 versicolor
## 84           6.0         2.7          5.1         1.6 versicolor
## 85           5.4         3.0          4.5         1.5 versicolor
## 86           6.0         3.4          4.5         1.6 versicolor
## 87           6.7         3.1          4.7         1.5 versicolor
## 88           6.3         2.3          4.4         1.3 versicolor
## 89           5.6         3.0          4.1         1.3 versicolor
## 90           5.5         2.5          4.0         1.3 versicolor
## 91           5.5         2.6          4.4         1.2 versicolor
## 92           6.1         3.0          4.6         1.4 versicolor
## 93           5.8         2.6          4.0         1.2 versicolor
## 94           5.0         2.3          3.3         1.0 versicolor
## 95           5.6         2.7          4.2         1.3 versicolor
## 96           5.7         3.0          4.2         1.2 versicolor
## 97           5.7         2.9          4.2         1.3 versicolor
## 98           6.2         2.9          4.3         1.3 versicolor
## 99           5.1         2.5          3.0         1.1 versicolor
## 100          5.7         2.8          4.1         1.3 versicolor
## 101          6.3         3.3          6.0         2.5  virginica
## 102          5.8         2.7          5.1         1.9  virginica
## 103          7.1         3.0          5.9         2.1  virginica
## 104          6.3         2.9          5.6         1.8  virginica
## 105          6.5         3.0          5.8         2.2  virginica
## 106          7.6         3.0          6.6         2.1  virginica
## 107          4.9         2.5          4.5         1.7  virginica
## 108          7.3         2.9          6.3         1.8  virginica
## 109          6.7         2.5          5.8         1.8  virginica
## 110          7.2         3.6          6.1         2.5  virginica
## 111          6.5         3.2          5.1         2.0  virginica
## 112          6.4         2.7          5.3         1.9  virginica
## 113          6.8         3.0          5.5         2.1  virginica
## 114          5.7         2.5          5.0         2.0  virginica
## 115          5.8         2.8          5.1         2.4  virginica
## 116          6.4         3.2          5.3         2.3  virginica
## 117          6.5         3.0          5.5         1.8  virginica
## 118          7.7         3.8          6.7         2.2  virginica
## 119          7.7         2.6          6.9         2.3  virginica
## 120          6.0         2.2          5.0         1.5  virginica
## 121          6.9         3.2          5.7         2.3  virginica
## 122          5.6         2.8          4.9         2.0  virginica
## 123          7.7         2.8          6.7         2.0  virginica
## 124          6.3         2.7          4.9         1.8  virginica
## 125          6.7         3.3          5.7         2.1  virginica
## 126          7.2         3.2          6.0         1.8  virginica
## 127          6.2         2.8          4.8         1.8  virginica
## 128          6.1         3.0          4.9         1.8  virginica
## 129          6.4         2.8          5.6         2.1  virginica
## 130          7.2         3.0          5.8         1.6  virginica
## 131          7.4         2.8          6.1         1.9  virginica
## 132          7.9         3.8          6.4         2.0  virginica
## 133          6.4         2.8          5.6         2.2  virginica
## 134          6.3         2.8          5.1         1.5  virginica
## 135          6.1         2.6          5.6         1.4  virginica
## 136          7.7         3.0          6.1         2.3  virginica
## 137          6.3         3.4          5.6         2.4  virginica
## 138          6.4         3.1          5.5         1.8  virginica
## 139          6.0         3.0          4.8         1.8  virginica
## 140          6.9         3.1          5.4         2.1  virginica
## 141          6.7         3.1          5.6         2.4  virginica
## 142          6.9         3.1          5.1         2.3  virginica
## 143          5.8         2.7          5.1         1.9  virginica
## 144          6.8         3.2          5.9         2.3  virginica
## 145          6.7         3.3          5.7         2.5  virginica
## 146          6.7         3.0          5.2         2.3  virginica
## 147          6.3         2.5          5.0         1.9  virginica
## 148          6.5         3.0          5.2         2.0  virginica
## 149          6.2         3.4          5.4         2.3  virginica
## 150          5.9         3.0          5.1         1.8  virginica
# 종에 따른 변수
# identity 사용, 누적값을 더함
ggplot(data = iris, aes(x = Species, y= Sepal.Width))+
  geom_bar(stat = "identity")

# 밀도 표현 
ggplot(airquality, aes(x = Solar.R, y = Ozone)) +
  geom_density2d() + 
  geom_point(shape = 3, color = "black", size = 2, alpha = 0.1)
## Warning: Removed 42 rows containing non-finite values (stat_density2d).
## Warning: Removed 42 rows containing missing values (geom_point).

Box plot

ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
  geom_boxplot(outlier.shape = 8, outlier.size = 5)

산점도

ggplot(airquality, aes(x = Day, y = Temp)) +
  geom_point(aes(color = Ozone))

축 범위 설정(x,y축 범위 설정)

ggplot(airquality, aes(x = Day, y = Temp)) +
  geom_point(aes(color = Temp)) +
  lims(x = c(10, 20), y = c(70, 80)) +
  labs(title = "제목으로 할 것 적어주세요", x = "Day", y = "Temp") +
  theme(plot.title = element_text(hjust = 0.5, vjust = 0.5)) #제목 위치 바꾸기
## Warning: Removed 130 rows containing missing values (geom_point).