Skip to content

Instantly share code, notes, and snippets.

@svendvn
Last active September 30, 2017 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svendvn/064e9d3ea9a390b069e3a0c6cf0e2a84 to your computer and use it in GitHub Desktop.
Save svendvn/064e9d3ea9a390b069e3a0c6cf0e2a84 to your computer and use it in GitHub Desktop.
Explaining the density of Esperanto speakers with language and politics
---
title: "Esperanto correlations"
output: html_notebook
---
From the blog post Frequencies of Esperanto Speakers in all countries I have the main variable.
```{r}
prefix='../../Esperanto/L/language failes/'
lf=list.files(prefix)
esperanto_file='../../Linguistic differences/asjp-contribution-ESPERANTO.csv'
lf=c(lf,esperanto_file)
res=matrix(0,nrow=100, ncol=length(lf))
cnames=rep("", length(lf))#names of the languages
for(i in 1:length(lf)){
l=lf[i]
#still haven't learnt regular expresions:
name=strsplit( strsplit(l, "-")[[1]][3], ".", fixed=T)[[1]][1]
cnames[i]=name
#load file and extrat relevant information.
ad=read.csv(paste0(prefix,l))
res[as.numeric(ad$Parameter_ID),i]=as.character(ad$Value)
}
res=data.frame(res)
colnames(res) <- cnames
```
```{r}
library(stringdist)
#this will be th LDN distance matrix in the nd
resulting_matrix=matrix(0, nrow=ncol(res), ncol=ncol(res))
#this is the denominator in the average.
counter_matrix=resulting_matrix
#function that calculates the longest word for each entry in the outer product v1%o%v2
len_f=function(v1,v2){
res=matrix(0, nrow=length(v1),ncol=length(v2))
for(i in 1:length(v1)){
for(j in 1:length(v2)){
res[i,j]=max(nchar(v1[i]), nchar(v2[j]))
}
}
return(res)
}
#calculates the sum and denominator in the average cummulatively for all entries.
for(i in 1:nrow(res)){
#x is the translation of a certain term to all languages
x=as.character(unlist(res[i,]))
#calculates levenshtein differences and rem the missing values
to_add=stringdistmatrix(x,x, method="lv")*(x!="0")%o%(x!="0")
#the len_f(x,x) term is the N in LDN.
counter_matrix=counter_matrix+len_f(x,x)*(to_add>0)
resulting_matrix=resulting_matrix+to_add
cat(i)
}
#the average is calculated.
resulting_matrix[counter_matrix>0]=resulting_matrix[counter_matrix>0]/counter_matrix[counter_matrix>0]
rownames(resulting_matrix) <- cnames
colnames(resulting_matrix) <- cnames
```
```{r}
linguistic_differences=resulting_matrix[nrow(resulting_matrix),]
write.csv(cbind(rownames(resulting_matrix), linguistic_differences), file='esperanto_difs.csv', quote=F, row.names = F)
```
```{r}
language_proportions=read.csv('languages.txt', fill=T, header=F,
col.names=c('number','country','L1',
'P1','L2','P2','L3','P3',
'L4','P4','L5','P5','L6','P6'),
stringsAsFactors = F
)
row_to_number=function(x){
res=0
total_prob=0
for(i in 1:6){
if(!is.na(x[i*2])){
#print(i)
#print(res)
#print(total_prob)
p=as.numeric(x[i*2])
#print(p)
#print(as.character(x[(i-1)*2+1]))
#print(linguistic_differences[as.character(x[(i-1)*2+1])])
total_prob=total_prob+p
res=res+as.numeric(linguistic_differences[as.character(x[(i-1)*2+1])])*p
}
}
res=res/total_prob
return(res)
}
country_to_esperanto=apply(language_proportions[,3:12],1,row_to_number)
names(country_to_esperanto) <- language_proportions[,2]
```
```{r}
esperanto_numbers=read.csv('uploadable.csv', header=F)
country_codes=as.character(esperanto_numbers$V1)
rplace=function(x, old_val, new_val){
index=which(x==old_val)
x[index]=new_val
return(x)
}
esperanto_rates=esperanto_numbers$V2
df=data.frame(esperanto=esperanto_rates^2)
rownames(df) <- country_codes
```
From http://data.worldbank.org I get GDP data and population size and internet usage
```{r}
pop=read.csv('pop.csv', skip = 4)
rownames(pop) <- pop$Country.Code
df$pop=pop[rownames(df), 'X2015']
gdp=read.csv('gdp.csv', skip=4)
rownames(gdp) <- gdp$Country.Code
df$GDP=gdp[rownames(df), 'X2015']
df$GDPcapita=df$GDP/df$pop
www=read.csv('www.csv',skip=4)
rownames(www) <- www$Country.Code
df$www=www[rownames(df), 'X2015']
```
```{r}
ujo=read.table('esperantujodirectory2.txt', header=T)
df$continent=ujo[rownames(df), 'continent']
```
#unused variable
```{r}
prof=read.csv('english_profeciency.txt', sep='\t', header=F)
prof=prof[substr(as.character(prof$V1),1,1)!='-',]
rownames(prof) <- prof$V1
df$prof=prof[rownames(df),'V4']
```
```{r}
div=read.csv('Linguistic Diversity.txt', sep='\t', header=T, comment.char = '#')
div=div[substr(as.character(div$ï..CODE),1,1)!='-',]
rownames(div) <- div$ï..CODE
df$div=as.numeric(as.character(div[rownames(df),'Index']))
```
Add a new chunk by clicking the *Insert Chunk* button on the toolbar or by pressing *Ctrl+Alt+I*.
When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the *Preview* button or press *Ctrl+Shift+K* to preview the HTML file).
```{r}
df$ling_dist=country_to_esperanto[rownames(df)]
```
```{r}
df_tmp=read.csv('goodcountryrankings.txt', header=T)
df_cop=df_tmp[rownames(df), colnames(df_tmp)[-1]]
df=cbind(df,df_cop)
```
```{r}
df$europe=(df$continent=='E')
```
```{r}
#this has profound effects (meaning that it introduces a bias.)
#library('DMwR')
#df2=knnImputation(df[, !names(df) %in% "esperanto"])
#df2$esperanto=df$esperanto
#df=df2
```
```{r}
l=lm(log(esperanto) ~ div+ling_dist+www+GDPcapita+continent+science+culture+peace+order+climate+equality+health, data=df[1:(nrow(df)-1),])
summary(l)
plot(l)
```
```{r}
library('car')
vif(l)
```
```{r}
plot(df$ling_dist, log(df$esperanto))
```
```{r}
h=summary(l)
tvals=h$coefficients[-c(5:7),3]
signed_tvals=tvals[-1]*c(c(1,-1,1,1), rep(-1,7))
midpoints=barplot(signed_tvals, xaxt="n", ylab='T statistic',ylim=c(-2.3,2.3), main='Joint analysis')
labs <- c('Lang. div.','Eo. simil.', 'Internet','GDP per c', 'Science','Culture','Peace','Order','Climate','Equality','Health')
text(cex=1, x=midpoints, y=-1.1*sign(signed_tvals), labs, xpd=TRUE, srt=90)
abline(h=qt(0.975,125), col='red')
abline(h=-qt(0.975,125), col='red')
```
```{r}
tr=c("div","ling_dist","www" ,"GDPcapita" , "science", "culture","peace" , "order" , "climate", "equality" , "health")
sgn=c(1,-1,1,1,rep(-1,7))
res=rep(0,11)
for(n in 1:length(tr)){
lmarg=lm(as.formula(paste("log(esperanto) ~ ", tr[n])), data=df[2:(nrow(df)-1),])
res[n]=summary(lmarg)$coefficients[2,3]*sgn[n]
}
midpoints=barplot(res, xaxt="n", ylab='T statistic',ylim=c(-15,15), main='Marginal analyses')
labs <- c('Lang. div.','Eo. simil.', 'Internet','GDP per c', 'Science','Culture','Peace','Order','Climate','Equality','Health')
text(cex=1, x=midpoints, y=-6.1*sign(res), labs, xpd=TRUE, srt=90)
abline(h=qt(0.975,125), col='red')
abline(h=-qt(0.975,125), col='red')
```
```{r}
l=lm(log(esperanto) ~ div+ling_dist+www+GDPcapita+continent+science+culture+peace+order+climate+equality+health, data=df[1:(nrow(df)-1),], na.action=na.exclude)
nams=names(l$fitted.values)
expected=l$fitted.values
observed=na.omit(log(df[nams, 'esperanto'][1:(nrow(df)-1)]))
residuals=observed-expected
limits=quantile(residuals, p=c(0.08,0.94))
bad=which(residuals<limits[1])
good=which(residuals>limits[2])
plot(expected, observed, pch=21, main='Model prediction',
xlab='log model density ', ylab='log observed density')
points(expected[bad], observed[bad], bg='red', pch=21)
points(expected[good], observed[good], bg='green',pch=21)
abline(0,1, col='red')
```
```{r}
bads=cbind(exp(l$fitted.values[nams[bad]])*df[nams[bad],'pop'], df[nams[bad],'esperanto']*df[nams[bad],'pop'])/1000000
goods=cbind(exp(l$fitted.values[nams[good]])*df[nams[good],'pop'], df[nams[good],'esperanto']*df[nams[good],'pop'])/1000000
library(xtable)
print(xtable(bads, digits=1), type='html')
print(xtable(goods, digits=1), type='html')
```
```{r}
print(l$coefficients)
print(df['GBR',])
cofs=l$coefficients[c(1,2,3,4,5,6,9,10,11,12,13,14,15)]
adr=c(1,df['GBR',c('div','ling_dist','www','GDPcapita','continent','science','culture','peace','order','climate','equality','health')])
dfex=na.exclude(df[,c('div','ling_dist','www','GDPcapita','continent','science','culture','peace','order','climate','equality','health')])
fit_value=function(x){
continent=x[5]
y=x
y[5]=0
contrib=0
if(continent=='E'){
contrib=l$coefficients[6]
}
if(continent=='F'){
contrib=l$coefficients[7]
}
if(continent=='M'){
contrib=l$coefficients[8]
}
f=as.numeric(y)*as.numeric(cofs[-1])
f[5]=contrib
return(f)
}
a=apply(apply(dfex, 1,fit_value),1,mean)
b=exp(fit_value(dfex['GBR',])-a)
base=exp(sum(a)+cofs[1])
test=prod(b)*base*df['GBR','pop']/1000000
print(b)
print(base*df['GBR','pop']/1000000)
```
linguistic_differences
AFAR 0.953367875647668
AFRIKAANS 0.781420765027322
ALBANIAN 0.88780487804878
AMHARIC 0.930693069306931
AMOY_MINNAN_CHINESE 0.924107142857143
AZERBAIJANI_NORTH 0.922279792746114
B41_SHIRA 0.883977900552486
BAMBARA 0.881578947368421
BANGANDU 0.890173410404624
BARI_SUDAN 0.894736842105263
BAULE 0.922535211267606
BELARUSIAN 0.862244897959184
BELIZE_KRIOL_ENGLISH 0.694117647058824
BEMBE 0.880681818181818
BENGALI 0.827225130890052
BHOJPURI 0.878787878787879
BISLAMA 0.820987654320988
BORONG 0.855721393034826
BOSNIAN 0.753846153846154
BULGARIAN 0.803030303030303
BULU 0.911242603550296
CANTONESE 0.906779661016949
CAPE_VERDEAN_CREOLE 0.590163934426229
CATALAN 0.729166666666667
CENTRAL_AYMARA 0.917355371900826
CLASSICAL_NAHUATL 0.887179487179487
CROATIAN 0.771573604060914
CZECH 0.807106598984772
DANISH 0.836065573770492
DATOOGA_DIALECT_2 0.938202247191011
DINKA_SOUTHEASTERN 0.918367346938776
DUTCH 0.777173913043478
DZONGKHA 0.905405405405405
EASTERN_FARSI 0.832460732984293
EASTERN_FRISIAN 0.740740740740741
ECHIE 0.909090909090909
ENGLISH 0.733333333333333
ESTONIAN 0.9
EWE_ADANGBE 0.865671641791045
FANG 0.931506849315068
FIJIAN 0.894736842105263
FINNISH 0.941489361702128
FONGBE 0.9
FRENCH 0.703703703703704
FULA 0.916666666666667
FULFULDE 0.935643564356436
GALICIAN 0.6524064171123
GEORGIAN 0.940677966101695
GIKUYU 0.912790697674419
GREEK 0.792079207920792
GUARANI 0.918103448275862
HAITIAN_CREOLE 0.761904761904762
HAUSA 0.845410628019324
HEBREW 0.864583333333333
HERERO 0.891304347826087
HINDI 0.807692307692308
HMONG_DAW 0.92948717948718
HUNGARIAN 0.91304347826087
ICELANDIC 0.848341232227488
INDONESIAN 0.848484848484849
IRISH_GAELIC 0.898058252427185
ITALIAN 0.572916666666667
J321_MARAMA 0.917197452229299
KABIYE 0.918518518518519
KALANGA 0.863636363636364
KARIMOJONG 0.870192307692308
KAZAKH 0.93048128342246
KHMER 0.926724137931034
KHMU 0.905263157894737
KICHE 0.946808510638298
KINYARWANDA 0.878947368421053
KIRUNDI 0.880281690140845
KITUBA 0.908496732026144
KOONGO 0.90625
KOREAN 0.904761904761905
KURDISH_CENTRAL 0.823204419889503
KWANGALI 0.843137254901961
KWANYAMA 0.875776397515528
KYRGYZ 0.861702127659574
L31a_LUBA_KASAYI 0.884393063583815
LAO 0.898477157360406
LATVIAN 0.884422110552764
LINGALA 0.883977900552486
LITHUANIAN 0.848739495798319
LOMWE 0.879781420765027
LOZI_2 0.863905325443787
LUGANDA 0.8743961352657
LUO 0.904255319148936
LUXEMBOURGISH 0.782608695652174
M64_TONGA_1 0.890243902439024
MACEDONIAN 0.8125
MACHAME 0.895061728395062
MAITHILI 0.885496183206107
MAKASAE 0.915151515151515
MAKONDE 0.919431279620853
MAKWA_ALUA 0.87431693989071
MALAGASY_PLATEAU_SIHANAKA_AMBATONDRAZAKA 0.824742268041237
MALANG 0.898395721925134
MALAY 0.8743961352657
MALDIVIAN 0.876811594202899
MALINKE 0.875
MALTESE 0.882926829268293
MAMBAI 0.902173913043478
MANDARIN 0.915178571428571
MANDINKA 0.886010362694301
MAORI 0.877659574468085
MAPUDUNGUN_3 0.914141414141414
MARATHI 0.869109947643979
MAURITIAN 0.764397905759162
MBEDE 0.936507936507937
MBOSHI 0.867052023121387
MENDE 0.913907284768212
MISKITO 0.913333333333333
MONGOLIAN 0.919354838709677
MOORE 0.888888888888889
NAMA 0.877094972067039
NEPALI 0.86046511627907
NGUNGWEL 0.925
NORTHERN_PASHTO 0.878306878306878
NORWEGIAN_BOKMAAL 0.82122905027933
NUER 0.938461538461538
NYANJA 0.870466321243523
OLD_TURKIC 0.942857142857143
PERSIAN 0.832460732984293
PIJIN 0.790575916230366
POLISH 0.869346733668342
PORTUGUESE 0.722513089005236
PROTO_KAREN 0.92
PROTO_MAYAN 0.934131736526946
PROTO_PHILIPPINE 0.952054794520548
PROTO_QUECHUA 0.897142857142857
PUNJABI_MAJHI 0.82
ROMA 0.889570552147239
ROMANIAN 0.645833333333333
RUSSIAN 0.87719298245614
SANGO 0.859756097560976
SENA 0.889473684210526
SENUFO_CEBAARA 0.85427135678392
SERBOCROATIAN 0.796875
SHAN 0.900763358778626
SHONA 0.888297872340426
SINHALA 0.872340425531915
SIWA_BERBER 0.915492957746479
SLOVAK 0.792553191489362
SLOVENIAN 0.774358974358974
SOMALI 0.896373056994819
SOTHO_SOUTHERN 0.903448275862069
SPANISH 0.658031088082902
SRANAN_TONGO 0.770114942528736
STANDARD_ARABIC 0.940217391304348
STANDARD_GERMAN 0.744791666666667
SUNDANESE 0.907216494845361
SUSU 0.931578947368421
SUZHOU_WU 0.954314720812183
SWAHILI 0.880829015544041
SWAZI 0.887323943661972
SWEDISH 0.841530054644809
TAJIK 0.83419689119171
TAMASHEQ 0.935643564356436
TAMIL 0.859223300970874
TELUGU 0.890995260663507
TETUN_DILI 0.894736842105263
THAI 0.9
THEMNE 0.902597402597403
TIGRE 0.914691943127962
TIGRIGNA 0.907834101382488
TIGRINYA 0.912037037037037
TIKAR_AKUEN 0.944444444444444
TOK_PISIN 0.773869346733668
TOKYO_JAPANESE 0.913875598086124
TSHANGLA 0.935643564356436
TSONGA 0.887700534759358
TSWANA 0.890547263681592
TUMBUKA_ZAMBIE 0.906976744186046
TURKISH 0.916666666666667
TURKMEN 0.916666666666667
TWI_ASANTE 0.917582417582418
TWI_FANTE 0.937984496124031
UKRAINIAN 0.757731958762887
UMBUNDU 0.875
URDU 0.845744680851064
UZBEK 0.865591397849462
VALPEI 0.861702127659574
VIETNAMESE 0.903954802259887
W_OROMO 0.948979591836735
WE_SOUTHERN 0.911764705882353
WELSH 0.835106382978723
WEST_GREENLANDIC 0.911504424778761
WESTERN_ARMENIAN 0.91005291005291
WOLOF 0.868613138686131
XHOSA 0.919075144508671
YAKOUBA 0.953488372093023
YANGON_BURMESE 0.892857142857143
YAO_1 0.896174863387978
YORUBA 0.898936170212766
ZANDE 0.89261744966443
ZARMA 0.840425531914894
ZIMBABWE_NDEBELE 0.890995260663507
ZULU 0.891402714932127
ESPERANTO 0
continent name ujo pop uea lernu www pas edu nat
AFG A afghanistan 0 27.7 1 48 - 0 0 0
ALB E albanien 0 2.8 14 64 0.6 1 5 33
DZA F algeriet 1 39.2 6 503 0.15 1 8 0
AND E andorra - 0.078 0 167 - 0 8 0
AGO F angola 1 21.5 2 42 0.19 0 0 -
ARG M argentino 27 41.5 29 1965 0.60 16 61 140
ARM E armenien 0 3.0 12 92 - 0 1 27
AUS A australio 23 23.1 40 2568 0.83 16 52 130
AUT E austria 4 8.6 44 780 0.81 8 23 79
AZE E azerbadj 1 9.8 1 112 - 0 2 0
BHS M bahamas 1 0.378 1 15 - 0 0 0
BGD A bangladesh 0 156.6 2 49 0.39 0 1 0
BLR E belarus 5 9.5 12 425 0.54 5 6 0
BEL E belgien 16 11.3 143 1695 0.82 37 106 360
BLZ M belize 0 0.380 1 14 - 0 0 0
BEN F benin 0 10.6 14 69 - 6 6 500
BTN A bhutan 0 0.8 0 8 - 0 0 0
BOL M bolivia 1 11.0 2 330 - 0 3 0
BIH E bosnien 1 3.8 13 175 0.72 3 7 300
BWA F botswana 0 2.2 0 8 - 0 0 0
BRA M brasilien 299 200.4 382 16845 0.60 137 577 385
BRN A brunei 0 0.417 0 13 - 0 0 0
BGR E bulgarien 7 7.2 45 622 0.53 11 10 140
BFA F burkina 1 19 0 15 - 0 0 0
BDI F burundi 0 10.1 15 41 - 3 9 95
KHM A cambodja 0 15.6 2 26 - 1 1 -
CMR F cameroun 0 22.7 4 35 - 0 1 -
CAN M canada 27 35.2 67 3982 0.86 25 63 115
CAF F centralafr 0 5.0 0 26 - 2 0 0
CHL M chile 7 17.6 10 1541 0.67 4 11 -
COL M colombia 13 47.12 24 3307 0.52 13 42 -
COG F congoBraz 0 4.7 3 13 - 0 0 0
CUB M cuba 2 11.3 35 152 0.26 10 13 350
CYP E cypern 0 0.8 2 64 - 0 2 -
DNK E danmark 9 5.7 86 995 0.95 16 22 140
DJI F djibouti 0 0.9 0 8 - 0 0 0
DOM M domrep 2 10.4 3 551 0.52 1 0 0
EGY F egypt 1 82.1 1 364 0.5 1 0 0
ECU M equador 2 15.7 4 642 0.4 1 6 0
GNQ F equatorialguinea 0 1.2 0 5 - 0 0 0
ERI F eritrea 0 5.3 0 7 - 0 0 0
EST E estland 2 1.3 17 151 0.8 2 2 100
TLS A etimor 1 1.2 4 11 - 0 0 0
ETH F etiopien 0 101.9 1 43 - 0 0 0
FJI A fiji - 0.9 0 8 - 0 0 0
PHL A filip 12 98.4 6 584 0.44 1 3 0
FIN E finland 6 5.5 97 1105 0.92 12 35 300
FRA E france 86 66.4 734 7061 0.89 234 637 650
GAB F gabon 0 1.8 0 19 - 0 0 0
GMB F gambia 0 1.9 0 7 - 0 0 0
GEO E georgien 0 3.7 3 71 - 2 2 0
GHA F ghana 0 28.3 5 60 - 3 2 -
GRC E greece 1 10.8 11 383 0.6 2 5 65
GRL E greenland 0 0.056 0 7 - 0 0 0
GTM M guatem 3 15.5 2 438 0.20 1 3 -
GIN F guinea 0 12.9 0 10 - 0 0 0
GNB F guineabissau 0 1.5 0 7 - 0 0 0
GUY M guyana 0 0.746 0 3 - 0 0 0
HTI M haiti 1 11.1 0 48 - 0 0 0
NLD E holland 25 17 205 2182 0.94 32 106 235
HND M honduras 2 8.1 2 199 0.18 0 1 0
HKG A hongkong - 7.4 2 1048 - 1 3 -
ISL E iceland 1 0.323 14 92 0.97 1 2 50
IND A indien 3 1252 14 1371 0.35 4 7 150
IDN A indon 8 249.9 9 1136 0.35 0 15 0
IRQ A irak 2 36.8 0 53 - 0 0 0
IRN A iran 57 77.5 60 1781 0.31 17 39 40
IRL E irland 5 4.6 10 627 0.78 2 2 63
ISR A israel 6 8.1 64 1812 0.71 3 15 160
ITA E italien 29 59.8 171 2997 0.58 27 151 910
CIV A ivory 0 22.7 1 53 - 0 0 100
JAM M jamaica 0 2.7 0 27 - 0 0 0
JPN A japan 10 127.3 378 1399 0.9 11 62 1298
JOR A jordan 1 9.8 0 68 - 0 0 0
KAZ A kasak 2 17.0 8 286 0.54 0 10 0
CPV F kapverde - 0.531 0 23 - 0 0 0
KEN F kenya 0 44.3 3 65 0.39 1 0 -
CHN A kina 17 1357 135 8273 0.52 38 91 1144
KGZ A kirigistan 1 6.1 1 37 - 0 2 0
COD F KongoDR 2 67.5 16 118 0.022 3 18 456
KOR A korea 4 50.2 87 1520 0.85 11 44 250
CRI M kostariko 4 4.9 8 636 0.46 3 7 34
HRV E kroatien 4 4.2 32 409 0.67 3 16 316
KWT A kuwait 0 4.2 0 46 - 0 0 0
LAO A laos 0 6.5 0 17 - 0 0 0
LSO F lesotho 0 1.9 0 1 - 0 0 0
LVA E letland 1 2.0 18 160 0.75 1 5 102
LBN A libanon 1 6.0 1 88 - 0 0 0
LBR F liberia 0 4.1 0 8 - 0 0 0
LBY F libya 0 6.4 0 21 - 0 0 0
LIE E liechtenstein - 0.037 0 8 - 0 0 0
LTU E litauen 8 3.0 43 5127 0.68 13 32 960
LUX E luxemborg 2 0.57 17 86 0.94 4 5 104
MDG F madagaskar 1 22.9 6 66 0.61 3 4 70
MKD E makedonien 1 2.1 4 48 - 2 2 45
MWI F malawi 0 16.8 2 7 - 0 3 0
MYS A malaysia 2 31.9 0 662 - 1 5 0
MLD A maldives - 0.344 0 4 - 0 0 0
MLI F mali 0 18.3 1 21 - 0 1 -
MTA E malta - 0.425 3 28 0.69 0 1 3
MAR F maroko 1 33.0 5 1096 0.56 0 4 0
MRT F mauretania 0 3.7 0 16 - 0 0 0
MAU F mauritius - 1.3 0 23 - 0 0 0
MEX M mexico 40 122.3 26 5162 0.51 19 67 145
MDA E moldova 0 3.6 1 102 - 1 3 0
MNG A mongoliet 2 2.8 19 58 0.16 3 2 50
MNE E montenegro 0 0.621 1 11 - 0 0 -
MOZ F mozambique 0 26.4 0 14 - 0 0 0
MMR A myanmar 1 54.6 1 25 - 0 1 0
NAM F namibia 0 2.3 0 21 - 0 0 0
NPL A nepal 7 31.0 26 115 - 2 4 147
NCL A newkaledonia 0 0.268 2 46 - 1 6 -
NZL A newzealand 8 4.5 21 577 0.83 5 6 46
NIC M nicaragua 1 6.1 19 295 0.16 1 8 -
NER F niger 0 20.7 3 25 - 1 1 -
NGA F nigeria 1 173.6 10 77 0.46 2 2 142
NOR E norge 7 5.2 36 826 0.95 14 14 144
OMN A oman 0 4.6 0 7 - 0 0 0
PAK A pakistano 5 182.1 40 195 0.18 29 2 450
PAN M panamo 0 3.9 0 214 0.43 0 1 0
PNG A papua 0 8.2 0 0 - 0 0 0
PRY M paraguay 0 6.8 0 147 0.37 0 1 0
PER M peru 6 30.4 9 1815 0.39 2 13 -
POL E polen 48 38.5 162 4556 0.76 62 197 620
PRT E portugal 5 10.3 11 1025 - 2 17 95
PRI M puertorico 3 3.5 1 288 - 0 2 0
QAT A qatar 0 2.6 0 37 - 0 1 0
ROU E romania 5 19.8 35 422 0.5 3 17 51
RUS E rusland 43 144.0 107 7343 0.71 76 193 148
RWA F rwanda 0 11.6 4 21 - 0 0 0
SLB A salomon 0 0.642 0 3 - 0 0 0
SLV M salvadoro 1 6.3 1 218 0.23 3 2 0
SAU A saudi 0 28.8 0 163 0.61 0 0 0
CHE E schweiz 9 8.1 85 935 0.87 29 44 170
SEN F senegal 0 14.8 4 129 - 6 12 -
SRB E serbien 5 7.1 28 234 0.72 5 15 -
SLE F sierraleone 0 7.1 0 10 - 0 0 0
SVK E slovakia 2 5.4 30 1418 0.78 5 28 80
SVN E slovenien 0 2.1 14 233 - 1 18 106
SOM F somalia 0 11.1 0 3 - 0 0 0
ESP E spanien 60 46.4 131 5876 0.84 47 207 285
LKA A srilanka 0 21.2 3 31 - 0 0 -
SSD F ssudan 0 12.1 0 1 - 0 0 0
ZAF F sudafriko 10 53.0 5 288 0.49 6 2 54
SDN F sudan 0 41.2 0 35 - 0 1 0
SUR M surinam 0 0.541 0 7 - 0 0 0
SWE E sverige 19 9.9 103 1609 0.95 30 46 275
SWZ F swaziland 0 1.3 1 6 - 1 1 0
SYR A syria 1 18.6 0 82 - 0 1 0
TJK A tadjstikistan 1 8.6 3 14 - 1 3 25
TWN A taiwan 5 23.5 10 1771 0.8 3 10 -
TZA F tanzania 1 55.2 9 23 - 1 1 -
TCD F tchad 0 14.5 3 2 - 0 0 0
THA A thailand 3 67.0 5 277 0.29 3 3 0
CZE E tjekkiet 11 10.5 86 1724 0.74 23 64 105
TGO F togo 0 7.1 28 81 - 6 14 300
TTO M trinidad 0 1.4 0 28 - 0 0 0
TUN F tunesien 0 11.2 5 241 - 0 0 0
TKM A turkmenistan 0 4.8 0 5 - 0 0 0
TUR A tyrkiet 13 74.9 14 1193 0.46 0 14 0
DEU E tyskland 76 81.5 480 6684 0.88 109 226 1086
ARE A uae 2 9.9 1 173 - 2 2 0
UGA F uganda 0 36.9 6 18 - 0 1 -
GBR E uk 55 65.1 119 5484 0.82 28 90 385
UKR E ukraine 13 42.9 47 2042 0.62 27 38 160
HUN E ungarn 39 9.8 80 7950 0.73 35 234 120
URY M uruguay 2 3.4 13 278 0.58 2 4 30
USA M usa 210 318.9 245 30152 0.88 76 354 700
UZB A usbekistan 0 31.6 2 72 - 1 1 0
VUT A vanuatu 0 0.277 0 2 - 1 0 0
VEN M venezuela 16 30.4 7 1156 0.55 4 16 32
VNM A vietnam 5 89.7 63 1287 0.44 0 30 200
YEM A yemen 0 27.5 0 28 - 0 0 0
ZMB F zambia 0 15.9 0 15 - 1 2 0
ZWE F zimbabwe 0 14.2 1 30 - 1 1 0
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 3 columns, instead of 62. in line 2.
"Data Source","World Development Indicators",
"Last Updated Date","2017-02-01",
"Country Name","Country Code","Indicator Name","Indicator Code","1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016",
"Aruba","ABW","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1330167597.76536","1320670391.06145","1379888268.15642","1531843575.41899","1665363128.49162","1722798882.68156","1873452513.96648","1920262569.8324","1941094972.06704","2021301675.97765","2228279329.60894","2331005586.59218","2421474860.3352","2623726256.98324","2791960893.85475","2498932960.89385","2467703910.61453","2584463687.15084","","","","","",
"Andorra","AND","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","78619206.0850963","89409820.3592814","113408231.944085","150820102.798401","186558696.279204","220127246.376812","227281024.620741","254020153.340635","308008897.569444","411578334.159643","446416105.825017","388958731.302938","375895956.383462","327861832.946636","330070689.298282","346737964.774951","482000594.03588","611316399.407088","721425939.15155","795449332.396346","1029048481.88051","1106928582.86629","1210013651.87713","1007025755.00065","1017549124.33238","1178738991.19295","1223945356.62682","1180597272.72727","1211932397.81713","1239876305.13531","1401695227.56587","1484017897.09172","1717485413.13759","2373927765.23702","2916786689.84356","3248215396.09501","3536632793.87781","4010990966.32904","4001201113.22689","3650083356.48791","3346516556.29139","3427022518.76564","3146151869.45908","3248924588.42273","","","",
"Afghanistan","AFG","GDP (current US$)","NY.GDP.MKTP.CD","537777811.111111","548888895.555556","546666677.777778","751111191.111111","800000044.444444","1006666637.77778","1399999966.66667","1673333417.77778","1373333366.66667","1408888922.22222","1748886595.55556","1831108971.11111","1595555475.55556","1733333264.44444","2155555497.77778","2366666615.55556","2555555566.66667","2953333417.77778","3300000108.88889","3697940409.61098","3641723321.99546","3478787909.09091","","","","","","","","","","","","","","","","","","","","2461665937.89386","4128820723.04713","4583644246.48061","5285465685.86423","6275073571.54659","7057598406.61553","9843842455.48323","10190529882.4878","12486943505.7381","15936800636.2487","17930239399.8149","20536542736.7297","20046334303.9661","20050189881.6659","19331286549.3323","",
"Angola","AGO","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","6688963210.70234","6688963210.70234","6688963210.70234","6688963210.70234","10033444816.0535","10033444816.0535","","","","6202000000","4879285714.28571","7526963963.96396","7649716157.20524","6445427698.57434","6152936539.21955","9129634978.33773","8936063723.20121","12497346669.6684","14188949190.618","19640848728.8937","28233712830.9035","41789478661.3096","60448921272.2326","84178032716.0971","75492384801.3695","82470913120.7314","104115923082.737","115398371427.673","124912063308.202","126776874216.703","102626929544.805","",
"Albania","ALB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","1924242453.00793","1965384586.2409","2173750012.5","2156624900","2126000000","2335124987.5","2101624962.5","1139166645.83333","709452583.880319","1228071037.84446","1985673798.10258","2424499009.14264","3314898291.37753","2359903108.25164","2707123772.39715","3414760915.22464","3632043907.78974","4060758804.1064","4435078647.86039","5746945912.88569","7314865175.67485","8158548716.52941","8992642348.95796","10701011896.7708","12881352687.7773","12044212903.8168","11926953258.916","12890867538.5302","12319784787.2987","12781029643.5936","13219857459.1009","11398392444.316","",
"Arab World","ARB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","25747855610.4285","28420044954.3523","31369837406.5612","36408731719.6087","43294440678.2115","54990939283.609","105093332251.354","116278966420.042","144773893596.339","167224835618.862","183463944886.893","248522123765.346","338008693136.183","348418835552.1","324166905470.404","303810855156.591","307787101247.945","303741965576.866","288884914865.464","312525641777.262","307349581036.654","322164289338.55","445987568447.796","438852565870.762","470346038022.92","475661819060.653","486642375788.828","522836165708.536","577272185684.695","612265868240.751","590477656556.07","643095230853.8","733902786327.192","722106258046.026","727949171295.856","821819709251.965","963858506912.972","1184661555240.35","1404102885764.53","1637573471833.61","2077760563462.83","1795461858613.72","2103838826875.15","2497297323283.24","2733908028570.54","2830819885650.94","2889754894667.97","2565871160292.11","",
"United Arab Emirates","ARE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","14720672506.5004","19213022691.0526","24871775164.6043","23775831783.4263","31225463217.7582","43598748449.0479","49333424135.1131","46622718605.2847","42803323345.1376","41807954235.903","40603650231.5445","33943612094.7971","36384908744.2114","36275674203.2144","41464995913.9199","50701443748.2975","51552165622.4462","54239171887.769","55625170253.337","59305093979.842","65743666575.8649","73571233996.1863","78839008444.5655","75674336283.1858","84445473110.9598","104337372362.151","103311640571.818","109816201497.617","124346358066.712","147824370319.946","180617018379.85","222105922396.188","257916133424.098","315474615738.598","253547358747.447","286049336038.121","348526072157.931","373431994554.118","388598502382.573","401958066712.049","370296255956.433","",
"Argentina","ARG","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","16646599770","27786400318","47289600372","65193099976","48505749702.5","51169498443.6","56780999755.86","58082870733.541","69252330274.1362","76961921890.6573","78676840049.3421","84307484567.9012","103979107312.441","79092000000","88416666666.6667","110934444444.444","111106190476.19","126206818181.818","76636898126.1883","141352368724.031","189719984268.485","228788617201.696","236741715015.015","257440000000","258031750000","272149750000","292859000000","298948250000","283523000000","284203750000","268696750000","97724004251.8602","127586973492.177","164657930461.189","199495534687.577","233581686065.467","288833322724.044","363137495039.856","334490355492.26","425916078731.8","533200293249.748","548934618735.756","554155198994.424","529726189460.922","583168571071.407","",
"Armenia","ARM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2256838858.42714","2068526521.90299","1272577521.7683","1201313196.45626","1315158670.47971","1468317350.02343","1596968913.19202","1639492424.38103","1893726437.35976","1845482181.48539","1911563665.39006","2118467913.37873","2376335048.39976","2807061008.69084","3576615240.41616","4900469515.07252","6384451606.1421","9206301700.39619","11662040713.8753","8647936747.98704","9260284937.79782","10142111334.4961","10619320048.5857","11121465767.4067","11609512939.7543","10529182498.3475","",
"American Samoa","ASM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Antigua and Barbuda","ATG","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","66144444.4444444","74855555.5555556","92240740.7407407","110066666.666667","124462962.962963","137951851.851852","153270370.37037","173511111.111111","201862962.962963","245896296.296296","286474074.074074","338696296.296296","373403703.703704","391570370.37037","410388888.888889","423762962.962963","456537037.037037","500088888.888889","494185185.185185","541074074.074074","579851851.851852","620037037.037037","651851851.851852","783837851.851852","773765185.185185","802529333.333333","839996370.37037","898356148.148148","997374111.111111","1135143592.59259","1289254333.33333","1347349851.85185","1206410370.37037","1135539037.03704","1129918370.37037","1204713111.11111","1200587518.51852","1220976000","1259259259.25926","",
"Australia","AUS","GDP (current US$)","NY.GDP.MKTP.CD","18567588755.7397","19639377309.8891","19883525590.7716","21497368126.3299","23754059805.1294","25925635569.4927","27250531974.4652","30378541829.9922","32641953186.2471","36606562884.9815","41245380221.7494","45119274274.8348","51928738317.757","63688661114.6701","88775239498.8946","97081797077.7004","104815328375.142","110097499426.474","118217911121.137","134584800636.147","149654596100.279","176527342389.411","193651108904.336","176899391670.566","193197790255.389","180182557336.811","181989367655.288","189076892535.733","235771245634.459","299480498330.755","310954982685.648","325574915626.717","325253403060.832","311950534007.87","322805257696.299","367949212949.213","401335356600.91","435571294412.271","399293902190.87","388672139365.835","414951956289.644","378459268004.723","394196316450.398","466348281887.012","612695262483.995","693075477371.824","746880802635.52","853053309256.497","1054557743957.03","926563834486.821","1142250506474.06","1389919156068.22","1537477830480.51","1563950959269.52","1454675479665.84","1339140527498.13","",
"Austria","AUT","GDP (current US$)","NY.GDP.MKTP.CD","6592693841.18495","7311749633.36229","7756110210.11966","8374175257.73075","9169983885.71185","9994070615.85997","10887682273.1014","11579431668.9165","12440625312.8685","13582798556.2404","15335972267.7957","17815464919.0439","22006470861.3608","29444365310.2818","35104529078.3274","39962704274.3146","42856485617.8569","51421585629.8393","61902774945.5131","73759181883.685","81861232822.8037","70863106877.484","71103585383.5605","71947277233.032","67821568599.1335","69219621907.4222","98797587381.7035","123869321397.475","133018182770.534","132785154342.174","166062376739.683","173375508073.07","194608183696.469","189921096652.076","203044926876.28","240457622492.152","236720496490.772","212323463750.141","217683626056.025","216725261027.062","196421706283.398","196953628635.347","212970685111.989","260721478555.305","299857238639.185","314648986444.472","334309371471.584","386458951546.674","427611527757.434","397594276187.83","390235099337.748","429010675562.969","407451583084.239","428248420485.175","438376178526.317","376950249528.668","",
"Azerbaijan","AZE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8858006035.91566","8792365810.5094","4991350457.5425","3973027396.65195","3313739673.54738","3052467522.36104","3176749593.11788","3962710163.11167","4446396217.63265","4581222442.45783","5272617196.04517","5707618246.56848","6236024951.20423","7275766111.24309","8680511918.49357","13245421880.834","20983019923.8863","33050343782.7759","48852482960.0779","44291490420.5026","52902703376.1056","65951627200.2026","68730906313.6456","73560484384.9586","75198010965.1919","53047140347.4527","",
"Burundi","BDI","GDP (current US$)","NY.GDP.MKTP.CD","195999990","202999992","213500006","232749998","260750008","158994962.962963","165444571.428571","178297142.857143","183200000","190205714.285714","242732571.428571","252842285.714286","246804571.428571","304339839.552146","345263492.063492","420986666.666667","448412753.623188","547535555.555556","610225555.555556","782496666.666667","919726666.666667","969046666.666667","1013222222.22222","1082926304.46477","987143931.166987","1149979285.77347","1201725497.06578","1131466494.01101","1082403219.48787","1113924130.41149","1132101252.51817","1167398478.3459","1083037670.60484","938632612.026359","925030590.153683","1000428393.88528","869033856.317093","972896267.915425","893770806.077641","808077223.365746","870486065.883137","876794723.068586","825394490.159111","784654423.620476","915257323.3961","1117257279.46188","1273180597.02711","1356078278.18821","1611634331.64869","1739781488.7457","2026864469.36388","2355652125.85184","2472384906.99794","2714505634.52629","3093647226.8107","3097324739.82522","",
"Belgium","BEL","GDP (current US$)","NY.GDP.MKTP.CD","11658722590.99","12400145221.595","13264015675.3193","14260017387.0492","15960106680.6732","17371457607.9374","18651883472.4808","19992040788.4593","21376353113.475","23710735894.7022","26849148285.599","29981290025.4913","37408591329.8506","47999363071.8278","56333010459.8177","66029748930.5693","71494539498.4326","83283328418.6832","101788475086.461","116938066868.465","127508202372.741","105290614080.834","92588895020.3073","87650915976.3314","83795680815.4147","86730038793.3963","120661220335.922","150194077687.736","163167853538.124","165100094594.595","206430841501.69","211637816538.689","236038384441.656","225924679920.709","246194938750.904","289567323481.117","281358175895.766","254813599458.728","260601911535.897","260202429149.798","237904919845.218","237841968680.09","258860436664.784","319002821670.429","370885026074","387365750528.541","409813197842.178","471821105940.323","518625897172.99","484552792442.345","483576821192.053","526975674172.922","497884216568.867","520091780650.207","531761915064.736","455085726960.186","",
"Benin","BEN","GDP (current US$)","NY.GDP.MKTP.CD","226195579.35701","235668222.429984","236434906.75427","253927646.475909","269818988.259263","289908720.648622","302925280.773564","306222000.407316","326323097.355964","330748211.459737","333627758.154666","335072975.215766","410331900.950531","504376035.716401","554654786.965107","676870140.341529","698408244.385343","750049739.152238","928843304.783965","1186231265.18417","1405251547.23882","1291119965.11262","1267778489.03079","1095348302.91865","1051133927.00009","1045712703.02696","1336102040.71025","1562412030.34838","1620246187.15171","1502294411.46202","1959965243.76269","1986437859.90346","1695315305.70308","2274557914.07481","1598075932.35432","2169627250.93379","2361116587.86079","2268301537.65128","2455092582.30927","2689787917.50711","2569186642.86999","2680213931.46472","3054571081.6912","3905366187.87017","4521424807.22519","4803702821.08056","5142380779.44103","5969535131.58016","7132787396.66547","7097198711.61023","6970240895.49888","7814081155.64988","8152554487.31321","9156748441.42175","9707432015.61441","8290986804.45245","",
"Burkina Faso","BFA","GDP (current US$)","NY.GDP.MKTP.CD","330442817.168859","350247237.11684","379567178.256898","394040749.12567","410321785.631059","422916848.424208","433889831.584706","450753993.176448","460442864.205949","478298781.545658","458404330.125096","482411278.982439","578595583.975723","674773821.151416","751133642.647461","939972703.463021","976547572.215824","1131225278.77773","1475584037.28156","1748480982.18517","1928720390.28869","1775842679.94056","1754450379.2077","1600278756.43589","1459880352.64829","1552493413.98989","2036303381.20142","2369835438.62393","2616040645.87263","2615588545.68629","3101301780.95067","3135045684.1006","2240264711.54816","2332018010.55341","1895290964.80829","2379518099.2266","2586550747.09844","2447669403.89018","2804902723.73145","2991748387.09677","2628920056.10098","2812532813.18202","3207747085.51083","4098643482.34347","4839877683.94744","5458343594.30942","5843872989.47876","6762399882.91926","8350808396.60563","8148059793.81443","8988623686.33791","10746062858.3563","11166654260.5289","11930742614.3262","12257141798.2204","10678201939.3595","",
"Bangladesh","BGD","GDP (current US$)","NY.GDP.MKTP.CD","4274893913.46431","4817580183.56657","5081413339.74945","5319458351.12372","5386054619.31076","5906636556.95802","6439687598.27648","7253575399.26882","7483685473.4584","8471006100.89247","8992721809.32801","8751842839.73302","6288245866.66667","8086725729.3407","12512460519.7088","19448348073.4565","10117113333.3333","9651149301.8746","13281767142.8571","15565480321.9448","18138049095.6072","20249694002.448","18525399201.5968","17609048821.5488","18920840000","22278423076.9231","21774033333.3333","24298032258.0645","26579005760.315","28781714763.7823","31598341233.5793","30957483290.541","31708873954.9405","33166520084.8295","33768662171.2233","37939748051.3878","46438482370.3942","48244308274.8086","49984559471.3656","51270569883.5275","53369787318.6245","53991289844.3291","54724081490.5102","60158929188.2556","65108544250.0425","69442943089.4309","71819083683.7403","79611888213.148","91631278239.3237","102477791472.39","115279077465.226","128637938711.386","133355749482.478","149990451022.29","172885454931.453","195078665827.565","",
"Bulgaria","BGR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","19839230769.2308","19870000000","19342000000","16563666666.6667","17594944444.4444","17155421052.6316","20249294117.6471","28101000000","22555941176.4706","21988444444.4444","20632090909.0909","10943548387.0968","10350515463.9175","10829710144.9275","9697416974.16974","13063422619.0476","10109404159.6402","11195630536.8928","14630974778.4594","13495062850.302","13148099185.2305","14135393875.5893","16360346653.8276","21074775206.3254","26094622563.6468","29821662537.3229","34304448149.8108","44765733379.986","54666642734.2757","51783454183.5501","50610031135.7791","57418391041.5926","53903028252.2996","55758744571.1183","56732006512.0065","50199117547.0415","",
"Bahrain","BHR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","3072698328.46909","3467819148.93617","3645744680.85106","3735106382.97872","3905585106.38298","3651861702.12766","3052393617.02128","3392021010.6383","3702393617.02128","3863563829.78723","4229787234.04255","4616223404.25532","4751063829.78723","5200265957.44681","5567553457.44681","5849467819.14894","6101861436.17021","6349202393.61702","6183776595.74468","6621010372.34043","9062906914.89362","8976207712.76596","9632155053.19149","11074822074.4681","13150166755.3191","15968726861.7021","18505053191.4894","21730000000","25710877659.5745","22938218085.1064","25713271276.5957","28776595744.6809","30749308510.6383","32539441489.3617","33387712765.9575","31125851063.8298","",
"Bahamas, The","BHS","GDP (current US$)","NY.GDP.MKTP.CD","169803921.568627","190098039.215686","212254901.960784","237745098.039216","266666666.666667","300392156.862745","340000000","390196078.431373","444901960.784314","528137254.901961","538423153.692615","573400000","590900000","670900000","632400000","596200000","642100000","713000000","832400000","1139800100","1335300000","1426500000","1578300000","1732800000","2041100000","2320699900","2472500000","2713999900","2817900000","3062000000","3166000000","3111160000","3109000000","3092000000","3259000000","3429000000","3609000000","4961119000","5353524000","6019972000","6327552000","6516651000","6957996000","6949317000","7094413000","7706222000","7965588000","8318996000","8246650000","7820420000","7909580000","7889750000","8399031000","8521997500","8617738100","8853519100","",
"Bosnia and Herzegovina","BIH","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1255802469.1358","1866572953.73665","2786045321.63743","3671816504.23851","4116699437.4041","4685729738.56209","5505984455.95855","5748990666.17862","6651226179.01829","8370020196.19158","10022840634.9206","11225138297.1959","12866524918.2221","15776422673.198","19101454463.7507","17600630726.6141","17163117551.4626","18628022743.4257","17207367625.8048","18154290272.2151","18523988466.7571","16191716214.6829","",
"Belarus","BLR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","17369598958.1159","17813389815.004","17022180272.211","16280372553.0518","14931599418.4226","13972637603.2102","14756861538.4615","14128412417.193","15222014828.3039","12138485328.6267","12736856485.1068","12354820143.8849","14594925392.9691","17825436034.5366","23141587717.7633","30210091836.8294","36961821893.6976","45275747860.6442","60752177438.8895","49208656976.039","55220932613.958","59734593904.6402","63615445566.8483","73097619636.8208","76103961203.4406","54608962634.9908","",
"Belize","BLZ","GDP (current US$)","NY.GDP.MKTP.CD","28071888.5622288","29964370.7125857","31856922.8615428","33749405.0118998","36193826.1234775","40069930.0699301","44405594.4055944","47379310.3448276","44910179.6407186","47305389.2215569","53233532.9341317","59207317.0731707","66062500","78343558.2822086","103216374.269006","118066298.342541","96905829.5964126","117650000","136300000","151800000","194750000","192900000","179250000","189000000","210900000","209150000","227850000","276550000","314900000","363150000","413050000","444720750","518239100","559858250","580863700","620140400","641383800","654314350","688992450","732732350","832072450","871860600","932551850","990374038.916065","1057845487.01254","1114222545.68238","1217467601.14436","1290573396.53153","1369603993.98571","1338515647.69315","1398362215.83775","1488894464.89739","1573867323.54972","1625828111.72853","1717861729.53812","1752861127.94553","",
"Bermuda","BMU","GDP (current US$)","NY.GDP.MKTP.CD","84466654.0801544","89249986.7007156","94149985.9705588","96366652.3069165","107566650.637987","114339048.962736","134173373.782802","155102984.621576","150000000","164900000","186300000","211100000","235400000","269500000","312600000","345000000","386300000","447000000","475800000","517200000","613299968","739100032","785500032","889400000","985699968","1039500032","1173500032","1296499968","1415100032","1501500032","1592400000","1634899968","1679900032","1820359936","1867160064","2030749952","2695390000","2932827000","3130748000","3324433000","3480219000","3680483000","3937228000","4186525000","4484703000","4868136000","5414299000","5895048000","6109928000","5806378000","5744414000","5550771000","5537537000","5573710000","","","",
"Bolivia","BOL","GDP (current US$)","NY.GDP.MKTP.CD","563110051.920733","612518906.826491","669722541.277818","721142957.311474","812543072.505384","908874537.037037","994044553.872054","1084059814.81481","908874537.037037","964615698.653199","1017171717.17172","1095454545.45455","1257615644.97932","1263018490.75462","2100249875.06247","2404697651.17441","2732083958.02099","3227436281.85907","3758220889.55522","4421343606.18135","4537487842.57749","5891606676.18271","5594118400.16731","5422656261.71049","6169481549.37482","5377277406.71638","3959379487.6064","4347956298.51327","4597615562.66594","4715978868.21613","4867582620.20708","5343274311.56789","5643893347.00679","5734676560.92471","5981244886.917","6715220507.05164","7396966657.47054","7925673448.41368","8497545598.08352","8285075872.27307","8397912509.09679","8141537937.61068","7905485216.17852","8082364868.39357","8773451738.91129","9549077869.1065","11451869164.7112","13120159975.5451","16674357238.5781","17340028490.0285","19649692875.5683","23963096439.383","27084515195.369","30659334298.1187","32996237337.1925","32997684515.1954","",
"Brazil","BRA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","183785591126","213196296692","200567103794.714","218580866274.609","266313891601.56","293364326103.587","330301146051.941","425595310000","461951782000","602860000000","400599250000","437798577639.752","558111997497.263","785643456467.255","850425828275.793","883199443413.729","863723395088.324","599388879704.634","655421153320.579","559372502338.237","507962741819.919","558320116997.075","669316239316.239","891629970423.924","1107640325472.35","1397084381901.29","1695824517395.57","1667020106031.81","2208872214643.02","2614573170731.71","2460658440428.04","2465773850934.56","2417046323841.9","1774724818900.48","",
"Barbados","BRB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","1012264035.93834","1114104641.92324","1164059789.75045","1235775210.81961","1347033586.80082","1409740726.1551","1547790025.47984","1704440882.93392","1812891396.47311","2006394477.47387","2012302519.52124","2020744653.61842","1957168343.54374","2063267995.73752","2151285060.49141","2261996995.18515","2411846465.43502","2549260575.07039","2874413287.26735","3012021852.2502","3121619807.97687","3116632412.98352","3169612598.33334","3274856571.16603","3514370691.25564","3897467233.85757","4303275572.40198","4546115388.40716","4595264666.36232","4601200362.60463","4446829722.72591","4358920097.55454","4332141067.26626","4371196622.64321","4352734313.10536","4385250000","",
"Brunei Darussalam","BRN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","114040245.655299","132758395.400497","139030445.576898","160819286.554292","161211289.690318","179080099.307461","197523179.241883","270818555.823521","433092003.579273","1073577085.64159","1168304305.65513","1423061356.64562","1732721160.94122","1941600703.60598","2803780005.51826","4928824957.9675","4366213849.57637","4264252336.4486","3844723142.45149","3782523088.4628","3523612563.06532","2358592817.12134","2754463437.79677","2690717551.18267","2985467979.28524","3520551724.13793","3701667052.55846","4183548189.07305","4105706151.75145","4087337959.93191","4734020036.68689","5115602836.87943","5197332974.13793","4051147227.53346","4600000000","6001153306.2645","5601090584.36122","5843329107.56171","6557333084.60567","7872333215.00414","9531402847.87311","11470703002.0769","12247694247.2298","14393099068.5859","10732366286.2643","13707370737.0737","18525319977.7407","19048495518.5659","18093829923.2737","17123125493.2912","12930394937.8137","",
"Bhutan","BTN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","135653295.165394","146391639.722864","148934334.038055","165585940.594059","169264991.197183","172217502.021019","201375725.614592","253182453.703704","283855833.333333","275949889.09427","299787275.842376","250045839.929639","250794359.567901","235239570.350935","270801565.189672","303053462.843047","316420860.852385","365964500.137703","376955087.251575","419035810.496981","439158233.199822","476360697.181606","537050133.717342","622026107.771576","702682018.976169","818869145.124717","897731524.929922","1196091805.02316","1258332337.28382","1264758197.96593","1585472534.10547","1820207625.80217","1823692109.61652","1798333725.83954","1958819914.95916","2057947621.19283","",
"Botswana","BWA","GDP (current US$)","NY.GDP.MKTP.CD","30411418.6788295","32902592.8362861","35644931.942153","38091832.9893847","41616368.3159934","45788670.6930146","51465624.4090769","58642385.2376744","66248426.9941409","77361532.9935123","96243298.1393835","126954476.930714","165253183.617311","244124115.653176","306044205.922122","355168715.375176","372025093.434102","451624959.61005","590407375.160033","819870595.111537","1060889705.11871","1073812403.80662","1014945860.82549","1172230575.57996","1240821849.27576","1114783538.17406","1392602040.14794","1965227085.13155","2644554881.84186","3083822367.10683","3790636664.02546","3942792837.35655","4146513722.33019","4160086253.1468","4259330999.03151","4730611067.02258","4847752842.78924","5020214747.45261","4790458837.17078","5484257417.17844","5788329609.15755","5489608299.66445","5438857106.73536","7511582173.37724","8957467706.5354","9931134940.51346","10126940513.3125","10939053367.1521","10945070447.5102","10267133183.7388","12786654369.6595","15682926890.0326","14686278713.5189","14814761247.9547","15880203580.8046","14389717321.1029","",
"Central African Republic","CAF","GDP (current US$)","NY.GDP.MKTP.CD","112155598.949571","123134584.467673","124482748.937917","129379097.888958","142025069.461676","150574816.300764","157930041.875883","163820538.867947","191767436.956884","188039191.323608","189106554.521277","201450768.367553","230317908.038643","271183061.359635","281398668.160613","378660016.265936","451152449.984411","507298120.68315","610578523.761178","700764892.704831","797048028.773247","694803502.722356","748312283.726757","658679394.907969","637820620.670195","864849765.059664","1122265026.38274","1200991825.95398","1264899368.20165","1233930277.04922","1440711395.67069","1377375030.52921","1411917558.45855","1278781166.72188","851174350.649409","1115389731.79119","1007791186.20106","937741468.029676","967338348.658314","999477510.686632","914500299.097034","931833302.752857","991387870.12463","1139754799.16304","1270080250.65268","1350301057.06866","1460562038.37097","1698125617.92304","1985370057.92473","1981728140.77833","1986014845.63184","2212699746.81377","2184183758.31567","1518565219.01061","1702898939.55483","1583776759.97697","",
"Canada","CAN","GDP (current US$)","NY.GDP.MKTP.CD","41093453544.9096","40767969453.696","41978852041.4426","44657169109.224","48882938810.2204","53909570342.169","60358632035.1532","64768831262.1761","70759031841.7237","77887510241.7083","87896095224.4234","99271961477.5203","113082820992.019","131321859214.079","160408697648.262","173834029787.652","206575564401.623","211612156934.65","218632867449.812","243072102185.419","273853826377.01","306214863624.99","313506525087.136","340547711781.889","355372558103.621","364756499450.751","377437927311.983","431316742081.448","507354351182.254","565055743243.243","593929550908.468","610328183643.188","592387689252.916","577170761956.438","578139279437.61","604031623433.401","628546387972.131","652825364726.275","631813279406.808","676082654640.91","742293448252.643","736379777892.562","757950678646.53","892380986367.854","1023196003074.56","1169357979864.66","1315415197461.21","1464977190205.75","1549131208997.19","1371153004986.44","1613406134731.12","1788703385548.26","1824288757447.57","1837443486716.34","1783775590895.93","1550536520141.93","",
"Central Europe and the Baltics","CEB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","256113706106.991","242631763095.68","259823089212.43","273915101053.398","310702551105.138","386114770443.77","412629647650.116","408895194854.647","447448445095.855","433914929267.196","427550057344.787","468161747436.848","527146029826.051","634284044602.711","762451565964.507","885747884938.307","1001942861242.99","1260957151542.12","1523196376640.99","1279854244442.77","1312796514871.96","1446456838354.98","1350735184893.79","1421292996579.97","1461814882069.3","1281495024762.4","",
"Switzerland","CHE","GDP (current US$)","NY.GDP.MKTP.CD","9522746719.21614","10712712465.0522","11879982758.5619","13063643795.7884","14480556571.5476","15346741669.7575","16480058704.8531","17740013179.26","18942729779.1","20524886616.4789","","","","","","","","","","","118710309542.281","108721034568.781","111431738019.012","111035571006.622","106019113631.527","107496240242.562","154095512368.67","192981619165.773","208774024533.588","201572650956.66","257420293190.325","260459896582.985","271133679206.372","263691005481.862","291913801052.862","341759012938.689","329619351051.78","286604024805.347","294977518761.208","289884127679.404","271659728209.379","278628772872.719","301127808995.252","351982634291.23","393541693928.428","407535656039.19","429195591242.622","477407802315.895","551546962699.658","539528229942.101","581211708792.789","696311671959.459","665054050620.785","684835034384.327","702705544908.583","670789928809.882","",
"Channel Islands","CHI","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5945677376.61477","6262740656.85164","6439703434.71024","6232906290.4851","6663669064.7482","7332244897.95918","8553643354.08275","8827272727.27273","9676172953.08188","11514605842.3369","","","","","","","","","",
"Chile","CHL","GDP (current US$)","NY.GDP.MKTP.CD","4050727272.72727","4529818181.81818","5337818181.81818","5605562500","5861521739.13044","5971875000","6925641025.64103","6870588235.29412","7050724637.68116","8196511627.90697","8962831858.40708","10702459016.3934","11551923076.9231","16397067039.1061","15536336032.3887","7226476863.54379","9857547846.7433","13359145454.9675","15399431310.8023","20729772209.396","27572307600","32644872979.4872","24339421604.7928","19770402076.4056","19232737055.2396","16486012247.2958","17722536671.3316","20902096531.6075","24640912615.8116","28385038396.7035","31558927517.2188","36424168146.1543","44467946384.2462","47693992626.8649","55154226759.96","71349202308.6423","75769008174.2547","82808986191.6005","79373597080.1017","72995286764.4168","79328640263.7676","72336972322.4242","70984568428.6004","77840186384.8713","100630707851.787","124404150138.227","154671012210.645","173081277147.793","179626674542.406","171956955710.33","217538271334.673","250832362674.151","265231582123.55","277078709134.903","258733363811.966","240796388428.74","",
"China","CHN","GDP (current US$)","NY.GDP.MKTP.CD","59716467625.3148","50056868957.6732","47209359005.6056","50706799902.5103","59708343488.5043","70436266146.7219","76720285969.6157","72881631326.6715","70846535055.6503","79705906247.4612","92602973434.0726","99800958648.1436","113687586299.051","138544284708.957","144182133387.722","163431551779.761","153940455341.506","174938098826.569","149540650406.504","178282608695.652","191150000000","195865079365.079","205091603053.435","230685823754.789","259946428571.429","309486394557.823","300759420289.855","272973094170.404","312353909465.021","347767206477.733","360858508604.206","383372822299.652","426915227629.513","444730903968.185","564325246266.838","734548001963.907","863746361646.34","961603416246.472","1029043011921.59","1093997559885.48","1211346395438.73","1339395440432.04","1470549716080.71","1660287543796.06","1955347477285.91","2285965854313.36","2752132089196.58","3552182714426.55","4598205419718.8","5109954035775.98","6100620356557.32","7572554360442.62","8560546868811.69","9607224248684.59","10482371325324.7","11007720594138.9","",
"Cote d'Ivoire","CIV","GDP (current US$)","NY.GDP.MKTP.CD","546203561.571989","618245639.221382","645284344.684118","761047045.830402","921063266.445521","919771356.426097","1024103034.29198","1082922892.15202","1281281245.67032","1361360157.26999","1455482990.24143","1584128262.08933","1849400599.77558","2508421234.8557","3070151901.06383","3893839190.26806","4662053707.7763","6265067857.86534","7900524897.8644","9142935857.94766","10175615441.8127","8432588483.85262","7567109766.61129","6838185418.53642","6841638714.5454","6977650069.33578","9158302205.36237","10087653189.3287","10255170459.986","9757410614.0812","10795850106.9547","10492628915.4927","11152971316.074","11045759468.9412","8313557450.25213","11000146839.497","12139234938.7863","11722142706.1278","12612033728.8572","12376639822.9265","10717022462.6859","11192560827.2962","12346919216.1359","15306602560.2533","16554441846.5192","17084928927.4555","17800887796.4987","20343635319.6174","24224903099.6283","24277493862.0625","24884505034.5564","25381616734.0693","27040562587.1771","31264187110.3554","34217693110.4569","31759248867.8039","",
"Cameroon","CMR","GDP (current US$)","NY.GDP.MKTP.CD","618740988.011405","657597382.759152","699373701.217138","723624365.288138","782384527.813649","814139855.756458","853268771.097081","934079050.346173","1053077155.17925","1152418514.82616","1160002260.94729","1233991075.11626","1430951331.85034","1758727395.18703","2255496995.49378","2752771043.88609","3076592431.27204","3366368664.59706","4409920643.6422","5811444660.65752","6740756568.91566","7636345827.34308","7322914570.15588","7381854746.91628","7801858825.18416","8148223603.58399","10621158532.5193","12302471429.4318","12493286761.7341","11140055364.1502","11151578050.7356","12434370004.9586","11396310990.2197","13532137227.585","9220470913.32766","8733231184.34755","9732328115.73674","9840553235.89425","9629649416.89037","10486451144.4061","9287367235.25769","9633109349.64535","10879778384.1965","13621738837.1961","15775357014.6254","16587858856.6778","17953066721.0949","20431780377.8605","23322254113.5623","23381142146.6485","23622483983.7101","26587311527.5711","26472056037.7696","29567504655.4935","32050817632.9602","28415950981.4447","",
"Congo, Rep.","COG","GDP (current US$)","NY.GDP.MKTP.CD","131731862.568997","151675739.160627","166521239.863281","172233430.871502","185693724.845331","198318063.860835","220613582.369827","237397428.336429","251247458.012189","265040036.059116","274960699.85855","322128019.323561","410669262.897929","541973362.480998","585364635.354748","767102679.018622","754549600.548182","765224030.636552","878771771.29105","1198749665.95066","1705796849.54655","1993512325.92286","2160640566.5396","2097274289.61512","2193581366.40722","2160872541.41887","1849268214.68184","2297753649.2798","2212536313.33492","2389593021.94866","2798746050.58236","2724853507.63856","2933222705.80382","1918970177.74925","1769365438.87155","2116003868.17928","2540697537.71673","2322719101.29807","1949481380.64044","2353909441.71514","3219910666.03357","2794259756.13093","3019993723.13308","3495868724.68452","4648628839.53457","6087002681.74095","7731261310.93322","8394688284.06224","11859014004.0772","9593536531.23778","12007880590.4575","14425607224.168","13677930123.5919","14085852120.4761","14177437627.2969","8553154505.83585","",
"Colombia","COL","GDP (current US$)","NY.GDP.MKTP.CD","4040948153.73022","4552914000","4968603735.58222","4838841455.55556","5992169466.66667","5790247619.04762","5452762962.96296","5727195020.23203","5918455409.8099","6405427873.70755","7198360460.19887","7820380970.53674","8671358732.68486","10315760000.3394","12370029583.6419","13098633901.8673","15341403660.4698","19470960619.1297","23263511958.0509","27940411250.2732","33400735644.0481","36388366869.0309","38968039721.748","38729822781.5997","38253120737.9671","34894411351.983","34942489683.9712","36373307085.0887","39212550050.4223","39540080200.3938","40274204595.2296","41239551378.2482","49279585355.0948","55802538219.0264","81703500846.0364","92507279383.0387","97160109277.8087","106659508271.255","98443739941.1664","86186158684.7685","99886577330.7271","98203546156.3102","97933391976.083","94684584162.773","117074863821.85","146566264837.014","162590146096.414","207416494642.379","243982437870.84","233821670544.258","287018184637.529","335415156702.186","369659700375.52","380191881860.372","378416020533.715","292080155633.31","",
"Comoros","COM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","123505640.914474","114271897.268272","107089552.302395","111519676.021905","107489822.704044","114490697.57503","162487763.894624","196433684.042405","207476554.806734","198733185.875107","250030760.754786","246823428.906664","266191040.373328","263568114.445462","185761822.560488","231896229.562629","230495751.446593","212099634.697751","215394066.068976","222580453.753844","203846427.738737","220093812.206791","246737679.472106","317562269.371107","368143118.68996","380372892.606774","406111873.539847","462453582.873627","523134896.968654","524157261.014644","530493353.218937","586281766.75997","570865941.229393","618663921.771194","647720707.13635","565689764.52408","",
"Cabo Verde","CPV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","142246875.536716","139468114.599741","140630758.594899","138476239.366792","132019065.033419","137728155.212661","190651207.999511","235253171.841062","264308140.285149","267448513.108168","306891107.262039","319827058.592875","357160985.327413","490417389.682569","406580652.330537","487148993.533109","501979069.274683","490608657.924976","521910560.524868","592416703.058878","539227277.626411","563024383.296626","620974660.230303","813963830.179217","924318490.7598","971977088.156914","1107891063.43863","1513934037.24782","1789332788.19218","1711816593.14186","1664310632.50555","1864823990.99337","1751887838.54178","1850952140.46767","1881496591.95896","1603239233.28178","",
"Costa Rica","CRI","GDP (current US$)","NY.GDP.MKTP.CD","507513829.994855","490325181.614275","479180824.348506","511902136.809973","542578367.242598","592981162.264151","647305630.188679","699456618.867925","773841494.339623","853630203.773585","984830158.490566","1077152902.29104","1238251695.55388","1528916185.23199","1666544754.09836","1960863465.5776","2412555425.90432","3072427012.83547","3523208809.80163","4035519323.22054","4831447001.16686","2623807074.2948","2606621255.01581","3976453966.73983","4593908718.76172","4796628461.38614","5477895474.91039","5841132961.60586","6063759370.62937","6866402028.10997","7403457319.20472","7168999428.24471","8528593084.48749","9537297507.16915","10432619390.3609","11513472693.8707","11618286553.3677","12552071367.1539","13617405420.1174","14195623424.811","14949514585.1585","15913363335.0564","16504795453.2822","17195867540.353","18529767934.4743","19952156474.8454","22600431878.0024","26743874286.8514","30612932802.8991","30562361151.812","37268635328.7341","42262697853.6349","46473128236.8416","49639737973.791","50167623289.763","54136834090.867","",
"Caribbean small states","CSS","GDP (current US$)","NY.GDP.MKTP.CD","1917126410.97449","2074862072.56065","2189387094.28401","2325271098.79161","2512035609.75832","2704935019.63388","2933703027.8595","3149153145.8893","3131462661.91186","3407866371.85404","3749414955.15078","4076289004.18563","4718969795.62593","5155104117.33427","6701488054.12326","7841458422.56657","8046872065.97542","9355692300.77644","9525993220.62686","10904420481.9813","13391908896.5848","14775983902.1791","16399672559.6568","16609819590.7703","15832937075.482","15611995144.9387","14206679970.8465","15252921255.6627","16153000713.4386","16533068082.8804","17661720109.4436","17364653809.8246","17058262357.9543","17962545320.8625","19054481831.1813","20906271918.2545","22781024124.5685","25471508420.9683","27956872381.0541","29722106187.8639","32206770522.7467","33147903784.4191","34932778636.288","37469010151.1923","41154023578.6597","46626940300.6666","52391344060.0085","58271036698.0839","66468808733.2373","55921150434.8577","60761149603.2365","65729447339.2592","67849500795.2129","68731747698.309","68671706570.6589","66935278418.3676","",
"Cuba","CUB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","5693005244","6914658389","8135150888.7723","9987709686.36912","11405957363.4146","13027415252.439","13789579892.8136","14206158657.8313","17844705319.4805","19584443219.1781","19912889808.3333","20150254124.0964","20953510265.8824","22205716020.35","24039383641.4343","22921491786.9543","24226283927.4787","25213614325.1389","27458999535.6201","27025200369.1125","28645436550.5319","24317883624.0548","22085858204.0541","22367254851.3514","28448326795.9459","30428638304.4183","25017300000","25366200000","25736600000","28365300000","30565200000","31683300000","33590400000","35901500000","38202800000","42644200000","52742100000","58603500000","60806300000","62078600000","64328200000","68990140000","73139050000","77149700000","","","",
"Curacao","CUW","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Cayman Islands","CYM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1012444074.07495","","","","","","","","","","3207032512.94205","","","","","","","","","","",
"Cyprus","CYP","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","489914760.682807","576090073.715036","734887973.975806","964026512.197839","1288715209.58084","2154311276.94859","2087496373.77964","2159242416.76942","2160364071.19021","2278248953.14058","2430411900.19194","3090734463.27684","3704813885.50548","4278792597.23965","4563482603.5503","5591130217.66965","5770197348.48485","6912150456.32334","6590291048.29211","7425703928.57143","9826778783.9586","9899623588.45671","9594298745.72406","10353506787.3303","10614455231.931","10183317624.8822","10567304189.4353","11618269230.7692","14576896942.2424","17422375000","18703146374.829","20403713461.2972","24077470572.1325","27839460963.8201","25942622950.8197","25562251655.6291","27427161523.4918","25012206090.1966","24054965480.616","23308212816.7706","19559942331.1523","",
"Czech Republic","CZE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","40315845396.3126","29557058174.1697","34451993226.0347","40452245779.1651","47364869195.7617","59537113790.5049","66775046785.4354","61621364981.4187","66372594575.1707","64719461254.5271","61474265134.5364","67375623427.4642","81696651658.8981","99300329682.0164","118976023159.713","135990215966.674","155213006071.979","188818155388.125","235204812643.146","205729790694.015","207015860050.371","227948564356.715","207376427020.815","209402444996.104","207818330723.835","185156359571.116","",
"Germany","DEU","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","215021806498.156","249039217364.635","298667219346.133","396866742553.97","443618642959.716","488780155338.262","517787921003.573","598226205424.071","737668356280.428","878010536975.776","946695355820.96","797443405711.813","773638200773.757","767768378016.086","722367608343.069","729763282952.432","1042300769791.95","1293264353318.82","1395931548502.06","1393674332154.37","1764967948916.6","1861873895109.02","2123130870381.97","2068555542410.98","2205966011811.5","2591620035485.19","2503665193657.4","2218689375140.99","2243225519617.65","2199957383336.88","1949953934033.54","1950648769574.94","2079136081309.99","2505733634311.51","2819245095604.67","2861410272354.18","3002446368084.31","3439953462907.2","3752365607148.09","3418005001389.27","3417298013245.03","3757464553794.83","3543983909148.01","3752513503278.41","3879276587198.91","3363446822668.29","",
"Djibouti","DJI","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","340989527.967995","","373371738.286415","395794538.630775","409220087.102818","452328087.282876","462421998.525779","478058304.871118","466048469.22986","491689220.744875","497723960.589913","494004647.73437","502675542.001227","514267869.300758","536080148.097299","551230861.856506","572417440.820162","591122039.601398","622044665.515049","666072101.777505","708633194.726566","768873684.032838","847918929.107984","999105339.267729","1049110684.72493","1128611700.3618","1239144501.77525","1353632941.5207","1455000000","1588000000","1727000000","",
"Dominica","DMA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","36370370.3703704","45170370.3703704","44296296.2962963","59100000","66218518.5185185","72051851.8518518","79925925.9259259","89848148.1481481","98585185.1851852","112074074.074074","126348148.148148","143766666.666667","153374074.074074","166322222.222222","180437037.037037","191759259.259259","200418518.518519","215459259.259259","224037037.037037","236444444.444444","245781481.481481","258440740.740741","267740740.740741","335845814.814815","343119370.37037","337695740.740741","350091222.222222","374771481.481481","370370370.37037","390370370.37037","421375851.851852","458190185.185185","489074333.333333","493824407.407407","500988407.407407","485905592.592593","508447148.148148","528178703.703704","517218962.962963","",
"Denmark","DNK","GDP (current US$)","NY.GDP.MKTP.CD","6248946880.2777","6933842098.84548","7812968114.40012","8316692385.77386","9506678762.77765","10678897387.0006","11721248101.0874","12788479692.1939","13196541952","15009384584.5333","16866156733.3333","18823150290.1849","22966364108.6153","30459579436.3171","33900564767.2644","40251071473.3215","44401699735.3185","49666416194.6962","60281337504.0801","70309794677.8179","70867465285.0476","61376989330.9375","59916301293.7449","60188398261.345","58673426983.7591","62220601827.0356","87800282647.386","109150052132.216","115111916809.032","111886844190.309","138094873105.387","138964910325.96","152690732178.062","142962900445.719","156144903578.279","185006961302.299","187632400365.599","173537588008.176","176992000955.11","177965224620.854","164158800460.219","164791416350.267","178635160297.415","218095997085.477","251242843551.268","264559522419.917","282961088316.405","319500339842.387","352591553716.09","319762353336.194","319810991980.939","341498686832.939","325012162409.979","338927058604.182","346119472127.525","295091333721.319","",
"Dominican Republic","DOM","GDP (current US$)","NY.GDP.MKTP.CD","672399700","654100200","824100000","940799900","1025599900","888100000","983900000","1034800000","1079100000","1230500000","1485400100","1666400000","1987300000","2344699900","2925600000","3599300100","3951399900","4587100200","4774400000","5498800100","6631000100","7266999800","7964000300","8622000100","10330399700","5044592912.6775","6122197810.14358","5826987203.49563","5374315190.18405","6686592728.70663","7073674721.12418","9724402004.34906","11277676879.9612","12976408000","14511134920.6349","16358496124.031","18131813000.6281","19593869595.0191","21171523985.0642","21709726722.118","23996063503.0497","24892521236.9553","26571620978.7885","21277165885.6865","22039232609.9553","34004033803.9438","35952845582.5029","44169678153.1566","48288967303.4896","48376555305.6902","53954579003.5277","57746684847.0898","60613645121.3529","61965942056.6828","65231032303.2418","68102618092.1031","",
"Algeria","DZA","GDP (current US$)","NY.GDP.MKTP.CD","2723637614.73246","2434766868.70395","2001460830.68173","2703004013.16486","2909340109.86137","3136284383.52788","3039859261.76752","3370870458.70498","3852147120.94702","4257253368.16603","4863487558.0437","5077222325.18392","6761786485.49438","8715106138.73716","13209713766.2621","15557934472.8677","17728348385.244","20971901064.9137","26364491683.6933","33243421341.4536","42345276289.6781","44348670715.7417","45207090660.8991","48801372218.3647","53698280328.201","57937867711.8946","63696299980.7874","66742269085.575","59089065518.2217","55631488295.4747","62045098374.5482","45715367087.1001","48003298223.1178","49946455210.966","42542571305.5136","41764052457.8814","46941496779.8499","48177862501.9495","48187747528.899","48640611686.2439","54790060512.8886","54744714109.9527","56760288396.3756","67863829704.7613","85324998959.3018","103198229168.23","117027304787.836","134977088396.419","171000692134.748","137211039899.57","161207268840.911","200013050828.17","209047389599.67","209703529364.331","213518488688.12","166838617796.555","",
"East Asia & Pacific (excluding high income)","EAP","GDP (current US$)","NY.GDP.MKTP.CD","80241339128.8783","70437983922.0771","64546403774.2208","69894796594.2863","81035899937.659","94570465280.0141","103528661460.871","100316006533.309","101251938260.646","113695250417.366","126740232937.71","136296959912.844","154623231902.787","194678554019.701","219634043048.944","246915566547.734","250620944458.515","289612088429.003","280375135983.564","324765848761.169","374728894277.548","399872325787.625","419668952678.989","440367581374.234","478047328926.5","523892552364.501","522413608977.217","515967291747.553","572273738390.468","618500258533.005","662891978829.35","719417592890.453","806171582652.985","885033666770.844","1064622027460.05","1314002873498.71","1509270303766.35","1563298963567.49","1432831757577.68","1576110546627.92","1737302025659.8","1848413799512.67","2045781401130.8","2315488185610.91","2685219774441.73","3105503270279.74","3737059585645.92","4726989859324.12","5983900373447.2","6492582615838.28","7874408656465.45","9625266841404.77","10736769842106.4","11853045962066.8","12744038926443.9","13204697929245.8","",
"Early-demographic dividend","EAR","GDP (current US$)","NY.GDP.MKTP.CD","137032283006.273","137941126775.032","143069504490.714","160365703235.007","178248471833.238","193973744560.283","190288216137.978","206276191231.199","223246857541.215","247639337107.65","263289717807.155","285273255436.599","324608329696.747","418694621793.721","586720702941.226","633683496299.801","695873429623.503","778931204305.157","862397154617.097","1047362501012.63","1292010559529.74","1443137975983.69","1374358125216.96","1388121937327.87","1368520438218.83","1401724312689.92","1422104547603.47","1433336995796.76","1540034567121.31","1572388698862.15","1810513753929.16","1915237484443.39","2102280142810.76","2310149108627.52","2418056627002.87","2479089157870.46","2705544161322.73","2890632775567.44","2845209259842.69","3017793861581.35","3271967321157.58","3233966470105.26","3140030891085.01","3509266702658.56","4075718316014.7","4750050191265.48","5436092019721.15","6418386768698.49","7238826269992.94","6961460671011.43","8449845940086.97","9509083662637.19","9867184358658.49","10072906938919.1","10272235327113.6","9954238279020.75","",
"East Asia & Pacific","EAS","GDP (current US$)","NY.GDP.MKTP.CD","153278339254.612","153726215210.34","157283459302.192","175457389560.754","201629716320.391","224561572786.708","251056239316.127","272007890945.638","299706514597.919","345225530267.611","404576266159.762","449008129253.91","556902739055.31","733864261877.134","845336026800.63","925639778777.88","1017788673041.41","1213021362942.56","1529392500298.03","1661895895200.09","1796003496793.23","1983406669970.87","1943335461742.92","2060987809205.37","2210819227698.01","2344077132852.22","3054760207470.39","3571798735593.13","4298736775295.44","4498066215128.64","4707083593568.79","5299935404092.55","5784072843452.71","6492983128060.47","7302450349683.79","8296888198932.1","7995268452539.96","7648877951119.32","6856415644257.03","7653850011698.57","8280362227659.96","7701885917377.2","7823203912868.56","8604013984061.56","9649783402039.49","10291032636613.4","10910160886886.9","12197606187774.8","14090181440895.9","14518675457377.2","16930798136727.1","19632016805145","21005948724296.5","21247046366106.4","21878559873531","21680001088700.4","",
"Europe & Central Asia (excluding high income)","ECA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","863786604279.225","926166677522.17","900121175271.648","826771122519.777","814090531164.312","706739532705.023","754577171678.66","764203110383.01","796343755208.857","739951045277.491","620913915127.528","691863168183.839","689527076916.968","787659459424.924","994036235594.218","1313402116211.85","1662609575759.26","2042283445024.87","2638926106964.16","3268050141427.26","2562341955935.49","3053842295156.74","3752208594047.39","3910201225690.66","4115780776255.45","3872245331250.1","2893200381188.96","",
"Europe & Central Asia","ECS","GDP (current US$)","NY.GDP.MKTP.CD","431355839671.106","459170251135.776","502000322747.491","553562283855.615","613027708696.367","667080143782.017","724715402222.524","779728680887.835","813214395382.861","892827100050.157","1003995222815.65","1132271772599.53","1356865596934.54","1723401183458.68","1947240133503.76","2274986136250.29","2364659687248.44","2679907026559.93","3271055892209.48","4001877043835.18","4532835010186.54","4034163488841.65","3887354115628.21","3771126415020.16","3624591553713.59","3751182945244.98","5120173366670.13","6327324510820.55","7039568087987.75","7188661818369.01","8815129327775.33","9106558431110.41","9777881290943.76","8987577727891.38","9400336574147.68","10827840563244.2","11055038683943.4","10489729598008.9","10743184338261.8","10622395538177","10004680281892","10108407235086.2","11055307886831.2","13466740830806.8","15696981556575.2","16712538698601.1","18086810456079.8","21131395781055.5","23182957839432.9","20386414844982.1","20860324015961.9","23084440935487.4","22175099945621.3","23127060161230.6","23438794298167.3","20076819049411.7","",
"Ecuador","ECU","GDP (current US$)","NY.GDP.MKTP.CD","1010325138.03016","979108806.848646","958598195.033967","1038389642.31418","1156150890.06133","2387048255.45173","2429309513.80854","2553596091.82258","2582180794.1855","3112166848.3004","2862504169.99893","2754220263.02528","3185987234.84089","3891755551.94138","6599259420.99605","7731677256.80982","9091924304.83477","11026346589.5011","11922502170.6405","14175166007.5774","17881514682.8784","21810767209.3695","19929853574.6095","17152483214.3536","16912515183.2783","17149094589.9827","15314143988.0621","13945431882.2271","13051886552.3377","13890828707.6493","15239278100.3502","16988535267.6338","18094238119.0595","18938717358.6793","22708673336.6683","24432884442.2211","25226393196.5983","28162053026.5133","27981896948.4742","19645272636.3182","18327764882.4412","24468324000","28548945000","32432859000","36591661000","41507085000","46802044000","51007777000","61762635000","62519686000","69555367000","79276664000","87924544000","95129659000","102292260000","100176808000","",
"Egypt, Arab Rep.","EGY","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","5111621013.54303","5339520612.99374","5579168509.50907","6109112149.53271","6861743341.40436","7682491836.22206","8266003570.51773","8763960703.20579","9616725366.34664","9015166839.80885","11437965585.2696","13360476861.9662","14636028766.883","14849909490.6004","18150000571.4286","22912500555.5556","23405404729.7297","25592365394.0887","28137369499.4179","30642873038.0563","34689560464.8728","35880262675.3976","40507934171.249","35044634014.7643","39648442534.0768","43130416913.4141","36970555898.9698","41855986519.4235","46578631452.581","51897983392.6453","60159245060.4542","67629716981.1321","78436578171.0914","84828807556.0803","90710704806.8416","99838543960.0763","97632008709.853","87850683978.6691","82924503942.6381","78845185293.4964","89685725230.2517","107484034870.974","130478960092.499","162818181818.182","188982374700.805","218888324504.753","236001858960.015","276353323880.224","286011230726.274","301498960051.639","330778550716.746","",
"Euro area","EMU","GDP (current US$)","NY.GDP.MKTP.CD","245390378748.261","270109678134.316","299750573349.815","336272941952.715","374011495405.369","408120450523.738","445041786632.831","483443030099.912","518265311688.858","572534263562.754","641456372368.623","727040801347.199","878366402272.365","1140207694759.2","1292903871164.49","1499283543177.99","1564508107946.42","1779449807210.56","2179030771092.87","2639748934267.17","2956718107132.23","2569804292884.26","2487957052965.15","2427176096903.09","2328246766937.75","2392040657772.86","3357219289550.93","4152718914781.65","4567291283886.87","4665578572241.61","5871656645134.78","6104489695774.77","6734856515544.05","6168616485331","6515454998071.25","7520045881574.81","7611691302816.19","6959447009815.21","7151033105342.19","7119189441578.11","6486766445998.76","6593013874355.19","7173295561529.75","8850248076200.64","10151472316229.4","10534958222257.9","11183905580486.2","12876832272056.3","14114661589931.1","12904468939581.8","12642837785468.2","13620861374383.9","12640918540636.7","13194935676086","13449400968442.7","11602355422313.4","",
"Eritrea","ERI","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","477101651.648376","467872714.755603","531688311.688312","578015625","693535954.190067","686490090.140141","745526154.93283","688921325.712043","706370815.584416","752368495.512622","729321366.65186","870247703.182758","1109054005.43971","1098425900.74116","1211161879.6748","1317974491.05691","1380188800","1856695551.21951","2117039512.19512","2607739837.39837","","","","","",
"Spain","ESP","GDP (current US$)","NY.GDP.MKTP.CD","12072126075.397","13834300571.4849","16138545209.246","19074913947.7196","21343844643.7341","24756958694.9238","28721062242.1634","31647119228.1982","31475548481.4095","36038711599.541","40881655098.6451","46492797365.2695","58971806626.9739","78425934894.3461","97009800115.3735","114465300289.855","118185307386.222","132089531434.83","160163483072.917","214019077342.588","232134606637.271","202257045774.013","195464408602.151","170486866357.309","171635463361.623","180302412230.92","250638463466.793","317882187036.787","375138723325.239","413630538018.271","535101248775.71","575598537069.656","629202392003.901","523649481762.322","529121577319.588","612939685081.398","640998292394.588","588692045454.545","617041986858.225","633194118900.49","595402616546.895","625975838926.175","705145868624.13","906853273137.698","1069555500372.49","1157276458151.97","1264551499184.54","1479341637010.68","1634989014208.29","1499074742984.16","1431672847682.12","1487924659438.42","1339946773437.24","1369261671179","1381342101735.68","1199057336142.84","",
"Estonia","EST","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4373658536.58537","4746104825.07478","5066242110.00902","5617109800.86773","5726895229.98296","5685773518.84272","6245072061.58804","7322068380.89856","9833875338.75339","12059204968.9441","14006093769.4317","16963630661.1467","22237065425.6775","24194038377.0324","19652486801.8894","19492092715.2318","23168793438.9769","23043861554.8714","25081191938.2942","26213936937.2806","22459443273.8161","",
"Ethiopia","ETH","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","7324903188.4058","7707678019.32367","8567890821.25604","8096302367.14976","9480840483.09179","9848600869.56522","10527338647.343","10908935748.7923","11476584879.2271","12175166763.285","13463868357.4879","10492993077.6093","8830712713.90781","6927950564.55657","7663984567.90123","8547939730.62374","8589211390.49612","7818224905.55071","7700833482.00615","8242392103.68061","8231326016.47494","7850809498.16803","8623691300.04079","10131187261.4421","12401139453.9738","15280861834.6024","19707616772.7996","27066912635.2228","32437389116.038","29933790334.3418","31952763089.33","43310721414.0829","47648211133.2183","55612228233.5179","61539711686.6936","",
"European Union","EUU","GDP (current US$)","NY.GDP.MKTP.CD","358973310479.087","390826173410.591","426948208742.869","470341177054.365","521246537495.531","567643719474.381","615341581028.053","661228951389.842","687278153765.188","754867182986.745","855013336211.438","967143231476.094","1158039129021.74","1470437883220.61","1652625118353.64","1926734187808.65","1995542143588.9","2259910897150.78","2769591922881.39","3382518839592.65","3860662821207.99","3415748726965.02","3287386275222.24","3186484195548.07","3059522434138.34","3162057396688.02","4336364303423.7","5365621783219.87","5984971790356.35","6110946842667.26","7578343369140.01","7864846055394.38","8570210309832.78","7814538244828.41","8298364366748.02","9610436328499.14","9824633811450.75","9273326737662.55","9589851317979.81","9576747414753.8","8899098560677.52","9000492533982.27","9810780862313.71","11945411092672.8","13795083011583","14426312876485","15388308306700.9","17780815715073.5","19116323323698.4","17078416415530.7","16975514981942.3","18336368276396.3","17272908797234.1","18005490572832.6","18573805333297.7","16311897169595","",
"Fragile and conflict affected situations","FCS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","212661616253.383","196781931484.594","190816467210.457","217472505124.767","247331717280.084","300124279878.601","351606438399.484","435172552258.66","561422385038.491","523726776174.015","623521862944.273","675466940622.675","728679199192.476","779083883579.066","810209329811.861","746905224014.253","",
"Finland","FIN","GDP (current US$)","NY.GDP.MKTP.CD","5224102195.52771","5921659485.03284","6340580854.39073","6885920328.66187","7766655085.78588","8589340019.02985","9208524504.87684","9368954010.3132","8823033880.32993","10070766720.5011","11365953567.3839","12536710287.0134","14754136507.0261","19486826979.9284","24867278714.3532","29494515597.22","31873171718.726","33524682307.8058","36283091407.9422","44498283620.8213","53685049410.2646","52485533204.7396","52832120389.7866","51014090520.9223","52926394934.7052","55914236377.5902","73586676049.7302","91642093872.5822","109103056147.832","119064708327.56","141517648888.198","127866490222.026","112625431377.754","89255751014.885","103321570859.419","134199346405.229","132099404607.818","126833123353.568","133936359590.565","135225868314.511","125539893126.958","129250111856.823","139552983248.635","171071106094.808","196768065557.487","204436015420.968","216552502822.732","255384615384.615","283742493042.332","251499027507.641","247814569536.424","273657214345.288","256706466091.089","269980111642.898","272463347978.069","231949650659.865","",
"Fiji","FJI","GDP (current US$)","NY.GDP.MKTP.CD","112328422.113084","116987784.913739","122906434.957814","129454728.623599","140032741.468329","147084750.031482","150603925.515853","162625885.863484","166952937.135005","182182067.703568","219878482.173564","247749327.721267","316650508.967523","425963359.355326","558589870.903674","684268280.812751","694552411.718837","719533137.126662","829239489.844119","1019743927.24662","1202567359.4132","1235899836.18067","1194015444.01544","1123107276.30285","1177997413.63384","1141210124.82663","1290228616.82408","1177908191.97685","1109976927.91722","1182686577.22645","1337024782.22702","1383843860.1247","1531803060.54558","1635426125.30808","1825285158.11762","1970347720.96992","2129266728.42585","2093994597.21549","1656784779.545","1942170999.18765","1684109743.49338","1660102345.60309","1842691481.09196","2315935752.71653","2727507212.92556","3006725014.78415","3102741451.01664","3405050611.68726","3523185919.55826","2870624635.68032","3140508835.9485","3774530588.88398","3972012545.85528","4190143229.08891","4469810123.71644","4425503074.70408","",
"France","FRA","GDP (current US$)","NY.GDP.MKTP.CD","62651474946.6007","68346741504.4257","76313782251.6964","85551113767.3727","94906593388.3107","102160571409.274","110597467198.645","119466139619.589","129847107787.883","140725497222.277","148948860281.091","166564460755.298","204283485045.514","265381555686.506","286526186579.378","362000917852.226","373410270417.919","411464295266.114","508183139534.884","615834104224.484","703525302701.025","617589619794.81","586837009681.605","561852138738.274","532648802822.187","555197109067.017","774556302680.178","938368438284.405","1023504019381.13","1030122352457.33","1275300566196.84","1275563306592.26","1408724907063.2","1330094973361.13","1401636342155.01","1609892232882.11","1614245416078.98","1460709148123.17","1510758283299.98","1500275942893.67","1368438363736.87","1382218344519.02","1500337850555.24","1848124153498.87","2124112242364.04","2203678646934.46","2325011918203.49","2663112510265.54","2923465651091.26","2693827452070.02","2646994701986.75","2862502085070.89","2681416108537.39","2808511203185.39","2839162443235.14","2418835532882.33","",
"Faroe Islands","FRO","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1105688872.97039","1125684470.05533","1062339943.83343","1154899793.33878","1268445919.41429","1486861878.95624","1683997930.26322","1730891409.07567","1970142377.91507","2278229533.05096","2413237402.14803","2257097731.55019","2301178416.00619","2468748767.9772","2356505419.09755","2613458942.48139","","","",
"Micronesia, Fed. Sts.","FSM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","106500000","","","112210000","116700000","124700000","135200000","147200000","166200000","178100000","198400000","202500000","222103600","218845700","206900300","219646200","220660500","233226300","240051900","241543400","244991000","239563300","249845600","252991200","255890800","261339600","277510900","294117200","310287500","325835200","315725600","318072000","314971100","",
"Gabon","GAB","GDP (current US$)","NY.GDP.MKTP.CD","141468977.570007","167637907.381723","182796536.499884","154480244.246844","215679855.272516","226474285.587109","245849781.7159","271543680.279285","294468564.534369","318124701.048949","323802475.480977","381687073.058558","430508357.723916","722780701.123251","1544216003.9841","2157592936.60712","3009409970.90514","2809349074.17738","2389479269.18878","3030251116.35999","4279637933.85126","3862269126.92642","3618007844.44919","3391275731.31834","3561451562.23569","3339914759.37269","3403638193.57912","3281797038.66591","3834503378.35525","4186411457.4569","5952293765.84484","5402919956.93831","5592390848.52648","4378645081.01769","4190819314.02958","4958845906.34769","5694040336.82571","5326816858.99586","4483417119.83928","4662992036.2073","5067865320.7979","5018874179.18704","5310381151.35952","6497305662.09274","7756293574.98077","9458884812.18106","10154041929.6521","12438956756.4455","15508574820.3516","12065138272.7538","14358584300.3006","18186478119.9582","17171447372.3334","17590716232.4913","18179717776.1597","14262032470.8493","",
"United Kingdom","GBR","GDP (current US$)","NY.GDP.MKTP.CD","72328047042.1588","76694360635.9159","80601939635.2483","85443766670.4279","93387598813.9269","100595782309.165","107090721447.057","111185383409.521","104702736248.084","112676874821.987","130671946244.3","148113896325.14","169965034965.035","192537971582.558","206131369798.971","241756637168.142","232614555256.065","263066457352.172","335883029721.956","438994070309.191","564947710899.373","540765675241.158","515048916841.37","489618008185.539","461487097632.349","489285164271.047","601452653180.885","745162608269.325","910122732123.799","926884816753.927","1093169389204.55","1142797178130.51","1179659529659.53","1061388722255.55","1140489745944.29","1320255641470.73","1392979719188.77","1537090700720.37","1623564094070.88","1652167933991.26","1635441065214.1","1613034403339.57","1757571942446.04","2028488163265.31","2389004027828.63","2508103636363.64","2678277828886.84","3063005202080.83","2875463235294.12","2367127278392.27","2429602904820.77","2608995353308.76","2646002634059.62","2719509472492.7","2998833559195.71","2858003087965.69","",
"Georgia","GEO","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7753501867.76095","6357615894.03974","3690328963.64086","2701181331.30816","2513870586.73344","2693731865.97036","3094915505.9093","3510540809.24855","3613500117.24928","2800024313.95144","3057453482.55826","3219487824.87911","3395778673.79183","3991374548.50512","5125273880.74998","6410941012.59189","7745406200.85374","10172869679.7366","12795044472.7663","10766809099.0721","11638536890.5347","14434619982.2117","15846474595.773","16140047072.2616","16509305827.7171","13965385801.7891","",
"Ghana","GHA","GDP (current US$)","NY.GDP.MKTP.CD","1217230094.97205","1302674324.88378","1382515654.47343","1540797588.57221","1731296199.52296","2053462968.0426","2126300672.22965","1747187644.9031","1666909517.65205","1962050555.7775","2215028588.45646","2417108577.52739","2112293279.98507","2465493032.25878","2894409912.1709","2810106390.10618","2765254360.20623","3189428571.42857","3662478172.79996","4020227931.15097","4445228057.45354","4222441673.17049","4035994383.38367","4057275077.68156","4412279865.40315","4504342152.98679","5727602648.75537","5074829931.97279","5197840972.6857","5251764269.91812","5889174833.90034","6596546195.65217","6413901601.83066","5966255778.12018","5444560669.45607","6465137614.6789","6934984709.48012","6891308593.75","7480968858.13149","7719354838.70968","4983024408.14828","5314909953.92992","6166330136.2948","7632406552.83803","8881368538.07671","10731634116.7384","20409257610.4746","24758819717.7074","28526891010.4925","25977847813.7422","32174772955.9748","39566292432.8615","41939728978.7281","47805069494.9082","38616536131.648","37543361203.5609","",
"Gibraltar","GIB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Guinea","GIN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","1922600899.3841","2041538057.02893","2384295763.72549","2432029380.43694","2666616176.91609","3014890569.04099","3284625277.16186","3279063317.63475","3383218922.79336","3693753379.05992","3869032270.91633","3783788551.0819","3588376057.01536","3461282293.64624","2995360969.16199","2833442750.43639","2949637039.04424","3446442218.89829","3666349049.42641","2937071767.25576","2931625104.50109","4134173275.1244","4515824647.43939","4609923756.18485","4735956493.06479","5067360009.39197","5667229758.9878","6231725484.55943","6624068015.50039","6699203543.29047","",
"Gambia, The","GMB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","44212353.6988296","46695363.1558873","41160658.5705371","45168722.6995632","52296836.749388","55728608.974983","59161544.9957528","75187969.924812","95797533.4619206","115182522.123894","112189468.481826","138094243.349324","171836793.402694","207114382.546071","241080708.89018","218764445.784343","216051495.959817","213446562.57106","177338801.93075","225724851.691107","185646209.386282","220626484.224811","266673126.229801","284119692.49433","317083373.524559","690314321.374999","714255460.503389","755042548.055824","746491692.583857","785996982.492168","848237108.56163","803630742.53446","840285264.631545","814723460.08372","782915402.421095","687408804.630527","578236035.104279","487038821.611959","578785278.7703","624174723.713404","655068695.952711","798870894.208271","965769128.170004","900639747.939529","952429030.415536","904256643.415984","912569686.7859","903779326.206421","849122624.781348","938794719.358588","",
"Guinea-Bissau","GNB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","78733594.8444943","78540057.1428572","87702828.5714286","89374237.2881356","98775328.9473684","108985740.159382","112386489.013558","114971207.198201","122666858.789625","118537875.125881","110653830.726033","154731969.69697","165523634.49692","163577538.330494","138478900.626886","143856253.125","130225018.751674","173836362.010107","164458120.314078","213143016.443434","243961995.509711","257150573.215747","226313492.713567","236880813.821765","235619994.759074","253966919.939838","270419779.418107","268551010.941186","206457553.397101","224446652.14622","370173851.946119","392278164.416457","415843479.84486","476388249.278706","531109346.815739","586791836.059541","591829897.549245","695606313.878293","864136798.741659","825828719.797396","846332419.519942","1105497821.87289","995581992.41106","1026664110.62589","1109007405.7031","1056776883.4727","",
"Equatorial Guinea","GNQ","GDP (current US$)","NY.GDP.MKTP.CD","","","9122751.45318345","10840095.1283649","12712471.3960211","64748333.3333333","69110000","72317446.9327193","67514285.7142857","67225714.2857143","66331428.5714286","64946954.756798","65429198.238708","81203226.9138345","94159862.7073691","104295643.388437","103653049.93797","103987520.075827","","","50642880.7737503","36731422.8456914","44294647.733479","44442456.94764","50320914.4065688","62118564.8495425","76407396.7552964","93345847.7270323","100534663.294927","88265974.5843603","112119406.548331","110906032.075075","134707184.355541","136047896.155778","100807001.813926","141853368.256815","232463036.435759","442337849.474377","370687618.717326","621117885.668503","1045998496.43872","1461139022.02954","1806742742.27311","2484745935.09329","4410764338.66733","8217369092.65224","10086528698.8604","13071718758.7373","19749893536.3204","15027795173.2187","16298542027.9965","21329395900.871","22389627294.4179","21942597765.3631","21461989483.1265","12202323684.1015","",
"Greece","GRC","GDP (current US$)","NY.GDP.MKTP.CD","4446528164.67559","5016048786.22753","5327573509.09843","5949478034.88751","6680298250.57961","7600579093.1158","8455611129.27936","9136711287.82434","9915140546.35072","11266091570.5718","13139862500","14591755681.8182","16885506818.1818","22347844649.0219","25351305681.8182","28525872476.0893","31152840485.0746","36176233117.4838","44270203153.9889","54481875804.9678","56829663469.2246","52346507380.0738","54617991326.5306","49428872678.0186","48020024788.3918","47820850974.5867","56379593719.5716","65652751132.3603","76261278404.9964","79169043642.4675","97891090928.6328","105143232379.884","116224673042.546","108809058858.502","116601802106.742","136878366230.328","145861612825.595","143157600024.959","144428172835.236","142540728958.023","130133845771.144","136191353467.562","153830947016.751","201924270316.027","240521260988.329","247783001865.44","273317737046.795","318497936901.177","354460802548.704","330000252153.376","299379400264.901","287779921184.32","245670666639.047","239862011450.103","236079774688.445","194851319174.892","",
"Grenada","GRD","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","53322222.2222222","67548148.1481481","78314814.8148148","83614814.8148148","87888888.8888889","95229629.6296296","101211111.111111","110100000","128211111.111111","144011111.111111","167229629.62963","184533333.333333","213066666.666667","221070370.37037","241570370.37037","250914814.814815","250259259.259259","261777777.777778","276296296.296296","294651851.851852","304940740.740741","340814814.814815","379629407.407407","520044370.37037","520444185.185185","540336925.925926","591018407.407407","599118592.592593","695370296.296296","698518518.518518","758518518.518518","825925925.925926","771278111.111111","771015888.888889","778648666.666667","799882148.148148","842571333.333333","911481481.481481","984074074.074074","",
"Greenland","GRL","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","69520029.2730826","88570999.351486","106101302.474152","140153753.721821","169918944.063056","211192463.686328","240779415.675002","282269773.042773","355987428.402836","420645794.968404","476051769.013942","435749013.870185","402403057.151259","416184086.23097","379371913.715958","412876395.826869","603016317.536303","787390447.323345","898607670.624413","929799902.191124","1018977225.44427","1016500016.28505","1037916105.23293","927214127.934317","1005887592.03539","1208953358.99709","1197515637.92052","1072154406.78905","1149858126.95747","1131555107.04907","1068024993.98697","1086170638.72901","1169136691.35372","1402452661.58715","1617227233.70446","1650283229.19637","1811232804.76516","2039990870.18161","2301745558.05339","2314737666.79517","2287220565.1596","2503747856.84595","2356004770.79887","2419043094.32119","2441226080.03611","","",
"Guatemala","GTM","GDP (current US$)","NY.GDP.MKTP.CD","1043599900","1076699900","1143600000","1262800000","1299099900","1331399900","1390700000","1453500000","1610500000","1715399900","1904000000","1984800000","2101300000","2569200100","3161499900","3645900000","4365300200","5480500200","6070600200","6902600200","7878700000","8607500300","8716999700","9050000400","9470000100","9721652086.95652","7231963515.98173","7084399840","7841602824.42748","8410724360.79546","7650125217.35253","9406097735.09117","10440842165.3193","11399942453.0646","12983235568.2292","14655487455.7333","15674852771.1356","17790095900.9809","19395461989.5391","18318512501.0256","19288926545.3759","18702822231.5441","20776640696.3172","21917585083.5311","23965291458.4846","27211380858.3989","30231141667.5908","34113102014.6358","39137157753.2425","37733852002.6442","41338340406.3129","47654704787.0678","50388418158.5954","53851075503.9906","58722087391.6801","63794152886.0397","",
"Guam","GUM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Guyana","GUY","GDP (current US$)","NY.GDP.MKTP.CD","170215248.206265","185848451.262906","194948375.430205","175756868.692761","194773376.888526","213235294.117647","228705882.352941","250176470.588235","229750000","249300000","267800000","282050000","285380952.380952","307047619.047619","433954545.454545","494791666.666667","454440000","449880000","507080000","530440000","603200000","570357107.142857","482000000","489333333.333333","437631605.263158","453488372.093023","504651139.534884","354591846.938775","413799990","379779389.705882","396582263.291139","336708419.499106","368281378.896883","442273433.179724","540874934.201012","621626785.915493","705406001.424501","749138009.564539","717530683.169567","694754988.258295","712667896.727512","696281471.678532","722460886.371384","741929342.788749","785918769.587635","824880550.343965","1458446872.26976","1740334781.83731","1922598121.23066","2025565089.48272","2259288396.24467","2576602497.33479","2851154075.95385","2990006533.77749","3077086275.94585","3166029055.69007","",
"High income","HIC","GDP (current US$)","NY.GDP.MKTP.CD","1060322328687.03","1121789804917.26","1211528305037.71","1304637989627.26","1424265592582.7","1546700196489.56","1696554147621.83","1820638749150.03","1972917856498.51","2165751426754.44","2379487273487.65","2640615477596.74","3062364192011.42","3703809273179.76","4179327095404.25","4661333119867.68","5077358199082.72","5749004943397.56","6883395623422.94","7961151276391.44","8893408226771.85","9030569241515.01","8945640240812.41","9234644577947.59","9632297964538.36","10125386486775.6","12285415719080.1","14226574642631.3","16022604420204.5","16786824799794.1","18877212227195","19960292030804.4","21472359200190.1","21663319849538.7","23272281690330.8","25841473174553.8","26074877577691.7","25645864389789.5","25731094889581.6","27030237070511.6","27590724978907.1","27328542899937","28483994204052.5","31944334667510.3","35561388039475.8","37603596531369","39683027319381","43372052269204.2","46070298439187","43170493268429.4","45235414987769","48813705864191.6","48836103404031.7","49357787504747.4","50323944271948.5","47411505789615","",
"Hong Kong SAR, China","HKG","GDP (current US$)","NY.GDP.MKTP.CD","1320796651.69457","1383681651.13776","1612346412.26475","1935298266.45384","2206466461.26434","2435078534.03141","2489845016.64894","2692474989.12571","2716964388.42418","3189740055.13982","3800766535.62088","4476001946.01486","5710107420.14394","8030117555.62033","9388663645.7588","10048022369.9141","12876366008.8077","15719433719.4337","18315007365.9713","22526035940.5921","28861759209.0191","31055409443.043","32291306281.8168","29907091339.5364","33511383985.6741","35699543050.7778","41075570591.9291","50622571586.1149","59707404560.5944","68790369107.2962","76928290841.8701","88959620135.8864","104272278634.731","120353947980.764","135812069768.646","144652912433.103","159717233621.659","177352785419.977","168886163221.567","165768095391.557","171668164082.555","169403241524.337","166349228737.386","161384522525.299","169099768875.193","181570082162.19","193536265094.364","211597405593.868","219279678430.164","214046415026.187","228637697575.04","248513617677.287","262629441493.476","275658844765.343","291228511368.179","309234500374.107","",
"Honduras","HND","GDP (current US$)","NY.GDP.MKTP.CD","335650000","356200000","387750000","410200000","457000000","508650000","549950000","598100000","646800000","668000050","723000000","731000000","802999950","912499950","1034500000","1124000000","1347999950","1669499950","1929499950","2251499950","2566000050","2819500000","2903500050","3076999950","3319000000","3639499950","3808500050","4152499950","3970386266.09442","3563448310.34483","3048881322.9572","3068444711.94538","3419487440.65916","3481990761.34498","3432356578.82219","3911053180.39625","4034037162.16216","4663193916.34981","5202215657.31167","5372543554.00697","7103529494.37412","7565877533.54421","7775075857.72532","8140282679.97372","8772170427.48088","9672027224.16405","10841723354.4391","12275493958.7834","13789727209.7723","14486137413.5468","15729644901.1305","17588097149.7619","18400538970.1119","18372173610.6685","19380958759.0497","20420967148.9362","",
"Heavily indebted poor countries (HIPC)","HPC","GDP (current US$)","NY.GDP.MKTP.CD","14545029599.2572","15415034179.5934","16252237624.153","17484388242.11","19099327459.2685","21458248571.1342","23238328580.0441","24154059538.1705","24780159935.4471","26779432942.5285","28588949901.3174","30384020090.9463","32750537254.9635","38921784593.704","48061469689.3205","55205715384.1744","60320363916.6745","70127499729.5499","77914069777.6849","90052821411.9153","96345577351.9496","98605908026.0416","97046331944.884","93649097360.4549","97190777632.9147","103217146046.756","118494902571.057","131964737410.555","130050173629.18","124666647685.853","126883392207.406","131105467000.674","119896937247.611","119489461896.951","110378548404.673","126160963674.801","132123694880.971","138644030173.791","142824041713.068","143028829030.086","155061205194.288","147407027921.832","160218536075.32","182221229455.55","209458171489.064","242138492640.48","289276703300.634","344271991423.885","414809392835.131","418333728674.731","462939294964.934","517789340299.133","558050686667.744","604480277693.332","639849498656.722","629249835010.649","",
"Croatia","HRV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","22387561845.2244","23678012697.3612","23822087053.2091","25432144406.2043","23386945596.6928","21774273832.1031","23289671102.3197","26878499206.0165","34658113497.39","41574530815.5047","45416076680.8707","50453577898.4886","60093155532.7678","70481451814.3118","62703095750.5257","59680624422.3702","62249565358.9878","56485301967.4205","57770884728.6496","57136241867.0192","48732003674.38","",
"Haiti","HTI","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3473562850.25798","2257129873.66261","1878253818.07845","2167569095.11746","2813313281.80715","2907517543.3645","3338949151.59927","3723903723.63772","4153725966.87677","3953839593.78427","3596448035.44747","3472194099.40131","2960306120.93557","3537721020.41158","4310356252.83669","4756204069.61876","5885321655.91684","6548531998.42373","6584642675.34367","6622540159.47531","7516829496.06138","7890215895.68701","8452517482.5105","8791599111.2376","8765329889.9646","",
"Hungary","HUN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34650782427.2429","38616036221.8202","40006243367.539","43039008829.7659","46288369007.4588","46538169511.6894","47178241568.5704","48661666395.3691","49074725337.7458","47209471853.3471","53696730223.8318","67561285378.7259","85050281601.04","103694527827.457","112589039620.207","114801188269.404","139198195460.551","157290970540.917","129965360575.699","130258247571.415","140091591852.976","127321135030.078","134680475647.645","139294565100.565","121715203207.647","",
"IBRD only","IBD","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","378838788666.853","394173853326.384","414075149286.021","461310133879.237","501067479501.413","545463005687.858","625038278633.078","803953531468.035","1005586821391.35","1078221794772.45","1157350434974.35","1308422118317.75","1398339636327.37","1695194558781.83","2027388455758.05","2185037020956.75","2140827014323.79","2245476395264.79","2261771459516.15","2392487528054.42","2494842658836.2","2545097128061.1","2780116010341.63","2998292915674.49","3404422041169.26","3678362470893.25","3671647814627.26","3943868177350.92","4320363116858.43","4845618272197.63","5286215954536.19","5594085591248.57","5426459862189.32","5269850507388.02","5730063482426.87","5809190027278.07","5896365161582.2","6658639541899.21","7922165464176.25","9467126708203.58","11223285873042.4","13938050653231.5","16737178726777","16230350910091","19721031999583.9","23325094972696.5","24641093004501.7","26078605146336.2","26792778038015.7","25182382669641.2","",
"IDA & IBRD total","IBT","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","429937010121.345","439528990446.354","457377513501.68","479636743869.371","534333542569.615","587651576871.509","631025545730.015","713529690364.318","903374373871.814","1142652176992.81","1243921011791.37","1330884120779.13","1495597101176.19","1605287183634.6","1939628886024.82","2319289643459.53","2488858446078.92","2433120792163.45","2512256233258.68","2527448348136.32","2667804622489.89","2790832485077.37","2876864269952.97","3106455493174.83","3301124306735.84","3727659900684.75","4014134430763.95","4001871434852.19","4265836906854.64","4641118836173.25","5218356509025.57","5698563007312.07","6022726912734.97","5854691789153.91","5708066808796.46","6214056383523.39","6283210487536.97","6403292297378.11","7231451249833.22","8586151561416.95","10235966945204.2","12143199863825.1","15011620167971.6","18036176192493.2","17517434082246.8","21354226537044","25187174092375.5","26655606402306.5","28269955676147.7","29159894951175.5","27498380507872.7","",
"IDA total","IDA","GDP (current US$)","NY.GDP.MKTP.CD","39406230229.909","42197107407.0772","44738672580.2328","47124173556.8677","50815749037.6748","56800495631.3744","61301725403.189","63835211479.2205","66284443630.6398","73829789011.4809","87004835695.7745","86575014204.6148","89922918267.9388","101671112404.759","139519036426.17","167890240893.614","175988050571.751","190156746306.298","209971431538.913","248252034252.226","296477674027.146","309043946948.204","297675286536.418","270463198831.28","269237238533.44","278841643505.754","299554687103.828","334818059984.641","329806215843.232","307491704875.168","325169578075.945","337328061254.099","331655289956.933","322113114334.266","319303218218.523","371540995082.311","411248739430.074","427198411988.863","427284220824.651","438108058658.308","484148078279.243","473943734607.434","507080400749.406","572987920502.637","664038737650.848","768575779889.645","919712809775.11","1072404620115.85","1298097025229.64","1287265881840.26","1636084877027.89","1862818229962.23","2017117111061.83","2196388396755.69","2374882781633.29","2324788481950.94","",
"IDA blend","IDB","GDP (current US$)","NY.GDP.MKTP.CD","15806840237.7103","16894252980.1923","17904573534.3984","18577243834.9672","20297939680.7528","22602795969.1941","24315799292.8365","24627183309.6746","25567296464.3362","29073793938.9385","39598813064.4308","36750454467.1325","40833159743.6523","43172928787.6879","63127721529.2256","72378748733.8861","87053110785.893","91049576018.9192","96123063194.5644","118402676744.846","151399586078.122","158724890356.46","150319603208.442","126819658856.839","121204087768.811","120039974246.316","128658353575.029","150251914874.878","145311294910.35","126533659862.323","134955407475.248","143586512115.031","146166259383.613","140776373809.677","144589201280.394","170965857796.717","189478738179.809","193919064055.471","187687606165.024","196602857535.66","220551749677.376","215113671305.599","232952309046.024","264167787286.185","315237217378.068","370480509044.938","453951684929.033","518210081357.456","629135501508.702","601659565844.257","851674262521.172","984558144305.811","1082332160279.02","1179751923857.95","1279127869513.64","1220325458262.88","",
"Indonesia","IDN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","5667756362.68827","7076465108.74408","8337423312.88344","9150684931.50685","9333536678.35901","10997590361.4458","16273253012.0482","25802409638.5542","30463855421.6867","37269156626.506","45808915662.6506","51455717678.9956","51400186177.8962","72482336241.4074","85518234772.6985","90158446977.7146","81052284275.1248","84853703418.6895","85289488375.4435","79954069988.6111","75929616449.1894","84300172035.3562","94451425688.8792","106140724972.15","116621996217.133","128026966579.964","158006849701.459","176892148243.48","202132032633.459","227369676089.143","215748853372.157","95445548106.7168","140001352568.994","165021012077.81","160446947784.909","195660611165.183","234772459160.245","256836883573.922","285868618224.017","364570514304.85","432216737774.861","510228634992.258","539580085612.401","755094160363.071","892969107923.094","917869910105.749","912524136718.018","890487074595.966","861933968740.332","",
"IDA only","IDX","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","145907263895.323","151142797812.327","148221913678.686","144696445656.297","149218615020.08","160091927812.017","172331770492.637","185219320530.723","185527370826.498","182863769558.479","192108506574.547","195112791228.101","186174832252.297","182155972648.03","174963368479.85","200670941281.717","221856139254.962","233608808189.428","240443546057.942","242030256547.704","263905231176.518","259162804169.466","274405731553.735","309107603987.629","348880084286.567","398028923704.297","465384410975.174","554066305830.051","668598619374.466","687098201339.387","779060268606.223","870930538637.995","925439579727.27","1006353938444.21","1084354607247.95","1095597694235.07","",
"Isle of Man","IMN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","914727080.643268","1023086918.62768","1180919719.40764","1382548249.78303","1567465656.8505","1563667799.61578","1614595290.9182","1897606791.43353","2264911806.90354","2758117365.04863","2971167185.35511","3344402193.24608","5685988395.35814","5827468750","5047909331.6716","5420118974.04203","6066454093.89521","6433357030.0158","6754330154.76004","7428280401.5139","","",
"India","IND","GDP (current US$)","NY.GDP.MKTP.CD","37679274491.2745","39920452403.4524","42900864969.865","49271095508.0955","57470781032.781","60599264111.7178","46669801600","51014155360","54016411986.6667","59472993626.6667","63517182000","68532117824.1238","72716439112.1","87014945186.3156","101271278198.505","100199707352.024","104518508553.081","123617837582.482","139708121469.133","155674658263.583","189592920294.446","196883842005.062","204235073533.23","222089924399.492","215878839023.118","236589423202.641","253352444883.275","283926977522.458","301790256315.321","301234030103.706","326608014285.316","274842161318.346","293262722482.422","284194018792.066","333014993709.73","366600193391.349","399787263892.645","423160799040.86","428740690379.961","466866720520.974","476609148165.173","493954161367.563","523968381476.715","618356467437.027","721584805204.777","834214699568.14","949116769619.554","1201071960529.75","1186913419021.34","1323896417147.06","1656562168648.57","1822989507290.05","1828985283085","1863208343557.81","2042438591343.98","2095398349095.54","",
"Not classified","INX","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Ireland","IRL","GDP (current US$)","NY.GDP.MKTP.CD","1939329775.43739","2088012282.35667","2260349684.08625","2430843768.44553","2766608945.87402","2945704142.99765","3104034393.23162","3343636773.36759","3278584478.33023","3787077343.72783","4400344925.34492","5103294557.30165","6324312942.56491","7488575728.34266","7904673909.04069","9493192508.7108","9463111095.38636","11259470394.2849","14662490335.2461","18337461798.8395","21769376112.6396","20690643300.7986","21496003241.6723","20786596359.0095","20126544647.4304","21291060214.8747","28742985057.2276","33954083567.4157","37810273905.219","39277219667.3736","49354420997.7856","49836767904.6774","55973870025.4589","52469345272.7061","57154155241.4605","69208238510.101","75864987273.1855","82816781160.4585","90111620500.1682","98782454400.1705","99855065966.464","109119051633.11","127941699604.743","164285613995.485","193870912341.694","211684825270.489","232167523522.77","270043016151.109","274919025487.037","235765973325.924","221356661986.755","240575769113.15","225819184920.64","239271162515.74","256271350218.827","283703217034.49","",
"Iran, Islamic Rep.","IRN","GDP (current US$)","NY.GDP.MKTP.CD","4199134389.43894","4426949094.38944","4693566415.84158","4928628018.48185","5379845647.52475","6197319928.71287","6789938671.9472","7555383689.76898","8623172959.73597","9743089607.92079","10976245153.7954","13731801564.3564","17153463263.3663","27081698249.1798","46209092072.4584","51776222349.8518","68055295080.4565","80600122702.2202","77994316621.497","90391877325.2927","94362275579.4621","100499312749.447","125948756439.161","156365156618.288","162276728619.617","180183629600.037","209094561834.095","134009995922.987","123057861333.933","120496362916.372","124813263926.374","","","63743623232.012","71841461172.5964","96419225743.6737","120403931885.441","113919163421.155","110276913362.508","113848450088.351","109591707802.216","126878750295.944","128626917503.72","153544751395.43","183697185041.72","219845971945.264","258645743978.386","337474485087.271","397189565318.895","398978104575.331","467790215915.476","592037800186.865","587209369682.67","511620875086.78","425326068422.881","","",
"Iraq","IRQ","GDP (current US$)","NY.GDP.MKTP.CD","1684121534.58415","1831700364.04369","1954634836.18034","1978437692.5231","2340521142.5371","","","","2896947633.71605","3008120974.51694","3281713805.65668","3865346534.65347","4113848002.40312","5134367778.1446","11516762614.2906","13458516762.6143","17754825601.0836","19838130714.5276","23762275651.8794","37816457839.4853","53405689129.6986","38424991534.0332","42595309882.7471","40595046638.7906","46802508845.2879","48284979092.9559","47127693792.2161","56609842393.0524","62503055644.9019","65641363782.5668","179885815374.719","","","","","","","","","","","","","","36627901762.063","49954890353.2609","65140293687.5395","88840050497.0957","131613661510.475","111660855042.735","138516722649.573","185749664444.444","218000986222.639","234648370497.427","228730703259.005","180068537409.153","",
"Iceland","ISL","GDP (current US$)","NY.GDP.MKTP.CD","248434096.968726","253885656.329253","284916516.159537","340061650.119898","434267936.914583","523694949.370689","628893310.399926","621225962.154708","474399471.622359","414709311.35296","531004659.090909","675722954.545455","846506911.398142","1163864529.01365","1527559579.78989","1418360312.29668","1683117417.79656","2226538693.61895","2532331673.49047","2876729410.09643","3409023699.34967","3521512388.91504","3232804218.11116","2788530415.2511","2887825523.68452","3008412959.52317","4022192403.69597","5565384032.45323","6156487920.21202","5718878001.74609","6521544489.20626","6966138525.63635","7138787995.32199","6269347502.78093","6441621297.77366","7181787873.86945","7501950115.78947","7596126045.95208","8468339855.94356","8928185823.51908","8924735422.81469","8126161154.36964","9161798221.06725","11297018602.7715","13704440838.4467","16749309720.1251","17041293815.902","21293841230.1928","17530651669.9091","12855269883.7902","13236887873.0516","14665358676.7166","14194519025.2641","15376604281.4504","17036097481.8066","16598494830.9142","",
"Israel","ISR","GDP (current US$)","NY.GDP.MKTP.CD","2598500000","3138500000","2510000000","2992333333.33333","3405333333.33333","3663333333.33333","3980000000","4030000000","4619000000","5329333333.33333","6267666666.66667","5851750000","7496250000","9692000000","13986250000","13028166666.6667","12359875000","14390000000","13967647058.8235","17796000000","21884705882.3529","23258596491.2281","24539341563.786","27442580071.1744","26043655184.1746","24121638985.495","29702243917.1932","35477234541.5778","43893303708.7998","44599771759.5491","52490327348.4773","59170286560.4844","65771216420.6417","65925583866.2945","74669719504.5","99968784246.0067","109774101575.963","114543978662.956","115838004263.046","117212358383.458","132396684080.151","130751599020.377","121092701253.746","126749741990.734","135418563141.455","142837533703.233","154511423313.434","179564275455.807","216760312151.616","208068814688.605","233754747258.625","261374751963.332","257641795689.722","293314777888.557","308769389865.564","299415714726.768","",
"Italy","ITA","GDP (current US$)","NY.GDP.MKTP.CD","40385288344.1911","44842760293.1924","50383891898.9911","57710743059.8341","63175417019.0094","67978153850.5191","73654870011.2757","81133120065.4202","87942231678.3505","97085082807.3751","113021272614.622","124261125780.275","144780888114.21","174913182995.683","198906211372.432","226944778173.191","223976031867.876","256746611586.57","314019079397.673","392378586343.51","475682508026.227","429282144779.424","425863253400.143","441580964558.899","436443282455.367","450725817665.551","638273988310.17","803055421720.944","888667916542.696","925598071408.411","1177326298642.53","1242109402060.25","1315806990573.45","1061445229481.97","1095590837536.02","1170787357066.44","1308929305684.53","1239050936221.01","1266309223820.68","1248563148945.24","1141760021927.4","1162317840447.43","1266510668642.95","1569649631715.58","1798314755525.2","1852661936077.6","1942633841801.53","2203053327128.39","2390729210487.77","2185160158794.11","2125184794172.19","2276150874756.74","2072823111961.1","2130491269673.44","2149814265578.42","1821496964400.58","",
"Jamaica","JAM","GDP (current US$)","NY.GDP.MKTP.CD","699050678.98642","748028839.423211","777712445.751085","826690466.190676","897931401.371972","972140557.188856","1096738065.2387","1148025407.34604","1083883355.33421","1191287651.50606","1404776071.04284","1539865513.92891","1875048859.93485","1905917553.19149","2375096249.03751","2860411285.88714","2966010229.8977","3249697393.02607","2644449232.29321","2425033998.18676","2679409453.23903","2979061412.37229","3293533288.42483","3619294120.69144","2373566957.49214","2100223149.71396","2754566176.20212","3286987551.71597","3828310734.97795","4404970058.83786","4592224067.37194","4071219198.03601","3530892749.02131","4859766160.89207","4907861405.82758","5779285207.92079","6504445801.34228","7450324787.38384","8718300136.42565","8795765306.12245","8929375580.31569","9087918836.80556","9694161516.27524","9399452787.8474","10150978154.5484","11204416000","11905525197.3285","12824094989.8639","13678551837.6303","12038998756.9217","13192229343.0991","14440457548.68","14802430172.5391","14276559215.7309","13897561173.4853","14262190323.0222","",
"Jordan","JOR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","599831979.837581","658078969.476337","631755810.697284","561187342.481098","698963875.66508","639596751.610193","678241388.966676","788574628.955475","943700547.778454","1197454206.76808","1363039399.62477","1708734939.75904","2096568478.59095","2602748691.09948","3271728271.72827","3910036925.14267","4384685230.02421","4680567375.88653","4920407601.21179","4966710013.0039","4993829194.12063","6401380000","6755599113.73707","6277197435.2124","4220945005.22102","4160003917.43258","4344250257.01278","5311329067.37276","5605841535.57512","6237739516.24445","6727446632.42009","6928359238.36389","7244402961.91819","7910621156.55853","8147494358.25106","8457923836.38928","8973201974.61213","9580414809.59097","10193292806.7701","11407566572.6375","12588665303.244","15056936953.4556","17110609732.0169","21971835282.5137","23818322957.7465","26425379436.6197","28840263380.2817","30937277605.6338","33593843661.9718","35826925774.6479","37517410281.6901","",
"Japan","JPN","GDP (current US$)","NY.GDP.MKTP.CD","44307342950.4","53508617739.3778","60723018683.7333","69498131797.3333","81749006381.5111","90950278257.7778","105628070343.111","123781880217.6","146601072685.511","172204199480.889","209070551156.667","236154755295.247","312738030290.016","424891148590.163","471643172433.473","512861437158.573","576405865272.759","709404712455.402","996741758196.688","1037452649454.69","1086988088501.05","1201465862932","1116840773461.75","1218106450431.71","1294608503864.69","1384532251034.44","2051061226984.6","2485236197212.34","3015393553892.77","3017052046398.2","3103698099973.41","3536800942895.19","3852794371594.29","4414962786901.36","4907039384469.68","5449116304981.1","4833712542207.1","4414732843544.43","4032509760872.94","4562078822335.45","4887519660744.86","4303544259842.72","4115116279069.77","4445658071221.86","4815148854362.11","4755410630912.14","4530377224970.4","4515264514430.57","5037908465114.48","5231382674593.7","5700096491337.99","6157461124963.98","6203213121334.12","5155717056270.83","4848733415523.53","4383076298081.86","",
"Kazakhstan","KAZ","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","26932728898.8146","24881135586.399","24906939560.1098","23409027475.6879","21250839258.0901","20374307047.115","21035357832.8019","22165932062.966","22135245413.2312","16870817134.7767","18291990619.137","22152689129.5583","24636598581.0204","30833692831.3955","43151647002.6096","57123671733.8952","81003884545.4099","104849886825.584","133441612246.798","115308661142.927","148047348240.643","192626507971.584","207998568865.789","236634552078.102","221415572819.5","184388432148.715","",
"Kenya","KEN","GDP (current US$)","NY.GDP.MKTP.CD","791265458.813328","792959472.134266","868111400.008864","926589348.567393","998759333.637333","997919319.974061","1164519673.19064","1232559505.9162","1353295457.51798","1458379415.39403","1603447357.24209","1778391289.20054","2107279157.38336","2502142444.14182","2973309272.02986","3259344935.75357","3474542392.04597","4494378855.32203","5303734882.5116","6234390975.29871","7265315331.62273","6854491453.91471","6431579357.30273","5979198463.82274","6191437070.43467","6135034338.30431","7239126716.93219","7970820530.76691","8355380879.12955","8283114648.38116","8572359162.86876","8151479004.21334","8209129171.73649","5751789915.05363","7148145375.78545","9046326059.98857","12045858436.2399","13115773737.5664","14093998843.7334","12896013576.7324","12705357103.0056","12986007425.8781","13147743910.7241","14904517649.8476","16095337093.8366","18737895401.1349","25825524820.8064","31958195182.2406","35895153327.8497","37021512048.8158","39999659233.7555","41953433591.4101","50410164013.5527","55100780396.387","61395415492.333","63398041540.367","",
"Kyrgyz Republic","KGZ","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2674000000","2570833333.33333","2316562500","2028295454.54545","1681006993.00699","1661018518.51852","1827570586.16784","1767864035.71943","1645963749.83146","1249062025.13805","1369693171.43504","1525112241.84376","1605640633.42189","1919012780.97086","2211535311.62834","2460248026.17783","2834168889.42019","3802566170.81543","5139957784.91084","4690062255.12247","4794357795.07139","6197766118.59856","6605139933.41063","7335027591.91628","7468096566.71158","6571853849.00585","",
"Cambodia","KHM","GDP (current US$)","NY.GDP.MKTP.CD","637142865.714286","642857134.285714","660000008.571429","728571437.142857","782857128.571429","868571428.571429","914285714.285714","962857134.285714","1065714248.57143","978873232.394366","718401157.724163","969911421.394181","505549441.375077","702899155.982033","588443893.689773","","","","","","","","","","","","","","","","","","","2533727592.04165","2791435272.26653","3441205692.9166","3506695719.57259","3443413388.6909","3120425502.58253","3517242477.2285","3654031716.26881","3979813387.84404","4284028138.34567","4658246906.65996","5337833255.95698","6293046162.12584","7274595706.67154","8639235842.18075","10351914093.1723","10401851850.6108","11242275198.9783","12829541141.0127","14038383450.186","15449630418.5486","16777820332.7059","18049954289.4229","",
"Kiribati","KIR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","14295279.5446937","15278632.4786325","18936526.9461078","31710657.7257811","85637174.3722131","55081816.9917528","41109617.4996945","38748059.4366822","45210026.3248255","42620165.4370668","38715554.5433842","41369800.0459664","40572066.1324678","37837837.8378378","41246160.596753","32125148.4042182","32085561.4973262","33608738.2719507","42972107.1958747","41119721.651115","39809538.6776989","47515189.2818196","47737955.346651","46919624.6430029","54832577.8622606","56338028.1690141","66515376.7900462","67537479.5903221","65334841.0604347","69032258.0645161","67254174.3970315","63101272.3699183","72196457.6768445","90231856.8000519","102367039.270481","112133944.253532","108545632.53012","130754915.906619","139125482.301627","130465372.016846","153275912.676573","177142135.121196","188045661.627666","187153601.08129","186066973.138634","160121929.231463","",
"St. Kitts and Nevis","KNA","GDP (current US$)","NY.GDP.MKTP.CD","12366563.6119699","12483229.3064224","12541562.1536487","12833226.3897801","13416554.8620428","13593932.3220537","14469078.1796966","16742338.2519864","14600000","15850000","16300000","19624746.4503043","22944849.1155047","24196018.3767228","31514856.3078422","33364055.2995392","30095602.2944551","44680000","49095407.4074074","58296666.6666667","67715444.4444444","79026037.037037","84381407.4074074","85100481.4814815","95898444.4444444","106057000","125272259.259259","140705629.62963","165745740.740741","185094777.777778","208740444.444444","209880962.962963","229434518.518519","249676000","277567259.259259","299699666.666667","318742962.962963","357237682.126571","364975456.93842","389984428.873318","420086753.420087","460467986.505023","480825603.381159","463418863.307752","501150888.888889","543169962.962963","636071000","674008481.481481","738942555.555555","723209111.111111","705015370.37037","753225962.962963","734462666.666667","788163888.888889","847778185.185185","876478555.555555","",
"Korea, Rep.","KOR","GDP (current US$)","NY.GDP.MKTP.CD","3891846797.13837","2357059741.39202","2745940225.92395","3863727297.41268","3358133926.34603","3017614366.36637","3806043708.63124","4702747059.36714","5955336766.31122","7475692343.83676","9409775888.71716","10418262998.7037","11367558349.6653","14538310905.8044","20426484040.8436","22797520661.157","31354545454.5455","40255785123.9669","54273760330.5785","69731818181.8182","67802380521.2123","76240987915.3635","81639218690.157","90524009023.5256","99983374277.2773","103729914254.845","119773895286.176","150986906889.383","202308365346.494","248768504452.983","284757121057.986","332324538078.68","356117978607.571","391963073243.051","458704213081.088","559329547369.922","603413139412.021","560485235837.652","376481975682.155","486315001429.989","561633037419.537","533051998853.593","609020054512.465","680520807982.478","764880644710.649","898137194716.188","1011797457138.5","1122679154632.41","1002219052967.54","901934953364.711","1094499338702.72","1202463682633.85","1222807195712.49","1305604981271.91","1411333926201.24","1377873107856.33","",
"Kosovo","KSV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1849196082.05507","2535333631.88536","2702427046.9355","3355083116.58939","3639935347.50715","3736599925.38241","4078158323.92423","4833561456.33726","5687488208.58356","5653792720.20006","5829933774.83444","6692521545.73255","6500321212.89991","7073021773.76527","7384901154.30543","6400687590.10758","",
"Kuwait","KWT","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","2097451694.2033","2391486978.43741","2441893027.16326","2663119574.34892","2769532343.88127","2873984878.18538","3880370401.57259","4451200972.9401","5408293998.65138","13004774556.6166","12024138275.8621","13131668946.6484","14135729588.2763","15500908760.4507","24746019536.903","28638550499.4451","25056672166.4275","21577977770.059","20869434305.3173","21697297872.3404","21442619680.8511","17903681693.0489","22365734481.5213","20692472759.8566","24312117767.1886","18427777777.7778","11008793176.2223","19858555214.7239","23941391390.7285","24848483838.3838","27191689008.0429","31493987641.9506","30354434553.2476","25941929461.9423","30121879434.954","37711864406.7797","34890772742.0933","38137545245.1464","47875838926.1745","59440108585.0017","80797945205.4795","101550654720.882","114641097818.438","147395833333.333","105899930507.297","115419050942.08","154027536231.884","174070025008.932","174161495063.47","162631763879.129","114041209704.221","",
"Latin America & Caribbean (excluding high income)","LAC","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","671538969681.824","695013999719.471","665229297215.048","691480033255.687","705552141042.584","739505257341.133","846610486503.517","925411112314.862","1081209280438.92","1341453878259.47","1247581651992.07","1446148788660.6","1663756930517.39","1760392260831.82","1895086792724.56","2074109224519.85","2085228809671.87","1867450225796.83","2070768542748.83","2013630684270.97","1791359862784.05","1839422697693.98","2121457386541.95","2580483130716.2","3030699438578.21","3599375693646.35","4214610204883.45","3954164557734.77","4926189510273.41","5606114314624.62","5637944074163.42","5766271405224","5753834318586.13","4854623339831.44","",
"Lao PDR","LAO","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","1757142805.71429","2366666615.55556","1776842041.05263","1087273103.69639","598961269.297879","714046821.093797","865559856.1639","1028087972.31085","1127806944.61513","1327748654.65969","1543606345.11684","1763536304.53964","1873671550.34636","1747011857.33107","1280177838.71905","1454430642.49183","1731198022.45494","1768619058.34647","1758176653.07746","2023324407.30316","2366398119.8821","2735558726.25625","3452882514.00166","4222962987.53859","5443915120.50795","5832915387.08908","7127792629.58294","8261299199.6817","9356251339.55418","11189431000.0811","11739027120.5835","12369080042.8375","",
"Lebanon","LBN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3313540067.93246","2717998687.71002","2838485353.96187","4451497288.27108","5545921947.46583","7535259851.03597","9599127049.9375","11718795528.4939","13690217333.2697","15751867489.4446","17247179005.522","17391056369.2265","17260364842.4544","17649751243.7811","19152238805.9701","20082918739.6352","20955223880.597","21287562189.0547","21796351575.4561","24577114427.8607","28829850746.2687","35139635157.5456","38009950248.7562","40078938640.1327","43205095854.063","44352417910.4478","45730945273.6318","47084703150.9121","",
"Liberia","LBR","GDP (current US$)","NY.GDP.MKTP.CD","190495600","183920900","191861800","200229600","218929100","229260800","244459500","261024300","276820700","306961800","323099700","341543100","368098000","386968300","486955000","577549300","596675700","673010600","717240400","814067900","854711500","846514500","863933200","823374900","848478300","851296100","840964400","972800000","1038300000","786300000","384400000","348000000","223500000","160400000","132200000","134800000","159400000","295900000","359600000","441800000","529064600","521000000","543000000","416000000","474700000","550000000","604028900","739027200","850040500","1155147400","1292697100","1545400000","1735500000","1946500000","2013000000","2053000000","",
"Libya","LBY","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","28901836158.1921","31995012468.8279","33881392045.4545","30657030223.3903","28607921928.8175","25544128198.9955","27884615384.6154","30698633109.1343","27249786142.0017","35976714100.9056","38270206950.41","34110064452.1567","20481889763.7795","26265625000","33122307692.3077","47334148578.4164","54961936662.6066","67516236337.7158","87140405361.2292","63028320702.0343","74773444900.5368","34699395523.6073","","","","","",
"St. Lucia","LCA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","103444444.444444","133414814.814815","152244444.444444","143588888.888889","154503703.703704","197088888.888889","189166666.666667","225777777.777778","242385185.185185","273977777.777778","311511111.111111","397192592.592593","431470370.37037","477996296.296296","492029629.62963","517566666.666667","560811111.111111","566370370.37037","604411111.111111","657529592.592593","692507407.407407","780895370.37037","742383555.555555","746048888.888889","810093370.370371","890757592.592592","946681296.296296","1074708518.51852","1150526259.25926","1187075814.81481","1180949888.88889","1241892814.81481","1280623888.88889","1298815407.40741","1318052185.18519","1386188629.62963","1431135703.7037","",
"Latin America & Caribbean","LCN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","735497413537.97","750828776467.984","722598283874.864","747163038448.526","763160028538.73","804366399455.796","918669660854.343","1004188778550.09","1167852632380.76","1437379818622.43","1355556393395.37","1561881307472.42","1793724520652.59","1912346740491.48","2056674805454.15","2251297013351.28","2267548584943.05","2046789999240.55","2261838470977.34","2204517444587.04","1976568530735.6","2035879312168.98","2350404820251.87","2845844939085.76","3336697719530.46","3935858311884.26","4577057742399.88","4302625397706.11","5336635974784.83","6064934040029.37","6116164590017.66","6266109722811.52","6232858701982.57","5293792978696.25","",
"Least developed countries: UN classification","LDC","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","116005983817.056","125909011563.574","138522359918.711","140593713325.403","146100493431.746","150400978256.189","152296870385.928","140004555584.987","139617063651.218","136356343328.626","152491647845.299","168719871114.73","178785382788.089","179700944486.906","182061836051.042","206938708208.755","197451280594.809","213394500469.074","241906617827.868","279577599313.585","330376263049.432","386981345428.859","471909508779.013","590401298491.509","595569050171.765","676061806703.039","771409951629.195","818511980476.391","884631533171.448","954671782286.015","934032330245.853","",
"Low income","LIC","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","89469355236.618","88169189155.1255","94122372875.4915","96724258888.0626","85271201588.8909","81698527187.8754","73030598814.6994","84193539005.5231","93853962023.4997","97020701434.7135","98080420869.2722","98179857461.9281","113339315030.149","102348313061.287","110549268422.138","121296437315.093","138413181836.698","159878007996.611","177364379809.415","211505881169.975","254721906161.606","267331573484.766","289217354977.135","325885469723.284","350747700522.102","378049098083.608","406258001652.398","394274436764.574","",
"Liechtenstein","LIE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","90098330.6654471","104888628.171944","124941925.010473","165930611.729019","193983720.461869","246387479.177159","272493879.020643","303496276.263782","436918176.733781","503180669.994587","534701915.617354","511658690.561043","522090331.478107","524034109.856605","502617355.407073","529078995.563876","779365167.602424","1052843347.63948","1161757671.01756","1120000916.92646","1421466239.56234","1484152022.3152","1631197909.259","1673104493.77369","1948118227.68151","2428461395.34884","2504033252.42718","2298410390.68421","2479721340.8746","2664026095.06058","2483953102.79488","2491822706.80256","2688630822.53304","3070691319.52179","3454362685.96703","3659251525.8593","4000239272.61126","4601299566.81106","5081432924.0144","4504549214.22663","5082366478.08994","5739977477.47748","5456009384.66461","6391735893.83968","6663501418.90417","","",
"Sri Lanka","LKA","GDP (current US$)","NY.GDP.MKTP.CD","1409873949.57983","1444327731.09244","1434156378.60082","1240672268.90756","1309747899.15966","1698319327.73109","1751470588.23529","1859465020.57613","1801344537.81513","1965546218.48739","2296470588.23529","2369308600.33727","2553936348.40871","2875625000","3574586466.16541","3791298145.50642","3591319857.31272","4104509582.86359","2733183856.50224","3364611432.24149","4024621899.57653","4415844155.84416","4768765016.81884","5167913302.16745","6043474842.76729","5978460972.01767","6405210563.88294","6682167119.56522","6978371581.26375","6987267683.77254","8032551173.24014","9000362581.58086","9703011635.86585","10338679635.7616","11717604208.8223","13029697560.9756","13897738375.2488","15091913883.7091","15794972847.1683","15656327859.5696","16330814179.9766","15746229581.5619","16536535647.0834","18881765437.2151","20662525941.2986","24406252456.5141","28279814924.5918","32350248410.8216","40713812309.7316","42066217871.5349","56725745039.336","65292741296.5382","68434399083.41","74317806754.5267","80025305461.5834","82316172384.325","",
"Lower middle income","LMC","GDP (current US$)","NY.GDP.MKTP.CD","91842346965.4342","97883254010.3635","100664970782.715","111993250733.92","126568255467.379","136025875045.857","122897773182.506","131167246565.796","140669201312.969","156885174219.728","172639948153.956","179690740734.925","190801699959.925","227375782872.103","291688250986.488","323332396999.032","350142587195.146","400993633896.282","448588293901.697","510287274750.911","634048356479.121","669286516014.791","675428118678.649","660377805266.177","657650580249.623","692613602465.023","721174794673.213","794013028377.644","819844826751.121","822475206350.758","889540510194.238","853847847810.323","909760853217.553","923517501695.16","1006133291005.54","1129967762157.2","1239139176833.17","1280122833788.52","1157928835515.71","1258519452067.97","1329103964569.57","1341869128122.16","1438273015008.4","1650073368964.79","1883730588443.19","2163834106954.67","2563099480991.36","3111687031525.84","3479333004989.29","3576859737853.82","4540373746185.66","5124806761408.16","5362844637534.27","5594775818245.69","5889437026250.43","5861047107473.5","",
"Low & middle income","LMY","GDP (current US$)","NY.GDP.MKTP.CD","309785735870.88","298022944814.136","304729527246.939","334624550346.359","376647441426.817","417642319481.893","425772428052.454","442558521142.975","464257899298.09","516180656910.812","567936201213.92","608520159088.104","691396894366.456","871424186347.396","1108152052299.8","1221455900435.36","1304118652442.13","1460064182193.87","1568325776991.43","1887126296897.76","2244755940131.35","2402420880655.16","2361000719827.12","2451153975680.42","2469228808329.07","2609443542127.35","2731812474262.78","2811632116148.03","3034272222820.72","3220113541681.73","3634856188527.28","3888547456279.33","3854178516579.75","4111333814816.91","4466361253680.26","4993856804661.57","5443800215162.17","5759001456856.25","5576074409539.88","5445929231703.03","5947433822229.02","6005445537506.51","6123678850547.04","6920922900534.21","8208023168430.17","9778648252388.77","11618460619261.9","14375534409288.7","17270771609406.6","16871045705817.8","20620920985676.5","24366504207835.2","25857468930934.6","27433928122076.7","28326301632925.7","26761565718320.2","",
"Lesotho","LSO","GDP (current US$)","NY.GDP.MKTP.CD","34579308.4138317","35699286.0142797","41859162.8167437","47039059.2188156","51938961.2207756","54878902.4219516","56698866.0226795","59260814.7837043","61444771.1045779","65966680.6663867","68738625.2274955","76482102.9082774","80915831.9240276","121181556.195965","150846210.448859","149560513.860717","147654093.836247","193307267.709292","266559337.626495","290142517.814727","431561376.476631","434188034.188034","348746792.515574","386699344.059023","333158502.306626","268626893.690796","318862870.333317","402774850.256341","470389190.094405","495404890.865006","596415106.633185","704329193.303687","831033946.369022","835592816.316424","878250452.815718","1001889845.5807","946123280.510758","997996034.86775","928458201.135382","912771283.593936","887295262.184165","825706966.802027","775780697.302945","1157832935.83899","1511236652.019","1682350941.54943","1800105593.03747","1825385552.2422","1875881172.42008","1870006879.27367","2392147273.25836","2795705636.58808","2666218870.25386","2499410956.14577","2538831766.20046","2278037785.7279","",
"Late-demographic dividend","LTE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","1148255181311.25","1225208663999.99","1260022923394.72","1352836800420.41","1443582293214.34","1523446332185.15","1679234452193.57","1903588877253.37","2023287784547.56","2226153109854.14","2075840402651.53","2151701660508.22","2464104029251.37","3027194177766.19","3319538484431.55","3474113218341.43","3345236016824.53","3090334199879.7","3400814195685.4","3515126910278.02","3723415048688.77","4247175635341.69","5104598661458.61","6158654504696.2","7432822132399.33","9362668071513.8","11643272069524.1","11254432580410.6","13507253830132.7","16460032006436.3","17565596351857.9","18936310805573.2","19644745532857.3","18332478799684.1","",
"Lithuania","LTU","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7870782260.51698","8385109020.28485","10120274492.8787","11240360897.7126","10972878636.1675","11539211480.3625","12252498921.0186","14278357283.7419","18802576988.1557","22649930576.2543","26125575942.2814","30216060233.4044","39738180076.6283","47850551148.8365","37440673477.8982","37132564255.4319","43505562065.1266","42852204396.452","46412093986.4596","48353937110.2561","41170728956.4157","",
"Luxembourg","LUX","GDP (current US$)","NY.GDP.MKTP.CD","703925705.942958","704145671.350213","741509480.796284","791140595.772755","903158753.943622","921600736.304026","968440149.470951","974721762.535327","1066447130.82052","1234878980.502","1504911173.86043","1567889228.22947","1963196682.24727","2694276650.79694","3286592688.48384","3224338707.9083","3534301044.93208","3911864153.06697","4871132189.0611","5695396395.15685","6214480342.11615","5217096153.84615","4751150980.04591","4670526706.1144","4581970120.07819","4725234255.0445","6901800614.05093","8589991247.97407","9722742292.92375","10362282452.9075","13192045509.4157","14281603780.2717","16020561731.4931","16440536847.0149","18274256932.7225","21527461685.8238","21740939413.6808","19694578258.9084","20214613247.3883","22201456424.462","21080997788.8336","21052080536.9128","23308582721.6262","29206884875.8465","34343804320.8344","36977365999.2538","41913561661.0212","50323159047.3583","55144865973.3411","50386496248.958","52351655629.1391","58697386711.1482","55986712367.7993","61794506555.5051","64873963098.4868","57793612066.0974","",
"Latvia","LVA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5788368511.12379","5970044665.64574","6525676264.21486","7174985106.63648","7533187605.09248","7937758980.30127","8350252966.19655","9546441564.34743","11748433157.0533","14373269155.7174","16922504044.804","21447021570.1028","30901399261.387","35596016664.2304","26169854045.0375","23765078166.4017","28420287436.9041","28072066041.3722","30256430184.6685","31322649595.3297","27002832427.6367","",
"Macao SAR, China","MAC","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","1021660188.2489","1016581147.34332","1182700832.57626","1222079186.87803","1376068112.61419","1786736372.94314","2087120612.88959","2478802698.56483","2990177409.30059","3464924727.95872","4581209813.98091","5280184999.24695","5868533723.60338","6560637942.71945","6628525682.86805","6674545910.49866","6186449842.08152","5916920006.50659","6101794938.88536","6811252878.57098","7322690268.13055","8194995761.23273","10585562563.8852","12092284455.3182","14789661809.1834","18340472131.3107","20917457388.3119","21475520709.3922","28123640998.7253","36709847596.7175","43028648668.9445","51548871615.7861","55522993326.7394","46177532874.139","",
"St. Martin (French part)","MAF","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Morocco","MAR","GDP (current US$)","NY.GDP.MKTP.CD","2037150716.33238","2025689536.60705","2379606422.29029","2657247327.3392","2798339768.79755","2948325264.30195","2876395613.08171","3046339294.53611","3271415867.99723","3651615453.01848","3956328426.04486","4356633663.36634","5074117544.77482","6242177798.33938","7675408485.51421","8984824182.60333","9584323309.12136","11049896742.3889","13236854105.1672","15912133569.2852","21728770055.3777","17788171722.4446","17692341358.1272","16251460689.3254","14824728528.4604","14991283215.7408","19462175321.8224","21765261041.7265","25705296183.5037","26314220188.0257","30180108561.9305","32285388165.2999","33711069430.78","31655473663.8348","35604137422.5796","39030285468.3841","43161452678.4383","39147844526.0838","41806219378.6181","41632027599.8531","38857251336.3448","39459581217.3759","42236836820.6152","52064058833.9739","59626020162.3816","62343022650.8742","68640825480.9223","79041539006.1399","92507257783.5697","92897320375.8176","93216746661.5977","101370474295.109","98266306615.3632","106825649872.108","109881398474.953","100593283696.732","",
"Monaco","MCO","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","293073868.023221","327651487.962757","402460333.237637","523552815.119127","563939670.704419","711922994.225545","735339911.935065","811250927.388998","1000535735.38751","1209898293.46372","1378130995.65913","1205166025.51592","1143229071.77943","1092551781.01486","1037314956.25083","1082851076.52158","1515209588.2378","1839095595.25655","2000674667.08261","2010116851.20284","2481316053.85316","2480497547.84881","2737066955.91266","2574439973.17387","2720297738.93904","3130270918.79061","3137848783.08404","2840182191.77105","2934578788.86478","2906009307.6651","2647883820.18625","2671401082.76436","2905973022.1746","3588988600.70294","4110348444.49411","4280072625.97622","4663488363.0977","5974371695.95045","6919241412.09365","5557245122.31576","5350674803.33858","6074884388.58937","","","","","",
"Moldova","MDA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1752975841.35916","1695130456.52174","1930071406.92641","1639497206.70391","1170785047.79461","1288429150.51394","1480656884.38462","1661818168.4226","1980901553.51226","2598231467.43671","2988338439.31553","3408272498.11516","4401154128.12297","6054806100.8468","5439422031.39627","5811604051.96737","7015206498.21955","7284686576.2835","7985349731.46471","7983271110.60446","6568288861.76807","",
"Madagascar","MDG","GDP (current US$)","NY.GDP.MKTP.CD","673081724.075966","699161943.856733","739286906.851163","759345862.970929","802482182.923768","833563472.161911","900264583.687729","956436931.141842","1031669636.36062","1056391054.53794","1111859569.77066","1199507629.99222","1341590681.586","1653062347.36378","1917508190.04689","2283049233.28581","2181844193.92388","2358930406.42896","2669755115.50372","3463565881.42215","4042139901.36379","3594868208.41664","3526198070.09789","3511573991.89606","2939485471.50097","2857889712.4808","3258288890.58647","2565634382.28729","2442507588.38468","2498059014.77295","3081479800.28735","2653141958.52585","3024459564.32157","3370842210.90955","2977040722.47057","3159901231.97468","3995028592.78722","3545776697.12109","3738704467.51878","3717515282.53319","3877673539.09084","4529575347.56805","4397254607.61164","5474030080.24451","4363934494.37405","5039293030.82367","5515884348.54904","7342923489.09616","9413002920.97008","8550363974.79243","8729936135.74487","9892702357.56691","9919780071.30832","10601690871.7448","10673516672.6843","9738652322.17322","",
"Maldives","MDV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","42463576.1589404","44781456.9536424","47935843.7935844","57829787.2340425","109503546.099291","127154929.577465","141902097.902098","141268980.477223","168610478.359909","189535398.230089","215089005.235602","244468292.682927","284853358.561968","322326642.335766","355884383.08887","398988954.970263","450382327.952421","508223602.37893","540096397.621071","589239753.610875","624337145.284622","884276168.300654","910864148.4375","1043403343.75","1202240023.4375","1119806500","1474698125","1745998937.5","2109960937.5","2149257812.5","2323401757.8125","2449576516.91549","2518312129.02218","2795147949.78753","3094197810.2","3435244658.76626","",
"Middle East & North Africa","MEA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","32529094345.173","36307351304.919","40521548873.4471","46815011188.3725","56977094724.3402","76822129849.9098","140440796609.049","153559971753.333","190985730020.625","221756796433.815","235651188093.874","307994219348.368","399441464979.352","412899308161.455","410512309321.813","416786181989.075","422792351112.082","428897986456.533","438161857514.769","405760462512.308","402691044861.206","415448040902.618","543734796639.976","544545535553.511","592572370033.987","596391746963.936","620960408834.697","707482548637.968","801283290318.848","831580954186.064","808298524600.69","866211623753.438","966012747137.821","969541269504.168","965795640491.735","1087750026517.69","1264688672445.19","1523735251722.34","1783613418414.29","2111520980797.66","2639163225904.97","2353138069321.16","2742650825699.61","3286697600260.14","3510771606774.25","3561828086567.37","3537104828327.99","3141081308141.51","",
"Mexico","MEX","GDP (current US$)","NY.GDP.MKTP.CD","13056168000","14153952000","15221056000","16936336000","20070136000","21829712000","24337232000","26556376000","29363632000","32515752000","35541712000","39200880000","45178120000","55271304000","71976544000","88003984000","89023915584.4156","81825783185.8407","102517451754.386","134540324561.404","194356826086.957","250083020408.163","173720851063.83","148866910907.577","175632157330.155","184473106267.03","129440194508.009","140263679436.947","183144268180.018","222977035953.687","262709776007.964","314453890803.074","363609256195.677","503962832199.255","527318753518.414","343792792161.261","397404140458.457","480554644187.662","502010250656.743","579459682649.262","683647965226.955","724703603502.349","741559509631.317","713284231624.803","770267585947.191","866345821213.261","965281191371.844","1043471321169.09","1101275278668.79","894948748436.748","1051128603513.77","1171187519660.64","1186598324461.82","1261981728468.52","1298175699755.5","1143793184190.1","",
"Marshall Islands","MHL","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","31020000","34918000","41749000","45144000","43879000","55989000","62983000","70688000","72798000","78476000","82507000","91063000","99461000","108071000","120230000","110858000","106289100","108702100","107978900","110937700","115152100","124735100","126887600","131106400","137744500","143656600","150851598.261375","152901112.689513","152631201.425631","164751292.561566","172674883.357224","185055791.83406","190991954.906072","183114102.293044","179432573.764399","",
"Middle income","MIC","GDP (current US$)","NY.GDP.MKTP.CD","299079503154.171","286903358586.359","293165053513.959","322307782135.159","363565908419.563","402918187219.824","409796125118.834","425796453148.453","447425387983.568","498284168581.704","548562717645.289","587607191211.453","668154810046.821","844129477862.795","1075802527855.28","1183503608291.15","1265282159283.04","1417139398123.15","1521003580254.52","1831962650971.74","2183380917526.42","2340923877081.58","2297533924196.27","2389130768727.19","2408863857749.8","2545561416346.32","2660006447869.28","2735855264797.01","2953203746091.04","3140007991243.54","3548400261535.94","3799139934723.4","3774192671996.94","4033459867329.37","4394196625338.78","4910961982869.07","5351638995979.22","5663468746737.63","5479987695648.7","5350015485090.13","5837386230488.18","5904784049034.88","6015537331067.25","6801942418852.75","8071751746187.74","9620743392406.01","11441989700799.5","14164218423488.6","17016347553209.8","16604957048934.8","20331291983787.7","24039316158982.3","25505624919973.2","27055059701558.3","27919638334260.1","26367028677779.6","",
"Macedonia, FYR","MKD","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4471828621.90813","4694744897.95918","2316618542.52603","2550195043.10345","3381270207.85219","4449375346.45669","4422160017.54386","3735312142.57028","3571043102.5641","3673288263.62039","3772851420.24763","3709637829.94866","4018365247.44444","4946292774.79046","5682719260.0763","6258600713.82627","6861222331.96317","8336478142.08872","9909548410.82744","9401731495.71661","9407168702.4313","10494632699.3859","9745251126.0109","10817712138.9451","11318966946.687","10086021261.4631","",
"Mali","MLI","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","275494520.141999","343771964.662167","339913833.096246","359772363.262207","430096738.369216","486617332.387405","563683660.31194","538747268.333356","830710615.179954","939227993.66396","1049838492.55759","1222702356.10946","1595423285.64659","1759690811.60699","1538972158.1782","1333754034.23489","1297765448.50498","1232932008.13719","1392195933.33971","1852163474.54664","2090629722.63611","2169040741.55896","2181821902.43953","2681912030.49384","2724131545.16958","2830673388.82429","2818280876.07615","2081846482.74771","2706425298.36818","2780422212.26995","2697105694.07956","2920358586.75234","3439463140.35541","2954129565.82965","3465305993.47783","3889758023.73699","4703504466.53245","5444474268.42491","6245031690.06808","6899799785.8441","8145694631.88354","9750822511.47988","10181021770.4326","10678749467.4697","12978107560.5982","12442747897.2223","12813248724.7996","14004067516.3577","12746688961.7795","",
"Malta","MLT","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","250721821.553678","264579879.784878","295118249.324932","345602025.375393","376094108.475331","474620439.58496","527936988.791275","625573345.532174","793675169.878579","1001300838.32335","1250242107.87969","1243469360.56838","1234518125","1165771369.00625","1101828568.76804","1117835285.50512","1435079200.34957","1751247763.41948","2019474244.19359","2118574772.11136","2547163582.33149","2750041434.26295","3021910216.71827","2709178326.78271","2998570146.54095","3439931906.61479","3570271557.88471","3705372038.70537","3923637971.04652","4127313818.33836","4306192435.82207","4331870647.71535","4689832689.83269","5456583589.39342","6062780269.0583","6394851386.64345","6757119558.3992","7880509170.54476","8977149553.24447","8528202278.41067","8741059602.64901","9556435918.82124","9262238211.48657","10184944237.9182","10737561363.9379","9746478873.23944","",
"Myanmar","MMR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8905066163.58643","6477790688.22844","6777632512.0781","10467109977.6717","10567354056.4049","11986972418.5103","14502553709.8303","20182477480.5512","31862554101.9378","36906181380.8127","49540813342.4834","59977326085.9908","59731122170.0865","60132854536.7832","65574726566.3779","62600906116.0987","",
"Middle East & North Africa (excluding high income)","MNA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","291596287118.973","299033567814.89","341005240256.783","395419632427.744","406140280703.531","412225301382.345","435963168532.92","451742600340.554","467441319971.309","453761590406.399","511874620799.13","586239808259.191","691427134601.918","803273293455.519","989862979239.348","1225666458783.22","1179783602417.22","1362935523600.63","1577438157130.86","1664927133835.31","1634176509331.89","1568151977550.7","","",
"Montenegro","MNE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","984279598.325251","1159891557.16986","1284504507.69851","1707662612.68399","2073255525.20487","2257118340.54619","2696020574.58286","3668656246.57834","4519930566.74528","4141152200.489","4138972769.65459","4538450845.19573","4087777049.68585","4464498911.25392","4587740464.37265","3987061627.51107","",
"Mongolia","MNG","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","2310099100","2552401933.33333","2725736633.33333","2098734600","2186505475","2896178866.66667","3020611600","3204461566.66667","3576966800","2560785660","2379018326.31579","1317611863.84977","768401634.154573","925817092.217484","1452165005.2384","1345719472.35883","1180934202.83801","1124440248.9783","1057408588.68269","1136896123.61298","1267997934.3125","1396555719.97409","1595297355.78349","1992066808.09598","2523471532.01083","3414055566.1138","4234999823.30839","5623216448.86851","4583850367.88972","7189481853.13241","10409797610.331","12292770631.23","12582122604.1768","12226514746.1452","11741338841.1132","",
"Northern Mariana Islands","MNP","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Mozambique","MOZ","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","3526259828.24207","3532146140.68091","3615064966.01116","3237772708.41975","3372771556.9797","4458235938.92328","5243440029.51682","2353864264.67743","2093393433.26975","2314103709.61371","2512109516.61781","3263761937.95748","2291175764.66004","2394823061.93212","2460670287.73707","2521738759.58885","3523842274.89662","4227273069.05991","4873242526.06404","5302532113.25156","5016469068.50898","4766928746.6914","5031510908.86055","5597367853.40358","6831808930.39816","7723846194.87446","8312078525.08582","9366742309.49331","11494837053.4061","10911698208.1015","10154238250.1818","13131168011.807","14534278446.3087","16018848990.669","16961127045.8266","14807075727.4667","",
"Mauritania","MRT","GDP (current US$)","NY.GDP.MKTP.CD","92609222.6912849","107726181.218304","111148585.592024","113797356.813964","151897168.106199","172767213.286516","180340653.822049","191221777.800889","210695183.760251","199643444.567995","209348253.60877","227051054.984972","265009395.148159","333731874.379051","414772351.88069","475916514.745785","524407931.940588","540635389.589072","544424605.052283","644070364.889076","709041452.217718","747994681.876653","750214410.723584","788371855.945127","726937320.846135","683193885.003343","802890746.890756","909820553.400741","957377507.476686","981529400.534373","1019600770.6038","1443688869.96039","1464392416.14671","1249944999.42056","1315932644.95246","1415296704.11812","1442598431.0096","1401946853.20672","1375115534.0733","1405662878.85296","1293654175.2102","1295539448.36484","1324426606.62378","1563074859.52173","1833444740.37736","2184444848.97637","3040716679.07669","3356757497.1208","4031047704.39864","3662281667.94663","4337791530.87884","5166340390.52554","5231255478.38986","5645739651.53638","5442297174.11121","","",
"Mauritius","MUS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","706991274.414428","827094668.018707","1019630847.11113","1216229419.31802","1136543003.2664","1147192916.68998","1082939379.16762","1094857357.63954","1044928624.74004","1080642033.34952","1469046114.77455","1888754655.15367","2143484487.67274","2191096860.28669","2653480001.34558","2856890680.60285","3224267547.80508","3263368410.01813","3558137040.37772","4040345933.29231","4421943910.49749","4187367601.73431","4169664285.38681","4291172815.63421","4582555124.64952","4536538210.66761","4767303153.99506","5609831328.0648","6385695187.0102","6283803256.01264","7028803365.70151","8150138757.15741","9990370016.30771","9128843109.15588","10003670690.3497","11518393367.2403","11668685524.1265","12129642296.4425","12803445933.5894","11681761261.0428","",
"Malawi","MWI","GDP (current US$)","NY.GDP.MKTP.CD","162960130.465802","174580139.768776","183120146.605902","190820152.770523","194740155.908875","229460183.705713","260400208.476282","269812781.79847","245160098.113071","265800106.373203","290520116.266151","365389567.21636","406084197.385471","444302221.260027","548618789.94423","613196872.560739","670309252.98248","806265763.845459","948983308.780545","1058297676.33572","1237662066.78974","1237686960.55408","1180094061.48178","1223225019.32697","1208026079.75492","1131349992.22735","1183671788.12366","1183071363.00406","1379923808.24718","1590201656.14301","1880784191.81484","2203536031.03471","1799529357.0981","2070647127.03808","1181801919.66833","1397454122.24047","2281039097.69299","2663238982.8009","1750585204.44813","1775920039.58919","1743506287.41519","1716502069.86945","3495597587.43178","3209167240.45005","3476333638.6635","3655892941.67281","3998020176.93393","4431477378.40652","5321114432.10931","6195345174.19622","6957454879.05414","7983556694.87491","5980586767.40693","5432169047.56631","6055252536.08965","6403820949.24856","",
"Malaysia","MYS","GDP (current US$)","NY.GDP.MKTP.CD","1916241996.60264","1901868548.28172","2001502678.6881","2510126747.68065","2674441395.53116","2956356984.18921","3143538481.64119","3188945511.56409","3330393309.81315","3664575983.27453","3864170913.36731","4244340333.51899","5043268548.73032","7662996766.66803","9496074114.07918","9298800799.46702","11050125904.9418","13139397879.1695","16358376511.2263","21213672089.1976","24488033442.0506","25004557093.8761","26804401815.5348","30346788437.5135","33943505717.6993","31200161095.4491","27734562640.4277","32181695507.2234","35271880250.4964","38848567631.4235","44024178343.0071","49142784405.0044","59167157497.9385","66894448545.1226","74477975918.3051","88704944178.6284","100854996422.609","100005323301.867","72167753770.8928","79148947368.4211","93789736842.1053","92783947368.4211","100845263157.895","110202368421.053","124749736842.105","143534102611.497","162690965596.205","193547824063.3","230813597937.526","202257586267.556","255016609232.871","297951960784.314","314442825692.826","323276841537.339","338068990803.263","296283190372.552","",
"North America","NAC","GDP (current US$)","NY.GDP.MKTP.CD","584477920198.99","604157219440.397","647173002027.413","683353535761.531","734790505460.858","797723909391.131","875492805408.936","926623934246.798","1013409031841.72","1097952410241.71","1163966395224.42","1267253061477.52","1395767220992.02","1560140359214.08","1709546297648.26","1863102029787.65","2084548864401.62","2298010156934.65","2575679667449.81","2875732302185.42","3136972126345.01","3517909963656.99","3659283025119.14","3979574111781.89","4397051258071.62","4712529999482.75","4968766427343.98","5302830242049.45","5761398451214.26","6224250243275.25","6575110950908.47","6786006083611.19","7133366589284.92","7457709121892.44","7888761439501.61","8270122373385.4","8731442777972.13","9264273191726.28","9724112027406.81","10340031087640.9","11030552667252.6","11361884260892.6","11739401906646.5","12407237511367.9","13302608706074.6","14267952115864.7","15176717496461.2","15948507238205.8","16273823136997.2","15795698382986.4","16583522548731.1","17312180156548.3","17985081294447.6","18534534196716.3","19182647201609.3","19593076555278.5","",
"Namibia","NAM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","2434884951.20699","2259179124.88605","2128089611.34647","2308102953.05628","1960567071.10418","1615776820.56804","1816754048.14004","2310454960.70727","2506554607.43347","2547340984.48164","2804379662.19611","3012742078.00674","3448326858.34502","3218475900.48046","3636645995.26867","3942478205.72909","3945340776.40546","4102648719.61806","3826527630.55551","3818954447.99083","3908661517.62299","3546783708.12619","3361251197.73829","4931312147.21007","6606858786.01174","7261333794.60003","7978734401.53585","8740865600.24981","8486721916.9128","8876191120.76189","11282192605.0374","12409629835.6998","13016272898.9038","12713366873.4658","12853963142.8124","11491507355.6498","",
"New Caledonia","NCL","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","159594493.548808","164206537.561675","180036768.87301","215507164.034258","263108834.536684","358815681.903215","413634335.270097","505892512.861927","542294864.81243","637400199.110489","816647865.83143","798310509.647434","837616756.533737","846007597.720396","1047225130.24333","1182457142.60648","972563810.230325","904619629.797268","823832940.450511","796018978.4713","854823821.723177","1201262517.87644","1488113532.28584","2072735787.31779","2185072798.33184","2529310103.83608","2653781596.46008","2923764926.39718","3070161471.04451","3038727617.03901","3628440274.67","3606968433.92682","3291489840.57141","3158806480.26107","3056999988.09146","2682347064.3642","","","","","","","","","","","","","","","","",
"Niger","NER","GDP (current US$)","NY.GDP.MKTP.CD","449526872.565561","485785231.729353","531736599.930736","586294879.4719","582816396.216401","673383510.242124","702296079.857695","665586872.839162","641214226.839012","625867984.42818","649916621.179857","693573704.422866","742779659.455166","946385104.967731","1026137112.43707","1048690931.5406","1064517600.10051","1291458043.7403","1774365587.86851","2109277663.09748","2508524715.79516","2170893417.98129","2017612217.82752","1803099561.08393","1461243326.83775","1440581653.32328","1904097000.74963","2233006101.94476","2280356194.14559","2179567111.0004","2480673304.74309","2327986215.86356","2344987614.27441","1606581743.78497","1563207224.65066","1880803361.68562","1987770898.54334","1845599608.44272","2076737356.67897","2018193703.06047","1798374468.36362","1945327564.65042","2170481508.86916","2731416346.48158","3052898739.4678","3405134831.85049","3646728060.06463","4291363390.91295","5403363917.3096","5397121856.35204","5718589799.24366","6409169889.50891","6942209594.55433","7667951987.6933","8245312136.56544","7142951342.4223","",
"Nigeria","NGA","GDP (current US$)","NY.GDP.MKTP.CD","4196174329.17504","4467287709.59388","4909398974.58993","5165590041.59062","5552931090.74441","5874422511.54977","6366792664.14672","5203135937.28125","5200895982.08036","6634187316.25367","12545849083.0183","9181769911.50443","12274416017.7976","15162871287.1287","24846641318.1242","27778934624.6973","36308883248.731","36035407725.3219","36527862208.7133","47259911894.2731","64201788122.6054","61076493506.4935","51397461685.8238","35451565749.2355","28500815241.471","28873977228.1115","20721499308.4371","24093203444.564","23272161396.8853","24231168858.7187","30757075595.3681","27392886872.5547","29300921681.1958","15789003752.7594","18086400535.5777","28546958641.2735","34987951375","35822342617.6978","32004613750","35870792987.9432","46385996028.9482","44138014092.2627","59116868251.4742","67655840108.1547","87845403978.2742","112248324605.527","145429764861.249","166451213395.64","208064753766.47","169481317540.364","369062464570.387","411743801711.642","460953836444.364","514966287206.505","568498939784.021","481066152870.266","",
"Nicaragua","NIC","GDP (current US$)","NY.GDP.MKTP.CD","223854666.666667","240524723.428571","265291588.666667","292916241.142857","341973758.857143","566542872.357143","606671444","657171436.714286","695899980.428571","747971449.571429","776585681.071429","826571413.428571","880842890.071429","1093571441.5","1520900045.14286","1590428522.64286","1847871371.71429","2239857060.57143","2142128603.78571","1527852635.63158","2189347367.52632","2448290109.65","2465165179.69565","2743341724.08333","3105517091.41379","2683816288.7907","2885710608.8808","3851213727.67857","2630904261.83247","1013184745.70715","1009455476.05583","1488804123.71134","1792800000","1756454248.36601","3863185119.04762","4140470000","4308351902.78601","4389965590.96538","4635267224.84195","4855717874.68247","5107329007.0922","5323146565.70315","5224213017.54386","5322454925.84746","5795568204.64532","6321335612.22233","6786294637.33603","7458103361.63737","8491388728.5018","8380731879.74635","8741313140.24883","9755619760.14614","10438842115.6263","10874735110.8237","11790221756.2778","12692562187.4933","",
"Netherlands","NLD","GDP (current US$)","NY.GDP.MKTP.CD","12276734172.0828","13493833739.9949","14647057370.1418","15891241386.291","18699380731.3465","21000586933.2041","22867203317.4022","25087562181.3218","27817605743.2503","31503868835.1853","37677621537.7123","44010160463.6591","54008338917.8797","70924006306.1643","86129928026.8875","98970041042.175","107775403067.178","125395875998.923","153870462415.971","177376289135.45","192661371425.405","162039376225.382","156456858050.673","151487045479.114","142075910370.879","142009922306.263","198298498021.227","241918791122.715","258567751142.825","255039560739.894","314267667675.178","323320449905.705","358330385839.599","349037818106.312","374291430318.44","446528959648.641","445704575163.399","412199006098.938","432476116418.574","441975282335.393","412807259996.315","426573601789.709","465368906455.863","571863431151.242","650532654581.574","678533764457.157","726649102998.369","839419655078.018","936228211513.11","857932759099.75","836439735099.338","893701695857.659","828946812396.788","866680000367.264","879635084124.987","750283908173.45","",
"Norway","NOR","GDP (current US$)","NY.GDP.MKTP.CD","5163271598.15702","5632460936.54576","6066976682.67364","6510239502.76489","7159202706.48027","8058681060.159","8696460205.3397","9514496703.39762","10159934136.7838","11063065083.4888","12814123115.2613","14583114840.0629","17358610849.701","22534253702.8686","27145693810.1341","32877805200.023","35942270686.3374","41508030431.1074","46523091009.6713","53132244623.9213","64439382896.0156","63596654760.8677","62647195537.6511","61627240831.0948","62057955032.7758","65416879914.3907","78693253275.995","94230055658.6271","101900260856.222","102633789557.535","119791683307.507","121872464483.487","130838040067.584","120579072750.596","127131461119.927","152027402449.804","163517783497.163","161354369892.838","154165219811.533","162286003692.686","171315639982.731","174003247439.305","195418347152.985","228752436371.854","264357494659.388","308722079937.912","345424664369.357","400883873279.083","461946808510.638","386383919342.271","428524701366.599","498157406416.158","509704856037.817","522746212765.957","498339751388.521","386578443732.562","",
"Nepal","NPL","GDP (current US$)","NY.GDP.MKTP.CD","508334413.965087","531959561.62226","574091101.194382","496947904.443033","496098775.308642","735267082.294264","906811943.824649","841974025.462659","772228643.405428","788641965.432099","865975308.641975","882765471.604938","1024098804.93827","972101724.995368","1217953546.97604","1575789254.46938","1452792989.10865","1382400000","1604162497.45945","1851250008.33333","1945916583.33333","2275583316.66667","2395429852.43076","2447174803.37791","2581207387.79709","2619913955.51556","2850784523.37711","2957255379.54315","3487009748.35638","3525228153.17361","3627562402.66027","3921476084.89072","3401211581.29176","3660041666.66667","4066775510.20408","4401104417.67068","4521580381.47139","4918691916.53516","4856255044.39064","5033642384.10596","5494252207.90502","6007061224.48979","6050875806.66403","6330473096.54071","7273938314.71988","8130258041.46706","9043715355.8881","10325618017.379","12545438605.3959","12854985464.0764","16002656434.4746","18850169891.6665","19206631648.9713","19393541020.2195","19811974851.5518","21194888047.8339","",
"Nauru","NRU","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20433291.5364309","39332420.4020347","44289899.6862987","49248823.5898978","72749377.1994046","103811945.189664","108601547.06617","117023941.759151","100457157.645312","",
"New Zealand","NZL","GDP (current US$)","NY.GDP.MKTP.CD","5485854791.97096","5670064168.21773","6077496267.76294","6638937283.13963","7274144350.81809","5654463586.00366","5863733230.97616","5961418093.53003","5180597620.64135","5761588761.69421","","7912290825.15868","9567331064.65727","12802281897.8712","13939602868.1743","12861983284.3912","13604832424.0062","15445837859.1883","18529473244.1472","20730241410.3977","23245512449.3341","24417617184.2478","24164603058.9949","24308622502.6288","21665456808.0473","24680306905.3708","30605196451.2041","40376973073.3519","45176167471.8196","43919630703.6752","45495727006.5141","42745329732.163","41649298170.9911","46775067750.6775","55315342817.0218","63918703506.9075","70140835299.0148","66074513017.7142","56226643507.553","58761222689.2937","52623281956.7031","53872425916.6248","66628222189.3637","88250885550.2626","103905210084.034","114719425473.492","111606899682.251","137314617476.299","133278976593.801","121337372727.841","146584522265.456","168462632327.382","176617424296.729","190690896703.83","200142409766.821","173754075210.516","",
"OECD members","OED","GDP (current US$)","NY.GDP.MKTP.CD","1071131869860.91","1125806274154.25","1215819218255.59","1310227010229.86","1431805910975.55","1554549857269.72","1706771290864.77","1831484620261.54","1985404655270.94","2179052450286.65","2387943625264.63","2643597772799.33","3066782332079.78","3704109479119.09","4152644291002.86","4653173969474.9","5043049476662.44","5685896524393.91","6825822142709.36","7885848249976.99","8752496591826.99","8909559553992.02","8775292178999.19","9065835980409.98","9481608317535.64","10001293155552.4","12119368376362.5","14026397763691","15822627791192","16578225986625.1","18684009290549.2","19761534555970.5","21244990412261.1","21554378235228.7","23067512764568.6","25410156090600.5","25634219603378.2","25240551517061.5","25491908283406.3","26791018709771.5","27358350248958.3","27106886334805.6","28283085844688.6","31687714930605","35269903067601","37274155095074.5","39291631203588","42946489974525.7","45453015913575.1","42524017977324.3","44543538820474.4","47843088714425.6","47720676572041","48243274003443.7","49152349305977","46301414880435.3","",
"Oman","OMN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","63287594.5113414","67768132.1758611","107152720.243027","188864890.808735","239980801.535877","256299496.040317","301010587.102984","366857738.40542","483033932.135729","1645917776.49103","2096699189.34569","2560220034.74233","2741169947.88651","2740301389.69311","3733352634.62652","5981760277.93862","7259120150.55009","7554719455.70353","7932541690.79328","8821366531.55762","10005500579.0388","7323822251.3089","7811183094.92848","8386215864.75943","9372171651.49545","11685045513.6541","11341482444.7334","12452275682.7048","12493107932.3797","12918855656.697","13802600780.2341","15277763328.9987","15837451235.3706","14085373211.9636","15710148244.4733","19507412223.6671","19452015604.6814","20142782834.8505","21633810143.0429","24763589076.723","31081924577.3732","37215864759.4278","42085305591.6775","60905331599.4798","48388296488.9467","58641352405.7217","67937581274.3823","76689206762.0286","78938881664.4993","81035110533.16","69830949284.7854","",
"Other small states","OSS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","3120019076.90746","3703689240.72923","4485098248.88134","6495821840.20971","11967900123.2569","13355928801.2263","16602535339.8882","18699429752.8934","20631569870.3861","26785273739.4038","37183479090.0494","37386111758.2718","35362895953.8822","33399895715.2082","33643215781.1246","31964832446.5343","32342223034.3355","38389604780.47","43140018516.3298","45177813372.1589","54042472137.6902","55657233937.5435","60712697860.6683","57746938491.5883","60483228975.1642","69299405932.891","73173188836.6659","76267373797.7179","74735868777.8909","80430414932.1794","91175843446.2563","90648497963.3339","97722695636.0013","121083917605.416","150073999899.895","182088430248.347","213922665575.569","261894677984.237","320285739123.933","275142428246.245","320197752823.945","395826744538.069","413492745063.652","430577046849.546","443474242802.234","368001649689.286","",
"Pakistan","PAK","GDP (current US$)","NY.GDP.MKTP.CD","3707055900.88198","4054599181.01638","4233095590.0882","4540529105.41789","5130407727.84544","5884712095.75809","6466610751.78496","7403821902.56195","8090088555.2289","8632927257.45485","10027088849.223","10602058189.8362","9309109764.07784","6324884129.38617","8773030424.24242","11340000242.4242","13338484979.798","15126059646.4646","17820100626.2626","19707979303.0303","23689696767.6768","28100605515.1515","30725972786.7299","28691890433.0709","31151824658.6524","31144920554.0897","31899071053.9368","33351528115.351","38472741737.3968","40171019643.3511","40010424928.715","45451960731.7204","48635176852.7673","51478304859.5879","51894781281.8919","60636022422.6176","63320122807.1223","62433300338.0941","62191955814.3478","62973855718.8874","73952374969.7995","72309738921.3329","72306820396.2325","83244801092.7096","97977766197.6724","109502102510.883","137264061106.043","152385716311.916","170077814106.305","168152775283.032","177406854514.885","213587413183.996","224383620829.57","231218567178.979","244360888750.807","271049886672.733","",
"Panama","PAN","GDP (current US$)","NY.GDP.MKTP.CD","537147122.357472","599026264.158633","652120893.136247","722784547.760955","776137544.762792","852485295.920383","928833047.077975","1034376384.97265","1112791080.32402","1221305650.49724","1351006398.65667","1523917225.43343","1673411666.33453","1913793435.46488","2188307563.66823","2435304131.06854","2588105971.10463","2738261891.83272","3244558551.41547","3704551623.10851","4614086385.22803","5222421458.21034","5769767892.16105","5923755871.15538","6183387122.33405","6541517111.56001","6797834219.60531","6827665264.78382","5902783404.29563","5918469839.54438","6433967048.89355","7074675466.71512","8042337717.10487","8782585412.84165","9365289798.88538","9573813687.65665","9870494017.20925","10677286062.1918","11575486374.2233","12130252154.4086","12304114980.2874","12502013401.9778","12994310396.5294","13693981227.8278","15013381686.1828","16374393923.6994","18141666302.3493","20958000000","24522200000","26593500000","28917200000","34373820484.9739","39954761232.6898","44856189494.1064","49165773079.2072","52132289747.1731","",
"Peru","PER","GDP (current US$)","NY.GDP.MKTP.CD","2571908062.07692","2899654840.36567","3286773187.87687","3600957771.15299","4356913870.23508","5166861068.42164","6113607728.15672","6204253758.57616","5736083835.22481","6420909789.63824","7432223176.77261","8289582883.50129","9189413409.01292","10994381894.7984","13858441211.2196","16877163792.1284","15947709379.6507","14620386673.8544","12495779622.071","15962459447.2168","18134029179.6393","21649137620.3055","21793496819.3379","17345624453.6916","17599660054.286","16548827018.2872","15244232957.876","20702298396.9717","15439408447.2288","22499559086.0343","26410386669.3609","34672122339.7898","36139225252.6227","35158109978.8868","44882079766.8913","53312793687.3836","55252414130.3019","58147522522.5225","55501467877.381","50187324567.883","51744749133.213","52030158775.4055","54777553515.0809","58731030121.8671","66768703497.5687","76060606060.606","88643193061.748","102170981144.136","120550599815.441","120822986521.479","147492391535.14","171724325697.898","192605185353.65","201150658576.291","201021342537.156","189111139010.075","",
"Philippines","PHL","GDP (current US$)","NY.GDP.MKTP.CD","6684568805.06881","7256966966.22556","4399827767.96704","4875309866.34017","5271404668.36735","5784398976.9821","6371459304.41018","6809134235.54298","7591603053.43511","8408229699.14295","6687204834.3687","7408305735.65309","8017468688.2004","10082885603.0668","13781139969.6519","14893969287.6557","17097563270.2982","19648106122.0079","22706155475.3048","27502168726.9573","32450541843.0652","35646416952.5425","37140163934.4262","33212180658.1659","31408492876.691","30734335448.9905","29868339080.8263","33195933429.6008","37885440418.6834","42575183905.5606","44311593755.7845","45417561302.2497","52976344928.9564","54368083953.1119","64084460124.4644","74119987244.5011","82848140618.0266","82344260570.6685","72207025219.4752","82995147089.9742","81026297144.2795","76262072022.215","81357602950.1818","83908206456.0645","91371239764.8818","103071585462.599","122210719245.902","149359920005.894","174195135053.121","168334599538.168","199590774784.581","224143083706.777","250092093547.532","271836123723.678","284834199296.32","292451392606.609","",
"Palau","PLW","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","76888000","83855000","82451000","75907000","83527000","95237000","108203000","113213000","117320000","113485000","149300000","160000000","163500000","159900000","175300000","193300000","194700000","196000000","198100000","186400000","183800000","199900000","214200000","228700000","250900000","287400000","",
"Papua New Guinea","PNG","GDP (current US$)","NY.GDP.MKTP.CD","230496032.972722","244832035.023504","261184037.362676","275968039.477545","305312043.675238","344159480.344943","390973233.284802","441706910.068317","485160824.280435","551237316.608803","645537126.217942","717716130.493883","858802035.928144","1299105240.73285","1467346059.99713","1356591176.85561","1511856584.25833","1640763204.44781","1947947524.33347","2293621944.3664","2545983007.89984","2498068350.66865","2368584969.53284","2562492524.81761","2552526263.0759","2423373088.07358","2648033765.69899","3143848331.31402","3655979702.45646","3546460176.99115","3219730365","3787352286.66667","4377984100","4974662910","5502648500","4636113480.00002","5155485419.7","4936605079.99998","3789428160.00001","3477060138.33333","3521348154.79666","3081029665.98233","2999542369.42117","3536459111.2438","3927114465.90565","4865971718.29732","5527856839.07482","6340673793.54534","8000074071.33069","8105331929.8755","9716103408.96554","12873049346.2674","15391629871.3765","15413163674.9224","16928680397.4185","","",
"Poland","POL","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65977748210.5263","85500935934.9901","94337050693.2727","96045645026.178","110803391516.698","142137319587.629","159942880456.956","159117799530.388","174388271853.6","169717677900.734","171885598582.637","190521263343.023","198680637254.902","217518642324.505","255102252843.395","306134635593.744","344826430298.147","429249647594.607","533815789473.684","439796160379.475","479321128909.23","528828473066.019","500344281382.345","524214789307.993","545158979236.012","477066454436.928","",
"Pre-demographic dividend","PRE","GDP (current US$)","NY.GDP.MKTP.CD","8589731879.61741","9096550675.6362","9707199461.77931","10293121019.9755","11232444006.6544","12151362577.1773","13304520857.6138","13127816041.6487","13620724533.6074","15154988594.4629","19266756928.4047","18369639206.5614","21456400110.4949","26135938162.3102","38313871955.5918","43917815457.8067","53038781251.8362","57887850405.6278","63422921937.1273","82654402661.5762","103351562270.201","93119477040.1984","89077962252.8044","76357209945.4869","77016023777.4815","80496468094.5943","82571682877.388","95035810630.2931","97260973009.2472","99251590189.7554","162514715756.856","159522312696.285","152805555453.779","134445605198.276","129404075132.827","155177833759.082","173225352675.083","180766851437.5","178798572976.624","181479349315.683","211754713782.941","200696138115.251","237014013264.434","273897480277.218","332026517231.208","411417451040.787","513693502616.766","628891330039.371","802571907554.277","727267760554.221","1005110055208.22","1162321951271.49","1277807220619.02","1396392775241.47","1483290285370.66","1293396330698.34","",
"Puerto Rico","PRI","GDP (current US$)","NY.GDP.MKTP.CD","1691900000","1865100000","2094400000","2333600000","2570500000","2881500000","3170500000","3532700000","3941700000","4460700000","5034700000","5646800000","6328900000","7002400000","7684800000","8198300000","8968600000","9910900000","11165000000","12750000000","14436100000","15955700000","16764200000","17276600000","19162600000","20289200000","21969400000","23878000000","26178400000","28266800000","30603919000","32287031000","34630430000","36922456000","39690630000","42647331000","45340835000","48187039000","54086409000","57840954000","61701810000","69668635000","72546194000","75833996000","80322313000","83914521340.5431","87276164364.6388","89524131617.1909","93639316000","96385638000","98381268000","100351670000","101080738000","103134778000","","","",
"Korea, Dem. People’s Rep.","PRK","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Portugal","PRT","GDP (current US$)","NY.GDP.MKTP.CD","3193200404.37297","3417516639.37596","3668222357.65702","3905734459.72693","4235608177.67102","4687464054.83455","5135387845.97108","5740241165.63433","6354262628.33537","6969025825.62869","8109032775.45328","9202512367.49117","11240223128.2431","15092052330.3352","17514112075.7695","19349512941.1765","20334835543.7666","21441635411.2101","23489924726.2774","26625439344.2623","32899759311.1734","31980423452.7687","30530759334.0061","27242331885.6316","25220451794.029","27118476173.6675","38749715721.7531","48187667852.5687","56352797353.7604","60600056659.0272","78721607509.4923","89242382961.0101","107602689040.689","95019103603.042","99698453260.8696","118133634071.912","122629812841.175","117046198970.84","123981736420.303","127465545493.288","118358489957.619","121545880984.34","134228697534.35","164964195259.594","189187437298.237","197304513120.259","208566948939.907","240169336162.059","262007590449.685","243745748819.116","238317631788.079","244879869335.557","216368178659.447","226073492966.495","230116915167.055","198923264943.995","",
"Paraguay","PRY","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","400129691.269841","421700442.063492","451524124.603175","477012512.698413","512728946.031746","548758098.412698","609047284.920635","697291727.777778","889357059.52381","1199618980.15873","1351889403.1746","1540820245.2381","1912353339.68254","2350329157.14286","3135123879.36508","4094810488.09524","5219516810.31746","5067450002.20588","5237432542.46575","4067222369.30652","2966234106.19469","3439716561.65443","3778316380.23952","4082625952.73809","4599970618.44348","5695201563.42495","6984367762.90371","7157424031.06045","7249533620.30614","7870982170.98217","9062131307.88275","9788391732.82899","9965225496.5884","9024567484.2013","8392549702.31511","8195993230.74275","7662595075.90241","6325151760.0669","6588103836.34739","8033877360.41697","8734653809.49561","10646157920.3209","13794910633.8518","18504130752.9922","15929902138.1363","20030528042.9171","25099681460.8943","24595319573.7548","28965906502.2306","30881166852.3116","27093938619.3333","",
"Pacific island small states","PSS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","1119616282.99455","1122689692.02889","1171324820.55972","1358446640.67246","1664333144.02794","1904906543.70766","1963973945.85167","1918416874.81301","1837217162.04977","2014163509.74556","1906796890.74406","2070058488.72138","2033566344.72336","2130579708.80006","2224833196.79618","2396494023.52867","2548848790.99684","2794550230.9049","2946231368.6061","3395368754.1178","3668220522.56277","3939054194.21147","3935259729.48047","3383527828.82278","3685094359.28409","3448625307.52242","3375636699.48606","3547082213.74728","4158692971.44496","4803257912.35604","5275879993.2785","5540150761.53657","6099126383.86446","6529247601.27678","5799713084.46203","6416139843.74997","7610358892.31204","8112315543.26035","8366262540.23067","8777658392.3632","8568336288.26771","",
"Post-demographic dividend","PST","GDP (current US$)","NY.GDP.MKTP.CD","1043232168122.4","1102738667852.68","1191292526509.02","1282424015368.64","1399750484621.15","1520453696295.53","1667324011496.22","1789122853266.12","1938898893323.47","2126832540791.79","2335297955114.73","2589231623067.98","3002818812904.64","3623633610085.73","4046882775766.56","4534669463117.66","4920528429455.34","5561574761001.8","6680472406103.09","7681806350534.53","8506325959616.77","8604356129867.63","8563749239689.16","8883281485121.04","9285484633671.13","9793132017167.68","11955282694989.4","13848069757648.7","15593673477555.4","16301946856572.2","18319161755553.8","19324770956022.9","20745461180248.5","20909840959105.2","22431156764911.9","24854240997060.4","24986512436591.5","24513507117560.8","24616270479048.3","25840881108629.5","26281352504094.6","26041221042179.9","27158199989044.9","30468337824203.7","33855988088900.4","35633347353193.9","37476841139014","40873810862893.3","43179641927216.2","40651597324493.3","42390949645546.7","45500260596639.1","45430163612556.1","45809870043331.5","46649449879607.4","44024638763162.4","",
"French Polynesia","PYF","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","176534589.603389","215659455.017302","220984369.12915","259590076.293001","242943776.862299","254035999.217197","296613496.873269","325843254.667123","431254103.046477","555337985.682991","690319754.911192","732286143.34291","793193187.41557","1005573294.20763","1215031775.26795","1362151523.68993","1279972866.38172","1286462642.63697","1335895286.3918","1378991403.37881","1507230778.89921","2301514717.29807","2543199148.3893","2687472829.62988","2636461517.1052","3181206304.81549","3267367609.89528","3558215110.24809","3694600399.89225","3522272321.40766","3982374845.92709","3954696873.74892","3567062511.87293","3775160797.38928","3797016068.69688","3447543137.9415","","","","","","","","","","","","","","","","",
"Qatar","QAT","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","301791301.791302","387700084.245998","510259940.720474","793884368.040437","2401403227.44085","2512784033.37828","3284301332.18953","3617580171.76055","4052000412.70087","5633000318.02401","7829094613.07082","8661263763.73626","7596703214.28571","6467582307.69231","6704395824.17583","6153296456.04396","5053021950.54945","5446428681.31868","6038187032.96703","6487912087.91209","7360439423.07692","6883516483.51648","7646153983.51648","7156593653.84615","7374450769.23077","8137911978.02198","9059340384.61539","11297802115.3846","10255495027.4725","12393131868.1319","17759890109.8901","17538461538.4615","19363736263.7363","23533791208.7912","31734065934.0659","44530494505.4945","60882142857.1428","79712087912.0879","115270054945.055","97798351648.3516","125122306346.154","167775274725.275","186833516483.516","198727747252.747","206224725274.725","164641483516.484","",
"Romania","ROU","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","38413636363.6364","40809523809.5238","42105263157.8947","38995454545.4545","28998684210.5263","25121666666.6667","26362894736.8421","30074440483.3837","37662075750.123","37182938696.0752","35838588169.6429","41976002703.9207","36183003978.3474","37438527799.5302","40716836998.0386","46174557555.5892","59867801204.8193","76216441462.1442","99697566667.8107","123533036667.853","171536685395.563","208181626900.631","167422949529.4","167998080493.408","185362855081.021","171664638717.49","191549024910.604","199493490982.921","177954489851.961","",
"Russian Federation","RUS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","506500154001.466","516814258695.568","517962962962.963","460290556900.726","435083713850.837","395077301248.464","395531066563.296","391719993756.828","404926534140.017","270953116950.026","195905767668.562","259708496267.33","306602673980.117","345110438692.185","430347770731.787","591016690742.798","764017107992.391","989930542278.695","1299705247685.76","1660844408499.61","1222643696991.85","1524916112078.87","2034007406354.34","2154067053237.85","2231826797008.17","2052806729652.36","1331207745853.38","",
"Rwanda","RWA","GDP (current US$)","NY.GDP.MKTP.CD","119000024","122000016","125000008","128000000","129999994","148799980","124525702.857143","159560018","172200018","188700037","219900006","222952578.196381","246457838.336681","290746157.145921","308458423.183854","571863295.740122","637754162.101094","746650558.55469","905709147.27019","1109346220.52885","1254765349.93185","1407062607.63214","1407242640.23211","1479688125.8852","1587412957.22263","1715625839.17973","1944711061.30888","2157434025.16467","2395493877.51365","2405021932.89997","2550185618.14774","1911600969.76612","2029026704.02707","1971525998.87685","753636370.454546","1293535010.94467","1382334879.40812","1851558301.7002","1989343495.21844","1817655328.06755","1734938264.47371","1674685094.01639","1677447150.10691","1845979298.99285","2089188828.797","2581465863.87859","3110328010.91442","3775447705.93559","4796573531.21622","5308990459.47843","5698548987.88591","6406727230.17325","7219657132.21544","7522006198.23208","7912161659.7618","8095980013.73418","",
"South Asia","SAS","GDP (current US$)","NY.GDP.MKTP.CD","47679118637.7482","50850575695.3805","54271622067.0542","61058785588.5243","69950362546.6393","75140449984.0409","63055011708.5289","69408575693.9916","72867560808.3105","80004892125.9148","86652136063.7727","92122746989.0152","92636212568.8789","106033344856.159","128325764198.339","137458791885.926","134339419330.195","155407354281.714","176822629669.492","198042240754.952","238838400090.648","253081393921.11","261845568159.5","277286279307.111","275906607475.096","300054208863.393","317836295530.424","352955747423.079","379205240319.453","382623162343.481","411962015773.625","366063254659.762","388728331560.529","384862081885.749","436754247032.836","485158049697.029","530755031128.334","556845689522.515","564637673141.859","605115867803.41","629218217253.843","645830783742.653","679163429822.407","793221509949.75","919797967636.788","1053910004883.11","1204953472746.36","1488531364681.02","1515440585439.37","1665349146754.3","2041822177030.66","2271557793916.17","2299244231104.8","2362768525513.41","2584625422946.2","2689862440857.29","",
"Saudi Arabia","SAU","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","4187777711.11111","4485777644.44444","5377333333.33333","7184853347.5974","9664157498.5524","14947391140.1284","45412957746.4789","46773368205.5947","64005665722.3796","74188249978.724","80265619484.6452","111859676267.555","164541738058.737","184291796008.869","153239017560.236","129171635311.143","119624858115.778","103897846493.65","86961922765.3254","85695861148.1976","88256074766.3551","95344459279.0387","116778104138.852","131335914552.737","136304138851.802","132151401869.159","134327102803.738","142457676902.537","157743124165.554","164993858477.971","145772800000","160957066666.667","188441866666.667","183012266666.667","188551200000","214572800000","258742133333.333","328459608764.111","376900133511.348","415964509673.115","519796800000","429097866666.667","526811466666.667","669506666666.667","733955733333.333","744335733333.333","753831733333.333","646001866666.667","",
"Sudan","SDN","GDP (current US$)","NY.GDP.MKTP.CD","1307333333.33333","1419333333.33333","1541666666.66667","1568333333.33333","1611333333.33333","1679333333.33333","1723000000","1865666666.66667","1947333333.33333","2144333333.33333","2437666666.66667","2656000000","2882000000","3571666666.66667","4595000000","5598000000","6979333333.33333","8704000000","7670500000","9032250000","7459833333.33333","10016500000","9240000000","8230153846.15384","9701357142.85714","12403733333.3333","15769062500","20155555555.5556","15399166666.6667","15291507936.5079","12408647540.9836","11379222222.2222","7034219712.52567","8881785938.48085","12794192334.2541","13829744878.6366","9018243044.45155","11681494637.3041","11250327988.0478","10682045258.3647","12257418326.0734","13182979783.533","14803189092.7044","17646503525.1743","21457470202.7839","26524538565.7403","35822408611.5588","45898948564.0593","54526580231.5568","53150209167.934","65634109236.7736","67327289319.733","68125631150.2939","72065940085.772","82151588418.8325","97156119150","",
"Senegal","SEN","GDP (current US$)","NY.GDP.MKTP.CD","792824707.345294","836493109.152284","857425916.243935","886387156.125059","939145851.154484","955834893.28571","984942988.068955","984605369.32995","1034293645.25718","983621024.109038","1024832915.04328","1058120427.15534","1280328245.00174","1471913473.60034","1658273721.28587","2235746644.74234","2266860655.65881","2320786490.70314","2591178368.03735","3226678628.31043","3503282102.95741","3176771103.46058","3109677455.66655","2774199193.31559","2705535756.06004","2962199835.95355","4189860416.18118","5040708115.08482","4985153202.5374","4913065110.53161","5716644272.04692","5617236032.86556","6004885321.34354","5678827998.8247","3877196914.93966","4878719133.22771","5065830414.04947","4672503920.19866","5030344074.0413","5144045359.98185","4679604753.55711","4877602059.50983","5333862371.27113","6858952880.10003","8031344381.09898","8707015771.00113","9358710935.43366","11284603070.5653","13375825205.0612","12771709949.8651","12914130614.1816","14352023940.2661","14194124595.9323","14806481145.049","15284658818.4015","13609989582.0353","",
"Singapore","SGP","GDP (current US$)","NY.GDP.MKTP.CD","704462302.365086","764308114.464916","825885273.748857","917222004.442702","893734483.209199","974193126.878348","1095910100.61414","1237423232.7192","1425029400.2352","1659055272.44218","1919508689.40285","2262544100.3528","2719900350.73917","3693760000","5216773825.99496","5633386679.7981","6326445409.69089","6617532782.90432","7515823563.17127","9294635004.39754","11893405683.8039","14171819540.4446","16078856439.627","17775280373.8318","19735920492.1912","19138296376.1661","18569292304.8952","20897630201.1573","25337226970.5603","30423573842.1785","36152027893.1446","45474442836.4689","52156414978.5144","60644572348.0629","73777792326.8299","87890009877.24","96403758865.2482","100163995150.862","85707636233.2696","86283126843.6578","95833932714.6172","89286208628.6767","91941192896.2359","97001377568.5914","114188557567.152","127417688055.756","147797218201.271","179981288567.447","192225881687.752","192408387762.118","236421782178.218","275221020830.021","289268624469.873","300288499960.042","306344408491.832","292739307535.642","",
"Solomon Islands","SLB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","25203524.0325638","28084252.7582748","28606411.398041","","50056882.8213879","40606712.050639","55272108.8435374","84539332.282562","74617096.4785967","83099107.9066357","93147039.2548237","111022089.96223","151270207.852194","168715353.097132","187313261.319237","188446092.06055","180219397.527425","252806783.386983","232306861.156132","210737869.652598","238606299.605651","310684273.709484","332286760.858189","302515026.890225","320355090.61441","378778047.197842","410923236.189102","464756638.512487","519334096.714525","565163750.56079","567919502.811483","471177008.057148","482214092.308964","435103853.485036","400463452.065176","341661643.551446","332738245.913215","375111894.932329","413909879.281265","456705433.996978","516074228.959749","608293860.271816","597765363.128492","671585343.170686","886498370.696086","1025125081.57494","1059695156.18795","1156563122.85602","1129164718.81436","",
"Sierra Leone","SLE","GDP (current US$)","NY.GDP.MKTP.CD","322009471.57364","327834680.563822","342721579.824661","348546952.141512","371848114.755577","359379856.248057","375479849.80806","348795303.000385","329860091.944037","408690163.476065","434410373.764149","419549425.077086","465381089.98454","575230234.387058","648590642.939888","679335901.117451","594895672.333848","691777758.395115","960728338.93643","1109374722.08294","1100685844.92284","1114830471.91787","1295361885.92419","995104305.347075","1087471861.98928","856890498.625834","490181456.62441","701307602.28443","1055083945.37738","932974411.917142","649644826.800447","779981458.921489","679997997.597117","768812334.801762","911915970.683484","870758739.40678","941742152.709895","850218033.622007","672375927.347148","669384768.87263","635874002.198748","1079478387.83576","1239004287.75607","1371442565.69701","1431208677.30352","1627854494.80246","1885112201.85278","2158496872.85796","2505458705.03338","2489985963.16808","2616610911.07222","2942546781.04663","3801862611.3614","4920343194.99503","5015157815.728","4214779784.51914","",
"El Salvador","SLV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","877720000","929520000","976200000","1009760100","1049400000","1132920000","1186120000","1263720000","1442320000","1665880000","1884120100","2328280100","2941640100","3127960000","3463639900","3573959900","3437200200","3399189100","3506347800","3661683400","3800368600","3771663200","3958045800","4189880000","4372215300","4800900000","5311000000","5954700000","6938000000","8085600000","9500500000","10315500000","11134700000","12008400000","12464700000","13134100000","13812700000","14306700000","15046700000","15798300000","17093800000","18550700000","20104900000","21431000000","20661000000","21418300000","23139000000","23813600000","24350900000","25054200000","25850200000","",
"San Marino","SMR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","853373879.731819","773907642.414748","815205233.062791","879957209.923907","1122981525.35502","1317357834.61634","1375416604.48689","1469000145.311","1687567364.11695","1899879955.48332","","","","","","","","",
"Somalia","SOM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5352000000","5647000000","5925000000","",
"Serbia","SRB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16750000000","20948677839.851","24147996549.5662","18284194680.3844","18409364146.9794","6540247190.33529","12267175481.2542","16116843146.4806","21188704081.2428","24861483280.6339","26252007830.4639","30607991862.4843","40289556656.1455","49259526052.7426","42616653299.9115","39460357730.5224","46466728666.6103","40742313861.1374","45519650911.4138","44210806365.6817","37160332465.1645","",
"Sub-Saharan Africa (excluding high income)","SSA","GDP (current US$)","NY.GDP.MKTP.CD","26663061792.1392","28156532478.3176","30033935486.9377","32248861175.9741","35125022655.9606","38165030054.5068","41002473932.5178","41761557161.2851","44335942891.8641","50211764303.4781","60336256453.8729","60595056698.8661","68453450199.3383","87435937446.9606","115472368090.956","127381179193.069","140186017302.569","152534952342.605","166516286674.415","204373738576.26","261551687841.235","265682281870.129","246090239994.794","230586525998.473","222309106772.492","207703092979.711","229791919135.149","272411444228.131","285561188120.559","298882921140.597","299429254257.515","307215699921.803","309077426959.379","294520628670.156","293386883005.58","336845701943.643","348594547296.049","360534688146.678","340000922252.238","342609900593.296","367339789354.355","341908337074.601","366381610801.003","468147531137.71","582360158295.931","684920963330.96","800270184329.803","931217774859.048","1063655696701.88","1017825411823.32","1359505420750.65","1530410124759.25","1605021499358.45","1690527415081.26","1769289084217.08","1588597099554.7","",
"South Sudan","SSD","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","15550136278.8696","12231362022.6859","15727363443.0995","17826697892.2717","10368813559.322","13257635694.9153","13282084033.8983","9015221096.24474","",
"Sub-Saharan Africa","SSF","GDP (current US$)","NY.GDP.MKTP.CD","26673248235.3973","28166006307.4924","30044366346.1182","32260470560.8668","35137935362.4129","38177743082.7702","41015756488.4221","41774950321.009","44348319846.9063","50223743152.5","60349094978.7764","60611963215.9424","68479321539.3113","87466373210.1638","115506067127.806","127418609344.039","140223342736.636","152588160176.302","166591835531.75","204492186987.437","261685352613.393","265823925759.945","246226272848.739","230722844483.657","222451293763.751","207865949698.552","229994225844.761","272654266736.27","285839264292.668","299181930304.12","299793610405.911","307585485256.686","309510020088.244","294997169446.753","293876811240.435","337357111981.433","349100549915.714","361101363294.439","340614034151.484","343237824056.915","367959115441.492","342535535814.84","367084903222.006","468857689290.23","583204410356.982","685844795042.591","801291221469.504","932254360007.74","1064622986955.88","1018672825199.29","1360475230384.79","1531475784844.69","1606155635202.32","1691938904794.56","1770712093235.08","1590035657181.67","",
"Small states","SST","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","7826856455.33175","8806968444.5737","10394185751.6772","12948322321.9016","20126934685.2045","22907556959.5272","26181232786.248","29734031533.516","31939729346.4663","39661376536.6664","52586673974.647","54338754528.5434","54079951624.5839","52314175035.6257","51884873606.8111","49904799684.2666","48913338517.4322","55883796113.1212","61582680436.6866","64075030802.9707","74110015011.4808","75528395652.8957","80389474396.3902","78627894828.6829","82941041531.2323","93804131178.9409","99833762334.797","105641718736.762","106093155970.891","113849653182.859","126823166642.04","127164339604.048","136194948218.171","162705579836.16","196027387172.866","233990028669.019","271856234638.671","326272478740.156","393295948568.312","336869424808.039","387361912810.68","469108028896.594","489390589795.597","507599716328.913","520837477503.543","443482753606.086","",
"Sao Tome and Principe","STP","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","72230284.4325877","80531992.1217606","96343906.4298042","105360801.941831","126194166.230985","134441116.924998","145827429.572302","188021168.8418","187821029.030558","197454053.144483","233213522.647122","252560557.085219","302925489.682557","348463457.917933","317696178.686716","",
"Suriname","SUR","GDP (current US$)","NY.GDP.MKTP.CD","93850000","98400000","103500000","110000000","120850000","138650000","171100000","198450000","220600000","233450000","247150000","270650000","287600000","305300000","368600000","465000000","505500000","641000000","735500000","783000000","794900000","889050000","915150000","883600000","864150000","873250000","891000000","979850000","1160900000","542520000","388300000","448300000","404600000","428794117.647059","605492537.313433","693970588.235294","860630922.693267","929607500","945000000","885444186.046512","892164393.939394","763465550.458716","1078402127.65957","1271196078.43137","1484092538.40527","1793754804.70037","2626380435.17877","2936612021.85792","3532969034.60838","3875409836.06557","4368398047.64333","4422276621.78703","4980000000","5130909090.90909","5210303030.30303","5150291216.67106","",
"Slovak Republic","SVK","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12694544692.7374","14213045493.8806","15431288006.2104","16452201100.9604","20079363625.5784","25733043137.2549","27821913814.9556","27660149541.1805","29828899205.7277","30415095887.492","29114875621.8905","30703017449.6644","35083608130.9994","46731767494.3567","57240535137.8197","62697540106.9519","70596729394.0534","86304245825.349","100324627215.468","88945625173.6593","89506341721.8543","98175152905.1988","93413992955.8972","98478349315.3252","100760596988.198","87263622047.2441","",
"Slovenia","SVN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21273055398.3017","21480023016.9972","20749140606.2425","22125435372.187","22689994990.1121","20342201356.0052","20875387068.1145","23563576758.1047","29697448108.2957","34470227453.9113","36346974008.2079","39587732028.6037","48114688201.4782","55589849128.4605","50244793831.6199","48016465430.4636","51287601751.4595","46258247574.7506","47688566993.1107","49530147015.8794","42774769768.2156","",
"Sweden","SWE","GDP (current US$)","NY.GDP.MKTP.CD","14842870293.4207","16147160122.7882","17511477311.4463","18954132365.5148","21137242560.8543","23260320646.2745","25302033132.3312","27463409201.8822","29143383490.5896","31649203885.888","37555366021.0315","40980345656.3725","48263914958.8443","58567384058.8006","65082581294.7696","81716751697.8951","88102107647.0993","93136775102.6419","102969762221.976","121646718574.328","140088635568.375","127858412114.39","112767844570.719","103533702638.547","107661673734.858","112514448261.835","148376104539.839","180429286795.786","204068257817.6","214875344909.957","258154283908.9","270362531376.602","280312318915.485","209950792712.696","226079963711.768","264051981551.316","288103936773.039","264477727278.681","266800462898.904","270847937645.236","259802012617.057","239917320966.977","263926220332.543","331108912605.271","381705425301.746","389042298376.845","420032121655.688","487816328342.309","513965650650.119","429657033107.737","488379327089.837","563113421113.421","543880647757.404","578742001487.571","573817719109.402","495623697305.492","",
"Swaziland","SWZ","GDP (current US$)","NY.GDP.MKTP.CD","35076158.4768305","43025199.4960101","45927061.4587708","54128377.4324513","64979280.4143917","70278594.4281114","76858462.8307434","74758504.8299034","79798404.0319194","105417891.642167","112137757.244855","136465324.384787","146741251.46351","221902017.291066","264311994.113319","288302907.369844","272539098.436063","304047838.086477","340616375.344986","412093133.760988","542000513.610683","571542674.577818","537575980.843618","555336145.767884","494475699.857656","361014890.45841","449146608.315098","584135559.921414","692016714.317132","696915430.663057","1114703088.1614","1156141998.33412","1284766234.2216","1357206995.74624","1419293454.99606","1698982437.76019","1602760100.48147","1716699913.19444","1576904292.4588","1547884442.26205","1705063301.53607","1524393932.00218","1406552373.18205","2170557576.63886","2761964270.23345","3106903700.09278","3180028915.3068","3362443069.23666","3240596584.03138","3575304672.1031","4526397202.64438","4959993196.6231","4868463069.42753","4610962392.93223","4492552857.81418","4118488059.31546","",
"Sint Maarten (Dutch part)","SXM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Seychelles","SYC","GDP (current US$)","NY.GDP.MKTP.CD","12012025.2477875","11592024.3649978","12642026.5719722","13923029.264481","15393032.3542452","15603032.7956401","16443034.5612196","16632032.8138977","16074027.3495878","16452027.9927472","18432031.3616773","21965951.7214804","30645121.0127585","36896278.223337","43134498.6932177","47803145.9560303","49278979.547035","64526398.6582547","85552369.9145942","127261099.24396","147357222.779802","154902869.02139","147912069.766502","146712850.50997","151313241.983564","168887539.130029","207850623.638216","249267039.781191","283828769.031683","304832867.395046","368584758.942457","374359556.084926","433667193.814795","473916819.453826","486451204.557142","508221508.221508","503068472.20266","562958836.519905","608369282.225727","622985493.682733","614879764.780006","622262057.191635","697518248.175182","705704816.042365","839319927.272727","919103254.545455","1016418229.25159","1033561654.0568","967199593.960157","847397850.094417","969936525.298729","1065826669.89742","1134267367.19206","1411061260.70839","1422530791.5588","1437722206.38754","",
"Syrian Arab Republic","SYR","GDP (current US$)","NY.GDP.MKTP.CD","857704431.686497","945244992.211306","1110565863.53737","1200447429.35563","1339494290.42432","1472036550.70992","1342287556.59602","1580229795.10881","1753746369.66049","2245011571.98652","2140383695.94618","2589851693.01656","3059682162.06566","3239488104.60091","5159557176.25012","6826980766.8048","7633528920.63247","7696011359.94156","9275203105.57946","9929682184.32718","13062421024.9337","15518199247.3393","16298905397.0701","17589184556.6946","17503082982.2832","16403544510.5268","13293209270.1036","11356215712.9326","10577042354.799","9853396225.58749","12308624283.9787","12981833333.3333","13253565898.9558","13695962019.2084","10122020000","11396706586.8263","13789560878.2435","14505233968.8716","15200846138.4615","15873875968.9922","19325894913.1254","21099833783.503","21582248881.6592","21828144686.0394","25086930693.0693","28858965517.2414","33332844574.7801","40405006007.2086","","","","","","","","","",
"Turks and Caicos Islands","TCA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Chad","TCD","GDP (current US$)","NY.GDP.MKTP.CD","313582727.638108","333975336.626596","357635713.876856","371767002.656036","392247517.601949","416926302.963497","432794922.459759","449826322.995107","453980096.654412","471635620.924368","469266736.605101","501866730.722503","585427545.723598","647199482.827982","652532796.06664","864602103.303074","866044961.048354","935360466.351488","1113920122.61232","1004316495.11176","1033002401.82543","876937559.724954","834369860.427317","832415805.956265","919103735.322906","1033069709.99506","1067828247.23579","1163426850.65024","1482597298.88729","1433686309.83641","1738605558.05436","1877138041.64308","1881847676.80752","1463251055.40068","1179837954.72193","1445919969.89272","1607345450.04578","1544689502.82472","1744794457.276","1534673583.2487","1385058161.76746","1709347793.32873","1987622279.11463","2736666515.8294","4414929219.99649","6646663021.43571","7422102519.56848","8638711442.7705","10351932604.4154","9253484108.49701","10657705536.4978","12156380425.0825","12368071038.7362","12949854262.8127","13922223233.5184","10888798113.7866","",
"East Asia & Pacific (IDA & IBRD countries)","TEA","GDP (current US$)","NY.GDP.MKTP.CD","80087763111.8501","70303170805.351","64422866708.2551","69761023098.1248","80880803189.7254","94389464370.2103","103330515222.934","100124009080.439","101058149503.339","113477646076.466","126497661460.425","136036097563.54","154327294417.776","194305953596.382","219213679656.441","246442988327.277","250141274417.466","289057792208.29","279838518609.956","324144270830.628","374011690755.358","399106999588.175","418865737192.775","439524750236.195","477132381525.017","522889860579.739","521413747781.242","514979768328.282","571178448576.689","617316494562.119","661623252373.214","718040680569.503","804628629581.049","883339777474.453","1062584419259.68","1311487968714.39","1506381671492.91","1560306924415.91","1430089423055.48","1573093987049.35","1733976957454.65","1844876071550.62","2041865926106.24","2311056511652.3","2680080461435.72","3099559565597.15","3729907128660.64","4717942748657.61","5972461094469.74","6480172515095.64","7859352828112.86","9606875931499.91","10716277855158.8","11830417469078.8","12719709709414.6","13179468459007.8","",
"Europe & Central Asia (IDA & IBRD countries)","TEC","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","942153278693.881","1010192757703.92","1006268346993.04","942339776570.656","931205411782.865","837252760844.973","918952178199.459","947726778573.6","979155351541.53","939748028941.823","814080506038.859","885523040598.579","903338011362.31","1013218595885.84","1246212991416.11","1610078899870.75","2014160288033.88","2437563453221.51","3128268910091.53","3872347382715.25","3064841212065.49","3592844048488.34","4343286632472.39","4467030809040.42","4697766450292.09","4474540552353.13","3418998839300.26","",
"Togo","TGO","GDP (current US$)","NY.GDP.MKTP.CD","121128073.114022","126396469.707058","132237441.630863","143255784.510751","166104067.630043","187300336.365369","216136263.912497","231706475.464114","241956910.658103","267732446.378413","253976626.166639","286537524.990331","335677636.893737","406479906.159652","560437742.594972","617321669.390877","619375134.18051","777435020.475847","824263841.539264","891775906.631015","1136408814.19692","962347000.991788","821651918.724626","765746590.616849","718148959.610872","762359722.701402","1060911735.26065","1249099130.02277","1378847487.41137","1352949662.75172","1628427515.41881","1602299862.9243","1692959110.18022","1233496846.33493","982624324.505898","1309382885.33029","1465448290.34132","1498950899.08774","1587345950.9743","1576094566.48548","1294250233.18894","1332328999.09077","1474630207.08242","1673690429.61609","1937074572.08687","2115154262.03025","2202809251.31304","2523462557.38975","3163416242.05877","3163000528.8167","3172945644.5585","3756023159.96","3866617462.61854","4080929201.27925","4482880424.33988","4087903912.67555","",
"Thailand","THA","GDP (current US$)","NY.GDP.MKTP.CD","2760747471.88624","3034043574.06071","3308912796.93487","3540403456.55305","3889129942.30769","4388937649.03846","5279230817.30769","5638461442.30769","6081009427.88461","6695336567.30769","7086538437.5","7375000024.03846","8177884552.88461","10838587357.7466","13703000530.0587","14882747955.0328","16985211146.0238","19779315170.0237","24006570178.1561","27371699082.7126","32353440726.8856","34846107862.3673","36589797857.4006","40042826244.2337","41797592963.4424","38900692712.1496","43096746122.4614","50535438696.4094","61667199834.7428","72250877410.3183","85343063965.9182","98234695722.0341","111452869378.467","128889832382.818","146683499005.964","169278552851.272","183035154107.494","150180268649.388","113675706127.265","126668932159.508","126392308497.749","120296746256.631","134300851255.002","152280653543.725","172895476152.592","189318499954.003","221758486880.313","262942650543.771","291383081231.82","281574762729.76","340923571200.889","370608559050.496","397290682074.825","419888628523.075","404320038916.496","395168025882.03","",
"Tajikistan","TJK","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1352000000","2156666666.66667","1644325581.39535","1343225563.90977","1230996472.66314","1043893062.60575","921843144.229059","1320126706.15503","1086567377.60543","860550305.832491","1080774007.25065","1221113780.25397","1554125530.8029","2076148695.50581","2312319579.02843","2830236053.84429","3719497371.09659","5161336170.46084","4979481980.35098","5642178579.58438","6522732202.50748","7633049792.09321","8506674782.75471","9236309138.04277","7853450374.0001","",
"Turkmenistan","TKM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","2331358819.75954","3010982414.24425","3006988216.55045","3189539641.3171","3208098919.0146","3200539816.0601","3179225948.58114","2561118608.35516","2482228439.71407","2379281767.9558","2450084970.24741","2605688065.08338","2450686659.778","2904662604.82053","3534771968.51189","4462028988.72949","5977440582.80171","6838351088.46688","8104355716.8784","10277598152.4249","12664165103.1895","19271523178.8079","20214385964.9123","22583157894.7368","29233333333.3333","35164210526.3158","39197543859.6491","43513684210.5263","35854571428.5714","",
"Latin America & the Caribbean (IDA & IBRD countries)","TLA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","692451630227.421","705668243068.749","673282595984.988","697435382956.795","710068047850.622","747767142358.306","856987088744.185","940077390545.807","1099075527088.87","1370589627318.1","1288813396358.26","1491765203095.78","1713662340281.95","1826733586947.67","1972973398701.33","2162196674587.51","2171280441774.48","1943914976553.35","2151713501652.67","2085242251441.04","1852652154469.73","1906015890207.13","2212251406443.93","2697128765074.73","3172348093432.89","3760869610288.78","4393753342846.79","4116808640649.4","5143682766891.55","5863235132341.13","5908935346298.94","6052156620518.52","6019885719239.89","5110539546908.26","",
"Middle East & North Africa (IDA & IBRD countries)","TMN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","288794112952.244","296159923067.918","337685000601.115","391994473347.377","402346416292.565","408105270393.401","431638893695.828","447381875595.886","463421115859.121","450212972279.72","507917752477.739","581938459857.531","686628902685.38","798404036308.903","984408938484.371","1219063616894.51","1172544859272.75","1354032869690.31","1566983828350.19","1653636691681.88","1621590707423.68","1555278628176.94","","",
"Timor-Leste","TLS","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","368000000","452000000","444000000","453000000","466000000","491000000","463000000","559000000","694000000","827000000","943000000","1148000000","1293000000","1312000000","1399000000","1441718600","",
"Tonga","TON","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","32506741.7201204","30036416.9619944","34139387.8908849","41567471.6721987","44667002.0120724","53260077.4311091","62242013.3302689","62068161.0711025","60863963.9639639","64248354.5414656","60058663.3144773","68195855.6149733","81667133.4546982","106657267.367342","106344854.986095","113563821.577404","132201141.446861","137066290.55007","138489884.393064","193775943.038933","202547013.927138","219583570.094975","212155124.65374","188686997.319035","196686674.669868","202363492.160332","181244788.473329","182737040.095422","202543202.004099","229358214.792003","262176133.72543","294137737.070038","300143056.873221","349459648.569023","318151987.342379","369435481.362435","423015937.994651","472441382.972447","449387934.017765","443475142.084644","435142408.969348","",
"South Asia (IDA & IBRD)","TSA","GDP (current US$)","NY.GDP.MKTP.CD","47679118637.7482","50850575695.3805","54271622067.0542","61058785588.5243","69950362546.6393","75140449984.0409","63055011708.5289","69408575693.9916","72867560808.3105","80004892125.9148","86652136063.7727","92122746989.0152","92636212568.8789","106033344856.159","128325764198.339","137458791885.926","134339419330.195","155407354281.714","176822629669.492","198042240754.952","238838400090.648","253081393921.11","261845568159.5","277286279307.111","275906607475.096","300054208863.393","317836295530.424","352955747423.079","379205240319.453","382623162343.481","411962015773.625","366063254659.762","388728331560.529","384862081885.749","436754247032.836","485158049697.029","530755031128.334","556845689522.515","564637673141.859","605115867803.41","629218217253.843","645830783742.653","679163429822.407","793221509949.75","919797967636.788","1053910004883.11","1204953472746.36","1488531364681.02","1515440585439.37","1665349146754.3","2041822177030.66","2271557793916.17","2299244231104.8","2362768525513.41","2584625422946.2","2689862440857.29","",
"Sub-Saharan Africa (IDA & IBRD countries)","TSS","GDP (current US$)","NY.GDP.MKTP.CD","26673248235.3973","28166006307.4924","30044366346.1182","32260470560.8668","35137935362.4129","38177743082.7702","41015756488.4221","41774950321.009","44348319846.9063","50223743152.4999","60349094978.7764","60611963215.9424","68479321539.3113","87466373210.1638","115506067127.806","127418609344.039","140223342736.636","152588160176.303","166591835531.75","204492186987.437","261685352613.393","265823925759.945","246226272848.739","230722844483.657","222451293763.75","207865949698.552","229994225844.761","272654266736.27","285839264292.668","299181930304.12","299793610405.911","307585485256.686","309510020088.244","294997169446.753","293876811240.435","337357111981.433","349100549915.714","361101363294.439","340614034151.484","343237824056.915","367959115441.492","342535535814.84","367084903222.006","468857689290.23","583204410356.982","685844795042.591","801291221469.504","932254360007.739","1064622986955.88","1018672825199.29","1360475230384.79","1531475784844.69","1606155635202.32","1691938904794.56","1770712093235.08","1590035657181.67","",
"Trinidad and Tobago","TTO","GDP (current US$)","NY.GDP.MKTP.CD","535670127.748935","584961208.656595","619319197.340022","678235373.038558","711893367.55527","736568861.926151","723735635.536371","761981474.023359","758899950","779200000","821850000","896754316.674262","1083381044.08473","1308799458.96284","2042031901.42217","2442667573.04821","2500410583.79177","3138666666.66667","3562333458.33333","4602416625","6235833333.33333","6992083333.33333","8140416666.66667","7763750000","7757083333.33333","7375918367.34694","4794444444.44444","4797777777.77778","4496852073.46896","4323058823.52941","5068000000","5203223529.41177","5318258823.52941","4581357104.14681","4947205860.01451","5329214163.22001","5759537726.26601","5737751331.63779","6043694330.21609","6808982520.75759","8154338232.95978","8824873259.32105","9008273720.93395","11305459802.0683","13280275123.0354","15982282462.3786","18369070085.3888","21642304045.512","27870257894.2347","19175196445.7936","22157948396.2042","25433011405.3017","25694164489.2373","26436221401.2976","26175906133.4665","23559287483.9276","",
"Tunisia","TUN","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","991047619.047619","1040952380.95238","1085714285.71429","1214666666.66667","1289904761.90476","1439238095.2381","1685217058.71103","2237476420.03773","2730787476.28084","3545933562.42841","4328610489.68432","4507929104.47761","5109324009.32401","5968044209.51466","7188191881.91882","8744134354.16152","8428513568.24625","8133401049.60217","8350176782.55746","8254891864.05767","8410185739.96405","9018136020.15113","9696271268.25148","10096292842.1543","10102075213.3151","12290568181.8182","13074782608.6957","15497286295.7938","14608946896.483","15632463424.2784","18030876599.3444","19587322786.1105","20746360430.4187","21803372266.6198","22943685719.103","21473188881.5933","22066101341.4888","23142294436.2383","27453084982.5378","31183139301.4853","32273007553.5687","34378437265.2141","38908069299.204","44856586316.0458","43454935940.1614","44050929160.2627","45810626509.4474","45044176963.9542","46255554871.6686","47603227896.5659","43015089722.6754","",
"Turkey","TUR","GDP (current US$)","NY.GDP.MKTP.CD","13995067817.5092","8022222222.22222","8922222222.22222","10355555555.5556","11177777777.7778","11944444444.4444","14122222222.2222","15666666666.6667","17500000000","19466666666.6667","17086956521.7391","16256619963.7997","20431095406.3604","25724381625.4417","35599913836.4328","44633707242.7642","51280134554.2889","58676813687.3681","65147022485.7919","89394085658.2038","68789289565.7434","71040020140.4436","64546332580.7583","61678280115.4987","59989909457.8379","67234948264.5987","75728009962.7878","87172789528.3316","90852814004.9917","107143348667.094","150676291094.21","150027833333.333","158459130434.783","180169736363.636","130690172297.297","169485941048.035","181475555282.555","189834649111.257","269287100882.24","249751469675.263","266567532789.507","196005289735.64","232534560443.206","303005303084.816","392166275622.589","482979839089.015","530900094644.732","647139816980.49","730325337118.723","614569781800.821","731144536446.484","774775356126.167","788862935211.869","823256641370.335","798781754066.919","717879788566.76","",
"Tuvalu","TUV","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8824447.74022325","9365165.91369372","9742949.47121034","9630762.95389637","10886825.5592923","11025945.1445515","12334846.2320995","12700905.4475286","12757632.8684508","13687141.1058778","13742057.0500928","13196544.946726","15450994.2410084","18231078.5394643","21534931.6075894","21839098.8927071","22902861.4457831","27030374.0272781","30290219.7617849","27101076.2751521","31823518.6204366","39312016.5033522","39875750.6730172","38322359.5288666","37259689.9224806","32673277.7402149","",
"Tanzania","TZA","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5100405344.39923","4420167588.57625","4258742898.93795","4956588278.56144","4601413263.52894","4257702196.53864","4510846967.8742","5255221424.80962","6496195450.61034","7683852496.84499","9345174219.07253","9697847263.63196","10185786382.8283","10383560602.8537","10805599892.7355","11659129888.8021","12825801580.9281","16929976600.142","18610460326.5437","21501741757.484","27368386358.131","28573777052.4542","31407908612.0943","33878631649.4157","39087748240.4403","44333456244.744","48197218326.7942","45628247290.4618","",
"Uganda","UGA","GDP (current US$)","NY.GDP.MKTP.CD","423008385.744235","441524109.014675","449012578.616352","516147798.742138","589056603.773585","884873949.579832","925770308.123249","967647058.823529","1037815126.05042","1169047619.04762","1260084033.61345","1417787114.84594","1491596638.65546","1702521008.40336","2100142653.35235","2359555555.55556","2447300000","2936470588.23529","2420260869.56522","2139025000","1244610000","1337300000","2177500000","2240333333.33333","3615647477.05434","3519666338.52454","3923232122.12784","6269511614.66235","6508931651.66667","5276480985.99937","4304398865.88268","3321729057.12215","2857457860.05088","3220439044.18949","3990430446.71216","5755818947.42125","6044585326.938","6269333313.17108","6584815846.52754","5998563257.94659","6193246837.09687","5840503868.57245","6178563590.89254","6336696288.98214","7940362799.17997","9013834373.41246","9942597779.99265","12292813603.2327","14239026629.639","18160711201.0079","20186498788.8153","20471099197.0034","23506194155.2319","24992173594.2485","27760811822.5182","27529249701.1469","",
"Ukraine","UKR","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","71896428571.4286","65607522123.8938","52543388913.1384","48214752454.2319","44558076851.5988","50150401353.6015","41883242906.7157","31580961262.8317","31261718319.1794","38009344576.6088","42392896031.2394","50132953288.203","64883060725.7003","86142018069.3504","107753069306.931","142719009900.99","179992405832.321","117227769791.56","136013155905.036","163159671670.265","175781379051.433","183310146378.081","133503411375.739","90615023323.7353","",
"Upper middle income","UMC","GDP (current US$)","NY.GDP.MKTP.CD","205605939995.545","185255739383.306","188508405870.841","205628980125.064","231658600371.185","262015561537.917","286905508677.171","293520735341.02","304476757092.593","338776518296.007","373063670473.923","406624632027.651","479365942498.023","622818963169.376","791352648152.148","867512528424.214","921850173549.277","1021426145812.13","1073471596541.72","1330549141530.29","1553349732910.48","1678341213147.69","1624364494327.98","1733611435052.46","1756601033221.99","1858786660865.28","1945144617899.64","1944033957218.56","2137792918463.61","2324883783257.38","2660576820693.52","2940648712393.4","2863764418755.72","3110087638889.07","3388221614934.82","3781171666215.89","4112716481684.58","4383481675253.65","4321948398586.34","4091771815447.47","4508451167553.89","4563099200185.11","4577077529407.66","5151532839149.97","6188013260021.5","7456843484884.24","8878804787302.45","11052383224281","13533294955981.8","13026952146424.1","15791715863075.4","18912120000439.1","20139360541520.3","21455542821995.7","22024234478539.6","20492673398388.3","",
"Uruguay","URY","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","975000000","1677000000","1847500000","2485500000","2650000000","3481000000","2324400000","3775555555.55556","4084000000","3595909090.90909","3669939393.93939","4156413043.47826","4929350000","7216474358.97436","10132307692.3077","11041481481.4815","9147964028.77698","5098691860.46512","4849660107.33453","4729960474.3083","5881433289.29987","7368212860.31042","8213698744.76987","8438652607.85576","9298680632.74904","11205971155.2758","12878199880.9839","15002106518.4847","17474647792.3829","19297663096.5506","20515543039.2132","23969823010.4429","25385928198.3212","23983945190.6202","22823255801.8447","20898788416.6348","13606494599.4261","12045631092.5353","13686329890.1191","17362857683.8545","19579457966.0538","23410572634.3147","30366213119.2928","31660911277.0294","40284682479.8596","47962439303.7247","51265399744.9558","57531233350.9101","57235766825.403","53442697568.7227","",
"United States","USA","GDP (current US$)","NY.GDP.MKTP.CD","543300000000","563300000000","605100000000","638600000000","685800000000","743700000000","815000000000","861700000000","942500000000","1019900000000","1075884000000","1167770000000","1282449000000","1428549000000","1548825000000","1688923000000","1877587000000","2085951000000","2356571000000","2632143000000","2862505000000","3210956000000","3344991000000","3638137000000","4040693000000","4346734000000","4590155000000","4870217000000","5252629000000","5657693000000","5979589000000","6174043000000","6539299000000","6878718000000","7308755000000","7664060000000","8100201000000","8608515000000","9089168000000","9660624000000","10284779000000","10621824000000","10977514000000","11510670000000","12274928000000","13093726000000","13855888000000","14477635000000","14718582000000","14418739000000","14964372000000","15517926000000","16155255000000","16691517000000","17393103000000","18036648000000","",
"Uzbekistan","UZB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13360607990.6751","13677622222.2222","12941297376.0933","13099013835.5111","12899156990.6156","13350468917.4115","13948892215.5689","14744603773.5849","14988971210.8383","17078465982.0282","13760374487.51","11401351420.1718","9687951055.22541","10128112401.4248","12030023547.8807","14307509838.8053","17330833852.919","22311393927.8817","29549438883.8338","33689223673.2577","39332770928.9426","45915191189.3237","51821573338.1312","57690453460.6205","62643953021.7594","66732736498.1951","",
"St. Vincent and the Grenadines","VCT","GDP (current US$)","NY.GDP.MKTP.CD","13066557.7786852","13999883.3343055","14524878.959342","13708219.0981742","14758210.3482471","15108207.4316047","16099865.8344514","15835177.9329133","15350000","16650000","18450000","20051648.1847182","27585488.9918284","30165373.6218865","32924215.8581726","33237164.715642","32792480.9729606","49353148.1481481","60844777.7777778","71096370.3703704","82340333.3333333","102086555.555556","113759185.185185","122255333.333333","135025000","145641703.703704","160846666.666667","175580629.62963","200726703.703704","214745000","240365259.259259","254829629.62963","277954111.111111","286307814.814815","289438481.481481","316008481.481481","331489703.703704","347770000","373619851.851852","390719148.148148","396270000","430040370.37037","461883444.444444","481806296.296296","521975111.111111","550728666.666667","610778296.296296","678322629.62963","695428851.851852","674922481.481482","681225962.962963","676129407.407407","692933740.740741","721207148.148148","727912814.814815","737683555.555555","",
"Venezuela, RB","VEN","GDP (current US$)","NY.GDP.MKTP.CD","8736939393.93939","9058121212.12121","10022000000","10823878787.8788","9111000000","9496244444.44444","9984400000","10356422222.2222","11343444444.4444","11795044444.4444","12848755555.5556","14625295454.5455","15922863636.3636","19466279069.7674","28985627906.9767","31303581395.3488","36187023255.814","42263209302.3256","46426511627.907","55653325581.3953","67018023255.814","75367139534.8837","76559883720.9302","78540255813.9535","56091900000","57935746666.6667","58793864197.5309","45343793103.4483","58428406896.5517","42119835734.8703","47028010660.9808","51749026408.4507","58450099415.2047","58124193832.5991","56531046464.6465","74906532239.819","68263823148.8138","85843534588.6206","91331203433.1629","97976886247.3172","117140723529.412","122903960204.505","92893587733.6549","83620628582.1082","112453382329.615","145510008134.75","183477522123.894","230364012575.687","315600203539.823","329418979506.288","393801459277.332","316482190800.364","381286237847.667","371336634589.947","","","",
"British Virgin Islands","VGB","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Virgin Islands (U.S.)","VIR","GDP (current US$)","NY.GDP.MKTP.CD","24200000","25700000","36900000","41400000","53800000","66500000","84100000","115400000","173800000","211300000","219000000","257000000","307100000","351600000","395400000","399800000","440000000","461800000","512900000","606700032","727800000","821800000","832600000","916899968","985400000","990400000","1035600000","1147800064","1204600064","1343900032","1564700032","1671200000","1770899968","1996000000","","","","","","","","","","","","","","","","","","","","","","","",
"Vietnam","VNM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","14094687820.7445","26336617261.6954","36658108340.6777","25423812719.4906","6293304840.51995","6471740490.99897","9613369548.20359","9866990092.18743","13180953965.6854","16286434068.4834","20736163924.0492","24657470352.545","26843701147.496","27209601995.8245","28683657995.128","33640085738.648","35291349197.4254","37947904054.452","42717072869.3917","49424107709.8946","57633255618.2731","66371664817.0436","77414425532.2452","99130304099.1274","106014601171.036","115931749697.241","135539487317.008","155820001920.492","171222025117.381","186204652922.262","193599379094.859","",
"Vanuatu","VUT","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","119258835.335525","113423181.338956","98746405.3924806","98144643.8965575","110123779.812821","135553763.982667","123698506.111363","118691396.764915","130834145.053665","148545381.418421","144482170.248703","158397403.041175","188869985.673352","196142585.014816","188080374.400605","219260341.050642","233902114.8683","245177633.168933","255890221.800293","262301252.769228","267999225.256634","272014693.050806","257926881.72043","262603781.799059","314463144.04219","364996869.129618","394962552.336108","439376794.094041","526428309.945088","607958616.143415","610066628.693058","700804286.224354","792149700.679116","781702874.106058","801787555.861121","814954306.971033","742432131.041002","",
"West Bank and Gaza","PSE","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2843299990.03686","3282799986.7167","3409599993.73375","3759800011.59521","4067800005.26302","4271199990.33746","4313600004.90521","4003700002.37772","3555799991.55726","3968000000","4329200000","4831800008.91325","4910100004.48853","5505800004.86843","6673500000","7268200000","8913100000","10459845726.257","11279400010.3737","12476000000","12715599988.8203","12677399994.8544","",
"World","WLD","GDP (current US$)","NY.GDP.MKTP.CD","1352934141105.46","1408319818797.99","1507694495382.42","1628586595985.8","1786711138819.67","1946931144711.62","2110121189314.61","2253163975410.39","2429368208925.09","2672081457955.09","2936449087706.58","3242218447301.69","3748868269020.92","4561619140191.17","5244823351364.49","5838390603244.98","6338946480842.65","7164570104373.51","8438146734961.64","9816406822304.42","11072407163504","11339225370709.1","11217845291200.8","11592060409004.6","12016824283025.2","12643745145459.9","14968095100146.2","17030806318698.2","19065435656265.8","20010757441145.9","22516517358561.9","23851738070186","25342928951843.2","25785801382574.7","27750101352800.9","30847798398716.6","31528704718721.2","31412174125167.5","31315776695463.6","32487897854651","33547584771076.1","33342786907089.5","34617433714414.1","38875972061510.5","43779148933011.9","47391754233579.3","51310592618957.8","57756336378116.2","63345095627850.4","60043973367100.2","65853158964855","73172666460086.8","74681803940142.8","76776112373375.8","78630126296541","74152476351765.6","",
"Samoa","WSM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","121221651.619316","111862823.574979","109200934.328518","95572172.9835657","100947848.64478","111713922.141578","133016065.416065","122888609.715243","125766269.755358","125597205.422315","132303041.36253","133122897.196262","221098106.508876","224865731.381903","249908970.658971","285475591.89651","269481523.200465","258833766.580017","269019710.327456","273088357.1637","288078881.433056","338838639.378435","420320176.359437","465568018.300557","505832439.822977","570469196.667431","619260721.579306","584706020.213857","656789149.595525","762098381.877023","804209309.427213","795753602.492535","800418989.621751","761037916.35753","",
"Yemen, Rep.","YEM","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5647251908.39695","5930370370.37037","6463649985.01648","5368270614.8468","4167356037.1517","4258788725.44991","5785685310.86668","6839039029.748","6325219772.93811","7641101221.43876","9636342274.82408","9854042164.67463","10693278291.8149","11777768086.8693","13873500887.5612","16753769531.6987","19081722875.3022","21656517484.2538","26910851361.7555","25130274124.2524","30906749533.221","32726417878.391","35401339869.3055","40415233436.1767","43228583935.0365","37733919936.2465","",
"South Africa","ZAF","GDP (current US$)","NY.GDP.MKTP.CD","7363096178.07644","7742634887.30225","8269697466.05068","9174867982.64035","10071444211.1158","11002379672.4066","11994960100.798","13382332493.3501","14475710065.7987","16315273134.5373","17907041999.16","19765101370.2461","20753220241.967","28443804466.8588","35727741280.3532","36947938877.62","35473781048.758","39398574287.0285","45326587511.4995","55938240142.5178","80546993194.6584","86833985896.9762","80083518597.6498","86015133649.3755","85169436537.2766","67065070009.4607","79503484221.1697","104024659658.109","114630316416.931","124907439724.056","112014836393.151","120225985441.64","130513680154.278","134309807571.074","139752373972.063","155460234815.693","147608050636.15","152586031835.938","137774695403.65","136631881365.087","136361791002.623","121515880068.764","115482304201.808","175256866088.543","228593703990.959","257772766357.932","271638630111.497","299415359539.558","286769850239.675","295936471258.128","375349396273.835","416418862155.872","396342265529.842","367593603380.597","351304928727.413","314571945857.401","",
"Congo, Dem. Rep.","COD","GDP (current US$)","NY.GDP.MKTP.CD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5840530472.68908","5647034074.07407","5772020526.10602","6091061291.30501","6215716712.29467","4711259427.27273","19088046305.7971","7438189100.33333","8728038525.14034","8937567059.87754","10297483481.223","11964484667.9102","14296507096.4135","16364029327.3456","19206060270.2521","18262773820.8055","20523285374.187","23849009737.6669","27463220380.0054","30014813755.772","32782281736.251","35237742278.1147","",
"Zambia","ZMB","GDP (current US$)","NY.GDP.MKTP.CD","713000000","696285714.285714","693142857.142857","718714285.714286","839428571.428571","1082857142.85714","1264285714.28571","1368000000","1605857142.85714","1965714285.71429","1825285714.28571","1687000000","1910714285.71429","2268714285.71429","3121833333.33333","2618666666.66667","2746714285.71429","2483000000","2813375000","3325500000","3829500000","3872666666.66667","3994777777.77778","3216307692.30769","2739444444.44445","2281258064.51613","1661948717.94872","2269894736.84211","3713614457.83133","3998637681.15942","3285217391.30435","3378882352.94118","3181921787.7095","3273237853.35689","3656647744.24858","3807067121.8609","3597220962.00017","4303281932.29365","3537683046.02331","3404311976.54941","3600683039.73254","4094480988.11931","4193845678.17033","4901839731.26571","6221077674.77871","8331870169.14977","12756858899.2812","14056957976.2648","17910858637.9048","15328342303.9575","20265556273.582","23460098339.7453","25503370699.2015","28045460442.1876","27150646859.9662","21154394545.895","",
"Zimbabwe","ZWE","GDP (current US$)","NY.GDP.MKTP.CD","1052990400","1096646600","1117601600","1159511700","1217138000","1311435800","1281749500","1397002000","1479599900","1747998800","1884206300","2178716300","2677729400","3309353600","3982161400","4371300700","4318372000","4364382100","4351600500","5177459400","6678868200","8011373800","8539700700","7764067000","6352125900","5637259300","6217523700","6741215100","7814784100","8286322700","8783816700","8641481700","6751472200","6563813300","6890675000","7111270700","8553146600","8529571600","6401968200","6858013100","6689957600","6777384700","6342116400","5727591800","5805598400","5755215200","5443896500","5291950100","4415702800","8157077400","9422161300","10956226600","12392715500","13490227100","14196912500","14419185900","",
country,science,culture,peace,order,climate,equality,health
ALB,Albania,121,51,148,118,87,49,126
DZA,Algeria,105,135,121,117,98,134,143
AGO,Angola,161,149,128,144,36,96,144
ARG,Argentina,67,57,30,39,86,116,100
ARM,Armenia,48,124,95,111,140,44,69
AUS,Australia,17,43,33,9,54,66,7
AUT,Austria,2,4,71,1,23,18,23
AZE,Azerbaijan,120,142,113,91,49,119,44
BHS,Bahamas,125,46,68,139,37,40,153
BGD,Bangladesh,119,138,59,61,132,123,94
BLR,Belarus,37,94,97,75,69,148,52
BEL,Belgium,12,1,105,18,30,6,9
BLZ,Belize,108,83,54,107,139,154,151
BEN,Benin,85,99,14,105,162,32,111
BOL,Bolivia,151,128,32,54,131,135,148
BIH,Bosnia and Herzegovina,25,66,151,43,109,70,128
BWA,Botswana,147,62,117,106,104,141,62
BRA,Brazil,98,63,37,42,33,158,32
BRN,Brunei Darussalam,140,86,11,127,79,127,123
BGR,Bulgaria,22,29,43,45,42,82,81
BFA,Burkina Faso,89,116,6,109,154,53,115
BDI,Burundi,61,158,38,153,152,133,133
KHM,Cambodia,154,125,144,93,123,62,103
CMR,Cameroon,87,137,28,79,136,43,84
CAN,Canada,21,22,36,8,29,24,3
CAF,Central African Republic,69,159,162,141,134,140,162
TCD,Chad,143,134,86,146,115,146,150
CHL,Chile,64,101,15,24,40,19,66
CHN,China,60,102,16,97,121,118,27
COL,Colombia,65,98,57,122,58,37,124
COG,Congo,158,97,149,120,52,98,122
CRI,Costa Rica,79,47,40,23,85,47,101
HRV,Croatia,33,35,106,90,16,95,51
CYP,Cyprus,5,34,73,13,6,28,55
CZE,Czech Republic,3,8,107,34,48,152,38
CIV,Côte d'Ivoire,115,136,88,150,82,113,95
COD,Democratic Republic of the Congo,130,163,116,152,127,76,97
DNK,Denmark,4,2,49,3,19,3,6
DOM,Dominican Republic,131,118,126,37,72,77,56
ECU,Ecuador,138,91,13,51,114,109,79
EGY,Egypt,52,100,2,98,118,69,45
SLV,El Salvador,136,65,101,149,128,87,73
GNQ,Equatorial Guinea,162,152,159,161,65,161,163
EST,Estonia,32,6,56,67,89,129,42
FJI,Fiji,59,76,85,162,100,73,31
FIN,Finland,7,16,65,12,26,4,4
FRA,France,13,20,47,15,8,20,18
GAB,Gabon,150,148,157,73,53,83,138
GEO,Georgia,81,90,62,112,84,11,35
DEU,Germany,11,7,44,2,17,30,13
GHA,Ghana,76,52,12,71,116,79,156
GRC,Greece,35,42,133,32,11,65,53
GTM,Guatemala,106,73,10,102,156,117,57
GIN,Guinea,91,120,35,104,159,94,161
GNB,Guinea-Bissau,68,126,147,81,145,57,145
GUY,Guyana,137,55,75,154,120,85,41
HTI,Haiti,135,89,123,159,113,120,159
HND,Honduras,129,107,98,96,158,84,137
HUN,Hungary,9,17,60,50,39,63,39
ISL,Iceland,19,37,112,28,1,108,46
IND,India,62,80,27,100,106,124,37
IDN,Indonesia,160,111,19,62,138,35,70
IRN,Iran,118,157,109,64,94,157,74
IRQ,Iraq,163,160,150,156,73,149,98
IRL,Ireland,18,13,51,17,13,23,17
ISR,Israel,39,74,122,68,10,74,54
ITA,Italy,40,24,74,16,5,42,20
JAM,Jamaica,72,81,48,76,108,54,88
JPN,Japan,50,40,22,38,18,60,16
JOR,Jordan,49,141,21,110,130,41,26
KAZ,Kazakhstan,148,133,26,143,129,114,40
KEN,Kenya,56,129,70,57,144,110,68
KWT,Kuwait,132,71,118,136,68,71,59
KGZ,Kyrgyzstan,94,115,76,101,101,156,76
LAO,Laos,73,144,140,157,71,142,106
LVA,Latvia,29,21,90,58,43,125,63
LBN,Lebanon,66,61,153,84,93,22,89
LSO,Lesotho,122,109,80,78,119,144,93
LBR,Liberia,70,156,158,35,161,16,118
LBY,Libya,156,161,161,130,147,153,146
LTU,Lithuania,24,33,141,51,32,100,71
LUX,Luxembourg,43,12,100,5,35,14,15
MDG,Madagascar,103,95,17,148,141,102,160
MWI,Malawi,111,153,91,76,107,59,125
MYS,Malaysia,53,44,46,70,153,9,61
MLI,Mali,139,96,124,82,133,106,142
MRT,Mauritania,157,143,163,129,160,105,109
MEX,Mexico,83,85,84,69,90,36,92
MDA,Moldova,42,45,4,66,67,88,72
MNG,Mongolia,133,154,23,137,142,75,64
MNE,Montenegro,58,54,134,63,81,27,78
MAR,Morocco,82,132,41,125,103,33,87
MOZ,Mozambique,116,93,120,95,124,115,130
NAM,Namibia,77,59,103,114,102,112,48
NLD,Netherlands,15,5,42,4,15,10,10
NZL,New Zealand,6,28,31,19,31,26,14
NIC,Nicaragua,126,114,127,108,148,81,82
NER,Niger,110,121,7,128,151,92,158
NGA,Nigeria,145,151,25,115,88,111,127
NOR,Norway,41,36,58,6,2,17,8
OMN,Oman,144,127,50,88,78,68,77
PAK,Pakistan,102,150,110,87,126,90,49
PAN,Panama,92,68,83,25,125,45,75
PNG,Papua New Guinea,152,112,78,85,96,132,108
PRY,Paraguay,159,105,39,31,117,163,43
PER,Peru,112,103,96,86,77,64,114
PHL,Philippines,146,108,102,55,61,29,85
POL,Poland,31,19,53,30,46,89,50
PRT,Portugal,46,18,131,40,4,12,25
QAT,Qatar,153,110,69,65,51,58,33
KOR,Republic of Korea,30,32,92,29,83,72,28
MCD,Macedonia,27,70,125,59,62,93,119
ROU,Romania,51,27,29,47,28,138,80
RUS,Russian Federation,47,82,104,132,63,143,29
RWA,Rwanda,114,162,55,151,47,122,65
SAU,Saudi Arabia,100,147,82,134,112,39,11
SEN,Senegal,101,119,115,116,157,25,112
SRB,Serbia,28,38,114,48,105,34,104
SLE,Sierra Leone,123,145,93,56,137,97,99
SVK,Slovakia,45,15,77,46,24,99,102
SVN,Slovenia,16,14,152,20,12,104,21
ZAF,South Africa,26,79,1,33,143,160,36
ESP,Spain,34,23,94,22,21,48,19
LKASri Lanka,113,131,24,89,91,50,110
SUR,Suriname,142,113,143,135,110,151,155
SWZ,Swaziland,95,72,155,99,59,139,58
SWE,Sweden,8,3,52,11,7,1,1
CHE,Switzerland,10,31,61,10,3,2,5
SYR,Syria,128,146,160,94,135,131,132
TZA,Tanzania,141,123,5,83,74,121,140
THA,Thailand,80,77,34,21,155,80,30
TGO,Togo,109,106,9,140,163,8,135
TTO,Trinidad and Tobago,84,87,81,92,99,21,152
TUN,Tunisia,78,84,8,41,55,52,120
TUR,Turkey,55,58,72,126,60,103,22
UGA,Uganda,75,130,79,60,70,136,134
UKR,Ukraine,14,75,137,49,95,126,96
ARE,United Arab Emirates,96,56,154,80,64,51,24
GBR,United Kingdom,1,11,64,14,22,5,2
USA,United States of America,20,53,66,26,34,46,12
URY,Uruguay,127,78,3,44,9,128,91
VUT,Vanuatu,90,66,136,138,20,147,131
VEN,Venezuela,149,139,111,74,97,162,136
VNM,Viet Nam,86,88,87,145,146,67,47
YEM,Yemen,97,155,135,124,149,86,83
ZMB,Zambia,117,140,67,53,45,150,107
ZWE,Zimbabwe,88,117,108,142,150,78,90
1,AFG,EASTERN_FARSI,0.5,NORTHERN_PASHTO,0.35,UZBEK,0.11
2,AGO,PORTUGUESE,0.712,UMBUNDU,0.23,KOONGO,0.082
3,ALB,ALBANIAN,0.988,GREEK,0.005
4,AND,CATALAN,1.0
5,ARE,STANDARD_ARABIC,1.0
6,ARG,SPANISH,1.0
7,ARM,WESTERN_ARMENIAN,0.979,KURDISH_CENTRAL,0.01
8,AUS,ENGLISH,0.768,MANDARIN,0.016
9,AUT,STANDARD_GERMAN,0.886,TURKISH,0.023
10,AZE,AZERBAIJANI_NORTH,0.925,RUSSIAN,0.015
11,BDI,KIRUNDI,1.0
12,BEL,DUTCH,0.6,FRENCH,0.4
13,BEN,FRENCH,0.35,FONGBE,0.24
14,BFA,MOORE,0.4,FRENCH,0.15,FULFULDE,0.0836
15,BGD,BENGALI,0.988
16,BGR,BULGARIAN,0.768,TURKISH,0.08,ROMA,0.044
17,BHS,ENGLISH,1.0
18,BIH,BOSNIAN,0.529,SERBOCROATIAN,0.308,CROATIAN,0.146
19,BLR,RUSSIAN,0.702,BELARUSIAN,0.234
20,BLZ,ENGLISH,0.278,SPANISH,0.2502,BELIZE_KRIOL_ENGLISH,0.197,PROTO_MAYAN,0.046
21,BOL,SPANISH,0.607,PROTO_QUECHUA,0.212,CENTRAL_AYMARA,0.146
22,BRA,PORTUGUESE,1.0
23,BRN,MALAY,0.657,MANDARIN,0.103
24,BTN,TSHANGLA,0.28,DZONGKHA,0.24,NEPALI,0.22
25,BWA,TSWANA,0.782,KALANGA,0.079
26,CAF,SANGO,0.92
27,CAN,ENGLISH,0.588,FRENCH,0.216
28,CHE,STANDARD_GERMAN,0.637,FRENCH,0.204,ITALIAN,0.065,SERBOCROATIAN,0.015
29,CHL,SPANISH,0.77,MAPUDUNGUN_3,0.05
30,CHN,MANDARIN,0.662,AMOY_MINNAN_CHINESE,0.062,SUZHOU_WU,0.061
31,CIV,BAULE,0.25,SENUFO_CEBAARA,0.25,YAKOUBA,0.25,WE_SOUTHERN,0.25
32,CMR,FRENCH,0.18,BULU,0.2,TIKAR_AKUEN,0.2,BANGANDU,0.2
33,COD,FRENCH,0.31,KITUBA,0.15,LINGALA,0.15,SWAHILI,0.15,L31a_LUBA_KASAYI,0.15
34,COG,KITUBA,0.32,NGUNGWEL,0.124,TUMBUKA_ZAMBIE,0.112
35,COL,SPANISH,1.0
36,CPV,CAPE_VERDEAN_CREOLE,1.0
37,CRI,SPANISH,1.0
38,CUB,SPANISH,1.0
39,CYP,GREEK,0.809
40,CZE,CZECH,0.949,SLOVAK,0.02
41,DEU,STANDARD_GERMAN,0.95,TURKISH,0.018
42,DJI,SOMALI,0.619,AFAR,0.36,STANDARD_ARABIC,0.07
43,DNK,DANISH,1.0
44,DOM,SPANISH,1.0
45,DZA,STANDARD_ARABIC,0.72,SIWA_BERBER,0.274
46,ECU,SPANISH,0.85
47,EGY,STANDARD_ARABIC,1.0
48,ERI,TIGRINYA,0.5,TIGRE,0.25
49,ESP,SPANISH,0.74,CATALAN,0.17,GALICIAN,0.07
50,EST,ESTONIAN,0.673,RUSSIAN,0.297
51,ETH,AMHARIC,0.327,W_OROMO,0.316,TIGRIGNA,0.061,SOMALI,0.06
52,FIN,FINNISH,0.927,SWEDISH,0.055
53,FJI,FIJIAN,0.54
54,FRA,FRENCH,1.0
55,GAB,FANG,0.3,MBEDE,0.3,B41_SHIRA,0.3,FRENCH,0.05
56,GBR,ENGLISH,0.98,WELSH,0.012
57,GEO,GEORGIAN,0.71,RUSSIAN,0.09,WESTERN_ARMENIAN,0.07
58,GHA,TWI_ASANTE,0.148,EWE_ADANGBE,0.127,TWI_FANTE,0.099,BORONG,0.046
59,GIN,FULA,0.4,MALINKE,0.3,SUSU,0.2
60,GMB,MANDINKA,0.38,FULA,0.212,WOLOF,0.18
61,GNB,CAPE_VERDEAN_CREOLE,0.44,PORTUGUESE,0.11
62,GNQ,SPANISH,0.676
63,GRC,GREEK,0.99
64,GRL,WEST_GREENLANDIC,0.87,DANISH,0.12
65,GTM,SPANISH,0.6,KICHE,0.064
66,GUY,ENGLISH,1.0
67,HKG,CANTONESE,0.908,ENGLISH,0.028
68,HND,SPANISH,1.0
69,HRV,CROATIAN,0.961
70,HTI,HAITIAN_CREOLE,0.9
71,HUN,HUNGARIAN,0.936
72,IDN,MALANG,0.337,INDONESIAN,0.172,SUNDANESE,0.136
73,IND,HINDI,0.41,BENGALI,0.081,TELUGU,0.072,MARATHI,0.07,TAMIL,0.059,URDU,0.05
74,IRL,ENGLISH,0.95,IRISH_GAELIC,0.0234
75,IRN,PERSIAN,0.58,OLD_TURKIC,0.26,KURDISH_CENTRAL,0.09
76,IRQ,STANDARD_ARABIC,0.6,KURDISH_CENTRAL,0.2,TURKMEN,0.05
77,ISL,ICELANDIC,1.0
78,ISR,HEBREW,0.49,STANDARD_ARABIC,0.18,RUSSIAN,0.15
79,ITA,ITALIAN,1.0
80,JAM,ENGLISH,1.0
81,JOR,STANDARD_ARABIC,1.0
82,JPN,TOKYO_JAPANESE,1.0
83,KAZ,KAZAKH,0.644
84,KEN,GIKUYU,0.18,J321_MARAMA,0.117,LUO,0.11
85,KGZ,KYRGYZ,0.647,UZBEK,0.136,RUSSIAN,0.125
86,KHM,KHMER,0.95
87,KOR,KOREAN,1.0
88,KWT,STANDARD_ARABIC,1.0
89,LAO,LAO,0.55,KHMU,0.11,HMONG_DAW,0.05
90,LBN,STANDARD_ARABIC,0.9
91,LBR,MANDINKA,0.2,
92,LBY,STANDARD_ARABIC,0.8,SIWA_BERBER,0.16
93,LIE,STANDARD_GERMAN,1.0
94,LKA,SINHALA,0.74,TAMIL,0.18
95,LSO,SOTHO_SOUTHERN,0.9,ZULU,0.5
96,LTU,LITHUANIAN,0.82,RUSSIAN,0.08,POLISH,0.05
97,LUX,LUXEMBOURGISH,0.52,FRENCH,0.16
98,LVA,LATVIAN,0.582,RUSSIAN,0.375
99,MAR,STANDARD_ARABIC,0.4,SIWA_BERBER,0.4
100,MAU,MAURITIAN,0.857,BHOJPURI,0.053,FRENCH,0.041
101,MDA,ROMANIAN,0.758,RUSSIAN,0.16
102,MDG,MALAGASY_PLATEAU_SIHANAKA_AMBATONDRAZAKA,0.697,FRENCH,0.2
103,MEX,SPANISH,0.927,CLASSICAL_NAHUATL,0.014
104,MKD,MACEDONIAN,0.665,ALBANIAN,0.251,TURKISH,0.035
105,MLD,MALDIVIAN,1.0
106,MLI,BAMBARA,0.8
107,MMR,YANGON_BURMESE,0.66,SHAN,0.06,PROTO_KAREN,0.05
108,MNE,SERBOCROATIAN,0.779,BOSNIAN,0.053,ALBANIAN,0.053
109,MNG,MONGOLIAN,0.95
110,MOZ,MAKWA_ALUA,0.253,PORTUGUESE,0.107,TSONGA,0.103,SENA,0.075,LOMWE,0.07
111,MRT,STANDARD_ARABIC,0.8,SIWA_BERBER,0.1
112,MTA,MALTESE,0.902,ENGLISH,0.06
113,MWI,NYANJA,0.8,YAO_1,0.101
114,MYS,MALAY,0.67,
115,NAM,KWANYAMA,0.48,NAMA,0.11,AFRIKAANS,0.11,KWANGALI,0.1,HERERO,0.1
116,NCL,FRENCH,1.0
117,NER,HAUSA,0.497,ZARMA,0.255,TAMASHEQ,0.084
118,NGA,HAUSA,0.29,YORUBA,0.21,ECHIE,0.18
119,NIC,SPANISH,0.71,MISKITO,0.025
120,NLD,DUTCH,0.9,EASTERN_FRISIAN
121,NOR,NORWEGIAN_BOKMAAL,0.98
122,NPL,NEPALI,0.478,MAITHILI,0.121,BHOJPURI,0.074
123,NZL,ENGLISH,0.912,MAORI,0.039
124,OMN,STANDARD_ARABIC,1.0
125,PAK,PUNJABI_MAJHI,0.58,NORTHERN_PASHTO,0.08,URDU,0.0
126,PAN,SPANISH,0.93
127,PER,SPANISH,0.841,PROTO_QUECHUA,0.13
128,PHL,PROTO_PHILIPPINE,1.0
129,PNG,TOK_PISIN,1.0
130,POL,POLISH,0.978
131,PRI,SPANISH,0.945,ENGLISH,0.053
132,PRT,PORTUGUESE,1.0
133,PRY,GUARANI,0.51,SPANISH,0.49
134,QAT,STANDARD_ARABIC,1.0
135,ROU,ROMANIAN,0.91,HUNGARIAN,0.067
136,RUS,RUSSIAN,1.0
137,RWA,KINYARWANDA,1.0
138,SAU,STANDARD_ARABIC,1.0
139,SDN,STANDARD_ARABIC,1.0
140,SEN,WOLOF,0.8
141,SLB,PIJIN,1.0
142,SLE,THEMNE, 0.375,MENDE,0.295
143,SLV,SPANISH,1.0
144,SOM,SOMALI,1.0
145,SRB,SERBOCROATIAN,0.883,HUNGARIAN,0.038
146,SSD,DINKA_SOUTHEASTERN,0.481,NUER,0.254,BARI_SUDAN,0.144,ZANDE,0.12
147,SUR,DUTCH,0.6,SRANAN_TONGO,0.2
148,SVK,SLOVAK,0.839,HUNGARIAN,0.107
149,SVN,SLOVENIAN,0.911,SERBOCROATIAN,0.045
150,SWE,SWEDISH,1.0
151,SWZ,SWAZI,0.95
152,SYR,STANDARD_ARABIC,1.0
153,TCD,STANDARD_ARABIC,1.0
154,TGO,EWE_ADANGBE,0.4,FRENCH,0.3,KABIYE,0.16,
155,THA,THAI,0.3,LAO,0.24
156,TJK,TAJIK,1.0
157,TKM,TURKMEN,0.72,RUSSIAN,0.12,UZBEK,0.09
158,TLS,TETUN_DILI,0.36,MAMBAI,0.129,MAKASAE,0.097
159,TTO,ENGLISH,1.0
160,TUN,STANDARD_ARABIC,1.0
161,TUR,TURKMEN,0.85,UZBEK,0.05,RUSSIAN,0.04
162,TWN,AMOY_MINNAN_CHINESE,1.0
163,TZA,MAKONDE,0.33,DATOOGA_DIALECT_2,0.33,MACHAME,0.33
164,UGA,LUGANDA,0.5,KARIMOJONG,0.5
165,UKR,UKRAINIAN,0.778,RUSSIAN,0.173
166,URY,SPANISH,1.0
167,USA,ENGLISH,0.8,SPANISH,0.124
168,UZB,UZBEK,0.8,RUSSIAN,0.055,TAJIK,0.5
169,VEN,SPANISH,0.9
170,VNM,VIETNAMESE,0.857
171,VUT,VALPEI,0.667,BISLAMA,0.337
172,YEM,STANDARD_ARABIC,1.0
173,ZAF,ZULU,0.227,XHOSA,0.16,AFRIKAANS,0.135,ENGLISH,0.096
174,ZMB,BEMBE,0.334,NYANJA,0.147,M64_TONGA_1,0.114,LOZI_2,0.055
175,ZWE,SHONA,0.7,ZIMBABWE_NDEBELE,0.2
CODE Country Count Percent Established Immigrant Total Mean Median Index Coverage
AFG Afghanistan 42 0.59 41 1 22,964,800 560,117 8,000 0.790 98%
ALB Albania 12 0.17 8 4 2,801,786 280,179 4,220 0.503 83%
DZA Algeria 21 0.30 18 3 33,135,600 1,743,979 40,000 0.360 90%
- American Samoa 7 0.10 2 5 55,910 9,318 25,800 0.210 86%
AND Andorra 5 0.07 4 1 74,270 14,854 19,650 0.671 100%
AGO Angola 40 0.56 40 0 23,511,670 602,863 43,900 0.748 98%
- Anguilla 2 0.03 2 0 12,450 6,225 6,225 0.141 100%
- Antigua and Barbuda 5 0.07 2 3 135,000 33,750 66,500 0.515 80%
ARG Argentina 38 0.54 24 14 44,146,270 1,337,766 8,410 0.165 87%
ARM Armenia 13 0.18 7 6 3,041,450 276,495 11,135 0.053 85%
- Aruba 6 0.08 4 2 81,090 20,272 9,000 0.429 67%
AUS Australia 259 3.65 215 44 21,607,217 87,479 30 0.274 95%
AUT Austria 29 0.41 13 16 8,961,530 426,740 24,900 0.234 72%
AZE Azerbaijan 37 0.52 18 19 9,246,510 264,186 20,000 0.202 95%
BHS Bahamas 5 0.07 3 2 576,280 144,070 284,500 0.509 80%
- Bahrain 14 0.20 6 8 724,300 55,715 80,000 0.658 93%
BGD Bangladesh 46 0.65 41 5 193,817,420 4,404,941 15,500 0.318 96%
- Barbados 3 0.04 3 0 518,290 172,763 256,000 0.500 100%
BLR Belarus 11 0.15 4 7 9,170,400 833,673 1,230,500 0.411 100%
BEL Belgium 36 0.51 11 25 12,807,200 457,400 200,000 0.700 78%
BLZ Belize 12 0.17 8 4 541,160 45,097 14,100 0.721 100%
BEN Benin 56 0.79 55 1 6,635,390 122,878 60,500 0.933 96%
- Bermuda 3 0.04 2 1 65,610 32,805 63,000 0.076 67%
BTN Bhutan 31 0.44 23 8 639,800 25,592 8,000 0.827 81%
BOL Bolivia 45 0.63 43 2 7,335,305 170,588 400 0.565 96%
BIH Bosnia and Herzegovina 11 0.15 5 6 2,699,500 269,950 383,000 0.694 91%
BWA Botswana 38 0.54 31 7 2,213,660 63,247 5,950 0.397 92%
BRA Brazil 227 3.20 216 11 204,400,751 959,628 240 0.099 94%
- British Indian Ocean Territory 1 0.01 1 0 3,500 3,500 3,500 0.000 100%
- British Virgin Islands 2 0.03 2 0 39,700 19,850 19,850 0.500 100%
BRN Brunei 17 0.24 15 2 459,685 28,730 8,150 0.570 94%
BGR Bulgaria 25 0.35 11 14 8,016,320 364,378 10,500 0.226 88%
BFA Burkina Faso 71 1.00 71 0 12,472,930 183,425 20,500 0.721 96%
BDI Burundi 4 0.06 3 1 10,036,100 2,509,025 9,600 0.007 100%
KHM Cambodia 28 0.39 27 1 15,826,130 608,697 6,220 0.101 93%
CMR Cameroon 280 3.94 279 1 10,166,051 37,375 9,500 0.974 97%
CAN Canada 164 2.31 94 70 32,967,314 207,342 360 0.603 97%
- Cape Verde Islands 4 0.06 2 2 492,000 492,000 492,000 ? 25%
- Caribbean Netherlands 6 0.08 5 1 18,540 3,708 3,390 0.707 83%
- Cayman Islands 4 0.06 1 3 74,840 18,710 50,000 0.475 100%
CAF Central African Republic 83 1.17 72 11 3,488,143 45,301 17,350 0.959 93%
TCD Chad 132 1.86 131 1 8,638,559 71,988 13,150 0.933 91%
CHL Chile 17 0.24 11 6 17,728,013 1,772,801 10,500 0.036 59%
CHN China 301 4.24 299 2 1,298,861,948 4,448,157 27,700 0.521 97%
- China–Hong Kong 10 0.14 7 3 7,323,700 813,744 89,800 0.205 90%
- China–Macao 8 0.11 6 2 862,790 107,849 19,620 0.253 100%
TWN China–Taiwan 28 0.39 22 6 22,093,700 920,571 6,620 0.489 86%
COL Colombia 86 1.21 82 4 47,059,630 580,983 1,300 0.019 94%
- Comoros 6 0.08 6 0 764,500 152,900 40,000 0.551 83%
COG Congo 65 0.92 62 3 3,691,260 59,536 14,400 0.821 95%
- Cook Islands 5 0.07 5 0 15,000 3,000 680 0.232 100%
CRI Costa Rica 12 0.17 11 1 4,523,430 452,343 2,840 0.036 83%
HRV Croatia 25 0.35 15 10 4,433,610 192,766 10,200 0.102 92%
CUB Cuba 5 0.07 3 2 11,203,500 3,734,500 5,600,000 0.001 60%
- Curacao 6 0.08 5 1 136,910 27,382 8,550 0.285 83%
CYP Cyprus 15 0.21 4 11 1,531,180 117,783 154,880 0.444 87%
CZE Czechia 26 0.37 10 16 10,794,890 415,188 10,450 0.072 100%
CIV Côte d’Ivoire 99 1.39 84 15 12,308,290 146,527 25,200 0.900 85%
COD Democratic Republic of the Congo 212 2.99 210 2 39,893,030 199,465 26,000 0.948 94%
DNK Denmark 23 0.32 4 19 5,637,000 296,684 16,450 0.089 83%
DJI Djibouti 10 0.14 5 5 731,900 104,557 162,000 0.504 70%
- Dominica 5 0.07 3 2 52,800 17,600 10,000 0.313 60%
DOM Dominican Republic 9 0.13 4 5 9,433,500 1,572,250 159,000 0.040 67%
TLS East Timor 20 0.28 20 0 1,040,006 52,000 16,700 0.819 100%
ECU Ecuador 25 0.35 24 1 16,279,895 651,196 11,695 0.182 100%
EGY Egypt 23 0.32 15 8 94,879,800 4,993,674 752,000 0.512 83%
SLV El Salvador 5 0.07 5 0 6,278,000 2,092,667 7,500 0.003 60%
GNQ Equatorial Guinea 17 0.24 14 3 699,039 58,253 7,500 0.284 71%
ERI Eritrea 20 0.28 15 5 6,465,200 461,800 164,500 0.672 70%
EST Estonia 20 0.28 7 13 1,530,870 85,048 44,250 0.473 90%
ETH Ethiopia 90 1.27 88 2 68,260,250 784,601 48,000 0.862 97%
- Faroe Islands 2 0.03 2 0 48,000 48,000 48,000 ? 50%
FJI Fiji 21 0.30 10 11 842,340 64,795 7,700 0.632 62%
FIN Finland 37 0.52 12 25 5,611,580 151,664 7,585 0.172 100%
FRA France 41 0.58 21 20 69,428,400 1,827,063 118,000 0.252 93%
- French Guiana 16 0.23 13 3 79,650 7,241 925 0.549 69%
- French Polynesia 10 0.14 9 1 257,960 25,796 3,000 0.463 100%
GAB Gabon 43 0.61 43 0 1,074,960 25,594 4,000 0.846 98%
GMB Gambia 24 0.34 11 13 1,314,820 69,201 43,650 0.776 79%
GEO Georgia 27 0.38 19 8 4,882,620 187,793 17,300 0.550 96%
DEU Germany 92 1.30 24 68 86,065,300 1,212,187 80,000 0.336 77%
CHA Ghana 87 1.23 81 6 27,661,206 359,236 36,000 0.858 89%
- Gibraltar 3 0.04 2 1 45,200 15,067 21,200 0.511 100%
GRE Greece 28 0.39 16 12 11,435,480 519,795 9,700 0.123 79%
GRL Greenland 3 0.04 3 0 56,200 28,100 28,100 0.196 67%
- Grenada 4 0.06 4 0 92,250 30,750 2,300 0.064 75%
- Guadeloupe 4 0.06 3 1 449,300 149,767 218,650 0.083 75%
- Guam 9 0.13 2 7 191,000 27,286 52,150 0.736 78%
GTM Guatemala 26 0.37 26 0 14,519,872 558,457 32,500 0.518 100%
- Guernsey 4 0.06 3 1 62,720 31,360 31,360 0.007 50%
GIN Guinea 38 0.54 36 2 8,151,300 254,728 23,000 0.748 84%
GNB Guinea-Bissau 27 0.38 23 4 1,653,490 75,159 8,520 0.859 81%
GUY Guyana 19 0.27 17 2 1,319,093 101,469 1,215 0.514 68%
HTI Haiti 4 0.06 4 0 6,960,600 2,320,200 600 0.000 75%
HND Honduras 12 0.17 10 2 8,142,850 740,259 990 0.039 92%
HUN Hungary 21 0.30 17 4 10,007,110 588,654 3,710 0.033 81%
ISL Iceland 3 0.04 2 1 301,000 100,333 150,150 0.007 100%
IND India 454 6.40 448 6 1,078,672,781 2,508,541 34,400 0.914 95%
IDN Indonesia 709 9.99 707 2 221,455,810 314,568 3,500 0.816 99%
IRN Iran 81 1.14 78 3 85,993,020 1,433,217 81,000 0.638 74%
IRQ Iraq 27 0.38 24 3 33,742,620 1,467,070 110,000 0.761 85%
IRL Ireland 13 0.18 5 8 4,548,940 413,540 21,000 0.118 85%
- Isle of Man 2 0.03 2 0 85,000 42,500 42,500 0.000 100%
ISR Israel 52 0.73 35 17 8,768,485 190,619 42,500 0.719 88%
ITA Italy 44 0.62 34 10 79,507,930 1,939,218 100,000 0.460 93%
JAM Jamaica 8 0.11 4 4 2,692,540 448,757 7,500 0.017 75%
JPN Japan 18 0.25 15 3 129,302,863 9,235,919 5,050 0.035 78%
- Jersey 4 0.06 3 1 64,100 21,367 30,600 0.136 75%
JOR Jordan 14 0.20 10 4 5,227,000 522,700 65,300 0.498 71%
KAZ Kazakhstan 47 0.66 14 33 15,308,820 356,019 90,000 0.514 91%
KEN Kenya 72 1.01 67 5 37,110,868 545,748 178,000 0.927 94%
- Kiribati 3 0.04 2 1 103,990 34,663 51,745 0.019 100%
KWT Kuwait 7 0.10 3 4 1,749,400 349,880 507,200 0.605 71%
KGZ Kyrgyzstan 33 0.46 6 27 5,825,990 215,777 290,650 0.459 82%
LAO Laos 87 1.23 81 6 5,773,774 70,412 7,200 0.697 94%
LVA Latvia 16 0.23 7 9 2,363,930 168,852 8,000 0.526 88%
LBN Lebanon 10 0.14 7 3 4,680,570 585,071 218,000 0.198 80%
LSO Lesotho 5 0.07 5 0 2,214,000 553,500 47,000 0.091 80%
LBR Liberia 34 0.48 31 3 4,290,730 134,085 85,600 0.917 94%
LBY Libya 30 0.42 10 20 6,186,770 229,140 17,000 0.538 90%
- Liechtenstein 5 0.07 4 1 35,910 11,970 17,750 0.092 60%
LTU Lithuania 15 0.21 10 5 3,702,375 336,580 8,000 0.404 73%
LUX Luxembourg 16 0.23 4 12 460,780 28,799 66,100 0.622 100%
MKD Macedonia 13 0.18 11 2 2,080,670 208,067 24,900 0.495 77%
MDG Madagascar 20 0.28 14 6 18,266,000 1,014,778 1,130,000 0.789 90%
MWI Malawi 23 0.32 16 7 13,032,000 766,588 174,500 0.692 74%
MYS Malaysia 145 2.04 134 11 22,083,975 210,324 3,400 0.735 72%
MLD Maldives 2 0.03 2 0 331,000 331,000 331,000 ? 50%
MLI Mali 72 1.01 68 4 12,882,390 189,447 25,000 0.873 94%
MTA Malta 7 0.10 3 4 457,170 65,310 16,200 0.255 100%
- Marshall Islands 2 0.03 2 0 65,700 32,850 32,850 0.457 100%
- Martinique 4 0.06 3 1 427,330 142,443 213,500 0.043 75%
MRT Mauritania 8 0.11 7 1 3,589,900 512,843 97,800 0.228 88%
MAU Mauritius 14 0.20 7 7 1,234,660 94,974 28,550 0.216 93%
- Mayotte 5 0.07 3 2 185,000 46,250 41,700 0.438 80%
MEX Mexico 290 4.09 285 5 119,501,413 416,381 4,725 0.106 99%
- Micronesia 19 0.27 18 1 115,550 6,419 2,065 0.751 95%
MDA Moldova 14 0.20 10 4 3,363,260 480,466 162,000 0.389 50%
- Monaco 4 0.06 4 0 31,700 7,925 5,350 0.652 100%
MNG Mongolia 14 0.20 12 2 2,875,100 359,388 31,000 0.179 57%
MNE Montenegro 9 0.13 5 4 588,140 84,020 32,700 0.244 78%
- Montserrat 2 0.03 2 0 3,920 1,960 1,960 0.050 100%
MAR Morocco 14 0.20 14 0 27,713,920 2,519,447 80,000 0.461 79%
MOZ Mozambique 46 0.65 43 3 20,291,700 450,927 197,500 0.926 98%
MMR Myanmar 118 1.66 118 0 46,676,605 398,945 15,000 0.522 99%
NAM Namibia 32 0.45 27 5 2,748,410 88,658 12,000 0.779 97%
- Nauru 9 0.13 3 6 13,310 2,218 5,005 0.487 67%
NPL Nepal 124 1.75 120 4 26,642,691 220,188 7,780 0.755 98%
NLD Netherlands 45 0.63 15 30 20,448,000 639,000 220,000 0.405 71%
NCL New Caledonia 40 0.56 38 2 143,010 3,972 950 0.750 90%
NZL New Zealand 28 0.39 4 24 4,543,920 174,766 148,000 0.291 93%
NIC Nicaragua 11 0.15 11 0 5,454,490 495,863 740 0.052 100%
NER Niger 22 0.31 22 0 14,000,900 666,710 30,000 0.571 95%
NGA Nigeria 527 7.42 520 7 103,910,005 222,030 13,800 0.890 89%
- Niue 3 0.04 2 1 1,490 745 745 0.192 67%
- Norfolk Island 2 0.03 2 0 2,110 1,055 1,055 0.325 100%
- North Korea 1 0.01 1 0 23,300,000 23,300,000 23,300,000 0.000 100%
- Northern Mariana Islands 7 0.10 4 3 42,180 6,026 4,620 0.719 100%
NOR Norway 21 0.30 11 10 5,261,260 350,751 1,500 0.067 71%
OMN Oman 23 0.32 17 6 3,646,500 182,325 30,000 0.698 87%
PAK Pakistan 79 1.11 73 6 198,899,690 2,762,496 56,500 0.752 91%
- Palau 6 0.08 4 2 19,992 3,332 1,810 0.470 100%
- Palestine 10 0.14 6 4 3,686,800 409,644 1,400 0.303 90%
PAN Panama 19 0.27 15 4 3,432,843 264,065 12,400 0.287 68%
PNG Papua New Guinea 840 11.83 840 0 4,171,079 4,989 1,270 0.988 100%
PRY Paraguay 27 0.38 23 4 6,622,608 254,716 2,060 0.215 96%
PER Peru 94 1.32 93 1 29,982,662 325,898 4,210 0.339 98%
PHL Philippines 191 2.69 183 8 72,034,715 393,632 20,000 0.842 96%
- Pitcairn 2 0.03 2 0 36 36 36 ? 50%
POL Poland 27 0.38 21 6 38,365,810 1,534,632 12,000 0.050 93%
PRT Portugal 18 0.25 9 9 10,346,400 574,800 15,000 0.066 100%
PRI Puerto Rico 12 0.17 4 8 3,601,200 360,120 100,000 0.060 83%
QAT Qatar 14 0.20 3 11 1,583,200 131,933 320,500 0.825 86%
ROU Romania 29 0.41 23 6 21,670,430 1,031,925 19,400 0.153 72%
RUS Russian Federation 155 2.18 108 47 140,654,350 937,696 5,100 0.283 97%
RWA Rwanda 5 0.07 3 2 11,118,740 2,779,685 5,301,515 0.089 80%
- Réunion 8 0.11 3 5 651,200 93,029 310,500 0.452 88%
- Saint Barthélemy 3 0.04 3 0 7,850 2,617 1,000 0.244 100%
- Saint Kitts and Nevis 3 0.04 3 0 39,240 13,080 200 0.012 100%
- Saint Lucia 4 0.06 3 1 159,600 79,800 79,800 0.020 50%
- Saint Martin 5 0.07 3 2 28,500 5,700 5,000 0.689 100%
- Saint Pierre and Miquelon 3 0.04 2 1 6,790 2,263 3,295 0.110 100%
- Saint Vincent and the Grenadines 4 0.06 3 1 138,700 34,675 400 0.010 100%
- Samoa 3 0.04 2 1 187,000 62,333 93,400 0.174 100%
- San Marino 2 0.03 2 0 25,000 12,500 12,500 0.000 100%
SAU Saudi Arabia 24 0.34 11 13 18,723,220 851,055 250,000 0.427 92%
SEN Senegal 47 0.66 38 9 13,974,680 303,797 20,000 0.778 98%
SRB Serbia 23 0.32 16 7 7,208,080 360,404 31,000 0.224 87%
- Seychelles 3 0.04 3 0 85,420 28,473 4,590 0.116 100%
SLE Sierra Leone 26 0.37 24 2 6,977,150 290,715 138,000 0.841 92%
- Singapore 31 0.44 24 7 5,677,330 210,271 14,100 0.761 87%
- Sint Maarten 9 0.13 4 5 39,800 4,422 6,000 0.816 100%
SVK Slovakia 15 0.21 10 5 5,506,240 458,853 15,000 0.247 80%
SVN Slovenia 15 0.21 9 6 2,094,660 190,424 5,505 0.167 73%
SLB Solomon Islands 73 1.03 73 0 380,859 5,290 2,735 0.968 99%
SOM Somalia 14 0.20 13 1 9,938,659 828,222 20,000 0.350 86%
ZAF South Africa 42 0.59 30 12 51,004,892 1,416,803 133,500 0.871 86%
KOR South Korea 5 0.07 3 2 48,649,600 12,162,400 24,202,500 0.010 80%
SSD South Sudan 69 0.97 69 0 4,444,650 79,369 26,000 0.929 81%
ESP Spain 24 0.34 15 9 45,419,910 2,523,328 42,500 0.276 75%
LKA Sri Lanka 12 0.17 7 5 19,983,720 1,998,372 46,000 0.446 83%
SDN Sudan 77 1.08 76 1 32,195,500 473,463 13,000 0.307 88%
SUR Suriname 27 0.38 21 6 547,035 21,881 1,650 0.709 93%
SWZ Swaziland 7 0.10 5 2 1,105,900 157,986 19,000 0.209 100%
SWE Sweden 36 0.51 14 22 10,056,090 295,767 3,200 0.226 94%
CHE Switzerland 25 0.35 12 13 8,772,330 438,616 30,500 0.683 80%
SYR Syria 24 0.34 18 6 23,785,610 1,081,164 76,000 0.363 92%
- São Tomé e Príncipe 7 0.10 4 3 120,090 17,156 7,540 0.630 100%
TJK Tajikistan 33 0.46 13 20 7,580,210 303,208 27,500 0.276 76%
TZA Tanzania 126 1.77 125 1 48,071,890 400,599 86,000 0.871 95%
THA Thailand 83 1.17 70 13 52,892,781 734,622 13,800 0.752 87%
TGO Togo 46 0.65 44 2 4,889,380 113,707 34,300 0.905 93%
- Tokelau 5 0.07 2 3 2,421 484 870 0.679 100%
- Tonga 4 0.06 3 1 105,550 26,388 1,020 0.029 100%
TTO Trinidad and Tobago 9 0.13 7 2 2,632,500 329,062 20,000 0.599 89%
TUN Tunisia 13 0.18 6 7 11,532,500 961,042 21,200 0.122 92%
TUR Turkey 52 0.73 39 13 82,840,960 2,124,127 66,000 0.345 75%
TKM Turkmenistan 31 0.44 6 25 5,300,460 176,682 256,850 0.457 97%
- Turks and Caicos Islands 3 0.04 2 1 11,620 5,810 5,810 0.146 67%
- Tuvalu 3 0.04 3 0 10,100 5,050 5,050 0.020 67%
- U.S. Virgin Islands 6 0.08 3 3 167,410 33,482 52,300 0.550 83%
UGA Uganda 45 0.63 43 2 33,690,850 765,701 303,000 0.929 98%
UKR Ukraine 40 0.56 22 18 49,826,886 1,346,673 75,600 0.489 92%
ARE United Arab Emirates 34 0.48 7 27 5,651,610 235,484 407,000 0.707 71%
GBR United Kingdom 84 1.18 11 73 61,536,550 809,691 57,400 0.154 90%
USA United States 347 4.89 220 127 316,386,398 944,437 25 0.333 97%
URY Uruguay 14 0.20 4 10 3,469,050 385,450 27,000 0.111 64%
UZB Uzbekistan 38 0.54 10 28 30,973,900 910,997 378,000 0.466 89%
VUT Vanuatu 117 1.65 111 6 192,536 1,674 680 0.973 98%
- Vatican State 2 0.03 2 0 330 165 165 0.000 100%
VEN Venezuela 51 0.72 44 7 29,699,865 645,649 705 0.040 90%
VNM Viet Nam 111 1.56 109 2 76,935,380 761,736 13,500 0.267 91%
- Wallis and Futuna 3 0.04 3 0 12,960 4,320 3,900 0.548 100%
YEM Yemen 14 0.20 11 3 15,762,900 1,432,991 59,950 0.581 79%
ZMB Zambia 56 0.79 46 10 11,433,470 238,197 32,850 0.830 86%
ZWE Zimbabwe 23 0.32 21 2 11,688,440 649,358 145,000 0.597 78%
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 3 columns, instead of 62. in line 2.
"Data Source","World Development Indicators",
"Last Updated Date","2017-02-01",
"Country Name","Country Code","Indicator Name","Indicator Code","1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016",
"Aruba","ABW","Population, total","SP.POP.TOTL","54208","55435","56226","56697","57029","57360","57712","58049","58385","58724","59065","59438","59849","60239","60525","60655","60589","60366","60106","59978","60096","60567","61344","62204","62831","63028","62644","61835","61077","61032","62148","64623","68235","72498","76700","80326","83195","85447","87276","89004","90858","92894","94995","97015","98742","100031","100830","101218","101342","101416","101597","101936","102393","102921","103441","103889","",
"Andorra","AND","Population, total","SP.POP.TOTL","13414","14376","15376","16410","17470","18551","19646","20755","21888","23061","24279","25560","26892","28231","29514","30706","31781","32769","33746","34819","36063","37502","39112","40862","42704","44597","46515","48458","50431","52449","54511","56674","58904","61003","62707","63854","64291","64147","63888","64161","65399","67770","71046","74783","78337","81223","83373","84878","85616","85474","84419","82326","79316","75902","72786","70473","",
"Afghanistan","AFG","Population, total","SP.POP.TOTL","8994793","9164945","9343772","9531555","9728645","9935358","10148841","10368600","10599790","10849510","11121097","11412821","11716896","12022514","12315553","12582954","12831361","13056499","13222547","13283279","13211412","12996923","12667001","12279095","11912510","11630498","11438949","11337932","11375768","11608351","12067570","12789374","13745630","14824371","15869967","16772522","17481800","18034130","18511480","19038420","19701940","20531160","21487079","22507368","23499850","24399948","25183615","25877544","26528741","27207291","27962207","28809167","29726803","30682500","31627506","32526562","",
"Angola","AGO","Population, total","SP.POP.TOTL","5270844","5367287","5465905","5565808","5665701","5765025","5863568","5962831","6066094","6177703","6300969","6437645","6587647","6750215","6923749","7107334","7299508","7501320","7717139","7952882","8211950","8497950","8807511","9128655","9444918","9745209","10023700","10285712","10544904","10820992","11127870","11472173","11848971","12246786","12648483","13042666","13424813","13801868","14187710","14601983","15058638","15562791","16109696","16691395","17295500","17912942","18541467","19183907","19842251","20520103","21219954","21942296","22685632","23448202","24227524","25021974","",
"Albania","ALB","Population, total","SP.POP.TOTL","1608800","1659800","1711319","1762621","1814135","1864791","1914573","1965598","2022272","2081695","2135479","2187853","2243126","2296752","2350124","2404831","2458526","2513546","2566266","2617832","2671997","2726056","2784278","2843960","2904429","2964762","3022635","3083605","3142336","3227943","3286542","3266790","3247039","3227287","3207536","3187784","3168033","3148281","3128530","3108778","3089027","3060173","3051010","3039616","3026939","3011487","2992547","2970017","2947314","2927519","2913021","2904780","2900247","2896652","2893654","2889167","",
"Arab World","ARB","Population, total","SP.POP.TOTL","92540534","95077992","97711191","100439395","103263656","106184090","109210743","112342573","115557094","118823872","122128175","125439089","128801209","132298955","136044481","140114424","144542039","149296257","154303887","159455867","164670713","169926632","175237742","180606318","186005735","191564251","197202142","202851923","208546282","214250542","222117305","228171034","232417246","238628852","244893420","252591048","258423164","264153948","269795252","275503565","281326250","287291826","293402563","299731956","306387415","313430911","320906736","328766559","336886468","345054176","353112237","361031820","368802611","376504253","384222592","392022276","",
"United Arab Emirates","ARE","Population, total","SP.POP.TOTL","92612","100985","112240","125216","138220","150318","161077","171781","185312","205570","235434","275160","324069","382823","451948","531265","622051","722849","827394","927303","1016789","1093108","1158477","1218223","1280278","1350433","1430548","1518991","1613904","1712117","1811458","1913190","2019014","2127863","2238281","2350192","2467726","2595220","2733770","2884188","3050128","3217865","3394060","3625798","3975945","4481976","5171255","6010100","6900142","7705423","8329453","8734722","8952542","9039978","9086139","9156963","",
"Argentina","ARG","Population, total","SP.POP.TOTL","20619075","20953079","21287682","21621845","21953926","22283389","22608747","22932201","23261273","23605992","23973062","24366442","24782950","25213388","25644505","26066975","26477153","26878567","27277742","27684530","28105889","28543366","28993989","29454739","29920907","30388781","30857242","31326473","31795515","32263559","32729740","33193920","33655149","34110912","34558114","34994818","35419683","35833965","36241578","36648054","37057453","37471535","37889443","38309475","38728778","39145491","39558750","39969903","40381860","40798641","41222875","41655616","42095224","42538304","42980026","43416755","",
"Armenia","ARM","Population, total","SP.POP.TOTL","1867396","1934239","2002170","2070427","2138133","2204650","2269475","2332624","2394635","2456370","2518408","2580894","2643464","2705584","2766495","2825650","2882831","2938181","2991954","3044564","3096298","3145885","3192877","3239212","3287588","3339147","3396511","3457054","3510439","3542720","3544695","3511912","3449497","3369673","3289943","3223173","3173425","3137652","3112958","3093820","3076098","3060036","3047249","3036420","3025982","3014917","3002161","2988117","2975029","2966108","2963496","2967984","2978339","2992192","3006154","3017712","",
"American Samoa","ASM","Population, total","SP.POP.TOTL","20012","20478","21118","21883","22701","23518","24320","25116","25886","26615","27292","27916","28490","29014","29491","29932","30325","30690","31105","31670","32456","33488","34740","36165","37687","39247","40835","42448","44049","45591","47044","48379","49597","50725","51807","52874","53926","54942","55899","56768","57522","58176","58729","59117","59262","59117","58648","57904","57031","56226","55636","55316","55227","55302","55434","55538","",
"Antigua and Barbuda","ATG","Population, total","SP.POP.TOTL","54681","55403","56311","57368","58500","59653","60818","62002","63176","64307","65369","66338","67205","67972","68655","69253","69782","70223","70508","70553","70301","69750","68950","67958","66863","65744","64605","63484","62538","61967","61906","62412","63434","64868","66550","68349","70245","72232","74206","76041","77648","78972","80030","80904","81718","82565","83467","84397","85350","86300","87233","88152","89069","89985","90900","91818","",
"Australia","AUS","Population, total","SP.POP.TOTL","10276477","10483000","10742000","10950000","11167000","11388000","11651000","11799000","12009000","12263000","12507000","12937000","13177000","13380000","13723000","13893000","14033000","14192000","14358000","14514000","14692000","14927000","15178000","15369000","15544000","15758000","16018400","16263900","16532200","16814400","17065100","17284000","17495000","17667000","17855000","18072000","18311000","18517000","18711000","18926000","19153000","19413000","19651400","19895400","20127400","20394800","20697900","20827600","21249200","21691700","22031750","22340024","22728254","23117353","23464086","23781169","",
"Austria","AUT","Population, total","SP.POP.TOTL","7047539","7086299","7129864","7175811","7223801","7270889","7322066","7376998","7415403","7441055","7467086","7500482","7544201","7586115","7599038","7578903","7565525","7568430","7562305","7549425","7549433","7568710","7574140","7561910","7561434","7564985","7569794","7574586","7585317","7619567","7677850","7754891","7840709","7905633","7936118","7948278","7959017","7968041","7976789","7992324","8011566","8042293","8081957","8121423","8171966","8227829","8268641","8295487","8321496","8343323","8363404","8391643","8429991","8479375","8541575","8611088","",
"Azerbaijan","AZE","Population, total","SP.POP.TOTL","3897889","4030130","4167558","4307315","4445653","4579759","4708485","4832098","4950977","5066080","5178160","5287272","5393176","5496061","5596160","5693796","5789050","5882395","5975045","6068531","6163990","6261942","6362289","6464775","6568857","6674107","6779970","6886428","6994139","7104058","7159000","7271000","7382000","7495000","7597000","7685000","7763000","7838250","7913000","7982750","8048600","8111200","8171950","8234100","8306500","8391850","8484550","8581300","8763400","8947243","9054332","9173082","9295784","9416801","9535079","9651349","",
"Burundi","BDI","Population, total","SP.POP.TOTL","2786740","2840375","2894510","2950903","3011957","3079034","3153879","3235125","3317315","3392949","3457113","3507593","3547335","3582952","3623853","3676991","3744696","3825484","3917866","4018927","4126544","4239673","4359122","4486613","4624617","4774258","4936429","5108581","5284173","5454475","5613141","5759429","5895131","6019901","6134041","6239030","6333415","6420397","6511920","6623707","6767073","6946720","7159918","7401215","7661613","7934213","8218070","8514578","8821795","9137786","9461117","9790151","10124572","10465959","10816860","11178921","",
"Belgium","BEL","Population, total","SP.POP.TOTL","9153489","9183948","9220578","9289770","9378113","9463667","9527807","9580991","9618756","9646032","9655549","9673162","9711115","9741720","9772419","9800700","9818227","9830358","9839534","9848382","9859242","9858982","9856303","9855520","9855372","9858308","9861823","9870234","9901664","9937697","9967379","10004486","10045158","10084475","10115603","10136811","10156637","10181245","10203008","10226419","10251250","10286570","10332785","10376133","10421137","10478617","10547958","10625700","10709973","10796493","10895586","11047744","11128246","11182817","11231213","11285721","",
"Benin","BEN","Population, total","SP.POP.TOTL","2431620","2466002","2503232","2543335","2586362","2632360","2681382","2733450","2788551","2846652","2907769","2971941","3039300","3110074","3184547","3262959","3345501","3432262","3523270","3618509","3718024","3822206","3931355","4045352","4163968","4287263","4414450","4546136","4685375","4836240","5001271","5182525","5378226","5582420","5786794","5985658","6176318","6361301","6546493","6740491","6949366","7174911","7414744","7665681","7922796","8182362","8443717","8707637","8973525","9240982","9509798","9779391","10049792","10322232","10598482","10879829","",
"Burkina Faso","BFA","Population, total","SP.POP.TOTL","4829291","4894578","4960325","5027818","5098892","5174869","5256363","5343020","5434040","5528172","5624597","5723379","5825171","5930487","6040044","6154548","6274037","6398937","6530820","6671659","6822840","6985158","7158256","7340907","7531244","7727912","7930690","8140076","8356306","8579825","8811033","9050090","9297116","9552473","9816586","10089876","10372809","10665781","10969093","11283016","11607944","11943740","12290984","12651596","13028039","13421929","13834195","14264002","14709011","15165856","15632066","16106851","16590813","17084554","17589198","18105570","",
"Bangladesh","BGD","Population, total","SP.POP.TOTL","48200702","49593610","51030604","52532595","54129390","55835020","57675529","59625294","61585520","63422570","65048701","66417450","67578486","68658472","69837960","71247153","72930206","74848466","76948378","79141947","81364176","83599582","85868228","88181211","90559540","93015182","95550798","98149262","100779551","103400571","105983136","108509679","110987459","113442354","115913710","118427768","120987124","123574107","126169583","128746273","131280739","133776064","136228456","138600174","140843786","142929979","144839238","146592687","148252473","149905836","151616777","153405612","155257387","157157394","159077513","160995642","",
"Bulgaria","BGR","Population, total","SP.POP.TOTL","7867374","7943118","8012946","8078145","8144340","8204168","8258057","8310226","8369603","8434172","8489574","8536395","8576200","8620967","8678745","8720742","8758599","8804183","8814032","8825940","8861535","8891117","8917457","8939738","8960679","8960547","8958171","8971359","8981446","8876972","8718289","8632367","8540164","8472313","8443591","8406067","8362826","8312068","8256786","8210624","8170172","8020282","7868468","7823557","7781161","7739900","7699020","7545338","7492561","7444443","7395599","7348328","7305888","7265115","7223938","7177991","",
"Bahrain","BHR","Population, total","SP.POP.TOTL","162501","167924","173107","178048","182774","187348","191782","196203","200953","206469","213102","220808","229588","239860","252139","266686","283843","303236","323511","342829","359902","374125","385950","396447","407223","419425","433487","448994","465235","481126","495944","509654","522748","535692","549151","563730","579855","597834","618054","640904","666855","694893","725365","761595","807989","867014","940808","1026568","1115777","1196774","1261319","1306014","1333577","1349427","1361930","1377237","",
"Bahamas, The","BHS","Population, total","SP.POP.TOTL","109526","115108","121083","127331","133697","140049","146364","152607","158629","164250","169356","173867","177844","181489","185097","188882","192905","197118","201511","206038","210660","215404","220275","225185","230016","234684","239132","243391","247576","251855","256338","261117","266133","271165","275903","280151","283792","286968","290054","293572","297891","303138","309170","315757","322539","329243","335801","342259","348587","354780","360830","366711","372388","377841","383054","388019","",
"Bosnia and Herzegovina","BIH","Population, total","SP.POP.TOTL","3214520","3277096","3341809","3406466","3468083","3524596","3574972","3619997","3661642","3702834","3745637","3790948","3838002","3885229","3930283","3971608","4008411","4041623","4073480","4107135","4144726","4185074","4226663","4270598","4318301","4369527","4428460","4491745","4542757","4559256","4526996","4437898","4301169","4141167","3992256","3879278","3810649","3779354","3775898","3784389","3792878","3799747","3808347","3817313","3825872","3833377","3838504","3840418","3839749","3837732","3835258","3832310","3828419","3823533","3817554","3810416","",
"Belarus","BLR","Population, total","SP.POP.TOTL","8198000","8271216","8351928","8437232","8524224","8610000","8696496","8785648","8874552","8960304","9040000","9115576","9188968","9257272","9317584","9367000","9411000","9463000","9525000","9584000","9643000","9710000","9776000","9843000","9910000","9975000","10043000","10111000","10140000","10170000","10189000","10194000","10216000","10239000","10227000","10194000","10160000","10117000","10069000","10035000","10005000","9928000","9865000","9797000","9730000","9663000","9604000","9560000","9528000","9507000","9490000","9473000","9464000","9466000","9483000","9513000","",
"Belize","BLZ","Population, total","SP.POP.TOTL","92068","94701","97389","100166","103070","106121","109344","112699","116061","119260","122179","124792","127148","129294","131306","133261","135145","136991","138972","141308","144151","147566","151498","155820","160342","164916","169570","174326","179025","183470","187552","191127","194321","197615","201678","206962","213674","221608","230289","239024","247312","254989","262202","269132","276085","283279","290751","298403","306165","313925","321609","329193","336707","344193","351706","359287","",
"Bermuda","BMU","Population, total","SP.POP.TOTL","44400","45500","46600","47700","48900","50100","51000","52000","53000","54000","55000","54600","54200","53800","53400","53000","53200","53400","53600","53800","54670","55050","55449","55930","56423","56898","57382","57849","58347","58841","59326","59021","58595","58910","59320","59746","60129","60497","60943","61285","61833","62504","62912","63325","63740","64154","64523","64888","65273","65636","65124","64564","64798","65001","65139","65235","",
"Bolivia","BOL","Population, total","SP.POP.TOTL","3693451","3764815","3838096","3913397","3990855","4070590","4152665","4237126","4324066","4413584","4505774","4600596","4698090","4798510","4902173","5009259","5119833","5233677","5350320","5469123","5589572","5711598","5835186","5959962","6085499","6211549","6337893","6464736","6592787","6723046","6856246","6992521","7131699","7273824","7418864","7566716","7717445","7870860","8026257","8182710","8339512","8496378","8653343","8810420","8967740","9125405","9283345","9441482","9599916","9758799","9918245","10078238","10238762","10399931","10561887","10724705","",
"Brazil","BRA","Population, total","SP.POP.TOTL","72493585","74706888","77007549","79368453","81751802","84130061","86494987","88853679","91213009","93585746","95982453","98402200","100844391","103320787","105846274","108431284","111076063","113776467","116532153","119341444","122199721","125107382","128054757","131014337","133950551","136836428","139664639","142437479","145150468","147801816","150393143","152916852","155379009","157812220","160260508","162755054","165303155","167893835","170516482","173153066","175786441","178419396","181045592","183627339","186116363","188479240","190698241","192784521","194769696","196701298","198614208","200517584","202401584","204259377","206077898","207847528","",
"Barbados","BRB","Population, total","SP.POP.TOTL","230934","231674","232584","233587","234547","235373","236043","236620","237199","237911","238847","240038","241441","242980","244539","246033","247444","248785","250035","251176","252197","253080","253836","254515","255195","255929","256738","257609","258524","259454","260374","261281","262184","263091","264015","264962","265940","266944","267949","268920","269838","270686","271479","272261","273091","274013","275040","276154","277315","278466","279566","280602","281580","282503","283380","284215","",
"Brunei Darussalam","BRN","Population, total","SP.POP.TOTL","81825","85687","89603","93650","97933","102525","107450","112680","118176","123875","129729","135716","141836","148067","154395","160799","167283","173826","180357","186786","193057","199136","205061","210933","216893","223049","229418","235980","242750","249738","256939","264365","271989","279717","287423","295010","302449","309746","316873","323812","330554","337074","343383","349557","355700","361889","368150","374459","380786","387080","393302","399443","405512","411499","417394","423188","",
"Bhutan","BTN","Population, total","SP.POP.TOTL","224108","229297","234703","240364","246324","252629","259270","266293","273868","282210","291457","301653","312712","324465","336677","349146","361862","374801","387731","400378","412561","423887","434385","444789","456135","469010","484151","500952","517068","529284","535505","534678","528085","518847","511382","508897","512377","520917","533506","548387","564187","580784","598421","616474","634235","651163","666920","681471","694990","707830","720246","732246","743711","754637","765008","774830","",
"Botswana","BWA","Population, total","SP.POP.TOTL","524029","536576","549990","564316","579560","595741","612950","631276","650730","671305","693021","715811","739754","765177","792513","822029","853860","887793","923305","959666","996331","1033073","1069962","1107103","1144716","1182942","1221668","1260720","1300097","1339813","1379814","1420098","1460453","1500356","1539135","1576291","1611827","1645846","1678111","1708368","1736579","1762531","1786672","1810438","1835750","1864003","1895671","1930431","1967866","2007212","2047831","2089706","2132822","2176510","2219937","2262485","",
"Central African Republic","CAF","Population, total","SP.POP.TOTL","1503501","1529229","1556656","1585765","1616515","1648830","1682874","1718558","1755260","1792150","1828710","1864757","1900702","1937383","1975968","2017379","2061552","2108417","2158844","2213888","2274095","2340259","2411693","2485666","2558432","2627424","2691312","2751163","2809720","2871005","2937832","3010950","3089141","3170848","3253698","3335840","3417163","3497910","3577028","3653310","3726048","3794677","3859784","3923294","3987896","4055608","4127112","4202104","4280405","4361492","4444973","4530903","4619500","4710678","4804316","4900274","",
"Canada","CAN","Population, total","SP.POP.TOTL","17909009","18271000","18614000","18964000","19325000","19678000","20048000","20412000","20744000","21028000","21324000","21645535","21993631","22369408","22774087","23209000","23518000","23796000","24036000","24277000","24593000","24900000","25202000","25456000","25702000","25942000","26204000","26550000","26895000","27379000","27791000","28171682","28519597","28833410","29111906","29354000","29671900","29987200","30247900","30499200","30769700","31081900","31362000","31676000","31995000","32312000","32570505","32887928","33245773","33628571","34005274","34342780","34751476","35155499","35543658","35851774","",
"Central Europe and the Baltics","CEB","Population, total","SP.POP.TOTL","91401583","92237118","93014890","93845749","94722599","95447065","96148635","97043587","97882394","98602140","99133296","99638983","100363597","101120519","101946256","102862489","103770134","104589313","105304312","105924838","106564905","107187982","107770794","108326895","108853181","109360296","109847148","110296680","110688533","110801380","110745760","110290445","110005636","110081461","110019570","109913216","109563097","109459093","109207205","109092730","108405522","107811539","107128884","106808998","106530417","106254694","105999320","105504531","105126686","104924372","104543801","104174038","103935318","103713726","103496179","103318638","",
"Switzerland","CHE","Population, total","SP.POP.TOTL","5327827","5434294","5573815","5694247","5789228","5856472","5918002","5991785","6067714","6136387","6180877","6213399","6260956","6307347","6341405","6338632","6302504","6281174","6281738","6294365","6319408","6354074","6391309","6418773","6441865","6470365","6504124","6545106","6593386","6646912","6715519","6799978","6875364","6938265","6993795","7040687","7071850","7088906","7110001","7143991","7184250","7229854","7284753","7339001","7389625","7437115","7483934","7551117","7647675","7743831","7824909","7912398","7996861","8089346","8188649","8286976","",
"Channel Islands","CHI","Population, total","SP.POP.TOTL","109419","110399","111463","112595","113778","114992","116226","117475","118726","119971","121196","122413","123611","124728","125680","126417","126906","127190","127394","127694","128213","128988","129983","131158","132451","133804","135227","136716","138186","139528","140669","141568","142258","142822","143388","144050","144832","145709","146669","147682","148725","149797","150905","152034","153170","154298","155415","156516","157587","158613","159583","160489","161336","162138","162917","163692","",
"Chile","CHL","Population, total","SP.POP.TOTL","7695692","7873504","8054166","8237555","8423614","8612074","8802926","8995410","9187592","9377005","9561868","9741579","9916558","10087377","10255074","10420590","10584237","10746328","10907901","11070198","11234340","11400489","11569135","11742057","11921407","12108576","12304203","12507488","12716508","12928491","13141202","13354054","13566942","13778676","13987999","14193986","14396020","14594070","14788609","14980484","15170387","15358418","15544554","15729268","15913119","16096571","16279728","16462701","16645940","16829957","17015048","17201305","17388437","17575833","17762647","17948141","",
"China","CHN","Population, total","SP.POP.TOTL","667070000","660330000","665770000","682335000","698355000","715185000","735400000","754550000","774510000","796025000","818315000","841105000","862030000","881940000","900350000","916395000","930685000","943455000","956165000","969005000","981235000","993885000","1008630000","1023310000","1036825000","1051040000","1066790000","1084035000","1101630000","1118650000","1135185000","1150780000","1164970000","1178440000","1191835000","1204855000","1217550000","1230075000","1241935000","1252735000","1262645000","1271850000","1280400000","1288400000","1296075000","1303720000","1311020000","1317885000","1324655000","1331260000","1337705000","1344130000","1350695000","1357380000","1364270000","1371220000","",
"Cote d'Ivoire","CIV","Population, total","SP.POP.TOTL","3474724","3602075","3740503","3889859","4049675","4219739","4400054","4591238","4794399","5010962","5241914","5487594","5747633","6021405","6307936","6606395","6916302","7237451","7569558","7912390","8265549","8629121","9002400","9383289","9769105","10158033","10548148","10939987","11337122","11744698","12165909","12600967","13046907","13499696","13953779","14404340","14852193","15296390","15728482","16137824","16517948","16865376","17185421","17491539","17802516","18132702","18486392","18862172","19261647","19684909","20131707","20604172","21102641","21622490","22157107","22701556","",
"Cameroon","CMR","Population, total","SP.POP.TOTL","5361367","5474509","5593768","5719135","5850454","5987671","6130990","6280743","6437157","6600479","6770967","6948847","7134374","7327874","7529704","7740196","7959500","8187840","8425707","8673666","8932121","9201146","9480638","9770555","10070779","10381098","10701458","11031515","11370394","11716975","12070359","12430311","12796739","13169100","13546823","13929575","14317191","14709961","15108630","15514249","15927713","16349364","16779434","17218591","17667576","18126999","18597109","19078100","19570418","20074522","20590666","21119065","21659488","22211166","22773014","23344179","",
"Congo, Rep.","COG","Population, total","SP.POP.TOTL","1013581","1039966","1067611","1096502","1126602","1157905","1190361","1224041","1259190","1296137","1335090","1376189","1419305","1464052","1509880","1556406","1603446","1651134","1699781","1749859","1801688","1855391","1910800","1967596","2025320","2083648","2142529","2202106","2262496","2323890","2386467","2450125","2514907","2581306","2649964","2721277","2795903","2873638","2953011","3031969","3109269","3183883","3256867","3331564","3412592","3503086","3604595","3715665","3832771","3950786","4066078","4177435","4286188","4394334","4504962","4620330","",
"Colombia","COL","Population, total","SP.POP.TOTL","16480384","16982313","17500166","18033548","18581972","19144220","19721464","20311369","20905061","21490948","22061214","22611988","23146803","23674505","24208022","24756969","25323412","25905124","26502172","27113510","27737905","28375995","29027158","29687096","30350082","31011686","31669780","32324326","32975533","33624442","34271563","34916770","35558683","36195170","36823539","37441980","38049040","38645409","39234059","39819279","40403959","40988909","41572493","42152147","42724157","43285636","43835744","44374647","44901660","45416276","45918101","46406446","46881018","47342363","47791393","48228704","",
"Comoros","COM","Population, total","SP.POP.TOTL","188732","191828","194960","198205","201665","205412","209536","214038","218794","223629","228443","233125","237797","242875","248921","256309","265234","275496","286583","297765","308518","318659","328355","337853","347548","357729","368443","379589","391133","403003","415144","427556","440252","453188","466309","479574","492979","506525","520180","533909","547696","561525","575428","589500","603869","618632","633814","649404","665414","681845","698695","715972","733661","751697","769991","788474","",
"Cabo Verde","CPV","Population, total","SP.POP.TOTL","202316","205958","210866","216913","223854","231427","239765","248733","257478","264885","270197","273053","273788","273211","272509","272575","273625","275479","278152","281555","285599","290428","296071","302174","308251","313976","319161","323972","328861","334473","341256","349326","358473","368423","378763","389156","399508","409805","419884","429576","438737","447357","455396","462675","468985","474224","478265","481278","483824","486673","490379","495159","500870","507258","513906","520502","",
"Costa Rica","CRI","Population, total","SP.POP.TOTL","1333042","1381920","1432583","1484512","1537035","1589625","1642189","1694711","1746870","1798315","1848873","1898366","1947048","1995744","2045580","2097410","2151492","2207727","2266153","2326708","2389309","2454127","2521163","2589932","2659772","2730231","2800986","2872214","2944560","3018953","3095994","3175654","3257463","3341005","3425692","3510925","3596733","3682725","3767369","3848725","3925450","3996800","4063208","4125970","4187039","4247843","4308790","4369465","4429506","4488261","4545273","4600487","4654148","4706433","4757606","4807850","",
"Caribbean small states","CSS","Population, total","SP.POP.TOTL","4190810","4270928","4353408","4435830","4514432","4586896","4653340","4713767","4770152","4825706","4882583","4940523","4999973","5060335","5120227","5178940","5237098","5293790","5350330","5409054","5471020","5531599","5599100","5667553","5732089","5786277","5831154","5863744","5886592","5923643","5960368","6001738","6047269","6096016","6146503","6197620","6258158","6312682","6365223","6411686","6454716","6497461","6532561","6567210","6603018","6640916","6681231","6723587","6767278","6811213","6854569","6896697","6937108","6975754","7012857","7048966","",
"Cuba","CUB","Population, total","SP.POP.TOTL","7141129","7289828","7450404","7618359","7787149","7951928","8110428","8263547","8413329","8563191","8715123","8869961","9025299","9176051","9315371","9438445","9544268","9634677","9711393","9777287","9835177","9884219","9925618","9966733","10017061","10082990","10167998","10269276","10379080","10486110","10582082","10664577","10735775","10797556","10853435","10906048","10955372","11000431","11041893","11080506","11116787","11151472","11184540","11214837","11240680","11261052","11275199","11284043","11290239","11297442","11308133","11323570","11342631","11362505","11379111","11389562","",
"Curacao","CUW","Population, total","SP.POP.TOTL","124826","126125","128414","130860","133148","135266","136682","138140","140298","142581","144739","147389","147710","146912","148351","149129","149399","149459","148341","147851","148041","148629","150101","151159","151940","152711","152662","151456","149254","146937","145400","144403","143912","144299","144630","145139","146306","146956","144472","139428","133860","129047","129205","131897","134192","137658","141239","144056","145880","146833","148703","150831","152088","153822","155909","158040","",
"Cayman Islands","CYM","Population, total","SP.POP.TOTL","7867","8026","8142","8228","8299","8371","8442","8518","8632","8831","9144","9583","10137","10785","11494","12238","13020","13840","14663","15447","16164","16795","17357","17911","18543","19315","20254","21343","22539","23776","25009","26211","27402","28652","30055","31672","33535","35596","37742","39810","41685","43317","44742","46032","47299","48623","50028","51480","52925","54285","55509","56580","57522","58369","59172","59967","",
"Cyprus","CYP","Population, total","SP.POP.TOTL","572929","576395","577691","577912","578629","580971","585311","591304","598491","606117","613619","620860","628000","635109","642335","649755","657526","665528","673252","680013","685406","689173","691711","694074","697717","703693","712340","723380","736477","751047","766611","783138","800660","818814","837166","855389","873246","890733","908040","925491","943287","961482","979883","998150","1015827","1032586","1048293","1063040","1077010","1090486","1103685","1116644","1129303","1141652","1153658","1165300","",
"Czech Republic","CZE","Population, total","SP.POP.TOTL","9602006","9586651","9624660","9670685","9727804","9779358","9821040","9852899","9876346","9896580","9858071","9826815","9867632","9922266","9988459","10058620","10125939","10186755","10242098","10292341","10304193","10300591","10314826","10323856","10330213","10337118","10342227","10347318","10355276","10361068","10333355","10308578","10319123","10329855","10333587","10327253","10315241","10304131","10294373","10283860","10255063","10216605","10196916","10193998","10197101","10211216","10238905","10298828","10384603","10443936","10474410","10496088","10510785","10514272","10525347","10551219","",
"Germany","DEU","Population, total","SP.POP.TOTL","72814900","73377632","74025784","74714353","75318337","75963695","76600311","76951336","77294314","77909682","78169289","78312842","78688452","78936666","78967433","78673554","78336950","78159814","78091820","78126350","78288576","78407907","78333366","78128282","77858685","77684873","77720436","77839920","78144619","78751283","79433029","80013896","80624598","81156363","81438348","81678051","81914831","82034771","82047195","82100243","82211508","82349925","82488495","82534176","82516260","82469422","82376451","82266372","82110097","81902307","81776930","81797673","80425823","82132753","80982500","81413145","",
"Djibouti","DJI","Population, total","SP.POP.TOTL","83636","88499","94200","100622","107584","114963","122868","131403","140461","149891","159667","169370","179212","190536","205157","224182","248619","277622","308213","336254","358960","374683","384743","392908","404589","423470","451068","485565","523266","558810","588356","610679","627063","639215","649878","661076","673202","685644","698256","710652","722562","734088","745459","756656","767644","778406","788941","799309","809639","820097","830802","841802","853069","864554","876174","887861","",
"Dominica","DMA","Population, total","SP.POP.TOTL","60016","61035","61984","62920","63921","65038","66305","67682","69042","70212","71076","71566","71737","71745","71811","72091","72648","73411","74239","74923","75313","75376","75168","74750","74215","73640","73025","72368","71743","71242","70928","70849","70978","71205","71372","71367","71146","70756","70295","69902","69679","69660","69806","70058","70325","70542","70690","70795","70881","70995","71167","71402","71685","72005","72341","72680","",
"Denmark","DNK","Population, total","SP.POP.TOTL","4579603","4611687","4647727","4684483","4722072","4759012","4797381","4835354","4864883","4891860","4928757","4963126","4991596","5021861","5045297","5059862","5072596","5088419","5104248","5116801","5123027","5121572","5117810","5114297","5111619","5113691","5120534","5127024","5129516","5132594","5140939","5154298","5171370","5188628","5206180","5233373","5263074","5284991","5304219","5321799","5339616","5358783","5375931","5390574","5404523","5419432","5437272","5461438","5493621","5523095","5547683","5570572","5591572","5614932","5643475","5676002","",
"Dominican Republic","DOM","Population, total","SP.POP.TOTL","3294039","3406299","3521276","3638628","3757962","3878952","4001377","4125107","4250026","4376056","4503114","4631114","4759935","4889437","5019471","5149934","5280727","5411867","5543520","5675930","5809271","5943591","6078816","6214857","6351572","6488857","6626544","6764623","6903314","7042940","7183646","7325622","7468551","7611463","7753052","7892420","8029114","8163474","8296375","8429116","8562623","8697127","8832286","8967759","9102997","9237565","9371333","9504336","9636491","9767737","9897983","10027140","10155036","10281408","10405943","10528391","",
"Algeria","DZA","Population, total","SP.POP.TOTL","11124892","11404859","11690152","11985130","12295973","12626953","12980269","13354197","13744383","14144437","14550033","14960111","15377095","15804428","16247113","16709098","17190236","17690184","18212331","18760761","19337723","19943667","20575701","21228288","21893857","22565908","23241276","23917889","24591493","25257671","25912364","26554277","27180921","27785977","28362015","28904300","29411839","29887717","30336880","30766551","31183658","31590320","31990387","32394886","32817225","33267887","33749328","34261971","34811059","35401790","36036159","36717132","37439427","38186135","38934334","39666519","",
"East Asia & Pacific (excluding high income)","EAP","Population, total","SP.POP.TOTL","896492991","895784704","907395358","930292410","952838633","976409639","1003576772","1029875983","1057180652","1086235891","1116250866","1146964227","1175990054","1204100118","1230702590","1254860626","1277136144","1297790313","1318387202","1339265399","1359783541","1380911399","1404321928","1427842273","1450329263","1473632648","1498637395","1525225958","1552111436","1578320124","1603652723","1627881291","1650544592","1672375813","1694082971","1715417437","1736435473","1757273497","1777437867","1796509002","1814543356","1831803900","1848308223","1864184472","1879602648","1894744514","1909251689","1923095029","1936736134","1950280764","1963842316","1977658253","1991783241","2006123447","2020656037","2035129646","",
"Early-demographic dividend","EAR","Population, total","SP.POP.TOTL","980067595","1003380277","1027454562","1052236205","1077759547","1104010610","1130979984","1158749092","1187224115","1216495817","1246583735","1277520490","1309264805","1341833433","1375075563","1408970396","1443466317","1478619136","1514688000","1552055886","1590931253","1631355333","1673182374","1716152739","1759875499","1804081410","1848663355","1893586588","1938610747","1983464632","2029981092","2074306790","2118156196","2161775525","2205478532","2249548153","2294124499","2339055962","2384027372","2428750673","2473204321","2516977040","2559959392","2602699761","2645383620","2688160483","2731071075","2774122008","2817324737","2860676106","2904408228","2948205642","2991724468","3035325824","3079001949","3122703317","",
"East Asia & Pacific","EAS","Population, total","SP.POP.TOTL","1042479827","1045793993","1059977365","1085452978","1110564125","1136733610","1166341432","1195012928","1224109922","1256740076","1289404691","1323056644","1354930027","1385247264","1415351115","1442569738","1466838266","1489758534","1512554064","1535753338","1558472173","1581903755","1607549234","1633141623","1657498383","1682528269","1709258866","1737476308","1765937284","1793758539","1820616892","1846419035","1870516977","1893718374","1916928717","1939958969","1962650225","1984871945","2006354328","2026515698","2045729346","2064266243","2081848420","2098602000","2114743503","2130541816","2146013429","2160761464","2175670361","2190185797","2204613382","2219109404","2233936812","2248920288","2264064351","2279186469","",
"Europe & Central Asia (excluding high income)","ECA","Population, total","SP.POP.TOTL","275220745","279488927","283776336","288075008","292347310","296539327","300049053","303610743","307087575","310521319","313854674","317386564","321109635","324679698","328258842","331828536","335514466","339110577","342651168","346176299","349819167","353551640","357124622","360691781","364507586","368335062","372130677","375910215","379564871","383041377","385568047","387534203","389132701","390363718","390990562","391431995","391816812","392207147","392487603","392502054","392648544","392415533","392122448","392288707","392654477","393077520","393637104","394217145","395265896","397037901","399121746","401448188","403830537","406424758","408984246","411338238","",
"Europe & Central Asia","ECS","Population, total","SP.POP.TOTL","667516938","675214286","683152930","691146253","699046950","706691764","713344146","719786852","725974310","732060925","737511115","743158081","749515255","755582491","761444994","767114225","772656242","777946308","783260461","788456015","793795423","799120587","803884347","808473556","813273557","818181288","823227203","828312655","833439109","838607561","842972172","846287676","849687540","852686641","854538617","856060572","857263836","858641127","859721023","860892312","861989674","863492336","865189443","867472980","870067822","872720228","875415605","878428497","881925905","885580688","889077523","892816142","895050287","900863153","903987814","907944124","",
"Ecuador","ECU","Population, total","SP.POP.TOTL","4545548","4676858","4812892","4953735","5099470","5250120","5405692","5566057","5730908","5899842","6072520","6248831","6428707","6611916","6798205","6987393","7179399","7374235","7571953","7772652","7976449","8183194","8392935","8606214","8823746","9045977","9272905","9504132","9739179","9977380","10218085","10460988","10705670","10951200","11196476","11440576","11683480","11924991","12163887","12398691","12628596","12852753","13072056","13289600","13509645","13735232","13967490","14205479","14447600","14691310","14934692","15177280","15419493","15661312","15902916","16144363","",
"Egypt, Arab Rep.","EGY","Population, total","SP.POP.TOTL","27072397","27810001","28560741","29322709","30094082","30872982","31660914","32456565","33252275","34038147","34808599","35561087","36302154","37046807","37815578","38624410","39478585","40377668","41324806","42321740","43369552","44465918","45610430","46807221","48061546","49373806","50748187","52173840","53617678","55035937","56397273","57689828","58922018","60108373","61272847","62434527","63595629","64754566","65922626","67112877","68334905","69599945","70908710","72247626","73596068","74942115","76274285","77605327","78976122","80442443","82040994","83787634","85660902","87613909","89579670","91508084","",
"Euro area","EMU","Population, total","SP.POP.TOTL","265396501","267825309","270324828","272876446","275382199","277856708","280147497","282114541","283966951","285855062","287416203","288999688","290938923","292789890","294470414","296017540","297374619","298597020","299916557","301109767","302311356","303480588","304270836","304870908","305380451","305968030","306748199","307614327","308674767","310043791","311522808","312674707","314065808","315270699","316105840","316837436","317583952","318278768","318923150","319779891","320997414","322454670","324128255","325890549","327687926","329385346","330925570","332644496","334270178","335353297","336142557","336940330","336161537","338755304","338617134","339425073","",
"Eritrea","ERI","Population, total","SP.POP.TOTL","1407631","1441297","1476321","1512671","1550297","1589187","1629333","1670821","1713846","1758668","1805480","1854395","1905406","1958444","2013382","2070145","2128597","2188806","2251129","2316054","2383858","2453689","2525005","2598626","2675717","2756493","2843141","2933871","3020278","3091083","3139083","3160644","3160617","3150811","3147871","3164095","3202598","3260612","3337227","3429656","3535156","3655006","3788532","3928408","4064958","4191273","4304440","4406299","4500638","4593549","4689664","4789568","","","","","",
"Spain","ESP","Population, total","SP.POP.TOTL","30455000","30739250","31023366","31296651","31609195","31954292","32283194","32682947","33113134","33441054","33814531","34191678","34502705","34817071","35154338","35530725","35939437","36370050","36872506","37201123","37439035","37740556","37942805","38122429","38278575","38418817","38535617","38630820","38715849","38791473","38850435","38939049","39067745","39189400","39294967","39387017","39478186","39582413","39721108","39926268","40263216","40756001","41431558","42187645","42921895","43653155","44397319","45226803","45954106","46362946","46576897","46742697","46773055","46620045","46480882","46418269","",
"Estonia","EST","Population, total","SP.POP.TOTL","1211537","1225077","1241623","1258857","1277086","1294566","1308597","1318946","1331214","1345249","1360076","1376955","1392518","1405951","1418169","1429352","1439576","1450211","1460188","1468333","1477219","1487666","1498414","1508745","1518617","1528781","1540190","1552221","1561900","1568131","1569174","1561314","1533091","1494128","1462514","1436634","1415594","1399535","1386156","1380620","1396985","1388115","1379350","1370720","1362550","1354775","1346810","1340680","1337090","1334515","1331475","1327439","1322696","1317997","1314545","1311998","",
"Ethiopia","ETH","Population, total","SP.POP.TOTL","22151218","22671131","23221331","23798378","24396965","25013551","25641176","26280771","26945459","27653622","28414999","29246170","30135007","31028728","31855294","32568539","33144537","33614153","34053431","34569428","35239974","36093319","37109517","38259376","39493503","40775997","42097111","43470219","44908705","46433604","48057094","49784987","51602776","53477944","55366517","57237226","59076414","60893264","62707547","64550161","66443603","68393128","70391170","72432290","74506974","76608431","78735675","80891968","83079608","85302099","87561814","89858696","92191211","94558374","96958732","99390750","",
"European Union","EUU","Population, total","SP.POP.TOTL","409498462","413007006","416670637","420393292","424075860","427592610","430868375","434001552","436916057","439730660","442062264","444368185","447151812","449788759","452256892","454638308","456802618","458746586","460706924","462498335","464340783","466081804","467346238","468419741","469449808","470587065","471888308","473230098","474741457","476355806","477988417","478942970","480342226","481920881","483001906","483927331","484581653","485409098","486055038","487060355","487865459","489073595","490424475","492252932","494232263","496200867","498074489","499915977","501803925","503310374","504412209","505526581","505098575","508050888","508344735","509668361","",
"Fragile and conflict affected situations","FCS","Population, total","SP.POP.TOTL","118691130","121429326","124278225","127248584","130366333","133649618","137111509","140748226","144536592","148446120","152456401","156545910","160728970","165052113","169587903","174377166","179453773","184779096","190245713","195704807","201051077","206257422","211368464","216454794","221617588","226941758","232422187","238061473","243953809","250210140","258881635","266166456","273909354","281946172","290043848","298040428","305868679","313590684","321130376","328783990","336909548","345461879","354332474","363479314","372832172","382338023","392013911","401863906","411873180","421999099","432225198","442535318","452946224","463535772","474395380","485609230","",
"Finland","FIN","Population, total","SP.POP.TOTL","4429634","4461005","4491443","4523309","4548543","4563732","4580869","4605744","4626469","4623785","4606307","4612124","4639657","4666081","4690574","4711440","4725664","4738902","4752528","4764690","4779535","4799964","4826933","4855787","4881803","4902206","4918154","4932123","4946481","4964371","4986431","5013740","5041992","5066447","5088333","5107790","5124573","5139835","5153498","5165474","5176209","5188008","5200598","5213014","5228172","5246096","5266268","5288720","5313399","5338871","5363352","5388272","5413971","5438972","5461512","5482013","",
"Fiji","FJI","Population, total","SP.POP.TOTL","393383","407152","421576","436208","450452","463884","476329","487911","498887","509659","520529","531601","542811","554109","565386","576592","587523","598258","609348","621541","635256","650957","668196","685389","700366","711663","718548","721725","722918","724624","728626","735469","744534","755024","765666","775498","784479","792859","800314","806494","811223","814215","815691","816626","818355","821820","827390","834729","843206","851854","859952","867327","874158","880487","886450","892145","",
"France","FRA","Population, total","SP.POP.TOTL","46814237","47444751","48119649","48803680","49449403","50023774","50508717","50915456","51276054","51638260","52035095","52480421","52959228","53441264","53882416","54252574","54541493","54764462","54947975","55130594","55340782","55585824","55858727","56156284","56470769","56795686","57132691","57482591","57836486","58182702","58512808","58559312","58851216","59106766","59327194","59541900","59753098","59964845","60186291","60496715","60912498","61357431","61805267","62244884","62704897","63179356","63621376","64016229","64374990","64707044","65027512","65342776","65659790","65972097","66495940","66808385","",
"Faroe Islands","FRO","Population, total","SP.POP.TOTL","34266","34730","35153","35550","35946","36363","36804","37258","37718","38164","38587","38983","39360","39731","40116","40529","40974","41447","41946","42468","43010","43559","44105","44661","45239","45840","46501","47194","47789","48105","48031","47494","46574","45501","44600","44099","44081","44467","45126","45852","46491","47012","47452","47812","48103","48337","48505","48599","48629","48613","48567","48492","48393","48292","48221","48199","",
"Micronesia, Fed. Sts.","FSM","Population, total","SP.POP.TOTL","44539","45956","47387","48875","50483","52238","54201","56324","58404","60167","61433","62107","62298","62289","62477","63146","64386","66110","68221","70550","72967","75462","78057","80678","83242","85689","87948","90024","92020","94091","96331","98800","101412","103937","106057","107556","108342","108506","108236","107808","107430","107170","106983","106816","106575","106198","105680","105080","104472","103961","103619","103476","103516","103718","104044","104460","",
"Gabon","GAB","Population, total","SP.POP.TOTL","499189","504174","509806","516270","523793","532512","542562","553829","565878","578114","590119","601734","613129","624625","636702","649719","663774","678786","694734","711544","729165","747593","766867","787017","808088","830091","853039","876877","901473","926648","952269","978252","1004598","1031358","1058625","1086449","1114879","1143838","1173114","1202412","1231548","1260435","1289192","1318093","1347524","1377777","1408920","1440902","1473741","1507428","1541936","1577298","1613489","1650351","1687673","1725292","",
"United Kingdom","GBR","Population, total","SP.POP.TOTL","52400000","52800000","53250000","53650000","54000000","54348050","54648500","54943600","55211700","55441750","55663250","55896223","56086065","56194527","56229974","56225800","56211968","56193492","56196504","56246951","56314216","56333829","56313641","56332848","56422072","56550268","56681396","56802050","56928327","57076711","57247586","57424897","57580402","57718614","57865745","58019030","58166950","58316954","58487141","58682466","58892514","59119673","59370479","59647577","59987905","60401206","60846820","61322463","61806995","62276270","62766365","63258918","63700300","64128226","64613160","65138232","",
"Georgia","GEO","Population, total","SP.POP.TOTL","3645600","3703600","3760300","3816100","3870300","3921600","3966700","4005800","4042300","4080300","3967800","4009400","4205300","4242500","4279500","4311200","4342400","4372100","4397700","4430200","4467700","4504500","4542800","4582900","4622200","4662900","4704500","4743500","4790700","4803300","4802000","4835900","4873500","4911100","4861600","4734000","4616100","4531600","4487300","4452500","4418300","4386400","4357000","4301000","4245000","4190000","4136000","4082000","4030000","3978000","3926000","3875000","3825000","3776000","3727000","3679000","",
"Ghana","GHA","Population, total","SP.POP.TOTL","6652285","6866545","7085463","7303432","7513286","7710547","7890992","8057442","8221021","8397346","8596977","8827273","9083575","9350111","9604280","9831409","10023471","10189889","10354490","10550770","10802025","11117608","11488112","11895130","12311166","12716238","13103975","13480381","13852597","14232493","14628260","15042736","15471527","15907244","16339344","16760991","17169214","17568583","17969006","18384426","18824994","19293804","19788181","20305396","20840493","21389514","21951891","22528041","23115919","23713164","24317734","24928503","25544565","26164432","26786598","27409893","",
"Gibraltar","GIB","Population, total","SP.POP.TOTL","21529","21797","22133","22510","22894","23256","23590","23901","24185","24438","24661","24844","24991","25121","25266","25443","25666","25922","26185","26409","26568","26651","26671","26650","26621","26611","26623","26653","26700","26760","26833","26924","27035","27146","27235","27285","27284","27246","27211","27233","27351","27580","27903","28290","28694","29080","29437","29770","30089","30407","30732","31067","31402","31720","31997","32217","",
"Guinea","GIN","Population, total","SP.POP.TOTL","3577413","3633778","3690960","3749920","3812004","3877804","3948206","4021880","4094528","4160375","4215442","4259102","4293208","4319502","4340748","4359735","4376768","4393551","4416074","4451872","4506559","4584305","4684992","4804740","4937230","5078689","5223553","5375058","5548270","5763843","6034082","6367110","6751394","7155564","7536389","7863033","8124799","8331366","8497582","8647336","8799165","8955756","9114287","9281572","9464771","9669023","9898301","10152521","10427356","10715770","11012406","11316351","11628767","11948726","12275527","12608590","",
"Gambia, The","GMB","Population, total","SP.POP.TOTL","367929","376736","383525","389070","394552","400865","408182","416342","425509","435800","447283","460193","474538","489860","505512","521070","536409","551823","567828","585155","604371","625413","648202","673230","701097","732092","766598","804134","843060","881146","916811","949490","979701","1008296","1036627","1065746","1095839","1126786","1159001","1192920","1228863","1267103","1307674","1350345","1394727","1440542","1487731","1536424","1586749","1638899","1693002","1749099","1807108","1866878","1928201","1990924","",
"Guinea-Bissau","GNB","Population, total","SP.POP.TOTL","616407","623413","629973","636593","643962","652566","662597","673893","686155","698917","711828","724863","738117","751512","764974","778482","791959","805481","819371","834068","849886","866947","885166","904391","924378","944941","966039","987718","1009967","1032797","1056208","1080191","1104708","1129706","1155111","1180877","1207006","1233520","1260424","1287727","1315455","1343646","1372367","1401716","1431816","1462784","1494603","1527342","1561293","1596832","1634196","1673509","1714620","1757138","1800513","1844325","",
"Equatorial Guinea","GNQ","Population, total","SP.POP.TOTL","252115","255100","257940","260990","264743","269427","275470","282445","288701","292014","290905","284915","274906","262399","249587","238240","228491","220352","215284","215014","220605","232934","251301","273199","295090","314407","330247","343290","354488","365451","377363","390381","404081","418409","433197","448332","463844","479836","496330","513347","530896","549007","567664","586772","606201","625866","645718","665798","686223","707155","728710","750918","773729","797082","820885","845060","",
"Greece","GRC","Population, total","SP.POP.TOTL","8331725","8398050","8448233","8479625","8510429","8550333","8613651","8684088","8740765","8772764","8792806","8831036","8888628","8929086","8962022","9046541","9188150","9308479","9429959","9548258","9642505","9729350","9789513","9846627","9895801","9934300","9967213","10000595","10036983","10089498","10196792","10319927","10399061","10460415","10512922","10562153","10608800","10661259","10720509","10761698","10805808","10862132","10902022","10928070","10955141","10987314","11020362","11048473","11077841","11107017","11121341","11104899","11045011","10965211","10892413","10823732","",
"Grenada","GRD","Population, total","SP.POP.TOTL","89861","91260","92424","93354","94066","94579","94878","94962","94875","94682","94430","94180","93937","93629","93151","92453","91435","90187","89070","88571","89004","90575","93091","95981","98440","99907","100146","99381","98063","96871","96286","96455","97201","98302","99403","100253","100796","101125","101302","101441","101620","101849","102100","102371","102657","102951","103259","103587","103934","104298","104677","105070","105476","105902","106349","106825","",
"Greenland","GRL","Population, total","SP.POP.TOTL","32500","33700","35000","36400","37600","39200","40500","41900","43400","44900","46400","47200","48300","49000","49500","49600","49700","49400","49200","49600","50200","51000","51500","52100","52700","53200","53500","54100","54800","55300","55600","55500","55300","55200","55500","55800","55900","56000","56100","56100","56200","56350","56609","56765","56911","56935","56774","56555","56328","56323","56905","56890","56810","56483","56295","56114","",
"Guatemala","GTM","Population, total","SP.POP.TOTL","4127555","4240084","4356579","4476923","4600846","4728203","4858880","4993104","5131461","5274726","5423384","5577824","5737720","5901980","6069077","6237963","6408029","6579710","6754258","6933492","7118628","7310397","7508161","7710142","7913814","8117499","8320498","8523785","8729406","8940285","9158547","9385000","9619113","9860063","10106463","10357354","10612300","10871786","11136814","11408815","11688660","11976725","12272208","12573346","12877711","13183505","13490041","13797629","14106687","14418033","14732261","15049280","15368759","15690793","16015494","16342897","",
"Guam","GUM","Population, total","SP.POP.TOTL","66741","68073","69607","71289","73048","74827","76611","78409","80219","82042","83880","85728","87585","89463","91381","93354","95386","97476","99628","101846","104131","106486","108911","111405","113961","116576","119232","121924","124677","127525","130482","133553","136696","139820","142806","145562","148060","150306","152275","153951","155328","156417","157241","157823","158194","158401","158429","158332","158310","158621","159440","160858","162807","165121","167543","169885","",
"Guyana","GUY","Population, total","SP.POP.TOTL","564222","582034","600559","618887","635778","650379","662332","671986","680068","687658","695561","703811","712188","720919","730227","740167","751008","762445","773227","781677","786614","787728","785466","780367","773302","765043","755598","745149","734872","726237","720282","717502","717621","719910","723230","726695","730193","733854","737316","740189","742218","743163","743107","742537","742162","742495","743705","745638","748096","750749","753362","755883","758410","761033","763893","767085","",
"High income","HIC","Population, total","SP.POP.TOTL","758716470","770099673","780133572","790080922","799918623","809360466","818167431","826583007","834012315","843140725","851290758","860031660","868875520","876847559","885878283","894516873","901709691","909169527","916799313","924641692","932213838","939880497","947075507","953842472","960250975","966684594","973400217","980091126","986918025","994203460","1001966223","1009883314","1016171233","1024162143","1031489890","1040394770","1047405818","1054469107","1061211341","1068095946","1074878739","1082312299","1089656214","1096885903","1104476123","1112235304","1120543449","1129339051","1138677189","1147005992","1154477199","1161326328","1166574800","1174927882","1180597445","1187189841","",
"Hong Kong SAR, China","HKG","Population, total","SP.POP.TOTL","3075605","3168100","3305200","3420900","3504600","3597900","3629900","3722800","3802700","3863900","3959000","4045300","4123600","4241600","4334200","4461600","4518000","4583700","4667500","4929700","5063100","5183400","5264500","5345100","5397900","5456200","5524600","5590500","5627600","5686200","5704500","5752000","5800500","5901000","6035400","6156100","6435500","6489300","6543700","6606500","6665000","6714300","6744100","6730800","6783500","6813200","6857100","6916300","6957800","6972800","7024200","7071600","7154600","7187500","7241700","7305700","",
"Honduras","HND","Population, total","SP.POP.TOTL","2002333","2069085","2139208","2211144","2282764","2352637","2420234","2486288","2552200","2620014","2691309","2766444","2845260","2928190","3015606","3107735","3204883","3306988","3413426","3523283","3635862","3750843","3868296","3988371","4111369","4237436","4366401","4497875","4631491","4766802","4903363","5041050","5179557","5318042","5455481","5591136","5724587","5855946","5985675","6114534","6243080","6371304","6499001","6626304","6753352","6880181","7007029","7133737","7259470","7383098","7503875","7621414","7736131","7849059","7961680","8075060","",
"Heavily indebted poor countries (HIPC)","HPC","Population, total","SP.POP.TOTL","162491185","166337526","170332701","174484508","178802599","183294395","187962262","192806249","197828276","203029611","208410359","213971961","219712407","225623793","231695364","237918910","244306047","250860495","257558535","264368402","271276022","278278454","285410524","292744009","300374211","308377129","316760151","325525015","334731596","344448856","354714206","365581300","377011630","388837016","400825087","412815898","424741843","436671177","448746908","461180538","474127024","487633972","501659710","516163015","531070213","546329345","561934621","577914150","594288511","611087950","628333588","646028823","664163813","682730030","701714118","721104105","",
"Croatia","HRV","Population, total","SP.POP.TOTL","4140000","4171672","4202104","4231408","4259680","4287000","4313000","4339000","4364000","4387000","4411000","4435000","4457000","4478000","4497000","4514000","4530000","4532000","4556000","4571000","4588000","4608000","4635000","4659000","4680000","4701000","4722000","4740000","4757000","4767000","4780000","4510000","4470000","4640000","4650000","4669000","4494000","4572000","4501000","4554000","4426000","4440000","4440000","4440000","4439000","4442000","4440000","4436000","4434508","4429078","4417781","4280622","4267558","4255689","4238389","4224404","",
"Haiti","HTI","Population, total","SP.POP.TOTL","3866160","3943363","4022596","4103732","4186636","4271133","4357482","4445531","4534233","4622209","4708639","4793157","4876558","4960655","5047948","5140357","5238242","5341418","5450550","5566265","5688832","5818673","5955265","6096690","6240330","6384196","6527545","6670566","6813344","6956301","7099733","7243391","7386974","7530703","7674911","7819806","7965548","8111954","8258484","8404396","8549202","8692564","8834739","8976555","9119182","9263409","9409479","9556958","9705130","9852953","9999617","10144890","10288828","10431249","10572029","10711067","",
"Hungary","HUN","Population, total","SP.POP.TOTL","9983967","10029321","10061734","10087947","10119835","10147935","10178653","10216604","10255815","10298723","10337910","10367537","10398489","10432055","10478720","10540525","10598677","10648031","10684822","10704152","10711122","10711848","10705535","10689463","10668095","10648713","10630564","10612741","10596487","10481719","10373988","10373400","10369341","10357523","10343355","10328965","10311238","10290486","10266570","10237530","10210971","10187576","10158608","10129552","10107146","10087065","10071370","10055780","10038188","10022650","10000023","9971727","9920362","9893082","9866468","9844686","",
"IBRD only","IBD","Population, total","SP.POP.TOTL","1871184856","1890740200","1923174830","1967421496","2011674632","2057050148","2105543844","2153612945","2203001486","2254547152","2307411444","2361792650","2415419876","2468618464","2520955229","2571488214","2620883805","2669169367","2717945603","2767654524","2817843031","2869463666","2923856864","2978826641","3033241013","3088621789","3145626815","3204132525","3262749316","3320313339","3376233277","3430000038","3481851896","3532605290","3582776115","3632548453","3681938053","3731637797","3780699719","3828713781","3874987437","3920281908","3964263629","4007951116","4051261024","4094355856","4136899632","4178689473","4220698605","4263313781","4305816336","4348831471","4392620014","4436684655","4480656590","4524078275","",
"IDA & IBRD total","IBT","Population, total","SP.POP.TOTL","2302766065","2332645361","2375791917","2431027642","2486895322","2544283874","2605302965","2666366898","2729171137","2794384186","2861116444","2929455006","2997265511","3065048540","3132441576","3198666331","3264427284","3329713128","3396110153","3464008965","3532863897","3603364405","3677247133","3752252711","3827354654","3904169497","3983418913","4064872946","4147006714","4228633617","4308835687","4387370401","4464494101","4540828915","4616731819","4692385329","4767797399","4843628455","4918857078","4993168528","5066287495","5138888813","5210552441","5282417436","5354468454","5426821987","5499192098","5571443480","5644543404","5718852388","5793949021","5870148581","5947367231","6025553530","6104461024","6183634830","",
"IDA total","IDA","Population, total","SP.POP.TOTL","431581209","441905161","452617087","463606146","475220690","487233726","499759121","512753953","526169651","539837034","553705000","567662356","581845635","596430076","611486347","627178117","643543479","660543761","678164550","696354441","715020866","733900739","753390269","773426070","794113641","815547708","837792098","860740421","884257398","908320278","932602410","957370363","982642205","1008223625","1033955704","1059836876","1085859346","1111990658","1138157359","1164454747","1191300058","1218606905","1246288812","1274466320","1303207430","1332466131","1362292466","1392754007","1423844799","1455538607","1488132685","1521317110","1554747217","1588868875","1623804434","1659556555","",
"IDA blend","IDB","Population, total","SP.POP.TOTL","163861743","167557049","171402542","175257487","179430842","183677726","188077709","192616898","197338633","202203700","207250858","212393671","217715341","223308793","229107516","235184715","241541333","248153270","255015624","262098756","269328534","276430081","283773443","291267007","298992872","307023847","315428654","324102452","332878430","341671811","350159965","358569565","366983131","375374923","383737278","392141218","400674821","409285530","417928840","426492623","435073133","443627954","452157850","460797947","469662036","478749307","488079322","497712924","507660939","517916391","528772010","539941221","551030216","562377856","573991143","585760189","",
"Indonesia","IDN","Population, total","SP.POP.TOTL","87792512","90138235","92558006","95055669","97638027","100308896","103067352","105907403","108821565","111800090","114834781","117921994","121059511","124242299","127465232","130724118","134010695","137322122","140665859","144053516","147490366","150978841","154506266","158044343","161555584","165012195","168402027","171728916","175000919","178233231","181436821","184614740","187762097","190873248","193939912","196957845","199926615","202853850","205753493","208644079","211540428","214448301","217369087","220307809","223268606","226254703","229263980","232296830","235360765","238465165","241613126","244808254","248037853","251268276","254454778","257563815","",
"IDA only","IDX","Population, total","SP.POP.TOTL","267719466","274348112","281214545","288348659","295789848","303556000","311681412","320137055","328831018","337633334","346454142","355268685","364130294","373121283","382378831","391993402","402002146","412390491","423148926","434255685","445692332","457470658","469616826","482159063","495120769","508523861","522363444","536637969","551378968","566648467","582442445","598800798","615659074","632848702","650218426","667695658","685184525","702705128","720228519","737962124","756226925","774978951","794130962","813668373","833545394","853716824","874213144","895041083","916183860","937622216","959360675","981375889","1003717001","1026491019","1049813291","1073796366","",
"Isle of Man","IMN","Population, total","SP.POP.TOTL","48441","48353","48580","49089","49818","50713","51776","52995","54289","55554","56712","57711","58563","59326","60098","60941","61900","62934","63918","64680","65108","65128","64817","64404","64207","64446","65225","66449","67902","69265","70312","70963","71306","71486","71726","72181","72899","73817","74853","75879","76806","77608","78318","78975","79636","80345","81110","81914","82737","83548","84327","85069","85779","86462","87127","87780","",
"India","IND","Population, total","SP.POP.TOTL","449661874","458691457","468054145","477729958","487690114","497920270","508402908","519162069","530274729","541844848","553943226","566605402","579800632","593451889","607446519","621703641","636182810","650907559","665936435","681358553","697229745","713561406","730303461","747374856","764664278","782085127","799607235","817232241","834944397","852736160","870601776","888513869","906461358","924475633","942604211","960874982","979290432","997817250","1016402907","1034976626","1053481072","1071888190","1090189358","1108369577","1126419321","1144326293","1162088305","1179685631","1197070109","1214182182","1230984504","1247446011","1263589639","1279498874","1295291543","1311050527","",
"Not classified","INX","Population, total","SP.POP.TOTL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Ireland","IRL","Population, total","SP.POP.TOTL","2828600","2824400","2836050","2852650","2866550","2877300","2888800","2902450","2915550","2932650","2957250","2992050","3036850","3085950","3137500","3189550","3238050","3282200","3329100","3373750","3412800","3453000","3485800","3510600","3532423","3538082","3539690","3540057","3524949","3511009","3513974","3534235","3558430","3576261","3590386","3608841","3637510","3674171","3712696","3754786","3805174","3866243","3931947","3996521","4070262","4159914","4273591","4398942","4489544","4535375","4560155","4576794","4586897","4598294","4617225","4640703","",
"Iran, Islamic Rep.","IRN","Population, total","SP.POP.TOTL","21906905","22480420","23071426","23680433","24308080","24955116","25624650","26318116","27032944","27765239","28514011","29281130","30073845","30903565","31784896","32730555","33739231","34814231","35977589","37256771","38668222","40209077","41862373","43610506","45429019","47290793","49205577","51152122","53035939","54735239","56169196","57288039","58130099","58811858","59501292","60318632","61306632","62426086","63616065","64780362","65850062","66812736","67696677","68522074","69321953","70122115","70923164","71720859","72530693","73370982","74253373","75184322","76156975","77152445","78143644","79109272","",
"Iraq","IRQ","Population, total","SP.POP.TOTL","7289759","7475354","7674220","7888914","8122200","8375791","8651167","8947399","9260685","9585576","9917982","10255904","10599846","10951169","11312304","11684585","12068195","12460997","12859226","13257910","13653358","14046273","14437661","14824876","15204746","15576396","15937864","16293719","16657708","17048167","17478455","17952909","18468521","19021967","19606895","20217759","20855408","21519356","22200835","22888600","23574751","24258794","24943793","25630426","26320530","27017712","27716983","28423538","29163327","29970634","30868156","31867758","32957622","34107366","35273293","36423395","",
"Iceland","ISL","Population, total","SP.POP.TOTL","175574","179029","182378","185653","188983","192286","195570","198751","201488","203369","204438","206098","209137","212317","215209","217979","220154","221799","223537","225735","228138","230755","233860","236977","239511","241405","243180","245859","249740","252852","254826","257797","261057","263725","266021","267468","268916","271128","274047","277381","281205","284968","287523","289521","292074","296734","303782","311566","317414","318499","318041","319014","320716","323764","327386","330823","",
"Israel","ISR","Population, total","SP.POP.TOTL","2114020","2185000","2293000","2379000","2475000","2563000","2629000","2745000","2803000","2877000","2974000","3069000","3148000","3278000","3377000","3455000","3533000","3613000","3690000","3786000","3878000","3956000","4031000","4105000","4159000","4233000","4299000","4369000","4442000","4518000","4660000","4949000","5123000","5261000","5399000","5545000","5692000","5836000","5971000","6125000","6289000","6439000","6570000","6689700","6809000","6930100","7053700","7180100","7308800","7485600","7623600","7765800","7910500","8059500","8215700","8380400","",
"Italy","ITA","Population, total","SP.POP.TOTL","50199700","50536350","50879450","51252000","51675350","52112350","52519000","52900500","53235750","53537950","53821850","54073490","54381345","54751406","55110868","55441001","55718260","55955411","56155143","56317749","56433883","56501675","56543548","56564074","56576718","56593071","56596155","56601931","56629288","56671781","56719240","56758521","56797087","56831821","56843400","56844303","56860281","56890372","56906744","56916317","56942108","56974100","57059007","57313203","57685327","57969484","58143979","58438310","58826731","59095365","59277417","59379449","59539717","60233948","60789140","60802085","",
"Jamaica","JAM","Population, total","SP.POP.TOTL","1629003","1651915","1678467","1707019","1734763","1760000","1783125","1803891","1823706","1844936","1869000","1895629","1925162","1956080","1985852","2013000","2037716","2059399","2080307","2104141","2133000","2162300","2200100","2240800","2279900","2311100","2335800","2350600","2356400","2374900","2390000","2406042","2423044","2441024","2460002","2480000","2509923","2534069","2556780","2574289","2589389","2605556","2615253","2624695","2634145","2643601","2653042","2662481","2671934","2681386","2690824","2699838","2707805","2714669","2720554","2725941","",
"Jordan","JOR","Population, total","SP.POP.TOTL","888632","927850","962783","1000506","1050725","1119798","1210948","1320414","1438986","1553585","1654769","1739903","1811870","1873548","1929939","1985121","2039114","2091716","2146662","2208562","2280670","2365665","2462968","2568582","2676515","2782885","2884065","2982349","3086664","3209466","3358453","3538663","3743944","3957221","4154813","4320158","4448113","4545248","4621329","4691402","4767476","4850227","4938935","5042538","5171633","5332982","5530218","5759424","6010035","6266865","6517912","6760371","6994451","7214832","7416083","7594547","",
"Japan","JPN","Population, total","SP.POP.TOTL","92500572","94943000","95832000","96812000","97826000","98883000","99790000","100725000","101061000","103172000","104345000","105697000","107188000","108079000","110162000","111940000","112771000","113863000","114898000","115870000","116782000","117648000","118449000","119259000","120018000","120754000","121492000","122091000","122613000","123116000","123537000","123921000","124229000","124536000","124961000","125439000","125757000","126057000","126400000","126631000","126843000","127149000","127445000","127718000","127761000","127773000","127854000","128001000","128063000","128047000","128070000","127817277","127561489","127338621","127131800","126958472","",
"Kazakhstan","KAZ","Population, total","SP.POP.TOTL","9714260","10129861","10532062","10913552","11267329","11588870","11872939","12120504","12341412","12550121","12757245","12966920","13176584","13382211","13577049","13756789","13920105","14070681","14215111","14362417","14518924","14683789","14853993","15030495","15214051","15403006","15600928","15801753","15982510","16249500","16348000","16450500","16439095","16330419","16095199","15815626","15577894","15333703","15071300","14928426","14883626","14858335","14858948","14909018","15012985","15147029","15308084","15484192","15674000","16092701","16321581","16556600","16791425","17035275","17289224","17544126","",
"Kenya","KEN","Population, total","SP.POP.TOTL","8105440","8361442","8628973","8908425","9200158","9504702","9822505","10154489","10502250","10867717","11252466","11657479","12083165","12529810","12997447","13486241","13995974","14527187","15081598","15661414","16267906","16901181","17559778","18241331","18942599","19660713","20393724","21140344","21899004","22668238","23446229","24234087","25029754","25824736","26608089","27373035","28116027","28842245","29564614","30301240","31065820","31863280","32691980","33551079","34437460","35349040","36286015","37250540","38244442","39269988","40328313","41419954","42542978","43692881","44863583","46050302","",
"Kyrgyz Republic","KGZ","Population, total","SP.POP.TOTL","2172300","2255900","2333400","2413700","2495300","2573300","2655300","2736500","2818300","2894800","2959900","3022300","3088200","3153800","3223900","3292400","3358700","3423900","3487100","3552000","3617400","3685800","3759300","3838300","3916400","3990300","4066500","4144600","4218400","4307500","4391200","4463600","4515400","4516700","4515100","4560400","4628400","4696400","4769000","4840400","4898400","4945100","4990700","5043300","5104700","5162600","5218400","5268400","5318700","5383300","5447900","5514600","5607200","5719600","5835500","5957000","",
"Cambodia","KHM","Population, total","SP.POP.TOTL","5722370","5872247","6026696","6181137","6329411","6467196","6588993","6695460","6795514","6902025","7022185","7167716","7331162","7478147","7561583","7551988","7431505","7222050","6982522","6795102","6718241","6774509","6945053","7196139","7475011","7743065","7990133","8228268","8467109","8723550","9008856","9323607","9659238","10007092","10355253","10694459","11022162","11338733","11641509","11928306","12197905","12448881","12681984","12901217","13112334","13320058","13525360","13728700","13933660","14144337","14363586","14593099","14832255","15078564","15328136","15577899","",
"Kiribati","KIR","Population, total","SP.POP.TOTL","41234","42261","43312","44372","45424","46455","47461","48440","49389","50303","51181","52020","52823","53605","54382","55169","55980","56815","57664","58509","59340","60137","60918","61760","62768","64006","65519","67262","69104","70863","72411","73698","74773","75722","76674","77727","78907","80190","81556","82969","84406","85858","87343","88892","90545","92329","94257","96310","98437","100566","102648","104662","106620","108544","110470","112423","",
"St. Kitts and Nevis","KNA","Population, total","SP.POP.TOTL","51197","51195","50966","50533","49934","49211","48355","47383","46399","45534","44882","44490","44328","44314","44327","44278","44142","43946","43704","43450","43205","42978","42761","42539","42294","42017","41697","41353","41045","40854","40833","41009","41360","41836","42363","42888","43391","43885","44391","44938","45544","46216","46935","47681","48424","49139","49818","50465","51093","51717","52352","52998","53650","54301","54944","55572","",
"Korea, Rep.","KOR","Population, total","SP.POP.TOTL","25012374","25765673","26513030","27261747","27984155","28704674","29435571","30130983","30838302","31544266","32240827","32882704","33505406","34103149","34692266","35280725","35848523","36411795","36969185","37534236","38123775","38723248","39326352","39910403","40405956","40805744","41213674","41621690","42031247","42449038","42869283","43295704","43747962","44194628","44641540","45092991","45524681","45953580","46286503","46616677","47008111","47357362","47622179","47859311","48039415","48138077","48371946","48597652","48948698","49182038","49410366","49779440","50004441","50219669","50423955","50617045","",
"Kosovo","KSV","Population, total","SP.POP.TOTL","947000","966000","994000","1022000","1050000","1078000","1106000","1135000","1163000","1191000","1219000","1247000","1278000","1308000","1339000","1369000","1400000","1430000","1460000","1491000","1521000","1552000","1582000","1614000","1647000","1682000","1717000","1753000","1791000","1827000","1862000","1898000","1932000","1965000","1997000","2029000","2059000","2086000","1966000","1762000","1700000","1701154","1702310","1703466","1704622","1705780","1719536","1733404","1747383","1761474","1775680","1790957","1805200","1818117","1812771","1797151","",
"Kuwait","KWT","Population, total","SP.POP.TOTL","261962","294639","335161","381665","431366","482173","533521","585831","639170","693876","750184","807900","866747","926817","988267","1051187","1115463","1180939","1247597","1315428","1384342","1452383","1518855","1586205","1657920","1735320","1823201","1917950","2002645","2054443","2058832","2007110","","","","1637031","1637906","1686256","1766247","1853152","1929470","1990022","2042215","2095993","2166344","2263604","2389498","2538591","2705290","2881243","3059473","3239181","3419581","3593689","3753121","3892115","",
"Latin America & Caribbean (excluding high income)","LAC","Population, total","SP.POP.TOTL","206448158","212366790","218494458","224787697","231185110","237642446","244142240","250694578","257320695","264055390","270922368","277924408","285048696","292280590","299598590","306986513","314436200","321947113","329524820","337179879","344916769","352728537","360611980","368544043","376497966","384449375","392391406","400317367","408221307","416119293","423990572","431829627","439632368","447406941","455166402","462917430","470674560","478410615","486099120","493694997","501172602","508521178","515744299","522876279","529958993","537022336","544072618","551099144","558093934","565043167","571935098","578766919","585536615","592233875","598846559","605364992","",
"Lao PDR","LAO","Population, total","SP.POP.TOTL","2119944","2169287","2219964","2272078","2325742","2381063","2437527","2495093","2554843","2618246","2686025","2759634","2837967","2916148","2987544","3047864","3094940","3131492","3164146","3202270","3252701","3317570","3395113","3483492","3579370","3680145","3785230","3895066","4009121","4126935","4247839","4371549","4496971","4621685","4742685","4857774","4966303","5068658","5165072","5256207","5342879","5424701","5502340","5579003","5658894","5745012","5838837","5939634","6045439","6153153","6260544","6366909","6473050","6579985","6689300","6802023","",
"Lebanon","LBN","Population, total","SP.POP.TOTL","1804927","1864605","1925276","1984982","2041212","2092354","2136640","2174850","2210965","2250609","2297403","2353569","2416743","2480426","2535503","2575693","2598362","2606224","2604875","2602573","2605294","2615753","2632281","2651295","2667229","2676593","2677290","2672182","2668593","2676615","2703019","2752473","2821868","2900862","2974647","3033406","3070974","3092684","3113960","3156661","3235380","3359875","3522842","3701464","3863271","3986865","4057041","4085426","4109389","4181742","4337156","4591698","4924257","5286990","5612096","5850743","",
"Liberia","LBR","Population, total","SP.POP.TOTL","1120314","1144896","1170267","1196588","1224094","1252968","1283304","1315119","1348448","1383305","1419728","1457714","1497356","1538882","1582584","1628656","1676016","1724313","1775200","1830963","1892529","1961795","2036325","2107523","2163835","2197442","2206867","2196204","2170426","2137018","2102877","2066060","2028672","2006349","2019148","2079921","2197801","2365290","2558085","2741755","2891968","2998770","3070673","3124222","3184643","3269786","3384804","3522337","3672782","3821498","3957990","4079574","4190155","4293692","4396554","4503438","",
"Libya","LBY","Population, total","SP.POP.TOTL","1434576","1483856","1536196","1592111","1652294","1717255","1787080","1861661","1941056","2025282","2114264","2208125","2306668","2409101","2514373","2621730","2730373","2840378","2952877","3069540","3191304","3318560","3450078","3583183","3714264","3840635","3961363","4076888","4187631","4294547","4398419","4499210","4596811","4691934","4785488","4878202","4970391","5062160","5153764","5245414","5337264","5428303","5518341","5609166","5703224","5801543","5907149","6017794","6123022","6208680","6265697","6288652","6283403","6265987","6258984","6278438","",
"St. Lucia","LCA","Population, total","SP.POP.TOTL","89901","90913","92086","93397","94813","96303","97877","99526","101181","102747","104162","105389","106458","107461","108534","109770","111211","112826","114551","116292","117984","119593","121150","122738","124468","126416","128620","131032","133532","135954","138180","140159","141934","143592","145262","147040","148962","150994","153066","155073","156949","158650","160218","161767","163462","165407","167656","170146","172729","175196","177397","179278","180890","182305","183645","184999","",
"Latin America & Caribbean","LCN","Population, total","SP.POP.TOTL","220572260","226772499","233191504","239779637","246466984","253204080","259974227","266785628","273664052","280650669","287773317","295036273","302419008","309912432","317489876","325130543","332828460","340579992","348401844","356299231","364281964","372341418","380478713","388666253","396882210","405096423","413306622","421504828","429683476","437859510","446014681","454134571","462218401","470281397","478328837","486362102","494403039","502409290","510376571","518208411","525907201","533470758","540906214","548247528","555537969","562806404","570053899","577273042","584461446","591604073","598690163","605694637","612638376","619513507","626285603","632959079","",
"Least developed countries: UN classification","LDC","Population, total","SP.POP.TOTL","241072814","246733124","252585904","258670231","265039360","271723894","278755774","286104466","293663042","301284584","308870065","316378185","323858659","331415936","339201660","347328806","355839316","364711975","373921370","383418369","393172012","403186706","413495920","424131976","435137234","446546151","458352456","470557196","483208054","496364388","510057629","524324699","539125756","554321297","569720374","585189354","600664665","616192978","631885766","647910647","664386087","681362484","698794943","716594050","734626511","752794655","771082091","789544690","808296705","827498335","847264134","867666290","888606627","910063594","931955068","954218054","",
"Low income","LIC","Population, total","SP.POP.TOTL","154643623","158036089","161509904","165104405","168876308","172865168","177082193","181510268","186125837","190893116","195784159","200793533","205923794","211164322","216504309","221936253","227468025","233103356","238828284","244624718","250488773","256415591","262436928","268631460","275102794","281929614","289134456","296710433","304668356","313010644","321732573","330859667","340381945","350214780","360242918","370388264","380614813","390959022","401504632","412373685","423655372","435383252","447534597","460075083","472947363","486113306","499559269","513311068","527415958","541939703","556926383","572393050","588316015","604648276","621322015","638286288","",
"Liechtenstein","LIE","Population, total","SP.POP.TOTL","16504","16894","17298","17722","18170","18647","19156","19691","20235","20765","21266","21726","22153","22562","22984","23435","23926","24444","24963","25447","25869","26221","26514","26768","27009","27259","27523","27799","28091","28405","28745","29111","29503","29921","30365","30833","31327","31842","32357","32843","33282","33663","33995","34290","34569","34852","35141","35431","35721","36004","36276","36537","36791","37040","37286","37531","",
"Sri Lanka","LKA","Population, total","SP.POP.TOTL","9896000","10168000","10443000","10582000","10903000","11164000","11439000","11703000","11992000","12252000","12514000","12690000","12861000","13091000","13284000","13496000","13717000","13942000","14190000","14472000","14747000","14847000","15096000","15339000","15583000","15831000","16083000","16339000","16593000","16841000","17078000","17306000","17524000","17728000","17912000","18074000","18210000","18323000","18425000","18532000","18655000","18797000","18939000","19083000","19227000","19373000","19520000","19668000","19817000","19967000","20118000","20270000","20424000","20579000","20771000","20966000","",
"Lower middle income","LMC","Population, total","SP.POP.TOTL","946484445","967887109","990039377","1012767666","1036339571","1060475807","1085253011","1110656509","1136731635","1163442863","1190833082","1218820931","1247527713","1277055585","1307363461","1338536946","1370554174","1403405869","1437186461","1472000213","1507845249","1544521899","1582199139","1620721765","1659880097","1699641522","1739982872","1780743196","1821764134","1862914881","1905832740","1946835397","1987933397","2028791196","2069485613","2110085677","2150734236","2191409043","2231891456","2272160782","2312488976","2352812601","2393060046","2433405412","2473856010","2514348032","2554924913","2595645346","2636521964","2677558873","2719003012","2760562037","2801879869","2843404367","2885248344","2927414098","",
"Low & middle income","LMY","Population, total","SP.POP.TOTL","2276339100","2306020875","2348930217","2403866384","2459435934","2516693764","2577698886","2638714413","2701499529","2766769391","2833705952","2902258252","2970140184","3037952919","3105316051","3171437799","3237021494","3302089933","3368262462","3435930618","3504520730","3574775320","3648412010","3723177772","3798059443","3874692197","3953806792","4035176743","4117287193","4198919913","4281091644","4360006679","4437302203","4513614318","4589656631","4665448284","4741190324","4817080259","4892461159","4966815693","5040565572","5113277261","5185077870","5257090524","5329272591","5401724600","5474179013","5546493627","5619625334","5693949714","5769206886","5845581661","5922876751","6001164310","6080182833","6159443196","",
"Lesotho","LSO","Population, total","SP.POP.TOTL","851412","866253","881910","898342","915473","933251","951736","970972","990869","1011308","1032240","1053524","1075281","1098033","1122484","1149090","1177975","1208836","1241159","1274216","1307403","1340694","1374044","1406818","1438248","1467856","1495101","1520244","1544580","1569936","1597534","1627900","1660360","1693459","1725118","1753824","1779201","1801695","1821632","1839631","1856225","1871489","1885488","1898778","1912042","1925844","1940345","1955656","1972194","1990413","2010586","2032950","2057331","2083061","2109197","2135022","",
"Late-demographic dividend","LTE","Population, total","SP.POP.TOTL","1099608911","1101810572","1116288994","1141954962","1167373215","1193450007","1222282644","1250258107","1279064200","1309364362","1340256276","1371812796","1401919858","1431017776","1458682810","1484120541","1508025001","1530370879","1552669756","1575177489","1597245116","1619555100","1644046340","1668473661","1691997560","1716423572","1742492329","1770022346","1797644122","1824416060","1849669474","1873168798","1892687494","1913031295","1933111068","1954370502","1973565502","1992617993","2011082188","2028428508","2044297095","2059525862","2073941187","2088053259","2102015681","2115935699","2129490221","2142553363","2155686054","2169131430","2182060690","2195191263","2208629633","2222181284","2235786397","2249154750","",
"Lithuania","LTU","Population, total","SP.POP.TOTL","2778550","2823550","2863350","2898950","2935200","2971450","3008050","3044400","3078850","3107321","3139689","3179041","3213622","3244438","3273894","3301652","3328664","3355036","3379514","3397842","3413202","3432947","3457179","3485192","3514205","3544543","3578914","3616367","3655049","3684255","3697838","3704134","3700114","3682613","3657144","3629102","3601613","3575137","3549331","3524238","3499536","3470818","3443067","3415213","3377075","3322528","3269909","3231294","3198231","3162916","3097282","3028115","2987773","2957689","2932367","2910199","",
"Luxembourg","LUX","Population, total","SP.POP.TOTL","313970","316845","320750","324100","327750","331500","333895","334995","335850","337500","339171","342421","346600","350450","355050","358950","360731","361358","362007","362856","364150","365225","365525","365622","365998","366706","368355","370750","373450","377100","381850","387000","392175","397475","402925","408625","414225","419450","424700","430475","436300","441525","446175","451630","458095","465158","472637","479993","488650","497783","506953","518347","530946","543360","556319","569676","",
"Latvia","LVA","Population, total","SP.POP.TOTL","2120979","2152681","2181586","2210919","2240623","2265919","2283217","2301220","2323619","2343173","2359164","2376389","2395674","2415819","2437186","2456130","2470989","2485073","2497921","2505953","2511701","2519421","2531080","2546011","2562047","2578873","2599892","2626583","2653434","2666955","2663151","2650581","2614338","2563290","2520742","2485056","2457222","2432851","2410019","2390482","2367550","2337170","2310173","2287955","2263122","2238799","2218357","2200325","2177322","2141669","2097555","2059709","2034319","2012647","1993782","1978440","",
"Macao SAR, China","MAC","Population, total","SP.POP.TOTL","171456","175135","181025","188703","197523","206910","216873","227258","237129","245310","250997","253881","254282","252845","250550","248213","245915","243729","242458","243073","246236","252258","260921","271674","283672","296222","309226","322655","335952","348467","359735","369484","377799","385041","391783","398459","405231","412031","418810","425448","431907","438088","444178","450754","458579","468149","479728","493022","507274","521405","534626","546682","557763","568056","577914","587606","",
"St. Martin (French part)","MAF","Population, total","SP.POP.TOTL","4279","4453","4566","4656","4748","4841","4936","5033","5161","5303","5450","5601","5756","5915","6078","6291","6530","6778","7035","7303","7580","7868","8670","10547","12790","15392","18337","21628","24873","27676","30036","31821","32892","33238","33098","32712","32102","31304","30358","29305","28384","27782","27450","27363","27514","27906","28414","28905","29376","29820","30235","30615","30959","31264","31530","31754","",
"Morocco","MAR","Population, total","SP.POP.TOTL","12328534","12713043","13100843","13488517","13871988","14248426","14617077","14978905","15335173","15687996","16039600","16389949","16740525","17097003","17466606","17854614","18262366","18688782","19133462","19595092","20071902","20564359","21070647","21583746","22094516","22596133","23084731","23560825","24027330","24489354","24950128","25410178","25866445","26314339","26747660","27161889","27556892","27934014","28292299","28630973","28950553","29250983","29535591","29812685","30093109","30385479","30691434","31011322","31350544","31714958","32107739","32531964","32984190","33452686","33921203","34377511","",
"Monaco","MCO","Population, total","SP.POP.TOTL","22454","22812","23042","23169","23237","23283","23304","23297","23296","23348","23484","23722","24052","24440","24835","25201","25521","25809","26086","26391","26746","27165","27629","28098","28514","28836","29048","29169","29238","29313","29438","29626","29864","30138","30423","30700","30971","31242","31517","31795","32081","32364","32648","32960","33339","33808","34384","35046","35731","36351","36845","37189","37404","37528","37623","37731","",
"Moldova","MDA","Population, total","SP.POP.TOTL","2544000","2605000","2664000","2721000","2774000","2825000","2873000","2918000","2960000","3002000","3044000","3088000","3131000","3174000","3215000","3251000","3284000","3312000","3339000","3366000","3396000","3429000","3464000","3500000","3536000","3570000","3602000","3633000","3660000","3681000","3696000","3704000","3706000","3701000","3691000","3675099","3667748","3654208","3652732","3647001","3639592","3631462","3623062","3612874","3603945","3595187","3585209","3576910","3570108","3565604","3562045","3559986","3559519","3558566","3556397","3554150","",
"Madagascar","MDG","Population, total","SP.POP.TOTL","5099371","5223621","5352674","5486593","5625401","5769219","5918060","6072270","6232704","6400454","6576301","6760352","6952383","7152391","7360271","7575757","7799642","8031589","8268902","8507958","8746516","8983494","9220693","9462343","9714342","9981113","10264368","10563491","10877757","11205548","11545782","11898267","12263899","12643864","13039754","13452526","13882646","14329239","14790245","15262817","15744811","16235767","16736029","17245275","17763367","18290394","18826129","19371031","19926798","20495706","21079532","21678867","22293720","22924557","23571713","24235390","",
"Maldives","MDV","Population, total","SP.POP.TOTL","89875","92327","94909","97556","100177","102723","105145","107488","109901","112591","115703","119315","123372","127717","132122","136434","140582","144645","148797","153285","158282","163834","169861","176258","182864","189551","196283","203059","209832","216553","218000","227000","234000","242000","245000","255000","262000","264000","271000","280000","286000","292000","297000","304000","312000","321000","333000","349000","362000","360000","367000","377000","385000","393000","401000","409163","",
"Middle East & North Africa","MEA","Population, total","SP.POP.TOTL","105557277","108429044","111438644","114526186","117724637","121014965","124390821","127924126","131489251","135136426","138863307","142629493","146461363","150475905","154655451","159062409","163721499","168635082","173827674","179347175","185183207","191326246","197762395","204428624","211185701","218133868","225163130","232203177","239177696","245912541","254531443","261076814","265336498","271312554","277344152","284973163","290950450","296986652","303006934","309069358","315122478","321163368","327207928","333373436","339823622","346657300","353917337","361549578","369452647","377485338","385417024","393274154","401032763","408731939","416401841","424065257","",
"Mexico","MEX","Population, total","SP.POP.TOTL","38174114","39394125","40649590","41939880","43264267","44623041","46010959","47429553","48893607","50423127","52029859","53719547","55480125","57283361","59090495","60872399","62620087","64337694","66025613","67688533","69330974","70950741","72547995","74133377","75721210","77322643","78939441","80571067","82223153","83901643","85609404","87347208","89110043","90887097","92663664","94426946","96181710","97925825","99632299","101266570","102808590","104239563","105578297","106888418","108257822","109747906","111382857","113139374","114972821","116815612","118617542","120365271","122070963","123740109","125385833","127017224","",
"Marshall Islands","MHL","Population, total","SP.POP.TOTL","14665","15052","15545","16111","16702","17283","17840","18388","18965","19622","20397","21310","22340","23440","24536","25580","26549","27470","28399","29416","30581","31895","33334","34895","36567","38334","40203","42148","44063","45813","47300","48481","49382","50052","50577","51020","51397","51697","51922","52076","52161","52184","52161","52115","52074","52058","52080","52136","52221","52321","52428","52541","52663","52786","52898","52993","",
"Middle income","MIC","Population, total","SP.POP.TOTL","2121695477","2147984786","2187420313","2238761979","2290559626","2343828596","2400616693","2457204145","2515373692","2575876275","2637921793","2701464719","2764216390","2826788597","2888811742","2949501546","3009553469","3068986577","3129434178","3191305900","3254031957","3318359729","3385975082","3454546312","3522956649","3592762583","3664672336","3738466310","3812618837","3885909269","3959359071","4029147012","4096920258","4163399538","4229413713","4295060020","4360575511","4426121237","4490956527","4554442008","4616910200","4677894009","4737543273","4797015441","4856325228","4915611294","4974619744","5033182559","5092209376","5152010011","5212280503","5273188611","5334560736","5396516034","5458860818","5521156908","",
"Macedonia, FYR","MKD","Population, total","SP.POP.TOTL","1488664","1507653","1527105","1547445","1569143","1592434","1617797","1644944","1672401","1698140","1720798","1739525","1754954","1768996","1784395","1803009","1825554","1851068","1877687","1902718","1924194","1941445","1954990","1965488","1974069","1981532","1988401","1994368","1998471","1999338","1996227","1988458","1977033","1964924","1956165","1953544","1958303","1969345","1984242","1999362","2012051","2021585","2028706","2033974","2038444","2042894","2047330","2051427","2055266","2058920","2062443","2065888","2069270","2072543","2075625","2078453","",
"Mali","MLI","Population, total","SP.POP.TOTL","5263730","5322267","5381369","5441611","5503748","5568485","5635859","5706198","5780834","5861411","5949043","6044532","6147459","6256192","6368351","6482276","6596817","6712545","6831530","6956779","7090125","7233877","7386669","7542377","7692537","7831891","7957390","8073178","8189984","8322726","8482075","8672581","8891141","9131449","9383608","9640643","9901045","10168000","10444822","10736542","11046926","11376094","11723017","12088867","12474857","12881384","13309942","13759226","14223403","14694565","15167286","15639115","16112333","16592097","17086022","17599694","",
"Malta","MLT","Population, total","SP.POP.TOTL","326550","325250","323900","322550","321250","318800","315200","311550","307900","304300","302650","302700","302450","302200","301996","304222","305774","306970","310182","313342","316645","318982","325898","330524","330593","336452","342121","344485","347325","350722","354170","357727","361260","364704","367941","370433","372687","375236","377516","379360","381363","393028","395969","398582","401268","403834","405308","406724","409379","412477","414508","416268","419455","423374","427364","431333","",
"Myanmar","MMR","Population, total","SP.POP.TOTL","21486424","21961594","22446690","22947286","23471163","24023640","24606863","25218375","25853248","26504247","27166045","27836648","28517289","29209686","29916827","30640635","31379308","32130696","32895739","33675835","34470694","35279907","36098908","36917980","37724581","38508821","39269143","40005369","40711172","41379635","42007309","42588029","43126260","43642311","44164109","44710931","45290888","45895991","46509586","47106923","47669791","48195684","48689952","49151958","49582751","49984704","50355559","50698814","51030006","51369725","51733013","52125411","52543841","52983829","53437159","53897154","",
"Middle East & North Africa (excluding high income)","MNA","Population, total","SP.POP.TOTL","97914047","100520117","103203361","105967893","108822242","111771141","114822829","117971134","121190432","124446136","127718364","130989602","134301647","137699619","141243084","144978967","148914870","153052528","157418847","162041884","166936522","172106111","177527881","183159784","188904386","194828467","200858385","206917503","212943121","218780126","226500949","232072119","237442371","242574382","247781649","252960224","258137333","263330664","268464614","273564675","278580533","283534356","288454626","293390641","298427213","303621727","308994950","314531268","320229174","326041106","331928764","337908291","343940245","350056720","356262920","362560941","",
"Montenegro","MNE","Population, total","SP.POP.TOTL","480579","491140","502558","513409","521753","526327","526419","522796","517481","513340","512407","515449","521785","530220","538902","546487","552562","557576","562065","566888","572608","579445","587001","594506","600884","605398","607711","608144","607413","606571","606372","607105","608516","610170","611389","611712","611003","609520","607662","606001","604950","607389","609828","612267","613353","614261","615025","615875","616969","618294","619428","620079","620601","621207","621810","622388","",
"Mongolia","MNG","Population, total","SP.POP.TOTL","955514","982180","1011328","1042383","1074517","1107125","1139960","1173186","1207108","1242213","1278825","1317049","1356669","1397305","1438423","1479650","1520865","1562212","1603908","1646291","1689622","1733479","1777727","1823215","1871087","1921885","1976311","2033345","2089716","2141006","2184145","2217920","2243506","2263204","2280495","2298038","2316571","2335694","2355588","2376165","2397438","2419729","2443503","2469045","2496621","2526447","2558484","2592776","2629666","2669572","2712657","2759074","2808339","2859174","2909871","2959134","",
"Northern Mariana Islands","MNP","Population, total","SP.POP.TOTL","10070","10340","10541","10709","10901","11157","11489","11882","12318","12766","13203","13658","14142","14605","14978","15232","15316","15293","15390","15906","17048","18906","21393","24308","27363","30341","33173","35904","38570","41243","43972","46719","49429","52120","54817","57518","60248","62939","65374","67271","68434","68817","68499","67562","66143","64372","62235","59791","57343","55276","53860","53234","53314","53869","54541","55070","",
"Mozambique","MOZ","Population, total","SP.POP.TOTL","7493278","7643290","7799396","7961458","8129268","8302736","8482373","8668529","8860823","9058691","9262078","9468836","9679753","9901052","10141147","10405000","10693688","11001909","11320103","11635174","11936379","12228508","12511864","12766859","12968335","13102982","13155271","13142516","13124285","13181941","13371971","13719853","14203987","14775877","15363065","15913101","16410777","16872896","17317376","17774066","18264536","18792357","19348715","19928496","20523159","21126676","21737860","22359637","22994867","23647815","24321457","25016921","25732928","26467180","27216276","27977863","",
"Mauritania","MRT","Population, total","SP.POP.TOTL","858170","883223","909172","936014","963746","992368","1021880","1052285","1083586","1115790","1148908","1182945","1217912","1253839","1290755","1328687","1367640","1407621","1448664","1490811","1534085","1578585","1624310","1671080","1718641","1766855","1815692","1865356","1916240","1968870","2023665","2080782","2140250","2202201","2266745","2333966","2403779","2476188","2551429","2629806","2711421","2796502","2884672","2974686","3064882","3154087","3241762","3328285","3414552","3501927","3591400","3683221","3777067","3872684","3969625","4067564","",
"Mauritius","MUS","Population, total","SP.POP.TOTL","659351","680757","700349","718861","736381","753000","768813","783917","798413","812405","826000","839230","852053","864819","878042","892000","906507","921379","933499","949888","966039","980462","992521","1001691","1012221","1020528","1028360","1036082","1043239","1051260","1058775","1070266","1084441","1097374","1112846","1122457","1133996","1148284","1160421","1175267","1186873","1196287","1204621","1213370","1221003","1228254","1233996","1239630","1244121","1247429","1250400","1252404","1255882","1258653","1260934","1262605","",
"Malawi","MWI","Population, total","SP.POP.TOTL","3618604","3700032","3784444","3872124","3963424","4058680","4158132","4262013","4370664","4484456","4603739","4728693","4859569","4996861","5141138","5292816","5454839","5627788","5807170","5986639","6163225","6327344","6483571","6659453","6892527","7205635","7617137","8108484","8620942","9073088","9408998","9604199","9682918","9697635","9725612","9822812","10006767","10260421","10563554","10882543","11193230","11491824","11788731","12090476","12407618","12747846","13112383","13498377","13904671","14329056","14769824","15226813","15700436","16190126","16695253","17215232","",
"Malaysia","MYS","Population, total","SP.POP.TOTL","8160975","8429369","8710678","8999247","9287442","9569784","9844116","10111920","10375877","10640347","10908634","11182078","11460080","11741849","12025930","12311782","12599655","12891715","13191699","13504433","13833739","14180093","14543585","14926976","15333369","15764340","16221767","16703500","17202032","17707064","18211097","18709835","19204700","19700762","20205992","20725374","21260881","21808125","22358128","22898579","23420751","23920963","24401977","24869423","25332026","25796124","26263048","26730607","27197419","27661017","28119500","28572970","29021940","29465372","29901997","30331007","",
"North America","NAC","Population, total","SP.POP.TOTL","198624409","202007500","205198600","208253700","211262900","214031100","216659000","219176000","221503000","223759000","226431000","229361135","231943831","234332208","236681487","239235000","241606200","244088400","246674600","249385800","251872670","254421050","256921449","259303930","261583423","263922898","266394382","268896849","271452347","274256841","277473326","281211703","285092192","288811320","292297226","295691746","299126029","302704697","306162843","309600485","312993944","316113359","319050105","321847258","324864038","327892753","331014940","334184023","337405012","340465736","343417261","346126201","348918897","351647895","354516198","357335829","",
"Namibia","NAM","Population, total","SP.POP.TOTL","602545","617282","632658","648668","665297","682553","700316","718622","737802","758305","780386","804309","829806","855965","881530","905647","928228","949734","970569","991365","1012761","1034446","1056758","1081740","1112044","1149389","1194769","1247186","1303879","1360921","1415447","1466152","1513689","1559480","1605828","1654214","1705349","1758097","1809920","1857320","1897953","1931005","1957749","1980531","2002745","2027026","2053915","2083174","2115703","2152357","2193643","2240161","2291645","2346592","2402858","2458830","",
"New Caledonia","NCL","Population, total","SP.POP.TOTL","79000","81200","83400","85700","88100","90500","93500","96500","99500","104000","112000","120000","125500","128500","131000","132500","134000","136000","137500","138500","140050","142650","145700","148700","151650","154450","157350","160500","163650","166898","170899","175362","179799","184496","189482","193816","197564","201418","205279","209214","213230","217324","221490","225000","228000","231000","235000","238000","242000","245000","250000","254000","259000","263000","268000","273000","",
"Niger","NER","Population, total","SP.POP.TOTL","3395212","3493636","3596613","3703159","3811813","3921581","4032210","4144238","4258415","4375837","4497355","4623121","4753054","4887484","5026744","5171029","5320869","5476206","5635954","5798584","5963159","6129762","6299343","6472971","6652110","6838170","7031675","7233482","7445788","7671233","7911884","8168834","8442330","8732500","9039088","9361912","9701730","10058960","10432657","10821434","11224523","11642308","12075991","12526725","12996012","13485436","13995530","14527631","15085130","15672194","16291990","16946485","17635782","18358863","19113728","19899120","",
"Nigeria","NGA","Population, total","SP.POP.TOTL","45211614","46144154","47117859","48128460","49169819","50238569","51336375","52468593","53640547","54859201","56131844","57453734","58829319","60285453","61857023","63565598","65426976","67425435","69512233","71619216","73698096","75729572","77729802","79729311","81775215","83901570","86118043","88412917","90773613","93179755","95617345","98085436","100592458","103145093","105753088","108424822","111164651","113975055","116860691","119826231","122876723","126014935","129246283","132581484","136033321","139611303","143318011","147152502","151115683","155207145","159424742","163770669","168240403","172816517","177475986","182201962","",
"Nicaragua","NIC","Population, total","SP.POP.TOTL","1774696","1830400","1886560","1943591","2002119","2062633","2125233","2189880","2256779","2326136","2398095","2472656","2549779","2629503","2711847","2796748","2884156","2973805","3065118","3157356","3249910","3342666","3435527","3527935","3619252","3709091","3796914","3882940","3968453","4055262","4144564","4236805","4331273","4426577","4520727","4612229","4700777","4786641","4869627","4949661","5026792","5100750","5171736","5240876","5309703","5379327","5450217","5522119","5594524","5666595","5737722","5807787","5877034","5945646","6013913","6082032","",
"Netherlands","NLD","Population, total","SP.POP.TOTL","11486631","11638712","11805689","11965966","12127120","12294732","12456251","12598201","12729721","12877984","13038526","13194497","13328593","13439322","13545056","13666335","13774037","13856185","13941700","14038270","14149800","14247208","14312690","14367070","14424211","14491632","14572278","14665037","14760094","14848907","14951510","15069798","15184166","15290368","15382838","15459006","15530498","15610650","15707209","15812088","15925513","16046180","16148929","16225302","16281779","16319868","16346101","16381696","16445593","16530388","16615394","16693074","16754962","16804432","16865008","16936520","",
"Norway","NOR","Population, total","SP.POP.TOTL","3581239","3609800","3638918","3666537","3694339","3723168","3753012","3784539","3816486","3847707","3875763","3903039","3933004","3960612","3985258","4007313","4026152","4043205","4058671","4072517","4085620","4099702","4114787","4128432","4140099","4152516","4167354","4186905","4209488","4226901","4241473","4261732","4286401","4311991","4336613","4359184","4381336","4405157","4431464","4461913","4490967","4513751","4538159","4564855","4591910","4623291","4660677","4709153","4768212","4828726","4889252","4953088","5018573","5079623","5137232","5195921","",
"Nepal","NPL","Population, total","SP.POP.TOTL","10056945","10215153","10377061","10544586","10719988","10905006","11100672","11307139","11524132","11750914","11986974","12232454","12487785","12753028","13028248","13313487","13608670","13913775","14228941","14554356","14890080","15237302","15596012","15963746","16337117","16714335","17091959","17472138","17865238","18285434","18741688","19237322","19765570","20312687","20859421","21390905","21902534","22395247","22866496","23315053","23740145","24140941","24516969","24868900","25198130","25506847","25794344","26063619","26325183","26592666","26875910","27179237","27500515","27834981","28174724","28513700","",
"Nauru","NRU","Population, total","SP.POP.TOTL","4433","4675","4947","5231","5500","5738","5936","6102","6241","6368","6493","6619","6743","6862","6972","7070","7156","7235","7311","7393","7488","7597","7719","7855","8007","8174","8356","8550","8752","8956","9157","9354","9544","9719","9863","9970","10033","10056","10054","10044","10042","10053","10073","10096","10113","10115","10101","10075","10047","10028","10025","10043","10079","10125","10176","10222","",
"New Zealand","NZL","Population, total","SP.POP.TOTL","2371800","2419700","2482000","2531800","2585400","2628400","2675900","2724100","2748100","2772800","2810700","2853000","2903900","2961300","3023700","3083100","3110500","3120200","3121200","3109000","3112900","3124900","3156100","3199300","3227100","3247100","3246300","3274400","3283400","3299200","3329800","3495100","3531700","3572200","3620000","3673400","3732000","3781300","3815000","3835100","3857700","3880500","3948500","4027200","4087500","4133900","4184600","4223800","4259800","4302600","4350700","4384000","4408100","4442100","4509700","4595700","",
"OECD members","OED","Population, total","SP.POP.TOTL","788769132","801090187","812036978","822947943","833822590","844353927","854361513","863967355","872669960","883173471","892733697","902969602","913403656","922970157","933599688","943730729","952373274","961212179","970130430","979028644","987744287","996444161","1004665082","1012545345","1020094013","1027722831","1035667260","1043569333","1051621117","1060182358","1069301886","1078982212","1088746944","1098049603","1106887160","1115578052","1124092178","1132598216","1140821718","1149093535","1157260608","1165754980","1174149916","1182447832","1190808908","1199201044","1207946461","1216989289","1226520017","1235310457","1243550244","1251605332","1258042183","1267816127","1274981875","1282975040","",
"Oman","OMN","Population, total","SP.POP.TOTL","551737","564895","578825","593504","608889","625007","642005","660117","679593","700729","723850","748971","776379","806989","841947","882044","927439","977806","1032799","1091855","1154375","1220548","1290007","1360921","1430926","1498416","1561493","1620573","1679089","1741965","1812159","1892345","1979914","2066264","2139539","2191864","2219768","2227596","2224922","2225481","2239403","2272547","2323203","2385075","2448194","2506891","2553376","2593750","2652281","2762073","2943747","3210003","3545192","3906912","4236057","4490541","",
"Other small states","OSS","Population, total","SP.POP.TOTL","9190554","9359115","9530669","9705396","9886197","10071866","10260416","10452463","10653156","10861518","11078167","11306275","11541593","11781479","12025293","12275209","12526930","12783508","13047655","13328816","13628840","13945999","14283059","14632383","14996144","15381431","15786818","16207189","16633611","17051830","17443575","17821355","18164444","18484577","18804340","19130028","19462187","19801297","20150470","20515051","20898841","21267515","21630779","22012962","22437930","22912669","23463471","24080704","24732235","25360267","25965594","26564437","27109032","27632006","28142985","28650005","",
"Pakistan","PAK","Population, total","SP.POP.TOTL","44911810","45988447","47122931","48312888","49555472","50848775","52194629","53594445","55045897","56545924","58094239","59690467","61341255","63062204","64873705","66791496","68818471","70953777","73204087","75575981","78071984","80691701","83427522","86264621","89183159","92165065","95207133","98301647","101420791","104530689","107607639","110634399","113616165","116579605","119564925","122599749","125697651","128845692","132013680","135158132","138250487","141282077","144271586","147251530","150267989","153356383","156524189","159767672","163096985","166520983","170043918","173669648","177392252","181192646","185044286","188924874","",
"Panama","PAN","Population, total","SP.POP.TOTL","1132924","1167041","1202372","1238824","1276274","1314627","1353805","1393800","1434660","1476478","1519293","1563113","1607835","1653257","1699114","1745207","1791459","1837887","1884512","1931393","1978575","2026057","2073826","2121921","2170390","2219276","2268619","2318444","2368772","2419618","2471010","2522901","2575330","2628511","2682720","2738125","2794845","2852739","2911383","2970193","3028751","3086887","3144728","3202511","3260611","3319301","3378600","3438398","3498679","3559401","3620506","3681979","3743761","3805683","3867535","3929141","",
"Peru","PER","Population, total","SP.POP.TOTL","10061519","10350239","10650672","10961539","11281015","11607684","11941327","12282081","12629333","12982444","13341071","13704333","14072476","14447649","14832839","15229951","15639898","16061327","16491087","16924758","17359118","17792551","18225727","18660443","19099575","19544950","19996250","20451712","20909897","21368856","21826658","22283130","22737056","23184222","23619358","24038761","24441076","24827409","25199744","25561297","25914875","26261363","26601463","26937737","27273188","27610406","27949958","28292768","28642048","29001563","29373644","29759891","30158768","30565461","30973148","31376670","",
"Philippines","PHL","Population, total","SP.POP.TOTL","26273023","27164618","28081234","29016770","29962877","30913931","31867565","32826602","33797041","34787588","35804731","36851055","37925400","39026082","40149959","41295129","42461189","43650333","44866279","46113992","47396966","48715592","50068493","51455037","52873979","54323651","55803915","57312794","58844392","60391168","61947340","63509940","65078901","66654954","68240134","69835713","71437381","73042605","74656228","76285225","77932247","79604541","81294378","82971734","84596249","86141373","87592899","88965508","90297115","91641881","93038902","94501233","96017322","97571676","99138690","100699395","",
"Palau","PLW","Population, total","SP.POP.TOTL","9638","9901","10150","10381","10593","10782","10945","11081","11206","11335","11481","11656","11853","12045","12195","12280","12284","12225","12151","12127","12197","12383","12667","13015","13371","13698","13982","14237","14485","14762","15089","15471","15894","16345","16805","17255","17695","18123","18524","18878","19174","19404","19575","19700","19805","19907","20012","20118","20227","20344","20470","20606","20756","20919","21097","21291","",
"Papua New Guinea","PNG","Population, total","SP.POP.TOTL","1966957","2001048","2037165","2075630","2116832","2161103","2208422","2258877","2313017","2371515","2434755","2503074","2576093","2652586","2730859","2809692","2888509","2967620","3047769","3130125","3215483","3304188","3395798","3489402","3583707","3677854","3771578","3865402","3960243","4057406","4157903","4261933","4369407","4480689","4596131","4715929","4840311","4969116","5101633","5236863","5374051","5512835","5653284","5795571","5940048","6086905","6236158","6387470","6540267","6693799","6847517","7001172","7154870","7308864","7463577","7619321","",
"Poland","POL","Population, total","SP.POP.TOTL","29637450","29964000","30308500","30712000","31139450","31444950","31681000","31987155","32294655","32548300","32664300","32783500","33055650","33357200","33678899","34015199","34356300","34689050","34965600","35247217","35574150","35898587","36230481","36571808","36904134","37201885","37456119","37668045","37824487","37961529","38110782","38246193","38363667","38461408","38542652","38594998","38624370","38649660","38663481","38660271","38258629","38248076","38230364","38204570","38182222","38165445","38141267","38120560","38125759","38151603","38042794","38063255","38063164","38040196","38011735","37999494","",
"Pre-demographic dividend","PRE","Population, total","SP.POP.TOTL","188373482","192672273","197156196","201836017","206723945","211829507","217167605","222741879","228537586","234532020","240714208","247059252","253585295","260374328","267537392","275143854","283246998","291797523","300637943","309548454","318378349","327083338","335735167","344444016","353373959","362656276","372296266","382288800","392740587","403778747","415481032","427933883","441088911","454723399","468524311","482278474","495900493","509493025","523261490","537505596","552445596","568156237","584583809","601666093","619292053","637375179","655915560","674958034","694563093","714815271","735769429","757484446","779862983","802855752","826352062","850271023","",
"Puerto Rico","PRI","Population, total","SP.POP.TOTL","2358000","2399722","2450322","2504530","2554066","2594000","2624995","2645674","2662064","2684150","2718000","2762190","2817256","2878786","2939299","2994000","3043854","3088690","3129421","3168088","3206000","3242552","3277453","3311138","3344190","3377000","3409554","3441850","3473898","3505650","3537000","3562110","3585176","3615497","3649237","3683103","3724655","3759430","3781101","3800081","3810605","3818774","3823701","3826095","3826878","3821362","3805214","3782995","3760866","3740410","3721526","3678736","3634487","3593079","3534888","3474182","",
"Korea, Dem. People’s Rep.","PRK","Population, total","SP.POP.TOTL","11424179","11665593","11871720","12065470","12282421","12547524","12864683","13221826","13608611","14009168","14410400","14812363","15214615","15603001","15960127","16274740","16539029","16758826","16953621","17151321","17372167","17623335","17899236","18191881","18487997","18778101","19058988","19334550","19610512","19895390","20194354","20510208","20838082","21166230","21478544","21763670","22016510","22240826","22444986","22641747","22840218","23043441","23248053","23449173","23639296","23813324","23969897","24111945","24243829","24371806","24500506","24631359","24763353","24895705","25026772","25155317","",
"Portugal","PRT","Population, total","SP.POP.TOTL","8857716","8929316","8993985","9030355","9035365","8998595","8930990","8874520","8836650","8757705","8680431","8643756","8630430","8633100","8754365","9093470","9355810","9455675","9558250","9661265","9766312","9851362","9911771","9957865","9996232","10023613","10032734","10030031","10019610","10005000","9983218","9960235","9952494","9964675","9991525","10026176","10063945","10108977","10160196","10217828","10289898","10362722","10419631","10458821","10483861","10503330","10522288","10542964","10558177","10568247","10573100","10557560","10514844","10457295","10401062","10348648","",
"Paraguay","PRY","Population, total","SP.POP.TOTL","1902871","1953331","2005337","2058916","2114095","2170853","2229373","2289579","2350900","2412565","2474102","2535355","2596741","2659084","2723523","2790964","2861582","2935375","3012833","3094479","3180628","3271454","3366726","3465796","3567750","3671826","3777764","3885433","3994328","4103909","4213740","4323402","4432738","4541902","4651222","4760853","4870695","4980346","5089306","5196935","5302703","5406625","5508615","5607948","5703742","5795493","5882797","5966160","6047131","6127847","6209877","6293763","6379162","6465669","6552518","6639123","",
"Pacific island small states","PSS","Population, total","SP.POP.TOTL","865811","894211","924223","955109","985870","1015764","1044558","1072397","1099414","1125883","1152035","1177886","1203422","1228877","1254520","1280578","1306944","1333634","1361129","1390041","1420689","1453544","1488194","1523013","1555790","1585032","1609921","1631177","1650666","1671112","1694417","1721249","1750857","1781989","1812753","1841772","1868807","1894309","1918419","1941464","1963761","1985179","2005803","2026433","2048118","2071588","2097182","2124650","2153399","2182547","2211421","2239849","2267982","2295834","2323513","2351091","",
"Post-demographic dividend","PST","Population, total","SP.POP.TOTL","754697140","765509490","774963142","784266930","793397728","802226258","810468063","818152203","824870118","833295508","840831632","848920841","856920648","863925539","871925569","879414142","885318037","891425425","897666639","904016300","910028235","916137223","921626766","926705289","931491066","936326850","941590822","946943601","952502232","958485541","964659603","970950461","977709589","984175293","989788286","995113407","1000255943","1005399457","1010195262","1015143403","1020294075","1025559136","1030738658","1035926661","1041323104","1046651906","1052284984","1058116566","1064539739","1070040846","1075073808","1079590396","1082692198","1089081466","1092938826","1097737383","",
"French Polynesia","PYF","Population, total","SP.POP.TOTL","78083","80706","83654","86839","90132","93440","96730","100031","103385","106858","110496","114311","118279","122355","126483","130619","134743","138867","143033","147299","151702","156240","160883","165611","170397","175208","180069","184958","189742","194249","198370","202020","205269","208349","211584","215200","219282","223734","228380","232956","237267","241276","245032","248536","251811","254884","257731","260361","262877","265412","268065","270862","273775","276766","279781","282764","",
"Qatar","QAT","Population, total","SP.POP.TOTL","47309","51355","56187","61647","67487","73543","79735","86161","93043","100697","109329","119246","130377","142111","153593","164333","173759","182370","192018","205244","223715","248053","277242","309276","341286","371071","398326","423327","445203","463062","476478","485114","489668","492120","495179","501019","511864","528213","548618","570643","593453","613720","634388","668165","732096","836924","988448","1178955","1388962","1591151","1765513","1905437","2015624","2101288","2172065","2235355","",
"Romania","ROU","Population, total","SP.POP.TOTL","18406905","18555250","18676550","18797850","18919126","19031576","19215450","19534242","19799831","20009141","20250398","20461567","20657957","20835681","21029429","21293583","21551634","21756096","21951464","22090488","22242653","22415169","22515389","22588790","22655940","22755427","22859269","22949430","23057662","23161458","23201835","23001155","22794284","22763280","22730211","22684270","22619004","22553978","22507344","22472040","22442971","22131970","21730496","21574326","21451748","21319685","21193760","20882982","20537875","20367487","20246871","20147528","20058035","19983693","19908979","19832389","",
"Russian Federation","RUS","Population, total","SP.POP.TOTL","119897000","121236000","122591000","123960000","125345000","126745000","127468000","128196000","128928000","129664000","130404000","131155000","131909000","132669000","133432000","134200000","135147000","136100000","137060000","138027000","139010000","139941000","140823000","141668000","142745000","143858000","144894000","145908000","146857000","147721000","148292000","148624000","148689000","148520000","148336000","148375726","148160042","147915307","147670692","147214392","146596557","145976083","145306046","144648257","144067054","143518523","143049528","142805088","142742350","142785342","142849449","142960868","143201676","143506911","143819569","144096812","",
"Rwanda","RWA","Population, total","SP.POP.TOTL","2933424","2996091","3050596","3102968","3161719","3232937","3319077","3418313","3527260","3640591","3754546","3868345","3983707","4102336","4226836","4359166","4499720","4648070","4804375","4968628","5140786","5313908","5486431","5669251","5877556","6117966","6410594","6742390","7048075","7239097","7259740","7071393","6712924","6300358","5995987","5912755","6097688","6506118","7047196","7585143","8021875","8329113","8539029","8686469","8828956","9008230","9231041","9481083","9750314","10024594","10293669","10556429","10817350","11078095","11341544","11609666","",
"South Asia","SAS","Population, total","SP.POP.TOTL","572036107","584143236","596701125","609571502","623073110","636963781","651325994","666134328","681405837","697060567","713115397","729469562","746222138","763491289","781254784","799620311","818590962","838141522","858266916","878939779","900085240","921521635","943562470","966023576","988878603","1012099768","1035659508","1059536231","1083705645","1108148042","1132833314","1157752321","1182862267","1208123497","1233480616","1258903823","1284343918","1309774343","1335193652","1360594891","1385959570","1411288216","1436527869","1461601023","1486402311","1510864613","1534949611","1558685624","1582147481","1605443788","1628688562","1651888921","1675019307","1698093032","1721152580","1744161298","",
"Saudi Arabia","SAU","Population, total","SP.POP.TOTL","4086539","4218879","4362863","4516663","4677409","4843635","5015672","5196349","5389848","5601649","5836394","6096106","6382106","6697486","7045477","7428705","7845300","8295384","8785326","9323290","9912917","10556936","11247085","11962244","12674089","13361284","14016569","14642354","15239174","15810980","16361453","16890555","17398523","17890529","18373412","18853670","19331311","19809633","20302193","20825955","21392273","22007937","22668102","23357887","24055573","24745230","25419994","26083522","26742842","27409491","28090647","28788438","29496047","30201051","30886545","31540372","",
"Sudan","SDN","Population, total","SP.POP.TOTL","7527450","7749884","7981797","8223613","8475765","8738703","9013112","9299545","9598196","9909152","10232758","10568788","10918137","11283574","11668674","12075841","12506035","12958110","13429688","13917268","14418063","14935471","15470415","16015120","16559205","17097619","17618852","18130501","18669146","19284633","20008804","20861117","21820588","22829227","23805536","24691970","25466387","26149124","26777059","27406808","28079664","28805142","29569978","30365586","31176209","31990003","32809056","33637960","34470138","35297298","36114885","36918193","37712420","38515095","39350274","40234882","",
"Senegal","SEN","Population, total","SP.POP.TOTL","3177560","3265558","3356421","3450418","3547939","3649308","3754268","3862783","3975614","4093763","4217754","4348499","4485342","4625377","4764623","4900491","5031849","5160313","5289445","5424299","5568651","5723541","5888261","6062682","6246140","6438024","6638186","6846556","7062540","7285378","7514201","7749559","7990736","8234147","8475136","8710746","8939438","9163184","9386923","9617641","9860578","10118078","10389457","10673320","10967016","11268994","11578430","11897230","12229703","12581624","12956791","13357003","13780108","14221041","14672557","15129273","",
"Singapore","SGP","Population, total","SP.POP.TOTL","1646400","1702400","1750200","1795000","1841600","1886900","1934400","1977600","2012000","2042500","2074500","2112900","2152400","2193000","2229800","2262600","2293300","2325300","2353600","2383500","2413945","2532835","2646466","2681061","2732221","2735957","2733373","2774789","2846108","2930901","3047132","3135083","3230698","3313471","3419048","3524506","3670704","3796038","3927213","3958723","4027887","4138012","4175950","4114826","4166664","4265762","4401365","4588599","4839396","4987573","5076732","5183688","5312437","5399162","5469724","5535002","",
"Solomon Islands","SLB","Population, total","SP.POP.TOTL","117869","121403","125068","128863","132787","136847","141027","145354","149926","154876","160292","166214","172599","179354","186338","193447","200642","207942","215353","222905","230614","238488","246502","254602","262719","270809","278846","286868","294962","303258","311849","320764","329984","339490","349250","359236","369438","379859","390489","401319","412336","423535","434893","446352","457841","469306","480716","492075","503410","514767","526177","537648","549162","560685","572171","583591","",
"Sierra Leone","SLE","Population, total","SP.POP.TOTL","2181701","2210169","2239581","2269890","2301023","2332999","2365801","2399667","2435197","2473165","2514151","2558395","2605837","2656380","2709797","2765914","2824827","2886607","2951001","3017670","3086406","3155368","3224346","3296530","3376371","3466044","3569102","3681945","3791078","3878211","3931208","3945899","3929182","3893891","3858559","3837807","3833053","3843472","3878475","3948800","4060709","4220198","4422154","4647701","4870467","5071271","5243214","5391108","5521838","5647194","5775902","5908908","6043157","6178859","6315627","6453184","",
"El Salvador","SLV","Population, total","SP.POP.TOTL","2762897","2843246","2927861","3015885","3106186","3197865","3290397","3383674","3477702","3572667","3668592","3765252","3862132","3958616","4053958","4147525","4239205","4328817","4415625","4498757","4577683","4652058","4722272","4789472","4855280","4920932","4986528","5051885","5117577","5184221","5252082","5321576","5392142","5461834","5528012","5588743","5643363","5692300","5736075","5775660","5811836","5844738","5874301","5900929","5925089","5947206","5967556","5986414","6004199","6021368","6038306","6055208","6072233","6089644","6107706","6126583","",
"San Marino","SMR","Population, total","SP.POP.TOTL","15393","15787","16197","16616","17033","17440","17839","18228","18587","18895","19136","19299","19396","19467","19565","19732","19981","20301","20663","21026","21363","21666","21944","22203","22455","22708","22959","23208","23463","23740","24045","24385","24755","25141","25519","25875","26201","26503","26795","27097","27420","27771","28142","28520","28891","29242","29568","29874","30160","30431","30690","30938","31172","31391","31595","31781","",
"Somalia","SOM","Population, total","SP.POP.TOTL","2756380","2814683","2874944","2937360","3002173","3069558","3144244","3227245","3311111","3385414","3445420","3477568","3490295","3526527","3644572","3880955","4259636","4754149","5289049","5758961","6089707","6251730","6271538","6199671","6113252","6068425","6082723","6138907","6217331","6285456","6321615","6319531","6294017","6269244","6278911","6346440","6480888","6672781","6904231","7148406","7385416","7610053","7827203","8039104","8251054","8466938","8686939","8909015","9132589","9356827","9581714","9806670","10033630","10268157","10517569","10787104","",
"Serbia","SRB","Population, total","SP.POP.TOTL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7586000","7595636","7646424","7699307","7734639","7625357","7617794","7596501","7567745","7540401","7516346","7503433","7496522","7480591","7463157","7440769","7411569","7381579","7350222","7320807","7291436","7234099","7199077","7164132","7130576","7098247","",
"Sub-Saharan Africa (excluding high income)","SSA","Population, total","SP.POP.TOTL","228227052","233717101","239359579","245171874","251169529","257367430","263781998","270427647","277314338","284450088","291844283","299523889","307468014","315701605","324258161","333162846","342428852","352047880","362013509","372327378","382979491","393955998","405263129","416916315","428941639","441346877","454129421","467269469","480740813","494510951","508546039","522937118","537687904","552769967","568154431","583817375","599782228","616083993","632778303","649950074","667660967","685714078","703920405","722749402","742226949","762393890","783273041","804865417","827152715","850102988","873690400","897911089","922766806","948232478","974280491","1000888081","",
"South Sudan","SSD","Population, total","SP.POP.TOTL","2955044","3011112","3069990","3131686","3196258","3263767","3334254","3407754","3484335","3564079","3647097","3733547","3823605","3917450","4015271","4117299","4222056","4329467","4442665","4565912","4701360","4849708","5007145","5165623","5314358","5444907","5559804","5660153","5735170","5771305","5762190","5698998","5593347","5484372","5425099","5452771","5584223","5806951","6092688","6398416","6692999","6967817","7233237","7499695","7784488","8099908","8445659","8815495","9208598","9623176","10056475","10510122","10980623","11453810","11911184","12339812","",
"Sub-Saharan Africa","SSF","Population, total","SP.POP.TOTL","228268752","233759990","239403621","245217050","251215851","257414930","263830697","270477558","277365472","284502453","291897883","299578724","307524082","315758889","324316627","333222446","342489556","352109622","362076216","372390972","383043891","394021126","405328909","416982682","429008541","441414277","454197298","467337821","480809661","494580339","508616039","523007873","537759561","552842678","568228356","583892679","599858645","616161312","632857149","650030484","667742098","685795280","704004105","722832202","742309449","762476790","783357641","804950450","827239671","850190286","873780170","897998530","922855109","948322378","974371891","1000980981","",
"Small states","SST","Population, total","SP.POP.TOTL","14247175","14524254","14808300","15096335","15386499","15674526","15958314","16238627","16522722","16813107","17112785","17424684","17744988","18070691","18400040","18734727","19070972","19410932","19759114","20127911","20520549","20931142","21370353","21822949","22284023","22752740","23227893","23702110","24170869","24646585","25098360","25544342","25962570","26362582","26763596","27169420","27589152","28008288","28434112","28868201","29317318","29750155","30169143","30606605","31089066","31625173","32241884","32928941","33652912","34354027","35031584","35700983","36314122","36903594","37479355","38050062","",
"Sao Tome and Principe","STP","Population, total","SP.POP.TOTL","64255","64549","64429","64181","64209","64797","66057","67874","70040","72240","74251","75989","77536","79026","80670","82607","84889","87436","90095","92652","94953","96947","98692","100285","101871","103557","105364","107264","109268","111373","113575","115900","118346","120849","123318","125694","127946","130110","132284","134602","137164","140003","143085","146357","149732","153146","156584","160064","163595","167196","170880","174646","178484","182386","186342","190344","",
"Suriname","SUR","Population, total","SP.POP.TOTL","289972","298190","306330","314530","322995","331799","341137","350755","359735","366845","371268","372619","371318","368342","365104","362651","361368","361053","361463","362137","362777","363309","363993","365242","367611","371469","376973","383916","391851","400133","408276","416068","423572","430901","438280","445830","453653","461569","469108","475637","480751","484210","486271","487641","489312","491999","495953","500953","506657","512522","518141","523439","528535","533450","538248","542975","",
"Slovak Republic","SVK","Population, total","SP.POP.TOTL","4068095","4191667","4238188","4282017","4327341","4370983","4411666","4449367","4483915","4518607","4538223","4557449","4596622","4641445","4689623","4739105","4789507","4840501","4890125","4938973","4979815","5016105","5055099","5091971","5127097","5161768","5193838","5222840","5250596","5275942","5299187","5303294","5305016","5325305","5346331","5361999","5373361","5383291","5390516","5396020","5388720","5378867","5376912","5373374","5372280","5372807","5373054","5374622","5379233","5386406","5391428","5398384","5407579","5413393","5418649","5424050","",
"Slovenia","SVN","Population, total","SP.POP.TOTL","1584720","1594131","1603649","1616971","1632114","1649160","1669905","1689528","1704546","1713874","1724891","1738335","1752233","1766697","1776132","1793581","1820249","1842377","1862548","1882599","1901315","1906531","1910334","1922321","1932154","1941641","1965964","1989776","1995196","1996351","1998161","1999429","1996498","1991746","1989443","1989872","1988628","1985956","1981629","1983045","1988925","1992060","1994530","1995733","1997012","2000474","2006868","2018122","2021316","2039669","2048583","2052843","2057159","2059953","2061980","2063768","",
"Sweden","SWE","Population, total","SP.POP.TOTL","7484656","7519998","7561588","7604328","7661354","7733853","7807797","7867931","7912273","7968072","8042801","8098334","8122300","8136312","8159955","8192437","8222286","8251540","8275599","8293678","8310531","8320503","8325263","8329033","8336605","8350386","8369829","8397804","8436489","8492964","8558835","8617375","8668067","8718561","8780745","8826939","8840998","8846062","8850974","8857874","8872109","8895960","8924958","8958229","8993531","9029572","9080505","9148092","9219637","9298515","9378126","9449213","9519374","9600379","9696110","9798871","",
"Swaziland","SWZ","Population, total","SP.POP.TOTL","349233","357522","365719","373991","382575","391659","401295","411478","422266","433709","445844","458717","472337","486656","501596","517100","533264","550135","567560","585335","603373","621314","639333","658496","680253","705492","734790","767417","801350","833787","862728","887248","907947","926224","944223","963428","984506","1006760","1028694","1048151","1063715","1074765","1082195","1087949","1094775","1104642","1118204","1134853","1153750","1173529","1193148","1212458","1231694","1250641","1269112","1286970","",
"Sint Maarten (Dutch part)","SXM","Population, total","SP.POP.TOTL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","31240","31084","30519","31189","32566","33790","35316","36934","38270","39462","40458","39133","35474","33435","34640","36607","37685","38817","",
"Seychelles","SYC","Population, total","SP.POP.TOTL","41700","42889","44042","45176","46322","47500","48699","49911","51134","52365","53600","54835","56068","57284","58466","59600","60704","61742","62707","63594","64400","65128","65780","66367","66902","67400","67877","68352","68848","69388","70000","70755","71657","72711","73925","75304","76417","77319","78846","80410","81131","81202","83700","82800","82500","82900","84600","85033","86956","87298","89770","87441","88303","89900","91400","92900","",
"Syrian Arab Republic","SYR","Population, total","SP.POP.TOTL","4592777","4742596","4897428","5057825","5224579","5398333","5579283","5767478","5963248","6166933","6378802","6599366","6828765","7066474","7311685","7564000","7822610","8088148","8363346","8651904","8956156","9277263","9613517","9960833","10313485","10667245","11020718","11374772","11730217","12088714","12451539","12817578","13186187","13559642","13941025","14331962","14736209","15151962","15568797","15972430","16354050","16694414","16997521","17304339","17671913","18132842","18728200","19425597","20097057","20566871","20720602","20501167","19978756","19322593","18772481","18502413","",
"Turks and Caicos Islands","TCA","Population, total","SP.POP.TOTL","5724","5760","5762","5741","5705","5669","5629","5589","5563","5573","5632","5750","5924","6132","6346","6546","6723","6886","7057","7262","7525","7855","8245","8671","9097","9502","9873","10224","10588","11019","11550","12205","12970","13793","14597","15334","15967","16527","17114","17866","18876","20186","21740","23412","25025","26450","27642","28638","29481","30247","30993","31727","32430","33103","33740","34339","",
"Chad","TCD","Population, total","SP.POP.TOTL","3002596","3061423","3122357","3184775","3247798","3310921","3373563","3436227","3500778","3569778","3644911","3727382","3816299","3908729","4000511","4088858","4173070","4254770","4336389","4421448","4512795","4610964","4716073","4830055","4955088","5092650","5244158","5409275","5585528","5769273","5958022","6151213","6350174","6556628","6773104","7001634","7242018","7494143","7760157","8042713","8343321","8663599","9002102","9353516","9710498","10067932","10423616","10779504","11139740","11510535","11896380","12298512","12715465","13145788","13587053","14037472","",
"East Asia & Pacific (IDA & IBRD countries)","TEA","Population, total","SP.POP.TOTL","885053233","884103308","895507467","918210288","940539011","963844335","990693705","1016635143","1043552396","1072206476","1101819667","1132130567","1160753692","1188474965","1214719944","1238563024","1260573946","1281008032","1301409787","1322089801","1342386406","1363262173","1386395671","1409622082","1431811586","1454823474","1479545928","1505857510","1532465627","1558388099","1583420482","1607332058","1629666457","1651168577","1672562483","1693610863","1714375070","1734987785","1754947036","1773820531","1791655658","1808712336","1825011514","1840686278","1855914203","1870882188","1885233245","1898935255","1912445321","1925862760","1939296199","1952981621","1966974740","1981182565","1995584007","2009929013","",
"Europe & Central Asia (IDA & IBRD countries)","TEC","Population, total","SP.POP.TOTL","308998195","313624599","318286940","323018416","327746440","332271277","336043053","339936898","343746230","347456619","350929974","354605064","358622285","362514898","366434741","370357735","374400766","378331627","382172768","385994516","389981317","394058227","397990103","401922589","406091720","410237947","414308796","418318260","422146358","425769906","428458829","430290396","431966368","433465126","434183214","434695993","434935182","435428807","435652084","435716325","435333173","435103609","434792812","434933277","435275699","435684965","436218371","436773705","437826163","439618582","441582321","443792065","446161259","448720643","451234370","453562136","",
"Togo","TGO","Population, total","SP.POP.TOTL","1580513","1597528","1612758","1631763","1662072","1708632","1774029","1855445","1945781","2034909","2115521","2185661","2247575","2303345","2356623","2410446","2464457","2518566","2576468","2642845","2720838","2812071","2915148","3026378","3140355","3252995","3363448","3472459","3579489","3684309","3786942","3886858","3984356","4081398","4180689","4284286","4392941","4506465","4624826","4747665","4874735","5006223","5142419","5283246","5428552","5578219","5732175","5890414","6052937","6219761","6390851","6566179","6745581","6928719","7115163","7304578","",
"Thailand","THA","Population, total","SP.POP.TOTL","27397178","28224208","29081037","29967043","30881332","31822798","32789097","33778500","34790945","35826803","36884914","37964925","39061999","40164969","41259539","42334954","43386846","44416007","45423442","46412310","47385325","48336894","49265597","50183106","51105438","52041468","53002775","53979503","54933561","55812794","56582824","57225972","57761574","58237672","58722767","59266089","59878955","60544937","61250974","61973957","62693322","63415174","64136669","64817254","65404522","65863973","66174486","66353572","66453255","66548197","66692024","66902958","67164130","67451422","67725979","67959359","",
"Tajikistan","TJK","Population, total","SP.POP.TOTL","2064035","2140413","2223956","2312193","2401598","2489648","2575335","2659452","2743461","2829641","2919586","3013956","3112041","3212446","3313144","3412819","3511050","3608761","3707624","3809991","3917642","4030104","4146923","4269775","4400743","4540688","4690913","4849253","5008827","5160375","5297286","5417554","5523207","5616797","5702611","5784330","5862224","5936780","6012308","6094126","6186152","6290413","6406518","6532871","6666628","6805655","6949566","7099021","7254072","7414960","7581696","7753925","7930929","8111894","8295840","8481855","",
"Turkmenistan","TKM","Population, total","SP.POP.TOTL","1593501","1649914","1708711","1769008","1829697","1890000","1949425","2008148","2066889","2126749","2188499","2252386","2318070","2385039","2452528","2520002","2587417","2655036","2723006","2791575","2861000","2931343","3002785","3075867","3151262","3229499","3310059","3392823","3479088","3570558","3668000","3772350","3881973","3991917","4095512","4188010","4267690","4335991","4395293","4449427","4501419","4551762","4600172","4648036","4696876","4747839","4801594","4858235","4917541","4978960","5041995","5106672","5172941","5240088","5307188","5373502","",
"Latin America & the Caribbean (IDA & IBRD countries)","TLA","Population, total","SP.POP.TOTL","210495731","216494111","222689403","229042493","235498668","242018410","248586687","255211837","261910770","268711935","275635159","282681487","289841667","297108880","304472396","311923848","319457184","327069797","334765619","342552013","350430521","358395133","366442099","374541998","382659818","390765564","398848998","406905621","414936302","422967105","430984322","438984479","446960668","454917331","462861799","470796413","478735248","486652062","494519111","502290053","509938616","517452800","524836888","532128984","539376205","546612100","553844614","561061674","568252282","575398084","582484107","589506204","596463472","603347698","610149938","616862604","",
"Middle East & North Africa (IDA & IBRD countries)","TMN","Population, total","SP.POP.TOTL","97914047","100520117","103203361","105967893","108822242","111771141","114822829","117971134","121190432","124446136","127718364","130989602","134301647","137699619","141243084","144978967","148914870","153052528","157418847","162041884","166936522","172106111","177527881","183159784","188904386","194828467","200858385","206917503","212943121","218780126","224522701","230003274","235278780","240311706","245415351","250485558","255549336","260624146","265688046","270716244","275658380","280536572","285379253","290235672","295190587","300301331","305588616","311036772","316632486","322338888","328117662","333981240","339893344","345887214","351968238","358138798","",
"Timor-Leste","TLS","Population, total","SP.POP.TOTL","499525","508311","517446","526936","536798","547035","557252","567330","577824","589519","602737","618508","636100","652017","661528","661634","650490","630151","606295","586886","577580","580556","593937","614379","636670","657018","674128","689170","703696","720198","740231","764884","792846","820471","842752","856439","859496","853867","845106","841063","847185","865848","894837","929431","962634","979201","996052","1013194","1030630","1048367","1066409","1120392","1148958","1180069","1212107","1245015","",
"Tonga","TON","Population, total","SP.POP.TOTL","61600","63740","66255","69000","71757","74363","76787","79048","81096","82879","84370","85520","86349","86985","87609","88347","89258","90296","91360","92299","93007","93452","93683","93775","93838","93953","94147","94399","94680","94943","95152","95304","95421","95532","95678","95889","96174","96526","96937","97398","97898","98434","99005","99606","100226","100858","101507","102169","102816","103416","103947","104392","104769","105139","105586","106170","",
"South Asia (IDA & IBRD)","TSA","Population, total","SP.POP.TOTL","572036107","584143236","596701125","609571502","623073110","636963781","651325994","666134328","681405837","697060567","713115397","729469562","746222138","763491289","781254784","799620311","818590962","838141522","858266916","878939779","900085240","921521635","943562470","966023576","988878603","1012099768","1035659508","1059536231","1083705645","1108148042","1132833314","1157752321","1182862267","1208123497","1233480616","1258903823","1284343918","1309774343","1335193652","1360594891","1385959570","1411288216","1436527869","1461601023","1486402311","1510864613","1534949611","1558685624","1582147481","1605443788","1628688562","1651888921","1675019307","1698093032","1721152580","1744161298","",
"Sub-Saharan Africa (IDA & IBRD countries)","TSS","Population, total","SP.POP.TOTL","228268752","233759990","239403621","245217050","251215851","257414930","263830697","270477558","277365472","284502453","291897883","299578724","307524082","315758889","324316627","333222446","342489556","352109622","362076216","372390972","383043891","394021126","405328909","416982682","429008541","441414277","454197298","467337821","480809661","494580339","508616039","523007873","537759561","552842678","568228356","583892679","599858645","616161312","632857149","650030484","667742098","685795280","704004105","722832202","742309449","762476790","783357641","804950450","827239671","850190286","873780170","897998530","922855109","948322378","974371891","1000980981","",
"Trinidad and Tobago","TTO","Population, total","SP.POP.TOTL","848481","865356","880019","892571","903272","912419","919902","925918","931466","937846","945996","956364","968742","982594","997052","1011487","1025655","1039757","1054109","1069199","1085308","1102562","1120610","1138673","1155701","1170935","1184053","1195243","1204890","1213625","1221904","1229906","1237486","1244410","1250316","1255001","1258365","1260677","1262544","1264781","1267980","1272383","1277840","1284052","1290535","1296933","1303141","1309260","1315372","1321624","1328095","1334790","1341579","1348240","1354483","1360088","",
"Tunisia","TUN","Population, total","SP.POP.TOTL","4220701","4277371","4350811","4436643","4530835","4630000","4731395","4832923","4933131","5031211","5127000","5208154","5294325","5388709","5493722","5611000","5742339","5889693","6049539","6215690","6384000","6555185","6729178","6905136","7042550","7260361","7492633","7684751","7857619","7958694","8154400","8318200","8489900","8572200","8785700","8957500","9089300","9214900","9333300","9455900","9552500","9650600","9748900","9839800","9932400","10029000","10127900","10225100","10328900","10439600","10547100","10673800","10777500","10886500","10996600","11107800","",
"Turkey","TUR","Population, total","SP.POP.TOTL","27553280","28229291","28909985","29597047","30292969","31000167","31718266","32448404","33196289","33969201","34772031","35608079","36475356","37366922","38272701","39185637","40100696","41020211","41953105","42912350","43905790","44936836","45997940","47072603","48138191","49178079","50187091","51168841","52126497","53066569","53994605","54909508","55811134","56707454","57608769","58522320","59451488","60394104","61344874","62295617","63240157","64182694","65125766","66060121","66973561","67860617","68704721","69515492","70344357","71261307","72310416","73517002","74849187","76223639","77523788","78665830","",
"Tuvalu","TUV","Population, total","SP.POP.TOTL","6104","6242","6391","6542","6687","6819","6935","7037","7128","7213","7296","7379","7459","7538","7613","7685","7752","7816","7883","7959","8051","8160","8284","8413","8537","8648","8741","8821","8889","8949","9004","9056","9103","9148","9188","9227","9264","9298","9334","9374","9419","9471","9530","9590","9646","9694","9732","9764","9788","9808","9827","9844","9860","9876","9893","9916","",
"Tanzania","TZA","Population, total","SP.POP.TOTL","10074490","10373380","10683888","11005882","11339076","11683511","12038886","12406040","12787494","13186560","13605504","14045757","14506496","14984973","15477155","15980265","16493435","17018013","17556148","18110990","18684893","19279543","19894677","20528465","21178079","21842087","22516809","23204186","23914852","24663284","25458208","26307482","27203865","28122799","29030288","29903329","30733937","31533781","32323953","33135281","33991590","34899062","35855480","36866228","37935334","39065600","40260847","41522004","42844744","44222113","45648525","47122998","48645709","50213457","51822621","53470420","",
"Uganda","UGA","Population, total","SP.POP.TOTL","6788211","7006629","7240155","7487411","7746181","8014376","8292747","8580632","8872866","9162773","9446024","9720365","9988321","10256342","10533627","10827071","11139772","11470741","11817951","12177677","12547754","12927007","13318149","13727427","14163214","14631089","15133740","15668278","16227778","16802258","17384369","17973428","18571527","19177660","19791266","20412967","21041468","21679497","22336812","23026357","23757636","24534668","25355794","26217760","27114742","28042413","29000925","29991958","31014427","32067125","33149417","34260342","35400620","36573387","37782971","39032383","",
"Ukraine","UKR","Population, total","SP.POP.TOTL","42662150","43203635","43749469","44285897","44794325","45261939","45682314","46060456","46409007","46746668","47086758","47433807","47783013","48127170","48455120","48758986","49036202","49290087","49525597","49750150","49968811","50221000","50384000","50564000","50754000","50917000","51097000","51293000","51521000","51773000","51892000","52000470","52150266","52179210","51921041","51512299","51057189","50594105","50143939","49673350","49175848","48683865","48202500","47812950","47451600","47105150","46787750","46509350","46258200","46053300","45870700","45706100","45593300","45489600","45362900","45198200","",
"Upper middle income","UMC","Population, total","SP.POP.TOTL","1175211032","1180097677","1197380936","1225994313","1254220055","1283352789","1315363682","1346547636","1378642057","1412433412","1447088711","1482643788","1516688677","1549733012","1581448281","1610964600","1638999295","1665580708","1692247717","1719305687","1746186708","1773837830","1803775943","1833824547","1863076552","1893121061","1924689464","1957723114","1990854703","2022994388","2053526331","2082311615","2108986861","2134608342","2159928100","2184974343","2209841275","2234712194","2259065071","2282281226","2304421224","2325081408","2344483227","2363610029","2382469218","2401263262","2419694831","2437537213","2455687412","2474451138","2493277491","2512626574","2532680867","2553111667","2573612474","2593742810","",
"Uruguay","URY","Population, total","SP.POP.TOTL","2538651","2571691","2603887","2635128","2665387","2694535","2722874","2750093","2774771","2795044","2809799","2818269","2821437","2822084","2824069","2830172","2841436","2857107","2875970","2896021","2915775","2935036","2954281","2973461","2992648","3011907","3031032","3049962","3069094","3088985","3109987","3132048","3154853","3178156","3201604","3224807","3248039","3271014","3292134","3309318","3321242","3327105","3327770","3325637","3324096","3325608","3331041","3339750","3350832","3362761","3374414","3385610","3396753","3407969","3419516","3431555","",
"United States","USA","Population, total","SP.POP.TOTL","180671000","183691000","186538000","189242000","191889000","194303000","196560000","198712000","200706000","202677000","205052000","207661000","209896000","211909000","213854000","215973000","218035000","220239000","222585000","225055000","227225000","229466000","231664000","233792000","235825000","237924000","240133000","242289000","244499000","246819000","249623000","252981000","256514000","259919000","263126000","266278000","269394000","272657000","275854000","279040000","282162411","284968955","287625193","290107933","292805298","295516599","298379912","301231207","304093966","306771529","309346863","311718857","314102623","316427395","318907401","321418820","",
"Uzbekistan","UZB","Population, total","SP.POP.TOTL","8789492","9044671","9319510","9611601","9917202","10233502","10559050","10894306","11240523","11599763","11972994","12361237","12762439","13170848","13578783","13980997","14374729","14762133","15148932","15543520","15951899","16375135","16810937","17257774","17712992","18174143","18640558","19111312","19583186","20052259","20510000","20952000","21449000","21942000","22377000","22785000","23225000","23667000","24051000","24311650","24650400","24964450","25271850","25567650","25864350","26167000","26488250","26868000","27302800","27767400","28562400","29339400","29774500","30243200","30757700","31299500","",
"St. Vincent and the Grenadines","VCT","Population, total","SP.POP.TOTL","80948","82144","83206","84167","85076","85972","86860","87736","88615","89518","90457","91440","92465","93516","94572","95614","96639","97649","98634","99589","100506","101378","102202","102985","103742","104477","105197","105892","106533","107081","107509","107811","108001","108097","108129","108122","108078","108001","107923","107879","107897","107989","108150","108354","108563","108749","108908","109049","109165","109255","109316","109341","109334","109327","109360","109462","",
"Venezuela, RB","VEN","Population, total","SP.POP.TOTL","8146845","8461684","8790590","9130346","9476255","9824694","10175143","10528054","10881995","11235492","11587758","11937803","12286434","12636971","12994025","13360988","13739142","14127790","14525929","14931741","15343917","15761800","16185895","16617343","17057786","17508059","17968530","18437737","18912431","19388262","19861959","20332247","20799471","21263994","21726808","22188671","22649212","23108003","23565734","24023355","24481477","24940223","25399143","25857553","26314483","26769115","27221228","27670659","28116716","28558607","28995745","29427631","29854238","30276045","30693827","31108083","",
"British Virgin Islands","VGB","Population, total","SP.POP.TOTL","8036","8157","8298","8455","8628","8813","9009","9214","9422","9620","9802","9969","10125","10263","10380","10476","10544","10596","10663","10788","11003","11316","11715","12192","12729","13308","13932","14595","15265","15896","16459","16937","17343","17700","18051","18425","18834","19270","19726","20186","20643","21087","21530","22000","22538","23169","23908","24735","25604","26450","27223","27906","28511","29058","29585","30117","",
"Virgin Islands (U.S.)","VIR","Population, total","SP.POP.TOTL","32000","34100","36300","38700","41300","44000","47300","50800","54600","58600","63000","71000","76000","84000","90000","94000","96000","93000","96000","96000","97000","98000","102000","104000","108000","107000","106500","106000","104500","103000","103963","104807","105711","106577","107317","107817","108093","108355","108535","108596","108639","108386","108208","108085","107950","107863","107700","107423","107091","106707","106267","105784","105275","104737","104170","103574","",
"Vietnam","VNM","Population, total","SP.POP.TOTL","34743000","35428000","36123000","36836000","37574000","38341000","39142000","39980000","40856000","41773000","42729000","43725000","44758000","45825000","46918000","48030000","49158000","50295000","51436000","52574000","53700000","54722000","55687000","56655000","57692000","58868000","60249000","61750000","63263000","64774000","66016700","67242400","68450100","69644500","70824500","71995500","73156700","74306900","75456300","76596700","77630900","78620500","79537700","80467400","81436400","82392100","83311200","84218500","85118700","86025000","86932500","87860300","88809200","89759500","90728900","91703800","",
"Vanuatu","VUT","Population, total","SP.POP.TOTL","63701","65708","67806","69962","72131","74287","76410","78518","80669","82941","85388","88023","90824","93761","96793","99879","103024","106223","109429","112579","115634","118578","121433","124248","127094","130028","133040","136129","139369","142852","146633","150779","155242","159814","164209","168236","171802","175004","178074","181346","185058","189288","193957","198963","204144","209375","214635","219956","225335","230782","236299","241876","247498","253165","258883","264652","",
"West Bank and Gaza","PSE","Population, total","SP.POP.TOTL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1978248","2068845","2163591","2262676","2366298","2474666","2587997","2706518","2776568","2848431","2922153","2997784","3075373","3154969","3236626","3320396","3406334","3494496","3596688","3702218","3811102","3927051","4046901","4169506","4294682","4422143","",
"World","WLD","Population, total","SP.POP.TOTL","3035055570","3076120548","3129063789","3193947306","3259354557","3326054230","3395866317","3465297420","3535511844","3609910116","3684996710","3762289912","3839015704","3914800478","3991194334","4065954672","4138731185","4211259460","4285061775","4360572310","4436734568","4514655817","4595487517","4677020244","4758310418","4841376791","4927207009","5015267869","5104205218","5193123373","5283057867","5369889993","5453473436","5537776461","5621146521","5705843054","5788596142","5871549366","5953672500","6034911639","6115444311","6195589560","6274734084","6353976427","6433748714","6513959904","6594722462","6675832678","6758302523","6840955706","6923684085","7006907989","7089451551","7176092192","7260780278","7346633037","",
"Samoa","WSM","Population, total","SP.POP.TOTL","108645","112121","115786","119564","123354","127068","130687","134194","137503","140520","143175","145437","147323","148889","150219","151383","152390","153244","154010","154763","155554","156435","157401","158383","159281","160030","160591","161014","161424","162001","162865","164073","165568","167206","168786","170158","171276","172191","172979","173758","174614","175567","176592","177677","178794","179928","181072","182238","183440","184700","186029","187434","188901","190390","191845","193228","",
"Yemen, Rep.","YEM","Population, total","SP.POP.TOTL","5166311","5251663","5339285","5429501","5522690","5619170","5720538","5827223","5937125","6047230","6156234","6262934","6370599","6487853","6626208","6793979","6994840","7226885","7485921","7765087","8059381","8369708","8698304","9043210","9402070","9774242","10153613","10542601","10958983","11426912","11961099","12571240","13245003","13948118","14633091","15266147","15834747","16349809","16829935","17304422","17795219","18306287","18832097","19374012","19931617","20504385","21093973","21701105","22322699","22954226","23591972","24234940","24882792","25533217","26183676","26832215","",
"South Africa","ZAF","Population, total","SP.POP.TOTL","17396000","17949962","18459442","18936138","19390554","19832000","20268594","20707258","21153722","21612522","22087000","22602373","23126276","23655908","24189837","24728000","25268094","25805575","26355319","26940793","27576000","28254655","28971839","29724004","30505361","31307880","32121290","32933081","33728498","34490549","35200000","35933108","36690739","37473796","38283223","39120000","40000247","40926063","41899683","42923485","44000000","44909738","45448096","46034026","46641103","47270063","47921682","48596781","49296223","50020918","50771826","51549958","52356381","53192216","54058647","54956920","",
"Congo, Dem. Rep.","COD","Population, total","SP.POP.TOTL","15248246","15637715","16041247","16461914","16903899","17369859","17861860","18378189","18913177","19458874","20009902","20563111","21120996","21690604","22282079","22902275","23556784","24242643","24948113","25656486","26357407","27049145","27741104","28448122","29190679","29985665","30829103","31721541","32688708","33763056","34962676","36309209","37783835","39314955","40804011","42183620","43424997","44558347","45647949","46788238","48048664","49449015","50971407","52602208","54314855","56089536","57926840","59834875","61809278","63845097","65938712","68087376","70291160","72552861","74877030","77266814","",
"Zambia","ZMB","Population, total","SP.POP.TOTL","3049586","3142848","3240664","3342894","3449266","3559687","3674088","3792864","3916928","4047479","4185378","4331002","4484141","4644329","4810810","4983017","5160570","5343550","5532350","5727577","5929497","6138069","6352561","6571673","6793708","7017292","7242496","7469270","7696070","7921028","8143142","8361381","8576987","8794061","9018229","9253527","9502346","9763742","10034412","10309310","10585220","10861238","11139978","11426006","11725635","12043591","12381509","12738676","13114579","13507849","13917439","14343526","14786581","15246086","15721343","16211767","",
"Zimbabwe","ZWE","Population, total","SP.POP.TOTL","3752390","3876638","4006262","4140804","4279561","4422132","4568320","4718612","4874113","5036321","5206311","5385342","5573312","5768382","5967861","6170284","6373956","6580739","6796946","7031159","7289083","7571965","7876414","8197564","8528328","8862601","9198874","9535657","9866776","10184966","10484771","10763036","11019717","11256512","11476807","11683136","11877664","12059858","12226742","12374019","12499981","12603988","12691431","12774162","12867828","12984418","13127942","13297798","13495462","13720997","13973897","14255592","14565482","14898092","15245855","15602751","",
PNG 0
SSD 0.156996080376676
SOM 0.279764142330904
BGD 0.310587983119303
ETH 0.318629092753162
MOZ 0.366219675414485
LSO 0.39619108197259
IND 0.418201392102899
MMR 0.44930542803891
GIN 0.452413476575055
SDN 0.467624870835116
YEM 0.478938341033779
BFA 0.513248075813815
TCD 0.529912798240539
TKM 0.541373676540882
ERI 0.60145683812157
SLE 0.609819378550149
NGA 0.624480468707401
IRQ 0.630295082894615
AFG 0.635007754227086
OMN 0.645599951098468
MLI 0.67245689785558
KEN 0.690282771823994
LBR 0.726424397848468
UGA 0.73702863933462
ZMB 0.740297028506412
LKA 0.76248543990363
EGY 0.800026810012898
LAO 0.801687043196131
MWI 0.818626712744543
UZB 0.82644454277895
AGO 0.83257886123795
TZA 0.837990685083206
LBY 0.882583073481842
CMR 0.887414193565722
NER 0.898038034445105
SAU 0.914836398329905
IDN 0.916568264023526
ZWE 0.923251027370345
KHM 0.956271807302103
CIV 0.98859031001843
BWA 0.991678755714199
SYR 1.00236990450592
GMB 1.00453621681647
RWA 1.01124666223395
HTI 1.01721127784713
MRT 1.03564870502443
GUY 1.07915573850515
GNQ 1.08274734931774
CHN 1.09482826781546
THA 1.10581055329297
GNB 1.13056822086189
SLB 1.16328472518512
GHA 1.19108381876897
JOR 1.22184060607875
PHL 1.25122908095275
COG 1.28228671617208
CAF 1.37636557535017
NAM 1.47225032810839
KWT 1.49145535331155
PAK 1.49747481080955
JAM 1.50617615197995
DJI 1.55046188241554
FJI 1.56617891600466
COD 1.58360016986207
DZA 1.58718673405016
GAB 1.59632245336458
KGZ 1.61319986113748
MDG 1.62974166134306
BTN 1.64451317042844
ZAF 1.66496943884156
AZE 1.66718500377522
MYS 1.71331579781671
TJK 1.78424950920277
LBN 1.79850095184181
MLD 1.83532026957931
TUR 1.85051395401222
SUR 1.88253808153034
PRY 1.8901048437875
QAT 1.89818779213202
TUN 1.94362749146792
MAR 1.95177328681827
MAU 2.0660632006887
VNM 2.08434761586511
VUT 2.09458733005692
TTO 2.1226673176855
SWZ 2.13145067917519
ARE 2.16489273109838
BOL 2.24255446658511
HND 2.24400939105653
NPL 2.25667073375643
GTM 2.27526356268026
KAZ 2.31122444357814
SEN 2.55889158384399
ECU 2.58094790658536
MNE 2.58673490578112
DOM 2.73757733519446
MDA 2.81418108296367
BRN 2.82228955094406
PAN 2.84088753104358
GEO 2.86119045557919
SLV 2.86293602995078
PER 2.90505104256677
MEX 2.95647996852718
GRC 3.07569471258985
BDI 3.0980763253212
VEN 3.10742885629852
TLS 3.23181156247147
CPV 3.23271947747427
TWN 3.2453642450329
JPN 3.36317759937842
KOR 3.41592439099394
ROU 3.44571079535349
BLZ 3.49839299243125
IRN 3.53550605390565
BEN 3.53572431799934
COL 3.61768963552339
CHL 3.80160096847996
PRI 3.94047513397719
BLR 3.96377003224088
RUS 3.99490538339652
ARM 4.0077811844165
UKR 4.02408605854428
BHS 4.16998227067444
ARG 4.19289409357896
HKG 4.21968227776571
USA 4.28196457639212
MKD 4.30626168935585
NIC 4.37738199289637
PRT 4.54348038570412
CUB 4.69892835029335
ALB 4.92567988888008
GBR 4.95024454154918
CYP 5.05738658747357
TGO 5.08926545822767
ITA 5.1116346542389
IRL 5.37404157651097
URY 5.37617339622151
CRI 5.38436751449842
CAN 5.41826174270719
SRB 5.45020760450795
BIH 5.54077635216268
AUS 5.6501383816843
MNG 5.8349200075538
GRL 5.85124646508278
MTA 5.93703486947906
BRA 6.0412621190106
AUT 6.22662808808793
BGR 6.79092668828999
NZL 6.81299533034853
ESP 6.88334768212611
DEU 6.8925550526355
LVA 7.00087169937411
ISR 7.11020890810242
HRV 7.42252219376279
POL 7.58648957884684
SVK 7.70715610114697
LIE 7.72434683467419
SVN 7.79701885420229
NOR 8.30574596397631
EST 8.60349672794324
CZE 8.73089219672104
NLD 9.21243792689693
CHE 9.4571369314349
SWE 9.59119759568543
DNK 9.86596605316783
FRA 10.1987415076539
FIN 10.290417407646
BEL 10.4632539981915
NCL 11.0838297142229
LUX 14.0294157353785
HUN 14.2766299912634
ISL 14.4939600048587
LTU 15.7900238291213
AND 24.9004515021923
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 3 columns, instead of 62. in line 2.
"Data Source","World Development Indicators",
"Last Updated Date","2017-02-01",
"Country Name","Country Code","Indicator Name","Indicator Code","1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016",
"Aruba","ABW","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","2.76838266270266","","","4.50617909808825","15.4428229480349","17.1","18.8","20.8","23","25.4","28","30.9","52","58","62","69","74","78.9","83.78","88.661226932496","",
"Andorra","AND","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","1.52660102282269","3.05017538508464","6.88620921833874","7.63568614275679","10.53883560922","","11.2604687170103","13.546412876439","26.8379543894637","37.6057662174867","48.9368469989479","70.87","70.04","78.53","81","81","86.4344246167258","94","95.9","96.91","",
"Afghanistan","AFG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","0.00472256824217368","0.00456139517022146","0.0878912528559713","0.105809030021958","1.22414808372471","2.10712364546412","1.9","1.84","3.55","4","5","5.45454545454545","5.9","7","8.26","",
"Angola","AGO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.000775928524568031","0.00567374598866159","0.0184537240759316","0.0719640870420026","0.105045562462262","0.136013867429868","0.270376745595134","0.370682065225727","0.464814617985909","1.1433668265595","1.5","1.7","1.9","2.3","2.8","3.1","6.5","8.9","10.2","12.4","",
"Albania","ALB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.011168695486794","0.0321968282260578","0.0485939187626304","0.0650273700200414","0.0814370446040466","0.114097346552109","0.325798377067964","0.39008127343332","0.971900415195857","2.42038779776014","6.04389086404814","9.60999131577118","15.0361154084109","23.86","41.2","45","49","54.6559590399494","57.2","60.1","63.252932696931","",
"Arab World","ARB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0170250493795539","0.037760688425898","0.131045576745723","0.261615115137055","0.598582149624221","1.13954112251628","1.5612881698882","2.69306101334257","3.64588078277356","7.00681246096063","8.39314172532196","11.6546479149058","14.2059022369738","18.5935311754275","21.5453538966849","24.5357799041128","26.5499874960793","29.954302058642","32.3498958909775","36.007129851435","39.5261540659397","",
"United Arab Emirates","ARE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.102939174586567","0.375393534255","3.29559269403717","6.90830298573401","14.9426989907479","23.6253008751553","26.2717542010006","28.3164853110439","29.4779534120864","30.1312961695367","40","52","61","63","64","68","78","84.9999915049492","88","90.4","91.2434057753709","",
"Argentina","ARG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.00299287414623027","0.0295270652905125","0.0437059511392524","0.0862770809737151","0.14195470435477","0.280339881830012","0.830766679676473","3.28448195590463","7.0386830862178","9.78080728532407","10.8821243775325","11.9136965509954","16.0366841054923","17.7205833696065","20.9272021035896","25.9466329403819","28.1126234799907","34","45","51","55.8","59.9","64.7","69.40092102179","",
"Armenia","ARM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00911701414140063","0.0527431233050454","0.0945729024675962","0.111650934518322","0.128659477603923","0.970737757459877","1.30047002237784","1.63109466677715","1.9604050458212","4.57521722477781","4.8990085713054","5.25298335195804","5.63178777731609","6.02125339712607","6.21","15.3","25","32","37.5","41.9","54.6228058583362","58.2493322231746","",
"American Samoa","ASM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Antigua and Barbuda","ATG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","2.20076880190146","2.85844957694946","3.48053683800189","4.0717164999525","5.30068113752617","6.48222573702907","8.89928551450583","12.5","17.2286487816884","24.2665437161785","27","30","34","38","42","47","52","58","63.4","64","65.2","",
"Australia","AUS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.585094712206538","1.09720389137797","1.76876491254256","1.97461101573426","2.23210125436278","2.75965451333217","3.27524987017728","16.3693583751403","30.8132394396276","40.7837839021856","46.7561156116738","52.6892664310395","","","","63","66","69.45","71.67","74.25","76","79.4876977139029","79","83.453497167","84","84.560519347399","",
"Austria","AUT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.130369376859149","0.259081553302726","0.642817618756698","0.765342730041297","1.3934229675881","1.89021052408733","6.90916235325567","9.53397431748034","15.4212193219603","23.0443171023274","33.7301329516915","39.1854501811114","36.56","42.7","54.28","58","63.6","69.37","72.87","73.45","75.17","78.7399930986888","80.0299939169903","80.6188","81","83.9263","",
"Azerbaijan","AZE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00143141529756131","0.0020555557625386","0.00635458454679421","0.0251879334685925","0.0374851090404337","0.0992289415099966","0.147757575623251","0.305564637615618","4.99971367812957","","","8.03037535616454","11.9921773343674","14.54","17.08","27.4","46","50","54.2","73.000001372","75.0000156363396","77","",
"Burundi","BDI","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.000803592121068546","0.0079794385826602","0.0158427762881167","0.0392044691840327","0.077248447383456","0.106001245363203","0.118228412267794","0.201273196735924","0.349060461879596","0.542142865759056","0.657592590351907","0.7","0.81","0.9","1","1.11","1.21999994477793","1.2642181112","1.38","4.86622446359511","",
"Belgium","BEL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.00100673961837521","0.0200726449091909","0.100041026825101","0.199446058517075","0.695994689759373","0.991662990076131","2.96841164745362","4.93808090966561","7.88662270071677","13.7722144589561","29.4316916924341","31.2883955056566","46.33","49.97","53.86","55.82","59.72","64.44","66","70","75","81.6099959955952","80.7199905482042","82.1702","85","85.0529","",
"Benin","BEN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0016931001934367","0.0246487957420027","0.0478773038758114","0.15490674072035","0.225247851473369","0.363417890016082","0.7029455951039","0.951327114915695","1.18254096518994","1.27103143947107","1.53785434624704","1.79","1.85","2.24","3.13","4.14832306562512","4.5","4.9","6","6.787702956098","",
"Burkina Faso","BFA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.000960518557074445","0.0186863531133987","0.0454234840502704","0.0617802926867843","0.0770801689426014","0.157732464653607","0.200992597925001","0.373440303233526","0.400295285492178","0.469914488656657","0.632707564461829","0.75","0.92","1.13","2.4","3","3.72503491597675","9.1","9.4","11.387646166247","",
"Bangladesh","BGD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00075104582943988","0.00368481262469867","0.0361704074704913","0.0710394230507683","0.129807973947512","0.13992028850905","0.163877665498048","0.199036333744363","0.24163732563671","1","1.8","2.5","3.1","3.7","4.5","5","6.63","13.9","14.4","",
"Bulgaria","BGR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.002339042311872","0.0195266688142058","0.119665549149992","0.725251166566501","1.21981313194706","1.84496512093439","2.90815402505996","5.37092346908696","7.6122977487982","9.08","12.04","18.13","19.97","27.09","33.64","39.67","45","46.23","47.9799930506026","51.8999876658503","53.0615","55.49","56.6563","",
"Bahrain","BHR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.346205843608434","0.843254219222486","1.64629920170952","3.21820215136814","4.72035811783587","6.15373254647607","15.0386342513918","18.0507208881153","21.5549449917804","21.4586805077435","21.3037335136591","28.2439524318043","32.91","51.95","53","55","76.9999665032303","88","90.0000397","90.5031334814656","93.4783011354165","",
"Bahamas, The","BHS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.960030720983071","1.74695069755741","1.36295390281695","2.33559071038067","3.76455782177031","8","11.8","18","20","22","25","26","27","31.54","33.88","43","65","71.7482028146963","72","76.92","78","",
"Bosnia and Herzegovina","BIH","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.015125563351607","0.0594255627972207","0.143671059936118","0.194374199768361","1.08296074971207","1.20052695129649","2.64826791361244","3.96503683387051","15.4689716227665","21.3267010007738","25.1223856852117","27.92","34.66","37.74","42.75","47.77","52.78","57.79","60.8","65.065502803344","",
"Belarus","BLR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00048595086881212","0.00292125437494358","0.0292982941361222","0.0490208910370497","0.0738688972841164","0.494881245327084","1.86039812615388","4.30061602151712","8.95097131467325","","","","16.2","19.7","23","27.43","31.8","39.6488956598961","46.91","54.17","59.02","62.230360906803","",
"Belize","BLZ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0453971799271829","0.882807327300817","1.28858230175161","2.09151639121396","4.07674056438396","5.96383530272428","","5.68425121358763","","9.8","17","24","24.6","26.3","27.2","28.2","30.7","31","33.6","38.7","41.589999999835","",
"Bermuda","BMU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","6.83816346466949","16.2024660153275","24.1892567447711","32.1037593502199","39.9475887635422","42.9498600152711","47.5096998970623","52.0315973700393","56.5220121836337","60.9908670086326","65.4470657898838","69.8996551617012","74.3505940302669","82.3","83.25","84.21","88.336","91.2993045243401","95.3","96.8","98.3236096537251","",
"Bolivia","BOL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0668075682820113","0.196081173945832","0.44783903590236","0.626484062433397","0.981815187281861","1.4427635847914","2.1204625341365","3.11719294696997","3.50859640072336","4.43992460120042","5.22758395663196","6.20067125473576","10.4992443168903","12.5","16.8","22.4","30","35.34","36.99","34.6","45.1","",
"Brazil","BRA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.00328817070330394","0.0129462623564468","0.0254982532389746","0.0376727093587832","0.105138167818006","0.450789178949525","0.786079155026595","1.47787495863132","2.03873218351945","2.87068515854108","4.52849486902851","9.14942508560748","13.2075861035303","19.073672274442","21.022747248827","28.1783801797929","30.88","33.83","39.22","40.65","45.69","48.56","51.04","54.5510018796392","59.079477910505","",
"Barbados","BRB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00775223845885499","0.389464214080689","0.783428911660556","1.97024923652842","2.37624703464172","3.97367835457927","11.9364503383984","27.836322424146","39.6896271159532","49.8","52.5","55.3","58.2","61.4","64.7","65.1","66.5","71.2","71.8","75.16","76.11","",
"Brunei Darussalam","BRN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","1.0170801662587","3.30334992716113","4.83105790506005","6.28474284403468","7.67104120576494","8.99628453448726","12.9177690823013","15.329879855735","19.5950032207342","29.7156041447864","36.4663919475782","42.1863491609307","44.68","46","49","53","56","60.2730650423193","64.5","68.77","71.2","",
"Bhutan","BTN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","0.137571514258829","0.40094444691941","0.864628564215099","1.67580258375242","2.43691239949767","3.15698419613711","3.84710674490143","4.5183172581646","5.92","6.55","7.17","13.6","14.4","15.6","22.4","30.3","39.8","",
"Botswana","BWA","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","","","","0.0645210409566664","0.157454229629989","0.307746849903244","0.602400929143193","1.12239147360549","2.90266662177209","3.43088678702599","3.38592235064273","3.3451901740614","3.30488925316113","3.26255403605122","4.28993297515968","5.28","6.25","6.15","6","8","11.5","15","18.5","27.5","",
"Central African Republic","CAF","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00584950282150769","0.0142708807245497","0.02787820125385","0.0408942871771328","0.0533941742150456","0.0785434278394038","0.128537116506299","0.151563337940017","0.223401395464406","0.268195609199012","0.311159173235716","0.375815961044797","1","1.8","2","2.2","3","3.5","4.03","4.563264351542","",
"Canada","CAN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.360999700586848","0.570385926326173","0.915981040178909","1.18455750906509","2.37869385300003","4.16352525273622","6.76023965049561","15.0723573635834","24.897400303091","36.1864400395459","51.3","60.2","61.5932992681952","64.2","65.9559634648989","71.66","72.4","73.2","76.7","80.3","80.3","83","83","85.8","87.12","88.47","",
"Central Europe and the Baltics","CEB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.148650057920176","0.38928487031754","0.62193063788775","1.06819515310136","1.79009341512943","3.51156390206774","4.95935701730865","7.0376502070765","10.2153651273506","18.1941719150839","22.5126441012817","29.1504442319344","34.6472932177625","40.6587637475186","45.1142814939245","50.48331469867","54.8702244711506","58.3501669587243","58.8573921348573","61.509548772537","63.28363087188","66.9285233413295","68.1565862177866","",
"Switzerland","CHE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.595714223377047","1.17995596994298","1.75171332160464","2.16727020325671","2.72000432910163","3.5520072108588","4.54965674817947","15.1","24.8","34","47.1","55.1","61.4","65.1","67.8","70.1","75.7","77.2","79.2","81.3","83.9","85.1930281804854","85.2","86.34","87.4","87.97","",
"Channel Islands","CHI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Chile","CHL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.0365489381510097","0.0717831442696916","0.141084506727297","0.346980781428478","0.683475610172851","1.05709249598086","1.66232202183041","4.103419297232","16.6","19.1","22.1","25.4737788864723","28.1779101232438","31.1753470303684","34.4977511736017","35.9","37.3","41.56","45","52.2496072877744","55.05","58","61.11","64.289","",
"China","CHN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.000168680270954864","0.0011681145300252","0.00495470950415135","0.0130816917950895","0.0323948609340087","0.168540297316545","0.708187956801324","1.77591320677415","2.63965021485872","4.59570433077551","6.2","7.3","8.52325700269541","10.5231526193851","16","22.6","28.9","34.3","38.3","42.3001174855995","45.8","47.9","50.3","",
"Cote d'Ivoire","CIV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.000200255606255825","0.00840977984943001","0.0188283612861277","0.060974438600722","0.118685916651984","0.231461670612799","0.395747702246439","0.497929360753307","0.758669629452205","0.849282414747704","1.03923820514001","1.52490079122527","1.8","1.9","2","2.7","2.9","5","8.4","14.6","21","",
"Cameroon","CMR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00676874429437161","0.0132163405248288","0.129067580946992","0.252120077733662","0.277051321848797","0.360871584267755","0.587622611130454","0.976075415490902","1.40265422575955","2.0287447914719","2.93","3.4","3.84","4.3","5","","","16.2148722257524","20.6801476606263","",
"Congo, Rep.","COG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00352686039240554","0.00346910364259352","0.00341514308595744","0.0167910491618412","0.0263547320580279","0.0322236164306931","0.157249517243982","0.460014186837522","1.07750492958505","1.46342005950851","2.00799007938159","2.75970437370903","4.28750990276481","4.5","5","5.6","6.10669502435836","6.6","7.11","7.61597466209","",
"Colombia","COL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.107173945315899","0.188046790408001","0.330017772736723","0.550521023153909","1.12622524463277","1.69773079358943","2.207532992624","2.85419997133433","4.6","7.38892371052557","9.1186903029666","11.0072638904585","15.3416745365682","21.8","25.6","30","36.5","40.3509157546318","48.98","51.7","52.57","55.9049725142924","",
"Comoros","COM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0","0.0378709698187306","0.148162964444593","0.271740607285909","0.443068372538977","0.554869674985088","0.848189370151537","1.32732717785355","2","2.2","2.5","3","3.5","5.1","5.5","5.97529630842855","6.5","6.98","7.459161385649","",
"Cabo Verde","CPV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.240967919940818","0.472735008391046","1.15998246106519","1.82244385164396","2.68533271272311","3.5187571749658","4.32488539053715","5.31883206957883","6.07408710659813","6.80891100753313","8.28321981953034","14","21","30","32","34.74","37.5","40.26","43.019626357101","",
"Costa Rica","CRI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.00111332539161221","0.0815097538496","0.279912478734018","0.416829206101345","0.841057040488486","1.64022128772133","2.66637869776731","3.90432325714263","5.80025302331829","9.55948213497093","19.8948511346293","20.3336148143541","20.7923067055542","22.07","25.1","28.4","32.29","34.33","36.5","39.2121959961842","47.5","45.96","53","59.7629501371681","",
"Caribbean small states","CSS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.193912107864252","0.554448785451445","0.90468090311253","1.94387638763563","3.37912319531947","4.94087778359673","8.35771142994932","11.8222968147059","14.9761847217129","16.8911922857347","19.4889586938388","22.344852565203","24.4938786959772","27.7240474061961","31.9269499652323","35.7431661251675","42.5421839662455","43.1370942656172","46.0331197974763","49.187592802478","51.9169995201878","",
"Cuba","CUB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","9.16580118588969E-05","0.0319490013609362","0.068220213758489","0.226699198908507","0.314690541189058","0.541182548811058","1.07975172188907","3.77058503769014","5.2412690536929","8.40798475900703","9.73806220781346","11.1596013147617","11.69","12.94","14.33","15.9","16.0172907996413","21.2","27.93","29.0701843656523","31.107970210145","",
"Curacao","CUW","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Cayman Islands","CYM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0","0","3.94896719319563","","","","","","","","","","38.0343830823064","44.5","52","61","64.5","66","69.46594499","69.7","71.4","74.1","77","",
"Cyprus","CYP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.0500604300906094","0.0563674821632149","0.111034620594701","0.410120684846861","0.673343541221418","4.37827209501646","8.8905391589027","11.3423986595347","15.2553943710137","18.8187590408455","28.32","30.09","33.83","32.81","35.83","40.77","42.31","49.81","52.99","56.8598923503507","60.6898684001903","65.4548","69.33","71.7159","",
"Czech Republic","CZE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.581319529448969","1.25921783780867","1.4535758401741","1.94037819329252","2.91569869519568","3.89590606502968","6.83280201790214","9.78052788834393","14.6971721171129","23.93","34.3","35.5","35.27","47.93","51.93","62.97","64.43","68.82","70.49","73.4300078241036","74.1104","79.71","81.2986","",
"Germany","DEU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.125892223365436","0.250274153436101","0.435285290207688","0.463635096479496","0.922541043112975","1.8377377536464","3.05480523429391","6.71108747669468","9.87785242805539","20.8459826390268","30.2163466048889","31.650939416316","48.82","55.9","64.73","68.71","72.16","75.16","78","79","82","81.26999953602","82.3499984738392","84.17","86.19","87.5898","",
"Djibouti","DJI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0160308304932045","0.0311662407280434","0.0829414975916805","0.0946960039743184","0.10576190879093","0.194500528399956","0.343526262964202","0.48697170451894","0.625940229399888","0.781317175068661","0.953611449300569","1.27004115919322","1.62","2.26","4","6.5","7","8.26723289204519","9.5","10.71","11.9224314345","",
"Dominica","DMA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.548762736535662","1.16551814566063","","2.92534519073251","2.93216437713498","8.81484419762881","13.2452280386761","18.4248927671241","23.6204198529629","30.3196130921568","38.5436432637571","39.39817430347","40.2744630071599","41.16","42.02","47.45","48.6","49.8","51","57.5","67.6","",
"Denmark","DNK","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0972772676449777","0.19405651469066","0.386913951111101","0.578329975806529","1.34430774968452","3.82565642047484","5.71498784136337","11.3820049363755","22.6687461463132","30.5920406509143","39.1724308555053","42.9575247201878","64.25","76.26","80.93","82.74","86.65","85.03","85.02","86.84","88.72","89.8100133895232","92.2600117153012","94.6297","95.99","96.3305","",
"Dominican Republic","DOM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0172336008439541","0.0749870526387339","0.142687565480216","0.233914189047576","1.10474387376368","3.70469235587688","4.42939069666645","6.8237257325842","7.89839293716387","8.8655534607044","11.4831977789344","14.8449283654589","17.66","20.82","27.72","31.4","38","42.32","45.9","49.58","51.9302327383135","",
"Algeria","DZA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.000360673567987076","0.00176895401501439","0.00173853322594298","0.010268463150268","0.0202385545408469","0.199523842999477","0.491705679141589","0.646114016703792","1.59164126035832","2.19535973086144","4.63447508776537","5.84394209201256","7.37598495634886","9.45119062555304","10.18","11.23","12.5","14","15.2280267564417","16.5","25","38.2","",
"East Asia & Pacific (excluding high income)","EAP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00116240413941478","0.00403279431414233","0.013044956686186","0.0337092234156455","0.0942622162702138","0.324176751482872","0.8533515966452","1.89711573710638","2.77908918864514","4.40515664942836","5.76226799746331","6.8854757630553","8.31914345082198","10.1737693906643","14.382235676457","19.2594204939169","23.7682630516695","28.9560564628934","32.3839569651021","36.1199169718467","39.2471135899819","41.9051895989675","44.9820489707828","",
"Early-demographic dividend","EAR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.000245348288819255","","","","0.0150194648428458","0.0454400087592149","0.0806408420782298","0.163499286462639","0.344094256956675","0.61310998549065","1.23885886442579","1.69467387141082","2.84786780365915","3.41689711522778","4.21715139548127","4.89542836726794","5.78349805911763","7.34926115345954","8.51512560992411","9.71275189885458","12.8465892474063","15.4577805224902","18.0242606262037","20.3490302123237","25.114540010684","29.7923425468531","",
"East Asia & Pacific","EAS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.00728827636885696","","","0.0792779218576253","0.117382100111221","0.20957789725465","0.464733740385379","1.07985035626731","1.8827873530294","3.406408274225","5.59267987611713","7.25216610888433","8.99358781790027","10.5472436456294","12.5969642091658","14.6663590410613","16.6176466969737","20.7661147435158","25.2529265118703","29.512323897857","34.2294861026892","37.3636415645189","40.7561139681857","44.2035007394462","46.7398364541106","49.8247157803774","",
"Europe & Central Asia (excluding high income)","ECA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.0090948716174529","0.0375382919031989","0.0888455142322388","0.188500291717185","0.36110065242797","0.676230805192973","1.10362920822815","1.96960733832816","2.87781675097124","5.01002574056404","7.29976116120474","10.7434153136179","12.4781579941535","15.0185570751474","20.3921026259555","23.9084756481622","27.4902734680009","35.6603017016638","40.6039077409314","48.5622008638997","52.7227054295475","56.7773636211574","59.9320644594073","",
"Europe & Central Asia","ECS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0481055787774891","","0.262520713735854","0.317705349405869","0.564752745388684","1.02385973869577","1.84261439960838","3.36061721161515","5.43686450630287","9.24460929248396","13.184753143454","16.4063041878225","23.0591830178066","28.36394999343","32.3595825034932","35.2261079736023","38.0827202636601","43.6734017342166","47.3573783576282","50.5657966000656","56.1181462537624","58.8606276185809","63.4854249475948","66.3055363678537","69.5094962392922","71.7441292126694","",
"Ecuador","ECU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.00511803538907445","0.0164007512637462","0.034833586115011","0.043833641162384","0.086161275641811","0.110217959406047","0.125272771019497","0.823371634386107","1.46218853556457","2.67044367376705","4.26079691519764","4.46022834472698","4.83444263759525","5.99425516097331","7.2","10.8","18.8","24.6","29.03","31.3668083587433","35.1351464545516","40.279121941","45.5903906666095","48.9404337892669","",
"Egypt, Arab Rep.","EGY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.000975791364357015","0.00638326960356752","0.031319638236881","0.0614668989377844","0.0904802447092506","0.147987376854339","0.290445278316066","0.641265037504813","0.838945611477604","2.71999971465421","4.03788510706701","11.92","12.75","13.66","16.03","18.01","20","21.6","25.6","26.4","29.4","33.8946039115275","35.9","",
"Euro area","EMU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0727567138414924","0.1697397038123","0.326439044573448","0.469382512937457","0.847604835286986","1.70212394177128","2.88147176921312","5.10937201789155","8.01779840643506","15.2375368644298","22.5186820397088","27.3445130729229","35.1857212353659","42.0860919058716","47.4725721801735","51.2440183863941","54.919304542856","61.364663589131","64.8239515016331","67.1151870547143","71.0219173579532","72.0594630051325","74.0816340782634","75.8107273235715","78.3000360115901","80.280283969454","",
"Eritrea","ERI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0","0","0","0","0.00901771801235067","0.0087742362685396","0.0254950284694485","0.136711941104496","0.157815289303043","0.227090137626716","","","","","0.41","0.47","0.54","0.61","0.7","0.8","0.9","0.99","1.083733115675","",
"Spain","ESP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0128735644495179","0.0256861938249363","0.0768454531634007","0.127689667934336","0.280069738383293","0.380800727969136","1.33184740350778","2.8033196254371","4.36189239380101","7.08503967835022","13.6249608089899","18.1487226902932","20.39","39.93","44.01","47.88","50.37","55.11","59.6","62.4","65.8","67.6","69.8099999420024","71.635","76.19","78.6896","",
"Estonia","EST","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.065484797049517","0.300711282420017","1.15975091279219","2.77896848858157","3.52511112912835","5.70627654756003","10.7960348323268","14.5008972430169","28.5769538105646","31.5274897673756","41.52","45.32","53.2","61.45","63.51","66.19","70.58","72.5","74.1","76.5","78.3899259259259","79.4","84.24","88.4066","",
"Ethiopia","ETH","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","1.75491225386083E-05","0.0017034482886673","0.00496672048936104","0.00966351744980805","0.0125415989159042","0.0152637672082567","0.0371623810686744","0.0724022618698295","0.105811658802603","0.155334520794722","0.219659818999505","0.310592656856176","0.37","0.45","0.54","0.75","1.1","2.9","4.6","7.7","11.6","",
"European Union","EUU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0693340966755781","0.171911193478185","0.310450774077122","0.433749038423854","0.82709599193773","1.58162903941338","2.80552365961226","5.12049988477373","8.42163842017689","14.5826976687145","20.5566943168568","25.2995268490593","35.139519795329","41.8228491455019","46.8319646601983","50.9720858950831","54.546314424477","60.2952780129834","64.1891368926677","67.2146426996618","70.6308959645273","71.5580662923989","73.6993645800207","75.5357802492714","78.1021476800944","79.6258146075023","",
"Fragile and conflict affected situations","FCS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.0364328630412469","0.0770015545633626","0.134172872877445","0.26640132904982","0.256883157194574","0.534435185580095","0.753463228822283","1.04816734024493","1.46866354173854","1.88531057629115","3.07377221596527","2.99223458957044","3.82366913867433","6.14598005947333","6.79801622686066","8.02138912537257","9.49356951702982","12.2162447151928","14.98630874699","",
"Finland","FIN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.401087669542265","1.39743933216774","1.88687977020585","2.56846134939847","4.91509855362412","13.900303888052","16.7800752605887","19.4586827950608","25.4525249254189","32.2950922889897","37.2484617371121","43.1053633522263","62.43","69.22","72.39","74.48","79.66","80.78","83.67","82.49","86.89","88.70999491353","89.879997974222","91.5144","92.38","92.6513","",
"Fiji","FJI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00667844744796488","0.00790739908511393","0.00911534294524544","0.0644371415684","0.223454841691821","0.633167865464492","0.942462062760434","1.4968547339902","1.8579785936093","6.15264970011985","6.72543473821551","7.4129434854202","8.45363663371359","9.6000384001536","10.8978310454645","13","17","20","28","33.7423567521104","37.1","41.8","46.32872894627","",
"France","FRA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0527778615870672","0.140113895433035","0.279049463348641","0.590619383415946","0.899867425301053","1.63794724451239","2.58403397908468","4.25500387171107","6.31977872175207","9.12531788860536","14.3079239430677","26.3259035521688","30.18","36.14","39.15","42.87","46.87","66.09","70.68","71.58","77.28","77.8199989926706","81.44","81.9198","83.75","84.6945","",
"Faroe Islands","FRO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0","2.31878681074062","4.60129756591359","11.3378684807256","22.297538351766","32.916392363397","43.2469835228993","53.2992218313613","58.9126409695337","66.5335994677312","67.9026317413939","69.359445124439","75.98","75.57","75.18","75.2","80.7321728","85.3351892392109","90","93.3","94.2","",
"Micronesia, Fed. Sts.","FSM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.278037794604213","0.5706768449723","1.8587187851414","2.79759406910057","3.73486213690137","4.66052719883673","5.57009970478472","9.23250210039423","11.0178673081514","11.8813690993008","12.7503392500979","13.6211327333981","14.49","15.35","20","22.8","25.9744230029883","27.8","29.65","31.501081275309","",
"Gabon","GAB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0","0.0479990086022951","0.170124880168288","0.249009564457371","1.21614061828589","1.34762022159633","1.93953010616212","2.65958659385985","2.97906980035019","4.89326474972412","5.48920080280135","5.76700457562583","6.21","6.7","7.23","8","8.61671448924674","9.2","20","23.5","",
"United Kingdom","GBR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0873553192811587","0.17423092249367","0.260615159497346","0.519762000979751","1.03660916572589","1.89516828396595","4.12365033568833","7.38539895659563","13.6699830956989","21.2936382666372","26.8217543508578","33.4810948744147","56.48","64.82","65.61","70","68.82","75.09","78.39","83.56","85","85.3799985496322","87.4799984242111","89.8441","91.61","92.0003","",
"Georgia","GEO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0118368853524659","0.0400654188158425","0.0609303330695727","0.102830956807091","0.41634356671125","0.484746298540492","0.992344436138154","1.58787562980332","2.55881648068489","3.88622135350273","6.07945762869794","7.52687684487832","8.26","10.01","20.07","26.9","31.52","36.94","43.3","44","45.1583744140752","",
"Ghana","GHA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.000347917574151673","0.00564876296892429","0.0275375417930387","0.0322404432072234","0.104895466160959","0.153615297625799","0.200008060324831","0.830284033818739","1.19305791098328","1.71679770389504","1.83119746104616","2.72317597313987","3.85","4.27","5.44","7.8","9","10.6","12.3","18.9","23.478128435343","",
"Gibraltar","GIB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","2.66290726817043","4.18379432871177","5.93697829716194","19.1316381248919","21.171109436031","23.670239745714","28.3257797920554","32.8860826098395","39.0701308849385","45.29864751181","51.61","58","65.07","65","65","65.017","","","","",
"Guinea","GIN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.000138318459718829","0.000668589440753014","0.00194894188047425","0.00380310850877073","0.00620336850353784","0.0608089191603796","0.0954249236063846","0.175541868491054","0.402022748744397","0.450960370842751","0.508819332302937","0.542254180996637","0.637492122987955","0.780025279059244","0.92","0.94","1","1.3","1.49014436571885","1.6","1.72","4.7","",
"Gambia, The","GMB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0092175413498905","0.0355073602319341","0.0513113469912736","0.206094460510653","0.715827014834322","0.921794919066406","1.33679116648397","1.79677988296495","2.436781193062","3.30800347812937","3.79900113882231","5.23769115841218","6.20503741852418","6.88","7.63","9.2","10.8703","12.4492287209242","14","16.5","17.119820502123","",
"Guinea-Bissau","GNB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.0163890632503118","0.02406042052803","0.117702448210923","0.230103170591588","0.299569144677667","1.02299323436117","1.35419747762901","1.80814220342991","1.90136531610877","2.0571967045036","2.20630223745003","2.35488871087933","2.30328059172582","2.45","2.672","2.89399062085531","3.1","3.32","3.540706917021","",
"Equatorial Guinea","GNQ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.0414622921184329","0.0944237738972509","0.0974159446521569","0.132354665123789","0.16526042288306","0.321197997152044","0.520524272046806","0.843930284607049","1.14978967061811","1.27919359635686","1.55712305943539","1.82","2.13","6","11.5","13.9431821913076","16.4","18.86","21.319999985207","",
"Greece","GRC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.0487888033209172","0.0482916024670055","0.191062242060003","0.3781743124531","0.749616477469714","1.39536077890155","1.84963468790097","3.2218217855723","6.87729214416088","9.13883730776798","10.9350258080278","14.67","17.8","21.42","24","32.25","35.88","38.2","42.4","44.4","51.6499951676815","55.0699934418411","59.8663","63.21","66.835","",
"Grenada","GRD","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.29803298231671","0.990883868410622","1.48485448426054","2.47316614730178","4.06390799146313","5.12810398216998","14.7588405454867","18.6451821830564","19.5706205843787","20.4878048780488","21.3959911692909","22.29","23.18","24.05","27","30","32","35","51.6","53.81","",
"Greenland","GRL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0647121209397638","0.0539403419817682","1.79671919075768","7.95450468228625","14.6544471691696","21.6026133057246","31.7478112321162","35.4641368915684","44.154789028418","54.5342598293605","56.0990147610533","57.7034045008656","59.361687268664","61.07","62.82","62.83","63","64","64.8960100995989","65.8","66.7","67.600443481006","",
"Guatemala","GTM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00299800542698942","0.0195348708188295","0.0954760214836324","0.466590444451661","0.592652945261753","0.712332904508925","1.7382017815873","3.39174627024502","4.54885490848324","5.1","5.7","6.5","7.3","8.3","9.3","10.5","12.3","16","19.7","23.4","27.100000000275","",
"Guam","GUM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.348453910001324","0.659530908641229","1.35610688834494","2.34457164676014","4.50128418990124","8.49717632294499","16.1131270423389","25.3802275337398","31.1922942556271","33.7166817880876","36.1617878387908","38.559877557558","43.8514430048178","46.1504736192355","48.4187021509296","50.6420283820435","54.04","57.7","61.5341593079002","65.4","69.27","73.139999947043","",
"Guyana","GUY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0658541146967945","0.131828032967554","0.26408811035714","3.96635473490207","6.61149156572021","13.2069864958563","","","","","","13.8","18.2","23.9","29.9","31","33","35","37.35","38.2","",
"High income","HIC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.262629044902921","0.462499303904154","0.719765244053914","0.999033843423003","1.99934678873738","3.66556009828568","6.67494065603035","10.5302174420954","15.8132127991296","22.8264070178987","30.5855331494007","36.6484349043129","45.1080740904294","49.8176594576811","54.9850621269849","58.6739606724848","61.3745852651232","66.7850832719349","68.8788547834148","70.1107205112735","72.216693172599","72.7801056384412","75.4729309394895","76.8761371568681","78.9937189226713","81.0147435830839","",
"Hong Kong SAR, China","HKG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.120955444334145","0.849527883374094","1.33456803119019","2.78419826636163","3.21863564288143","4.74883867150288","10.5187570475672","14.5459795803324","21.2306819749994","27.8277606812581","38.6714032309569","43.0823830278909","52.2000433497404","56.3998803935333","56.9","60.8","64.8","66.7","69.4","72","72.2","72.9","74.2","79.8662704309064","84.9483529634062","",
"Honduras","HND","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0367752523847096","0.0437112456096425","0.170996468238945","0.301247213672473","0.573575476141391","1.20385599891878","1.41528193123711","2.5974025974026","4.8","5.6","6.5","7.8","9.4","9.6","9.8","11.09","15.9","18.12","17.8","19.08","20.356867428881","",
"Heavily indebted poor countries (HIPC)","HPC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00872764462183013","0.0238956295633198","0.0437385609124996","0.10645985421088","0.173378289251485","0.257622535079834","0.395052416296443","0.604411962927073","0.914567047277164","1.21344738518784","1.5578956140144","2.42662064980553","2.52728328628928","3.15333333493861","4.92997886524328","5.39763925205408","6.60774160076483","7.7544391851416","9.71520701568828","12.1335183726839","",
"Croatia","HRV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.097213389005641","0.268318996512712","0.51402858984181","0.85898236788368","1.72960931152469","3.27322027921442","4.40535911936871","6.64488254374396","11.5585731811648","17.76","22.75","30.91","33.14","37.98","41.44","44.24","50.58","56.55","57.7899789891444","61.9399731527956","66.7476","68.57","69.8031","",
"Haiti","HTI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00748425313141151","","0.0239994768114055","0.0706584781341451","0.231270714628821","0.340832326173809","0.893432988337908","1.64735834557778","5.401261907622","6.37620163504938","6.79600048052951","7.2","7.6","8.1","8.37","9","9.8","10.6","11.4","12.197766377036","",
"Hungary","HUN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.00338263017472348","0.0483534209561792","0.193414394595538","0.483580975150708","0.677486054433488","0.969239535629585","1.94244987216737","3.89464327842503","5.85784074913192","6.99967635062916","14.5285543028277","16.67","21.63","27.74","38.97","47.06","53.3","61","62","65","68.0199878861296","70.579998153838","72.6439","76.13","72.8347","",
"IBRD only","IBD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00815959377830283","0.0192510875908449","0.051638349985143","0.112934838775239","0.223250601145118","0.506063984694058","0.991589950644611","1.91872313642625","2.7407694786607","4.58971022507046","5.86558501492307","7.44570120687907","8.68271675130504","10.4809711966285","13.7093680143317","16.9481780563562","20.3258325167106","24.8889115126299","28.3564683401367","32.1398268350237","34.9851789964475","38.6752913105878","42.5624927917813","",
"IDA & IBRD total","IBT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0185798718163415","0.0461605670111016","0.0933865599709136","0.179754832576185","0.403056619756795","0.782473996543792","1.56678714311929","2.19752261226475","3.68117423165583","4.79885585207964","6.14409903854703","7.26719389830052","8.92874239633763","11.5142784577203","14.3776248302891","17.2103570110628","20.9937911203286","24.0229464869244","27.3491644320675","29.9420155229943","33.4714845537382","37.1141533061658","",
"IDA total","IDA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00817537995556539","0.023012926299946","0.0427447757634979","0.0922628646922867","0.193913890802861","0.463167301163818","0.811504047980526","1.4596889543128","2.10124924866151","2.90240958427888","4.00406411291265","4.93394775592145","6.52856101314468","7.80263918222064","9.70935424316482","11.53551913533","13.5227862833142","15.6344140805603","19.0906808348305","22.23873864008","",
"IDA blend","IDB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0115555792200906","0.0349848673471286","0.0607491477327709","0.117724910013175","0.299064625682741","0.864499607204804","1.54046743833861","2.88990720689675","4.25455673053881","5.96823037193399","7.65287814124824","8.9545433993801","12.472695108766","14.7213766508145","17.3224379916638","20.254562078375","24.0205402797914","27.2453768041312","30.5340282299617","35.0408617964624","",
"Indonesia","IDN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00105974438244869","0.0261094771945335","0.0566239887373857","0.194910263619177","0.255306646259756","0.444415935985143","0.925563864466858","2.01861385948459","2.13413573295808","2.38701977959476","2.60028587633414","3.60202476259646","4.76481313366657","5.78627472934199","7.91747938492903","6.92","10.92","12.28","14.52","14.94","17.14","21.9760677113476","",
"IDA only","IDX","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.0148197327472974","0.0308330471260498","0.0767793366500452","0.147828480665578","0.228039344836544","0.38554542695004","0.630110199863906","0.859003431175406","1.13220883170203","1.77991304890885","2.64625783862345","2.99944271527955","3.71043947281682","5.43179215529247","6.60782386247073","7.83948914801387","9.43819450936905","12.7523970393993","15.1737595007416","",
"Isle of Man","IMN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"India","IND","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.00011130772730678","0.00021817567673486","0.0010695623867526","0.0262288788137051","0.0463339767355146","0.0707678487089183","0.13902732879964","0.27322427673499","0.527532449930946","0.660146377009928","1.53787558175083","1.68648997063625","1.97613649190559","2.38807499995774","2.80549986534254","3.95","4.38","5.12","7.5","10.07","12.5800609138955","15.1","21","26","",
"Not classified","INX","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Ireland","IRL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.0567960442691087","0.169686377153426","0.281141005146567","0.558377221782965","1.10838632805464","2.19930183163355","4.08825507004952","8.09601004337033","10.9338085895467","17.8504672405807","23.1388121904053","25.85","34.31","36.99","41.61","54.82","61.158324551","65.34","67.38","69.85","74.8899729670944","76.919992540097","78.2477","79.69","80.1224","",
"Iran, Islamic Rep.","IRN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.000408331951401899","0.00417975237282131","0.015826080240759","0.0467560941386576","0.0998152205281395","0.378569094530717","0.934190019959829","1.48422133163363","4.62617511492205","6.93372195304053","7.49","8.1","8.76","9.47","12.02","13.8","15.9","19","22.73","29.95","39.35","44.082875016875","",
"Iraq","IRQ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","0.1","0.5","0.6","0.9","0.9","0.95234424383919","0.93","1","1.06","2.5","5","7.1","9.2","13.21","17.22","",
"Iceland","ISL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.50512900217594","1.53916008034416","2.6678252650675","6.79481178371359","11.2158756981883","14.8064793153484","27.4788687499313","36.2642065028975","41.2945667122702","44.470533824288","49.3929953676426","79.12","83.14","83.88","87","89.51","90.6","91","93","93.39","94.8196868008949","96.2097995545657","96.5468","98.16","98.2","",
"Israel","ISR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.110773866229479","0.214624099839697","0.310579197074096","0.398833332735083","0.576966460362693","0.93042297028229","2.16836760046815","4.39940548194079","10.3070699456663","13.4361219052622","20.8737899981674","17.3786238639049","17.7645990630493","19.5933936579649","22.7704855254035","25.1940424216829","27.8810744577346","48.1280621948445","59.39","63.12","67.5","68.8738779907441","70.8","70.250311945","75.0177531628076","78.88517910353","",
"Italy","ITA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.017544562355015","0.0350632556032967","0.0700534325551471","0.122462052683735","0.192304619468143","0.524412787470198","1.02328990327724","2.27673783398868","4.5585195653676","14.378410192862","23.1108742441037","27.2221169788811","28.04","29.04","33.24","35","37.99","40.79","44.53","48.83","53.68","54.3899983018814","55.829997993283","58.4593","61.96","65.5716","",
"Jamaica","JAM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0368171040811351","0.109487985518389","0.591145841711251","0.797797440825369","1.97872631761407","2.35568855598647","3.11577802729967","3.8630203874764","6.1","7.8","10","12.8","16.4","21.1","23.6","24.3","27.67","37.438613414848","33.79","37.1","40.4027351046672","43.1758971872","",
"Jordan","JOR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0232339200362821","0.0449385487814688","0.59934110602689","1.30588826426973","2.52696535256747","2.62327542156362","4.70571958094159","6.02553241191204","8.46600501623938","11.6587413706379","12.9328520457507","13.8671087882097","20","23","26","27.2","34.9","37","41.4","46.2","53.4","",
"Japan","JPN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0202936828728095","0.0404380410357153","0.0966780254215835","0.40127752639435","0.799684291039372","1.59436314822182","4.37298196820763","9.16307714028121","13.4140408820215","21.391290312434","29.9907403589142","38.5320608612719","46.5942011179917","48.4352658899653","62.3939296327259","66.9210661042901","68.6852703213795","74.3","75.4","78","78.21","79.0541135244739","79.4964","88.219428911","89.1068330166075","93.329411063737","",
"Kazakhstan","KAZ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.000521078881417335","0.0113023546258183","0.0318245120029329","0.0645967541164605","0.13106960398892","0.464277217538881","0.668594402621264","1.00612421099739","1.67477099516366","2.00041475265872","2.6503946570164","2.96170749150089","3.26836905115978","4.02","11","18.2","31.6","50.6","53.3156691222464","63","66","72.8660129673921","",
"Kenya","KEN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.000727482162773916","0.00883911485103882","0.0344060509233638","0.0502613876974799","0.114256028237822","0.318059713612037","0.619782266151425","1.20777388492125","2.94190286101524","3.02352804209621","3.10189770248496","7.5337897198037","7.95","8.67","10.04","14","28","32.1","39","43.4","45.6228006060586","",
"Kyrgyz Republic","KGZ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","0.0728083339331353","0.20471134983184","1.04140114469361","3.00294132719239","2.99926518003089","3.90876626828521","5.09038530732863","10.5338013405507","12.3069069959465","14.03","15.7","16","16.3","17.5","19.8","23","28.3","30.247042775311","",
"Cambodia","KHM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00584491064008368","0.016324986068665","0.0319695777498133","0.047022640068885","0.0769560555527296","0.226983237666204","0.260570197574002","0.300436644360101","0.317321781089656","0.468356720063827","0.49","0.51","0.53","1.26","3.1","4.94","6.8","14","19","",
"Kiribati","KIR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","0.616545618210291","1.21157783781819","1.78522547397736","2.33745894837722","2.5","3","3.5","4","4.5","6","7","8.97","9.07","10","10.7467976841839","11.5","12.25","12.99748389414","",
"St. Kitts and Nevis","KNA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","1.94556982306759","2.25855994218087","3.34381060656724","4.4004400440044","5.86281024037522","7.71472655580319","21.152381758186","22.9697842928439","24.7376775443732","34","38.5","43.5","49.2","55.7","63","63.2","64","64.6","68","75.7","",
"Korea, Rep.","KOR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0232650923969655","0.0461244347306385","0.0984043370590207","0.249946522805325","0.311359364299842","0.819686670067246","1.62423719177877","3.60080156399075","6.78181546774092","23.5521944496933","44.7","56.6","59.4","65.5","72.7","73.5","78.1","78.8","81","81.6","83.7","83.7591201534472","84.07","84.77","87.87","89.8962557995106","",
"Kosovo","KSV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Kuwait","KWT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.0910822445879734","0.14716270308453","0.202898433102358","0.855662316859742","2.17453585891176","3.05239745470751","4.75622220879911","6.73139576837536","8.55179243431475","10.2489679289296","22.4029383804612","22.9271120360078","25.9261083689107","28.7911979549612","34.8","42","50.8","61.4","65.7690706867398","70.45","75.46","78.7","82.0791147627883","",
"Latin America & Caribbean (excluding high income)","LAC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.0126821696745233","0.0280733339400516","0.046649730052299","0.0988267109696068","0.283597505983254","0.566319151983197","1.15876698583314","1.89709364636217","3.40063132728874","5.08869514030192","8.34457563714639","10.6972211208189","13.8481084278519","16.0539115968621","20.1969994977384","23.1934152977074","25.9664076912126","30.5208321115205","34.1961257170278","38.7545964119623","42.5202104298306","45.6256008873448","48.0839000445394","53.8839339917845","",
"Lao PDR","LAO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","0.00965781399243407","0.037780708301385","0.111044032290124","0.181664460654566","0.267899241309349","0.333912466428616","0.361434490258043","0.850357490288917","1.16989342772256","1.64","3.55","6","7","9","10.747676189122","12.5","14.26","18.2","",
"Lebanon","LBN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0716179907830511","0.14016693882414","1.24107973937325","2.72235219941557","5.37680949802644","7.95274373635276","6.78321977527715","7","8","9","10.14","15","18.74","22.53","30.14","43.68","52","61.249785718304","70.5","73","74","",
"Liberia","LBR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00448944262671901","0.00409938718261007","0.0113287318542038","0.0177027057169472","0.033812227177592","0.0327133071190699","0.0318689345450327","0.0310111848040233","","","0.551376580555429","0.53","2","2.3","2.5","2.6","3.2","5.41","5.903867602799","",
"Libya","LBY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","0.133617289160985","0.187042622337565","0.366533175284228","2.24441822165946","2.81451798740855","3.53283816154549","3.91778797710285","4.30105178913002","4.72199937850513","9","10.8","14","14","","16.5","17.76","19.016079781565","",
"St. Lucia","LCA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.305656686409825","0.670465973851827","0.992168483437401","1.30498897284318","1.93210580211372","5.09048334139327","8.18186395448366","14.6418357746777","20.9824734633424","21.395212362765","21.5675829464215","24.5","27.9","32","36","43.3","44","45.9","46.2","50","52.35","",
"Latin America & Caribbean","LCN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.0136850075851028","0.029908499352732","0.0500678123739551","0.110083607002837","0.308723256338881","0.609594647802684","1.22966321877095","2.05248963414193","3.90371304021287","5.65075369105539","8.88734994492265","11.2871531818652","14.4023870678009","16.6297898411029","20.7526340622518","23.7029350820335","26.500479061627","31.0343041284839","34.7096220522286","39.3477850283796","43.1872862295852","46.2670816586873","48.7755591372463","54.4583843034657","",
"Least developed countries: UN classification","LDC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00853453870466774","0.0210721720968047","0.0571772269789979","0.0994050968377086","0.144637287782423","0.236258541323302","0.355621081808462","0.554893711110772","0.784261368200721","1.11683564402481","1.92155269170498","2.12025387305383","2.70237865030371","4.3031477085696","4.78572727453306","5.85377956690887","7.19916132388237","10.3183763436478","12.628601218278","",
"Low income","LIC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00323365761201259","0.0114632593483273","0.0280004613137226","0.0721171451055916","0.113522080468214","0.173008183606391","0.258451655355668","0.421628320091187","0.663063490811058","0.910523757833395","1.1354630936424","1.35959775558334","1.86994782674732","2.36642899648643","3.33147855761778","3.71080128531138","4.65081170460788","6.13114362303707","7.51827681623995","9.46034205257496","",
"Liechtenstein","LIE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","36.5152298938015","45.1168526483592","59.4707106749926","58.8096918372148","64.0074481394199","63.3713561470216","64.2141613630526","65.080218443168","70","75","80","85","89.4077","93.8","95.21","96.6411950959488","",
"Sri Lanka","LKA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00276544818070014","0.00548443582924889","0.054464498514862","0.162464548204775","0.296351104287732","0.348414424914655","0.647410010940963","0.793821864362622","1.05042270585318","1.45858022842408","1.44615998041486","1.79204679392588","2.53756612897332","3.88","5.8","8.78","12","15","18.2854","21.9","25.8","29.988737549341","",
"Lower middle income","LMC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00211150985508056","0.0224219457243083","0.0392360565560992","0.074195817473211","0.158951948333744","0.27715695021487","0.55842037587204","0.870868787229526","1.60217633537063","2.11178769962619","2.91572259453221","3.67140886030999","4.64127541737627","5.87674698831151","7.38710803911705","8.66212380638718","11.795120275572","14.3312402155902","17.1408382815122","19.5451904053716","24.3822200733877","28.6320615312121","",
"Low & middle income","LMY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0137053792956606","0.0383202681139597","0.0786690390736896","0.156316132272643","0.359163271390023","0.720113015103444","1.44984612915545","2.0578732742951","3.45704668322352","4.5394234512168","5.82964299389021","6.91393249003911","8.52795973221954","11.0986507590772","13.9395091431708","16.7369217152292","20.5109290790759","23.5356862303415","26.8738168859754","29.6037907236095","33.137761786813","36.7986475240125","",
"Lesotho","LSO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00284593961257655","0.00558443328054182","0.0109565326956631","0.0538044595288236","0.211806070361977","0.261150063093855","1.08394313737534","1.53249659019509","2.17552433931097","2.58024548419449","2.97970818724486","3.44543125970873","3.58","3.72","3.86","4.2248","4.58961762996709","5","11","16.071707703394","",
"Late-demographic dividend","LTE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00999978644068813","0.0278213011999601","0.0595177571418764","0.140628720709714","0.26984492644663","0.630645723820108","1.26791538498619","2.47215089553373","3.56235915236751","5.91590632936918","8.03148307635278","10.3861548484442","12.2930979214222","15.1419649381279","19.9799848402709","25.1996624748343","30.5987366478723","36.0350196412087","40.0464641832824","44.7511718242165","48.5496033605516","51.1912228582679","54.0592557700003","",
"Lithuania","LTU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.277421291418305","0.978422157292264","1.97206374498849","2.92305470000236","6.42706749477765","7.17935699381369","17.69","25.91","31.23","36.22","43.9","49.9","55.22","59.76","62.12","63.6399774002179","67.2299893276414","68.4529","72.13","71.378","",
"Luxembourg","LUX","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.153198790750878","0.30215512140341","0.496486119489314","1.59094191103942","5.5516533064923","7.14270408491247","11.7455537206391","17.3879577959488","22.8873279731211","36.163422506306","39.84","54.55","65.88","70","72.51","78.92","82.23","87.31","90.62","90.0298585646936","91.9499237417387","93.7765","94.67","97.3341","",
"Latvia","LVA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.812717071650356","2.05345471167237","3.31526788607745","4.38740905527801","6.31906208267861","7.21934580836289","21.94","26.98","38.58","46","53.63","59.17","63.41","66.84","68.42","69.7499545592245","73.1199437663748","75.2344","75.83","79.2006","",
"Macao SAR, China","MAC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0369933757195212","0.280014085704224","0.727273598076568","2.36412767235082","7.00332424457476","9.21200508502681","13.6085897418451","22.5212167700561","25.1718801643395","25.7421239826498","31.4840973824121","34.8629271733959","46.4","47.327","49.24","54","55.198","60.2036967182195","61.31","65.8","69.78","77.6001318608868","",
"St. Martin (French part)","MAF","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Morocco","MAR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00371049184239092","0.00567544423607259","0.0216352030716219","0.142300767186126","0.175595344602176","0.693791244805455","1.37143810096418","2.37325319241544","3.35336668122363","11.6079347729582","15.0844445240204","19.7711915653115","21.5","33.1","41.3","52","46.107482597","55.4160531914894","56","56.8","57.08","",
"Monaco","MCO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","42.1848634460346","46.6461423640265","48.0471171729696","49.4911689195459","52.4901966838546","55.4648260561427","61.4760397135217","64.3776824034335","67.25","70.1","75","80.3","87","90.7","92.4","93.3633020180933","",
"Moldova","MDA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.000825390856962057","0.00345721694036301","0.00464390102546622","0.0281288083769467","0.260818205679814","0.600695268731841","1.28284641670022","1.48781295215565","3.78724279887342","7.40754458415897","10.629390841654","14.6302704551796","19.6206477051634","20.45","23.39","27.5","32.3","38","43.37","45","46.6","49.8369395415","",
"Madagascar","MDG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00369519572084511","0.0143336470251985","0.0625610230645809","0.168608781293706","0.196394691006341","0.222511586178292","0.339720154596142","0.423252419277809","0.525353654946669","0.567721802237403","0.607552238860378","0.65","1.65","1.63","1.7","1.9","2.3","3","3.7","4.173972190007","",
"Maldives","MDV","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.226930089745917","0.309444238148286","0.56962746363878","1.11990861545698","2.2038729393788","3.61729064930367","5.3477651689359","5.97659284988557","6.58825487530861","6.86960506696215","11.0363527828647","16.3","23.2","24.8","26.53","34","38.9301","44.1","49.28","54.461955146942","",
"Middle East & North Africa","MEA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.00196039038994767","","","","","0.0371438536938771","0.0844233661728459","0.22774397938345","0.487321735165383","0.918917803760192","1.69301270400612","2.07664989074797","3.75720889498959","5.12923073963764","8.35129809407133","9.75306816804196","11.7924022548432","15.0413603774485","18.7368378825078","21.5977033056323","24.852629196698","27.6967664874704","31.2699599156372","34.6662309585547","39.7005321126093","43.707533366815","",
"Mexico","MEX","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.00588069493112912","0.0173078098676624","0.0283050415762566","0.0433391667851826","0.102564189852775","0.20040628032987","0.627311539559522","1.26578327821238","1.85743622125093","5.08138415338066","7.0380231165045","11.9","12.9","14.1","17.21","19.52","20.81","21.71","26.34","31.05","37.1762954125184","39.75","43.46","44.39","57.4310429923633","",
"Marshall Islands","MHL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0","0","0","0","0","0.0370594316253487","","","0.966071566581652","1.53427179624871","1.7066140776699","2.33544457522934","2.5697503671072","3.59977681383754","3.8787023977433","3.79559021427832","3.95","4.6","5.6","7","10","12.5","14","16.8","19.282441803511","",
"Middle income","MIC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00607786142749955","0.0139214465941289","0.0397838396700828","0.084367040296032","0.16821481274907","0.387286515274571","0.775095418268779","1.56972042484471","2.22989256352328","3.75324232923333","4.92435433217002","6.31863448379467","7.48553191904248","9.23178853149883","12.0671144446124","15.1669786098405","18.2196826826154","22.2969943832299","25.6274972824523","29.2659928542675","32.1058471368054","35.9026638422557","39.7963632949121","",
"Macedonia, FYR","MKD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0407438399133786","0.0759957341061255","0.503985009469878","1.00286166576326","1.49733026014616","2.48556631640066","3.46818460849398","17.33","19.07","24.44","26.45","28.62","36.3","46.04","51.77","51.9","56.7","57.449947312961","65.24","68.06","70.3802","",
"Mali","MLI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00205522808921334","0.0100859189174824","0.01979388822134","0.0609098733769416","0.142545755049184","0.185897413256084","0.2270455784917","0.310364443230575","0.432819639900985","0.507063135952247","0.729627280833101","0.81","1.57","1.8","2","2.2","2.8","3.5","7","10.33692498389","",
"Malta","MLT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.224995698611644","1.05152747509852","3.92060513233349","6.50078399454974","7.75979803832306","13.1137087111024","17.8778483243348","28.92","31.64","34.62","41.24","40.41","46.9","50.08","58.86","63","68.0198237885462","68.1998742928975","68.9138","73.17","76.184","",
"Myanmar","MMR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","0.000151709352621516","","0.000289277380848561","0.00042649350636189","0.0240641491408465","0.024337392002823","0.0652388555011476","0.18204833106115","0.217128445069958","0.22","0.22","0.25","0.98","1.44","1.8","11.52","21.8","",
"Middle East & North Africa (excluding high income)","MNA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00282568865328588","0.0131440589182525","0.0258900856008887","0.0744515282103998","0.158224276824629","0.416626605188517","0.842207741424901","1.14136924686155","2.81671008107558","4.05009639616379","7.41694566686182","8.53921872661578","9.91224974867064","11.8482386141174","14.9671374817215","17.671424630732","20.6189163555238","22.7670510790659","25.7928829703708","28.978743792476","34.1763619178604","38.2062538479483","",
"Montenegro","MNE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","25.3500686036232","27.1","28.9","30.8","32.9","35.1","37.5","35.6115412460109","56.8387825490631","60.31","61","64.564993139872","",
"Mongolia","MNG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00881122479549147","0.0181607493256454","0.112742553679548","0.145810541501754","0.508471559914475","1.25565200358112","1.65323823906982","2.0395726034818","","","","","9","9.8","10","10.2","12.4999911084745","16.4","17.699984237","19.9424474349209","21.4360311065255","",
"Northern Mariana Islands","MNP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Mozambique","MOZ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00304297878897721","0.0118426107556486","0.0201970551654863","0.056250628952345","0.109592530041641","0.160031946644069","0.259612611253739","0.419538843913707","0.679447835392438","0.854357118107528","0.842954488044236","0.91","1.56","2.68","4.17","4.3","4.8491","5.4","5.94","9","",
"Mauritania","MRT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00417252732901087","0.0405947949353934","0.118464463622525","0.192031462434805","0.261448551967195","0.363229414608579","0.424004895843197","0.481470438230954","0.669966474877597","0.97966125273203","1.43361319586788","1.87","2.28","4","4.5","5","6.2","10.7","15.199126690825","",
"Mauritius","MUS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.183769157934715","0.475629192563235","2.56527996182863","4.65221322700348","7.28153511499385","8.78090401892036","10.252624671916","12.1871062041308","13.6890885885342","15.1722287524914","16.7","20.22","21.81","22.51","28.33","34.95","35.42","40.116825135","44.8032753683379","50.1393184766711","",
"Malawi","MWI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.00466851795189877","0.0180573651794229","0.0872787549022295","0.126780944756387","0.164020725330811","0.21509472652259","0.278815116302304","0.347505334967577","0.384489334082782","0.425137489606563","0.965864736553132","0.7","1.07","2.26","3.33","4.3506","5.05","5.83","9.2981483471244","",
"Malaysia","MYS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.00104782235010312","0.0255384775216195","0.0996074172862497","0.145673836668164","0.852044466496617","2.30739323403082","6.75177048301491","12.3055021987515","21.3847311644538","26.6959725007084","32.3382043389359","34.9711523397291","42.2522656295248","48.629170245984","51.6379889864403","55.7","55.8","55.9","56.3","61","65.8","57.05751226","63.6654258813225","71.0640678111957","",
"North America","NAC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.743037088256645","1.10495093633895","1.64464582026933","2.16453221621332","4.6178767486408","8.73682317016279","15.4694997717629","20.9751340705392","29.5855705098728","35.8824799731117","43.8793741066758","50.1620212511126","59.0571968963234","61.9397408745317","64.8742472203646","68.3278747850678","69.2704538253401","74.8236050881279","74.2665029928779","71.9166465147234","72.5404836415795","71.0425495923103","75.52358339991","72.8302881787651","74.4048152933966","75.9372515632806","",
"Namibia","NAM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00617205085523023","0.00903214540549817","0.0587506785703375","0.286745093361335","0.336217707690083","1.64473954726899","2.41697944170998","2.63369976876116","3.35983988553801","3.8047156152631","4.01004664442375","4.39887064732726","4.83561077833704","5.32900377208954","6.5","11.6","12","12.9414","13.9","14.84","22.3070147912325","",
"New Caledonia","NCL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00517901256946351","0.25298394563881","0.989334969033815","1.93604282526729","5.68814732301567","13.9395488232698","18.2371097828416","22.389797417113","26.4083344703588","30.2980462088488","32.3590147531561","33.5157146807209","35.05","34.51","33.99","42","50","58","66","70","74.00175279141","",
"Niger","NER","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00103930452235695","0.00200876605418385","0.00291150283332898","0.0281360222867308","0.0362612938065891","0.10518543139701","0.127152468779619","0.155698703668983","0.189933733703092","0.221341351487395","0.294033977096223","0.390390619762082","0.7","0.76","0.83","1.3","1.4077","1.7","1.95","2.220165349673","",
"Nigeria","NGA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00883298044104308","0.0172374007399361","0.02523146101791","0.0410387229077741","0.0640808079494101","0.089901370457273","0.320461975542327","0.558576244860521","1.28613764134527","3.54915571796492","5.54503608300536","6.77","15.86","20","24","28.43","32.8","38","42.68","47.442550294429","",
"Nicaragua","NIC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0131662275729771","0.0300464776085064","0.0840932914156307","0.20621681842506","0.303808974638634","0.497901643314416","0.980216486692385","1.44879942820716","1.71472958428668","1.88041253242301","2.32066460863941","2.56635117656203","2.8055730627337","3.9","5.3","7.3","10","10.6","13.5","15.5","17.6","19.704291498993","",
"Netherlands","NLD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.334386942002658","0.53149612838289","1.32000802828883","1.96708773709636","3.25730883098769","6.47315766003377","9.64906914465055","14.0655113980191","22.2438276873626","39.1760072483196","43.984351373138","49.3730621073123","61.29","64.35","68.52","81","83.7","85.82","87.42","89.63","90.72","91.4199957622284","92.859992359525","93.9564","93.17","93.0965","",
"Norway","NOR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.707299448188547","1.40739515785696","2.21636583194441","2.7839908462381","4.15245029170963","6.42322049264266","18.2503107685731","20.4178814360849","22.5601125478895","40","52","64","72.84","78.13","77.69","81.99","82.55","86.93","90.57","92.08","93.39","93.4899826515194","94.6499780533304","95.0534","96.3","96.8103","",
"Nepal","NPL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0","0","0","0","0","0.000924877560084208","0.00451047275392552","0.0219988575553294","0.0643935956362092","0.146668869214028","0.204651683653029","0.240015303375743","0.312956060108532","0.382810917017044","0.449843651215974","0.82655126590551","1.14138916388191","1.41","1.73","1.97","7.93","9","11.1493","13.3","15.44","17.58161800656","",
"Nauru","NRU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","2.98715523250025","","","","","","","","","","54","","","","","",
"New Zealand","NZL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.28594124136243","0.631215367316847","3.16871884839389","4.88424078004581","8.04189936796032","14.6015243991473","31.636260808802","41.4944826585159","47.3795565432096","53.2410152941279","59.0807532812931","60.9625398663824","61.8476278106481","62.7202123689541","69","69.76","72.03","79.7","80.46","81.23","82","82.78","85.5","88.22288881795","",
"OECD members","OED","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.245909019386809","0.433388347669979","0.667901583854973","0.881598473156991","1.77722331661551","3.34846307623733","6.10792493169666","9.55886834910866","14.3089896494084","20.6575794150395","27.883838743376","33.3980169075729","41.524826042007","45.7209846370549","50.529101536101","54.1468285696807","56.6075568190658","61.8761411302627","63.912649043576","65.321687118511","67.6206343303804","68.5529883627583","70.9507720852013","72.2544527682365","74.261055221519","77.243487456501","",
"Oman","OMN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0","0.439792804813796","0.862725306105723","2.51566598659283","3.52042141651097","5.89384152148671","6.87339603918545","7.25574294536556","6.75885217024525","6.68358142020519","8.299716672503","16.68","20","26.8","35.8278","48","60","66.45","70.22","74.174165970433","",
"Other small states","OSS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.856520667294666","1.51996449650435","2.61557817808385","3.44883444152018","5.52027348605903","6.81133625062398","8.87040199580175","10.6207710179964","12.4412996905522","13.1517282884283","14.5367953660139","16.3913486436363","18.9171664316771","20.8857196236552","24.240587476592","27.2912416172238","29.7550050683888","33.1335140539244","36.7809924449044","40.3955638254411","",
"Pakistan","PAK","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.000122701855595622","0.00299173049043745","0.0275492379403411","0.0439477192535917","0.0553572378664737","","1.31855077925626","2.57742673683831","5.04115812592502","6.16432098534156","6.33232909830782","6.5","6.8","7","7.5","8","9","9.96","10.9","13.8","18","",
"Panama","PAN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00763689905241357","0.056123042662118","0.219998526009876","0.539065540666565","2.75064807135796","3.83686450851963","6.55479647729549","7.26839987788729","8.51807781515595","9.98742407723405","11.1408625409415","11.4840092783071","17.3495661695931","22.29","33.82","39.08","40.1","42.7","40.3018952210488","44.03","44.92","51.2054249948687","",
"Peru","PER","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00850457833343858","0.0334123047076893","0.246232579968339","0.403429701123947","1.19038044043045","1.95249760760468","3.07643061137675","7.57876295717419","8.96694917040028","11.6","14.1","17.1","20.7","25.2","30.57","31.4","34.77","36.01","38.2","39.2","40.2","40.9","",
"Philippines","PHL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00584425347924116","0.0285857018207148","0.0559460285306004","0.136912962909744","1.10340599442803","1.43160880335918","1.98225319605827","2.52400566008269","4.33227574643007","4.85767226708512","5.2436284521711","5.3976363293955","5.74058632534702","5.97","6.22","9","25","29","36.2351","37","39.69","40.7","",
"Palau","PLW","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","20.243939470621","21.6015271777354","26.9703326341025","","","","","","","","","","","","",
"Papua New Guinea","PNG","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00206702280091511","0.100588320971699","0.234958541565341","0.667113314914652","0.835249302427624","0.904103545170821","1.3216569348661","1.37440466802801","1.5079127722725","1.71619047556782","1.754487260668","1.79055936140245","1.15","1.61","1.28","2","3.5","5.1","6.5","7.9","",
"Poland","POL","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.00522946814713956","0.0521271812521256","0.129961703924781","0.389098144429859","0.647752333087308","1.29520025466745","2.07346547356008","4.10227200222192","5.45644373006027","7.2854287080601","9.9006697073534","21.15","24.87","32.53","38.81","44.58","48.6","53.13","58.97","62.32","61.94999896898","62.3099972714691","62.8492","66.6","67.997","",
"Pre-demographic dividend","PRE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00482366736203233","0.0139107705669464","0.0284474635535535","0.0730802207999764","0.123098076165349","0.186957928083957","0.363542777825497","0.645023494908302","0.989968973564121","1.72702963266008","2.71678519069333","3.5240594564442","5.74663582092717","7.14974650883738","9.42676368262947","11.5235893825749","13.7517746181864","16.1450498727013","18.4794214646982","21.0710908041732","",
"Puerto Rico","PRI","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0272546623869579","0.135102783495628","0.26816042751208","1.33182215912345","2.6476466789641","5.2656826509974","10.4746482089399","15.6300309162012","17.5476475654777","19.7070256578252","22.1307382347014","23.4000504486583","25.4424182102582","27.86","38","41.5","45.3","48","68.9999826014151","68.999990004","76.1338597201667","79.46876882531","",
"Korea, Dem. People’s Rep.","PRK","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","","","","",
"Portugal","PRT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.100230570404158","0.250426501374491","0.450161608017278","0.718905753552518","1.49433452949831","2.98087766974856","4.95300195504893","9.87044644226667","14.7423378419006","16.4304676923534","18.0871365595338","19.37","29.67","31.78","34.99","38.01","42.09","44.13","48.27","53.3","55.2499968797194","60.3399974868057","62.0956","64.59","68.6329","",
"Paraguay","PRY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.020359611823641","0.0995767192816775","0.194904950702691","0.381657320196943","0.747630711548184","1.09879383569333","1.79496959770244","2.11194208210034","3.45243843137079","7.90700786141285","7.96207388394416","11.21","14.27","18.9","19.8","24.7635158793993","29.34","36.9","43","44.381596919184","",
"Pacific island small states","PSS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0217089805475553","0.131097921566264","0.285080151384516","0.6122379647943","0.870562129647469","1.458222093949","1.86085387305024","3.99647813935207","4.54842383906718","5.17447490584939","5.58289521206595","6.49838617340068","7.39786557259024","8.69695568022424","10.8779203291296","12.9869185351363","17.6735210293329","20.9033467692416","22.924659165957","26.6875054727756","29.7828414639424","",
"Post-demographic dividend","PST","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.272078071037339","0.49559502212041","0.777235173076102","1.00993762780657","2.01300123735392","3.75036710445912","6.82563169046286","10.6837334704142","15.9216549975339","22.9428359240106","30.5723616959436","36.6531581049457","44.7157512479063","49.7980076897273","54.9763348341711","58.5039299691419","60.4221007194812","65.6693740891524","67.6511373013156","68.8425372386594","70.9546050934313","71.4246854087129","74.2195868620931","75.6981701533093","77.8351205260775","79.7749533624375","",
"French Polynesia","PYF","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0909719442523926","0.21438525029478","1.31616469607564","3.44890023193854","6.3570635452072","6.25158894552365","8.20021648571522","14.1242937853107","17.8845374263753","21.5421854743002","25.1079642462589","28.59","33.87","44.6","49","49","52.8766305867993","56.8","60.68","64.560209747212","",
"Qatar","QAT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.190209534823562","0.930185832525622","3.08374918598091","3.52002984985313","4.07072891489632","4.86367917875156","6.17026856093911","10.2261289281118","19.242336421002","20.701647851169","24.733493781051","28.9741127135829","37","44.3","53.1","69","69","69.3","85.3","91.49","92.8848264535481","",
"Romania","ROU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00370321429851994","0.0263001616407934","0.0749527555146049","0.221622649231938","0.445444675615383","2.23764947274713","2.69758021659411","3.61371729139783","4.53866902895312","6.58","8.9","15","21.5","24.66","28.3","32.42","36.6","39.93","40.0099967810008","45.8799942529424","49.7645","54.08","55.7632","",
"Russian Federation","RUS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.000672532173956015","0.0134472378929609","0.053817492719435","0.148151042331137","0.269752929717445","0.4729637629624","0.812744450672325","1.01898461403203","1.97723010897647","2.94436778664985","4.12827181796644","8.29886061553908","12.8593889008473","15.2266731976522","18.0232774617216","24.66","26.83","29","43","49","63.8","67.97","70.52","73.41","",
"Rwanda","RWA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.000883371624548685","0.00162579102862498","0.0117635727735049","0.0671764824271024","0.0628314595107164","0.240672409832383","0.292784718792575","0.356918467272361","0.43085424337006","0.556041164839515","","2.11538717825754","4.5","7.7","8","7","8.02385427694765","9","10.6","18","",
"South Asia","SAS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.000108982909339641","0.000213587873859964","0.00107873876266303","0.0224723895626757","0.0407987008791552","0.060047420496025","0.11701367777263","0.226317005393681","0.473920912026768","0.663556204243448","1.46254523702335","1.8431644127735","2.18437603559218","2.54668832785865","2.98334830663047","3.97340011784188","4.41682340804885","5.1571126465903","7.20654564155376","9.39309278703748","11.5120098020054","13.7466237906087","19.2677772316517","23.6279411151014","",
"Saudi Arabia","SAU","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0109561335585549","0.0267326514047821","0.0520990308798771","0.101429892697824","0.493585340238987","2.21069180908888","4.6810531658103","6.38470501955932","8.00158289090878","10.2345329969583","12.7050359882849","19.4595543513634","30","36","38","41","47.5","54","60.5","64.713657369019","69.6162358014004","",
"Sudan","SDN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0","0","0","0.00123181896794265","0.00480507103171332","0.00879458075588601","0.0257850324762484","0.140185224494161","0.439477639075583","0.538471703150458","0.791561615446385","1.29204067798853","","8.66","","","16.7","17.46","21","22.7","24.64","26.614928545846","",
"Senegal","SEN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.000692848167174101","0.0112382191153791","0.0273474414772957","0.0798713793904365","0.311090952417394","0.403967485868965","0.983794058848003","1.00645453672323","2.10143642986685","4.38602398008563","4.78668408310535","5.61173865217952","6.89","7.12","7.5","8","9.8","10.8","13.1","17.7","21.690264133037","",
"Singapore","SGP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.161504498384794","0.471368155498698","0.763278139164534","1.18520379727445","2.87341872175968","8.34995902953436","13.4716204150014","19.5907671587693","24.1554369311712","36","41.6704251756041","47","53.8379432881911","62","61","59","69.9","69","69","71","71","72","80.90205685","79.0292358633435","82.103","",
"Solomon Islands","SLB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.0248719096652241","0.268683584776388","0.391923245751552","0.508292796982774","0.494541498213469","0.481296806114395","0.468551963584141","0.501919843401009","0.555609881855115","0.64967267325146","0.844307572805697","1.64634798857435","2","3","4","5","6","6.9974","8","9","10.000464982561","",
"Sierra Leone","SLE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0","0","0","0.00250611617652882","0.00498783467123685","0.0148050654050777","0.048490655608211","0.118254245682183","0.160264445493032","0.176198956814076","0.190173281668183","0.203007680592588","0.215391610340129","0.227669467190838","0.239834698546233","0.25","0.26","0.58","0.9","1.3","1.7","2.1","2.5","",
"El Salvador","SLV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0863895807254479","0.256960679362923","0.425253672320613","0.845428741432214","1.17739726914477","1.5","1.9","2.5","3.2","4.2","5.5","6.11","10.08","12.11","15.9","18.9","20.3213877242007","23.1093","24.7617121459061","26.915075328277","",
"San Marino","SMR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","1.36213271064409","1.42807518622872","1.41854847985278","1.40855794122126","42.8033157498116","48.7994953055999","50.3416690898517","50.8348399446985","50.003453038674","50.5663430420712","50.2595641966736","50.2086593635889","50.3648221088655","54.52","54.21","","49.6","","","","","",
"Somalia","SOM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0","0.0015095503970193","0.00294871303419623","0.00716442000008024","0.0139103939715691","0.02","0.0790391786670095","0.115614213354469","0.376198002539086","1.05345474358422","1.07732783912096","1.10021636808277","1.12223562161375","1.14268737216185","1.16061054246061","","1.25","1.3767","1.5","1.63","1.76","",
"Serbia","SRB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","23.5","26.3","27.2","33.15","35.6","38.1","40.9","42.2","48.1","53.450364175","62.0750804639377","65.3170254003801","",
"Sub-Saharan Africa (excluding high income)","SSA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0686427557181431","0.128634992061059","0.233707081199052","0.358971873392543","0.500288946621128","0.641008944188617","0.827518246498717","1.10765346691561","1.50337616727079","2.04174996523391","2.92190059288575","3.66627875662645","5.61271277833732","6.92201542097193","9.77220058323265","12.1054820242513","14.6094728017738","17.1182321267631","19.5723979049218","22.384664533935","",
"South Sudan","SSD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7","","","14.1","15.9","17.9297872340426","",
"Sub-Saharan Africa","SSF","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0687221778911623","0.128779788567897","0.233989844020964","0.359684994742128","0.501116247778377","0.642242042029934","0.82910863726708","1.1092443762221","1.50604159738049","2.0444694147473","2.92582875460639","3.67015899350846","5.61674071873974","6.92201542097193","9.77549739794117","12.1087290250733","14.6128805501624","17.1216113037161","19.575765125674","22.3880597098621","",
"Small states","SST","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.722717988338376","1.28761706905662","2.31478951516319","3.25292663193355","5.10283736770554","6.80986480276318","9.12792820331447","11.0536135853797","12.8322735842691","13.8739093318814","15.4979286028197","17.4955232511389","20.0690238341231","22.4863820685584","25.8291554913515","29.6938307219275","31.8184649092652","34.9979047607752","38.5383901925608","41.9345509745761","",
"Sao Tome and Principe","STP","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","0.295847047076661","0.363203161320316","4.6385168164075","6.31091788794615","7.580665168911","10.1618443069961","13.3228526892178","13.759484215906","14.1820197774712","14.5904831987414","15.48","16.41","18.75","20.1612","21.5724","23","24.41","25.822248798856","",
"Suriname","SUR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.114720735314025","0.226306296520088","1.00308693643322","1.67014843562543","1.89187135708936","2.50641105226881","3.06444838873752","4.1615687449541","4.71987539528956","6.0760478144456","6.40308628759062","9.49962694173364","14.11","21.06","31.36","31.59","32","34.6812","37.4","40.08","42.763827782511","",
"Slovak Republic","SVK","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.127829232176798","0.318509704334936","0.523210163432169","0.783290109395789","1.17338101357769","2.689809785921","5.43775813908849","9.42680320061637","12.5283218484637","40.14","43.04","52.89","55.19","56.08","61.8","66.05","70","75.71","74.4399971746757","76.7099901181121","77.8826","79.98","85.019514056785","",
"Slovenia","SVN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.40979239917058","1.0715701717727","2.89898560933372","5.0722722714599","7.59192300372915","10.1046028486896","12.6109384253276","15.1102595640388","30.1759104700854","27.8388854180687","31.8547930120441","40.81","46.81","54.01","56.74","58","64","70","67.3399948092396","68.3499745287825","72.6756","71.59","73.0987","",
"Sweden","SWE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.584192066461428","1.16051945314931","1.49787135197753","1.71636418227147","3.41281009645739","5.09802424371094","9.04359975966634","23.7279475562643","33.4675123251094","41.4327831641401","45.6876522122282","51.7656649372808","70.57","79.13","83.89","84.83","87.76","82.01","90","91","90","92.7699860554046","93.1799880065108","94.7836","92.52","90.6102","",
"Swaziland","SWZ","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00103175004410731","0.0503990089538879","0.088545986358015","0.096099605318921","0.470717599566187","0.926191777269402","1.28159005046719","1.81620380712642","2.43707385055863","3.22868507316111","3.69696107291824","3.69653878906882","4.1","6.85","8.94","11.04","18.13","20.7817825772944","24.7","27.1","30.382700656117","",
"Sint Maarten (Dutch part)","SXM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Seychelles","SYC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.651474286309919","1.28295593046379","2.52617751449394","6.22905480322416","7.39562918315276","11.0151029300174","14.3041708309972","14.5925043169492","24.2721392249906","25.4132681462836","34.95197117065","38.38","40.44","","41","43.16400446","47.076","50.4","54.26","58.118697567706","",
"Syrian Arab Republic","SYR","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.0326078138234696","0.063687286253526","0.124295462246123","0.181698580104333","0.353759130007247","2.09310101861765","3.39797261356623","4.32159377785571","5.64810604883917","7.83255156888787","11.5","14","17.3","20.7","22.5","24.3001","26.2","28.09","29.979797235769","",
"Turks and Caicos Islands","TCA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","","","","","","","","","","","","","","","",
"Chad","TCD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.000658168309696096","0.00426850447657814","0.0123217277033717","0.03570707628555","0.0459341343557353","0.166069664674347","0.320308555366775","0.360920107034467","0.399257700084004","0.581045764229641","0.847224520710968","1.19","1.5","1.7","1.9","2.10000000005453","2.3","2.5","2.70000000055","",
"East Asia & Pacific (IDA & IBRD countries)","TEA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00116240413941478","0.00403279431414233","0.013044956686186","0.0337092234156455","0.0954878689349282","0.328379750733307","0.864120813329514","1.92172149360376","2.8141880788905","4.46079753015856","5.83521807370028","6.97264594610665","8.42433572824793","10.3022237187922","14.5631968751855","19.5011227114717","24.0657199514138","29.3174270931839","32.7871074062829","36.5682433516868","39.2471135899819","41.9051895989675","44.9820489707828","",
"Europe & Central Asia (IDA & IBRD countries)","TEC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.0243410405307552","0.0766280760880892","0.14656198687094","0.299732724998857","0.536682267449582","1.02131610808059","1.5304880307508","2.49670174683112","3.59920082871971","6.59083309370572","9.11182943237359","12.9405762518168","15.0482076245178","17.8307095972147","23.0591268281753","26.6479397677943","30.4436663066173","38.1668863413641","42.6097699585863","49.8729034257416","53.725732802751","57.7357026428113","60.7187464806964","",
"Togo","TGO","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0.0109291385259565","0.211139464795239","0.305583935248801","0.590363264291661","0.8","0.9","1","1.2","1.5","1.8","2","2.2","2.4","2.6","3","3.5","4","4.5","5.7","7.12","",
"Thailand","THA","Internet users (per 100 people)","IT.NET.USER.P2","0","","","","","0","","","","","0","","","","","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","5.22334282658481E-05","0.000343724969840282","0.0135809657197242","0.0386143207353161","0.0748253377083653","0.115472136284834","0.360522184921104","1.09121898525592","2.42624243224657","3.68904127944164","5.55632612097332","7.53125033488567","9.29902723805965","10.6773033237281","15.0260043588909","17.1607147169285","20.03","18.2","20.1","22.4","23.669925618731","26.46","28.94","34.89","39.3161267365004","",
"Tajikistan","TJK","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","0.0327918577817128","0.048599594582182","0.0512591325352927","0.0554628269910006","0.0645837771508553","0.0774799071356825","0.298690023682825","3.77240620666448","7.19761951797855","8.78","10.07","11.55","13.03","14.51","16","17.49","18.980000000495","",
"Turkmenistan","TKM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","0.0450207703323929","0.13328218259348","0.175209517731422","0.302132016152841","0.425182631884743","0.754053982724623","0.997256558542959","1.3195731180963","1.40636068812023","1.75","1.95","3","5","7.1958","9.6","12.2","14.996774820447","",
"Latin America & the Caribbean (IDA & IBRD countries)","TLA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.0136850075851028","0.0299110805507261","0.0500442206106172","0.111169526331641","0.31309556490313","0.614442309651696","1.23850481536131","2.06313245497123","3.92166075451427","5.66464161553021","8.91296821957668","11.3305391535046","14.4471779907854","16.6972139230273","20.8921713050127","23.8943694411747","26.6673278928422","31.2701522140467","34.9811777628715","39.7058714998748","43.4061166028747","46.4356519073368","48.9364304275765","54.7037176765572","",
"Middle East & North Africa (IDA & IBRD countries)","TMN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00282568865328588","0.0131440589182525","0.0258900856008887","0.0744515282103998","0.158224276824629","0.416626605188517","0.838755952693683","1.13314386264628","2.81334142159971","4.04913707150178","7.45294420626312","8.44983859527192","9.81004337149304","11.7354020496247","14.8527788926691","17.4928668029268","20.4115894505623","22.5390818922854","25.5678320399368","28.7558073259099","33.9276581310558","37.9589815831978","",
"Timor-Leste","TLS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","0","","","0.0990317678179026","0.116628276525644","0.140958763923202","0.163876815618553","0.185251509799805","0.21","0.9","2.3","8","11.3","13.4","",
"Tonga","TON","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.123231119965495","0.163793456451415","0.510866122423958","0.765134357593193","1.01796711966204","2.4343980443669","2.82537183911525","2.90729731626382","2.98581736750435","3.95237389457043","4.90778276190383","5.85394409483389","7.17986532901248","8.11076994380395","10","16","25","33","35","40","44.999518833326","",
"South Asia (IDA & IBRD)","TSA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.000108982909339641","0.000213587873859964","0.00107873876266303","0.0224723895626757","0.0407987008791552","0.060047420496025","0.11701367777263","0.226317005393681","0.473920912026768","0.663556204243448","1.46254523702335","1.8431644127735","2.18437603559218","2.54668832785865","2.98334830663047","3.97340011784188","4.41682340804885","5.1571126465903","7.20654564155376","9.39309278703748","11.5120098020054","13.7466237906087","19.2677772316517","23.6279411151014","",
"Sub-Saharan Africa (IDA & IBRD countries)","TSS","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.0687221778911623","0.128779788567898","0.233989844020964","0.359684994742128","0.501116247778377","0.642242042029934","0.82910863726708","1.1092443762221","1.50604159738049","2.0444694147473","2.92582875460639","3.67015899350846","5.61674071873974","6.92201542097193","9.77549739794117","12.1087290250733","14.6128805501624","17.1216113037161","19.575765125674","22.3880597098621","",
"Trinidad and Tobago","TTO","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.158149899218977","0.39308052490401","1.17317465755032","2.72482533869579","5.81425096167711","7.72141147401745","15.384627218944","21.9986754804449","25.9717641091609","27.0242700782714","28.9767124326784","30.0037485791676","32.3","34.8","44.3","48.5","55.2","59.5162","63.8","65.1","69.198470608693","",
"Tunisia","TUN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00737954426659364","0.0111919543278728","0.027615371776361","0.0436569744909024","0.107940957159961","1.60249476384836","2.75074029298135","4.29796603474685","5.25288729548421","6.49084579532797","8.52881775162591","9.65508654217982","12.9864086534204","17.1","27.53","34.07","36.8","39.1","41.4416","43.8","46.16","48.519835991689","",
"Turkey","TUR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00845773162352282","0.0498691815007811","0.0816912053159931","0.19272493561622","0.473695432121789","0.698805128639542","2.29211768539022","3.761685035075","5.18948146078506","11.38","12.33","14.58","15.46","18.24","28.63","34.37","36.4","39.82","43.065710430925","45.13","46.25","51.04","53.7449791423583","",
"Tuvalu","TUV","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","5.24163958486214","","","","","","","10","15","20","25","30","35","37","39.2","42.7","",
"Tanzania","TZA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00162215453007416","0.00790028300709799","0.00924412514277551","0.0751308885261369","0.11719444010825","0.171300350668948","0.222484413923909","0.676962856510303","0.87757497099259","1.1","1.3","1.6","1.9","2.4","2.9","3.2","3.95","4.4","4.86","5.355144064127","",
"Uganda","UGA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00286347126499427","0.00462594814589685","0.010319340979965","0.06528946519658","0.105543940327651","0.163714063074854","0.237945087191408","0.384093504951945","0.464849840113968","0.719970679914031","1.7422055032439","2.52936303826279","3.67196535074744","7.9","9.78","12.5","13.01354333","14.6896","16.2","17.71","19.221099634407","",
"Ukraine","UKR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.000776970320005715","0.0136412456078599","0.0430839845118559","0.0985803813881738","0.198821884897478","0.30107579197686","0.405385448389345","0.716183762031043","1.23875954748114","1.87388511643427","3.14812758815439","3.4894778812677","3.749764414659","4.50612456357379","6.55","11","17.9","23.3","28.7082628400713","35.27","40.954128997","46.2359754571651","49.26","",
"Upper middle income","UMC","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","0.00928724763150486","0.0218175926770507","0.0533620927985914","0.124066479693563","0.258154926427955","0.608764643554737","1.27242429542788","2.50523444810151","3.59871059101318","5.93889971279479","7.82351824264587","9.83731344539529","11.4498192974996","13.9452312001362","18.5747575837852","23.2734428669324","28.2460555034981","33.5695273039912","37.7981778596761","42.3443972189714","45.7091075094108","48.5504742122842","52.1378691585815","",
"Uruguay","URY","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.0624743855019442","0.310128582411554","1.84747208854564","3.36323966812774","6.98706936489058","9.97276528462272","10.5390577480141","11.1214376832783","11.4194701966853","15.9371367159756","17.0630983403661","20.0881895579305","29.4","34","39.3","41.8","46.4","51.4046610563616","54.453768680746","57.69","61.46","64.6","",
"United States","USA","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.784728502202794","1.16319372626656","1.72420253908365","2.27167329376237","4.862780634624","9.23708829729378","16.4193529600768","21.6164009686742","30.093196588091","35.8487244559914","43.0791626375201","49.0808315896951","58.7854038836952","61.6971171244207","64.7582564759896","67.968052915002","68.9311932699721","75","74","71","71.69","69.7294607619268","74.7","71.4","73","74.55","",
"Uzbekistan","UZB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.00152709345205452","0.0042850741568506","0.0105369348014515","0.0207544370703468","0.0306883432210493","0.484347307694947","0.597567993875805","1.08193974248733","1.91259517784997","2.59372542084924","3.34350988825952","6.38832196706805","7.49060468138629","9.0801145234501","11.9","15.9","18.6","23.6","26.8","35.5","42.8","",
"St. Vincent and the Grenadines","VCT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","0.128634622147365","0.483248317425638","0.926371956868122","1.8539976825029","2.78200229978857","3.24503741064558","5.09480977832946","5.54959487957379","6.46227416659743","7.37116584201749","9.19827808234299","12","16","21","31","33.7","36.7","40","43.5","47.4","51.77","",
"Venezuela, RB","VEN","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","0.012082133960032","0.0415872334754546","0.0554869777611892","0.122214848090112","0.248260579979274","0.390959317729075","1.38399039093342","2.8398257666663","3.3595974645036","4.63600094778677","4.91044632720325","7.49996346522407","8.40446959241215","12.5529979098299","15.2247114771787","20.83","25.88","32.7","37.37","40.22","49.0500830729861","54.9","57","61.869248094278","",
"British Virgin Islands","VGB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","","","18.8857412653447","","","","","","","36","37","37.4","37.6","","","","",
"Virgin Islands (U.S.)","VIR","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.940645282663907","2.80195763440057","4.64718566436166","6.94836898618664","9.24522022114567","11.0746059286057","13.8150805419196","18.3757660397468","27.4944323774436","27.4290729887632","27.3770087880198","27.3443196733265","27.3326105376325","27.3393358364014","27.3617774210613","27.3965096846662","31.22","35.6","40.5479","45.3","50.07","54.839137296","",
"Vietnam","VNM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.00013481327390908","0.00398196234767899","0.0130785429148256","0.12892666296862","0.254248275754934","1.26565123612317","1.85499923592581","3.78028081370641","7.64240852842363","12.7399292907031","17.2545617186662","20.7554447679753","23.92","26.55","30.65","35.07","39.49","43.9","48.31","52.720000000055","",
"Vanuatu","VUT","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.056845635676321","0.139505814602353","0.274185941938385","0.538300048447004","2.10833689115184","2.83057223877678","3.51003871071264","3.90329584542948","4.74660261917533","5.08233380768449","5.85058505850585","6.8","7.26911992337492","7.5","8","9.2","10.598","11.3","18.8","22.351404582536","",
"West Bank and Gaza","PSE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","","","","1.11130620708969","1.83685483917877","3.10009223512517","4.13061635632919","4.40090482603223","16.005","18.41","21.176","24.358","32.23","37.4","41.08","43.4","46.6","53.67","57.42419241388","",
"World","WLD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0.0496856891065255","","","0.253533375817639","0.449959637575005","0.782312674132684","1.3341123387178","2.05275193017541","3.1565909587454","4.65413216372469","6.77042705915318","8.09590898755414","10.580556796533","12.2760765298319","14.1736644177021","15.7890822663976","17.6040061045312","20.5334944587863","23.264672344997","25.7552606934857","29.1496140028363","31.7297531122271","34.9459249545314","37.4168610523907","40.6499499773376","43.9983147914322","",
"Samoa","WSM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","","0.174571862507201","0.230359014524136","0.285308332715165","0.566392532680849","1.68990283058724","2.24483267578443","2.79963044878076","3.07552941044897","3.35259211246829","4.46917387320954","4.74998323535329","5.03161531623702","6","7","11","12.92249","15.3","21.2","25.407009766593","",
"Yemen, Rep.","YEM","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.000621080747577506","0.015025295385287","0.0233232425324517","0.0566286752434948","0.0825003865143108","0.0908024587169292","0.518796032123435","0.604734100431821","0.881222988679516","1.04859793417826","1.24782404904485","5.01","6.89","9.96","12.35","14.905","17.4465","20","22.55","25.09951439988","",
"South Africa","ZAF","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","0.0132835914197882","0.038869105953555","0.113747183840903","0.246905532955469","0.676740104246979","0.841882931174553","1.63209379074114","2.90622086677142","4.1162495827774","5.34855973203537","6.34661931839768","6.71032243705404","7.00769172611251","8.4251186825406","7.48854252992921","7.60713967477381","8.06537517355504","8.43","10","24","33.97","41","46.5","49","51.919115722747","",
"Congo, Dem. Rep.","COD","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","","","0.000108206731817796","0.000211213230126382","0.000413065168672064","0.00100907613529895","0.0059021136806903","0.0114757819210493","0.0927907024606925","0.134914837437335","0.196208375178039","0.238037798692792","0.29605361030881","0.37","0.44","0.56","0.72","1.2","1.679961014645","2.2","3","3.799999507273","",
"Zambia","ZMB","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00677610528441347","0.00878362302271039","0.00906917604721776","0.00932965786278686","0.0302261825238258","0.147053172074171","0.191071642503428","0.233129556342332","0.477750906947484","0.980483039426114","2.01354953218533","2.85175226129009","4.15991339393107","4.87","5.55","6.31","10","11.5","13.4682","15.4","19","21","",
"Zimbabwe","ZWE","Internet users (per 100 people)","IT.NET.USER.P2","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0","","","","0.00173927955909959","0.00768353991953285","0.016790483892511","0.033080326724463","0.0816484762026535","0.161675527563414","0.401433535211582","0.799846045633137","1.1","1.8","2.1","2.4","2.4","3","3.5","4","6.4","8.4","12","15.5","16.3","16.36","",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment